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

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');
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 */
.w80 {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
}
.w98 {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
}
.w100 {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
}
.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;
}
.w126 {
  max-width: 1300px;
  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: fixed;
    top: 0;
    z-index: 4;
    width: 100%;
    transition: .3s;
    height: 75px;
    background: #fff;
}
header .header_content {
  display: flex;
  max-width: 1300px;
  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: 15px;
}
header .header_content .cta_box .RequestCatalog01 a {
    width: 100px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: 1px solid #000000;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    transition: .3s;
    letter-spacing: .05em;
    line-height: 1.6;
    background: #fff;
    gap: 10px;
}
header .header_content .cta_box .RequestCatalog01 a:hover {
    background: #000;
    color: #fff;
}
header .header_content .cta_box .RequestCatalog01 a::before {
  content: "\f0e0";
  font-family: 'Font Awesome 6 Free';
  font-weight: 700;
  font-size: 22px;
  display: none;
}
header .header_content .cta_box .loginbtns {
  position: relative;
}
header .header_content .cta_box .loginbtns a {
    background: #fff;
    border: 1px solid #FFBF00;
    font-size: 14px;
    font-weight: bold;
    width: 100px;
    height: 35px;
    display: flex;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    color: #FFBF00;
    gap: 10px;
    line-height: 1;
    transition: .3s;
}
header .header_content .cta_box .loginbtns a:hover {
    background: #FFBF00;
    color: #fff;
}
header .header_content .cta_box .loginbtns a::before {
    content: "\f007";
    font-family: 'Font Awesome 6 Free';
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    margin-top: 2px;
  display: none;
}
.body-container-wrapper {
  padding-top: 75px !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ページ
*
=======================================*/
.mv_sec {
     position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0 40px;
}
.mv_sec .mv_title {
  /* margin-bottom: 40px; */
}

.mv_sec .mv_title h1 {
    font-size: 38px;
    font-weight: 900;
    color: #333;
    line-height: 1.2;
    text-align: left;
    letter-spacing: .04em;
    margin-bottom: 20px;
}

.mv_sec .mv_title p.subtte {
    color: #aaaaaa;
    text-align: left;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: .04em;
}

.mv_sec .btn_contents {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.mv_sec .btn_contents .btn.downloads a {
  background: #FFBF00;
  border: 1px solid #FFBF00;
}

.mv_sec .btn_contents .btn a {
  color: #fff;
  border-radius: 200px;
  min-height: 70px;
  min-width: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  transition: .3s;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .04em;
  line-height: 1.6;
  gap: 10px;
}
.mv_sec .btn_contents .btn {
  min-width: initial;
  width: fit-content;
  display: flex;
  padding: 0;
}

.mv_sec .btn_contents .btn.downloads a:hover {
  color: #FFBF00;
  background: #fff;
}

.mv_sec .btn_contents .btn.mails a {
  background: #000000;
  border: 1px solid #000000;
}

.mv_sec .btn_contents .btn.mails a:hover {
  background: #fff;
  color: #000000;
}

.mv_sec .btn_contents .btn.mails a::before {
  content: "\f0e0";
  font-family: 'Font Awesome 6 Free';
  font-weight: 700;
  font-size: 22px;
}
.mv_sec .btn_contents .btn.downloads a::before {
  content: "";
  aspect-ratio: 22/17;
  width: 22px;
  background-color: #ffffff;
  mask: url("https://22565638.fs1.hubspotusercontent-na1.net/hubfs/22565638/raw_assets/public/taptoyou_SITE_2026/images/tapSiteParts_01.svg");
  transition: .3s;
}
.mv_sec .btn_contents .btn.downloads a:hover::before {
  background-color: #FFBF00;
}




/* =========================================
   全体ラッパー（HubSpotでのスタイル干渉防止）
========================================= */
.tap_monitor_wrap {
    position: relative;
    width: 100%;
    color: #fff;
    overflow: hidden;
}

.tap_monitor_wrap *,
.tap_monitor_wrap *::before,
.tap_monitor_wrap *::after {
  box-sizing: border-box;
}

/* =========================================
   1. 白背景のタイトルセクション
========================================= */
.tap_monitor_wrap .white_title_section {
  width: 100%;
  background-color: #ffffff;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 200px;
}

.tap_monitor_wrap .white_title_section .main_page_title {
  color: #111;
  font-size: 54px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0;
}

/* =========================================
   2. 背景写真セクション（カフェの画像）
========================================= */
.tap_monitor_wrap .hero_section {
  width: 100%;
  height: initial;
  position: sticky;
  top: 0;
  z-index: 1;
  aspect-ratio: 1440 / 430;
  margin-bottom: 20px;
  
}

/* =========================================
   3. 波（ビール）＆黄色い背景セクション
========================================= */
.tap_monitor_wrap .yellow_section {
  position: relative;
  width: 100%;
  z-index: 2;
  background-color: #FFB300;
  background: linear-gradient(360deg, #F89F00 0%, #F5C400 100%);
  border-radius: 0 0px 20px 20px;
}

/* 波のアニメーション */
.tap_monitor_wrap .yellow_section .wave_container {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 101px;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.tap_monitor_wrap .yellow_section .wave_container .wave_svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  fill: #F5C400;
  animation: tap_wave_anim 6s linear infinite;
}

@keyframes tap_wave_anim {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 透かしテキスト */
.tap_monitor_wrap .yellow_section .watermark_text {
  position: absolute;
  top: 30px;
  right: 0px;
  left: initial;
  font-size: 150px;
  white-space: nowrap;
  pointer-events: none;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  color: #FFBF00;
  text-shadow: 1px 1px 0 #fff,
    -1px 1px 0 #fff,
    -1px -1px 0 #fff,
    1px -1px 0 #fff;
  opacity: .3;
  letter-spacing: .04em;
  line-height: 1;
}

/* 炭酸の気泡アニメーション */
.tap_monitor_wrap .yellow_section .bubbles_layer {
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  height: calc(100% + 150px);
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 50px, black 150px, black 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, transparent 50px, black 150px, black 100%);
}

.tap_monitor_wrap .yellow_section .bubbles_layer .bubble {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  bottom: -50px;
  animation: tap_float_up infinite linear;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.6) 100%);
}

@keyframes tap_float_up {
  0% {
    transform: translateY(0) scale(0.6);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: .5;
  }
  80% {
    opacity: .5;
  }
  100% {
    transform: translateY(-90vh) scale(1.2);
    opacity: 0;
  }
}

/* =========================================
   4. スライダーコンテナ (Slick用)
========================================= */
.tap_monitor_wrap .yellow_section .slider_container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding-top: 150px;
  padding-bottom: 150px;
  padding-left: 20px;
  padding-right: 20px;
}

/* Slick本体（画像幅に合わせて800pxで中央寄せ） */
.tap_monitor_wrap .yellow_section .slider_container .tap_slick_slider {
  width: 100%;
  margin: 0 auto;
  max-width: 650px;
  position: initial;
}

.tap_monitor_wrap .yellow_section .slider_container .slide {
  outline: none;
  /* クリック時の青枠を消す */
  display: flex !important;
  /* Slickの仕様に対応 */
  justify-content: center;
  /* ★ここから追加・変更★ */
  opacity: 0;
  /* 最初は透明にしておく */
  transition: opacity 0.5s ease-in-out;
  /* 0.5秒かけてフワッと不透明度を変える */
}
/* ★新規追加：画面に表示された（アクティブになった）スライドだけフェードインさせる */
.tap_monitor_wrap .yellow_section .slider_container .slide.slick-active {
  opacity: 1;
}

.tap_monitor_wrap .yellow_section .slider_container .slide .image_wrapper {
  position: relative;
  display: inline-block;
}

.tap_monitor_wrap .yellow_section .slider_container .slide .image_wrapper .main_image {
  display: block;
  width: 800px;
  height: auto;
  border-radius: 12px;
}

/* カスタム矢印ボタン (SlickのprevArrow/nextArrowとしてJSで読み込ませる) */
.tap_monitor_wrap .yellow_section .slider_container .slide_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: 0.2s;
  user-select: none;
}
.tap_monitor_wrap .yellow_section .slider_container .slide_btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.tap_monitor_wrap .yellow_section .slider_container .slide_btn.slick-disabled {
  opacity: 0;
  pointer-events: none;
}
.tap_monitor_wrap .yellow_section .slider_container .prev_btn {
  left: 0px;
}
.tap_monitor_wrap .yellow_section .slider_container .next_btn {
  right: 0px;
}
/* =========================================
   5. 画像の上に重ねるUIパーツ（吹き出し・TAPボタン）
========================================= */
.tap_monitor_wrap .tap_wrapper {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 20;
}
/* 青く光るTAPボタン */
.tap_monitor_wrap .tap_wrapper .pulse_btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3422FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  box-shadow: 0 0 15px rgba(37, 70, 255, 0.8);
  animation: tap_pulse_anim 1.5s infinite;
  cursor: pointer;
  letter-spacing: .04em;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}
@keyframes tap_pulse_anim {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 70, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 70, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 70, 255, 0);
  }
}
/* ホバーで現れる吹き出し */
.tap_monitor_wrap .tap_wrapper .hover_balloon {
  position: absolute;
  bottom: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #fff;
  color: #3422FF;
  padding: 3px 10px 5px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  letter-spacing: .04em;
  border: 1px solid #3422FF;
}
.tap_monitor_wrap .tap_wrapper .hover_balloon::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 9px 9px 0;
    border-style: solid;
    border-color: #fff transparent;
    display: block;
}
/* ホバー時の動き */
.tap_monitor_wrap .tap_wrapper:hover .hover_balloon {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.tap_monitor_wrap .tap_wrapper.tap_wrapper.pos_tap_01 {
  bottom: 10%;
  left: 17%;
}

.tap_monitor_wrap .tap_wrapper.tap_wrapper.pos_tap_02 {
  bottom: 4%;
  left: 54%;
}

.tap_monitor_wrap .tap_wrapper.tap_wrapper.pos_tap_03 {
  top: 25%;
  right: 16%;
}
.tap_monitor_wrap .tap_wrapper .hover_balloon::before {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 9px 9px 0;
  border-style: solid;
  border-color: #3422FF transparent;
  display: block;
}
/* パーツの配置位置（画像サイズ 800px 基準） */
.tap_monitor_wrap .pos_tap_screen {
  top: 200px;
  right: 180px;
}
.tap_monitor_wrap .pos_tap_left {
  bottom: 50px;
  left: 110px;
}

.tap_monitor_wrap .tap_wrapper.tap_wrapper.pos_tap_04 {
  left: 50%;
  top: 50%;
}
.tap_monitor_wrap .tap_wrapper.tap_wrapper.pos_tap_05 {
  top: 20%;
  left: 30%;
}

.selectType_sec {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 160px 0 160px;
}

.selectType_sec .selectType_headingArea {
  position: relative;
}

.selectType_sec .selectType_en {
    position: absolute;
    z-index: 0;
    top: 80px;
    left: 0px;
    font-size: 150px;
    white-space: nowrap;
    pointer-events: none;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    color: #ffffff;
    text-shadow: 1px 1px 0 #FFF1C7, -1px 1px 0 #FFF1C7, -1px -1px 0 #FFF1C7, 1px -1px 0 #FFF1C7;
    letter-spacing: .04em;
    line-height: 1;
}

.selectType_sec .selectType_headingArea .selectType_titleBox {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
}

.selectType_sec .selectType_headingArea .selectType_titleBox h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  background: linear-gradient(90deg, #F89F00 0%, #f5c400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
  margin-bottom: 20px;
}

.selectType_sec .selectType_headingArea .selectType_titleBox .selectType_lead,
.selectType_sec .selectType_headingArea .selectType_titleBox .selectType_lead p {
  color: #666666;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.selectType_sec .selectType_grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 50px;
}

.selectType_sec .selectType_grid .selectType_card {
  position: relative;
}

.selectType_sec .selectType_grid .selectType_card .selectType_imgBox {
    aspect-ratio: 610 / 424;
    border-radius: 20px;
    position: relative;
}

.selectType_sec .selectType_grid .selectType_card .selectType_imgBox img {
  display: block;
  height: 100% !important;
  object-fit: cover;
  width: 100%;
}

.selectType_sec .selectType_grid .selectType_card .selectType_imgBox .selectType_textBox {
  align-items: flex-start;
  background: rgba(255, 255, 255, .9);
  border-radius: 0 20px 0 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  min-height: 116px;
  padding: 20px;
  position: absolute;
  width: min(345px, calc(100% - 40px));
}

.selectType_sec .selectType_grid .selectType_card .selectType_imgBox .selectType_textBox h3 {
  align-items: center;
  color: #333333;
  display: flex;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 900;
  gap: 10px;
  line-height: 1.2;
  margin: 0 0 10px;
}

.selectType_sec .selectType_grid .selectType_card .selectType_imgBox .selectType_textBox .selectType_dot {
  border: 7px solid #FFE28B;
  border-radius: 50%;
  box-sizing: border-box;
  flex: 0 0 auto;
  height: 24px;
  width: 24px;
  background: #FFBF00;
  animation: enroundbl 1.5s infinite;
}

@keyframes enroundbl {
  0% {
    box-shadow: 0 0 0 0 rgb(255, 226, 139, .7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 226, 139, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 226, 139, 0);
  }
}

.selectType_sec .selectType_grid .selectType_card .selectType_imgBox .selectType_textBox .selectType_cardText,
.selectType_sec .selectType_grid .selectType_card .selectType_imgBox .selectType_textBox .selectType_cardText p {
  color: #333333;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.5;
  margin: 0;
}
.moreBtns {
  position: relative;
}

.moreBtns a {
  background: #FFBF00;
  height: 50px;
  display: flex;
  border-radius: 100px;
  min-width: 200px;
  width: fit-content;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  align-items: center;
  padding-left: 30px;
  justify-content: space-between;
  padding-right: 10px;
  transition: .3s;
}

.moreBtns a .icons {
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.moreBtns a .icons::after {
  content: "\f105";
  font-family: 'FontAwesome';
  font-weight: bold;
  color: #FFBF00;
  line-height: 1;
  font-size: 10px;
  transform: translate(-3px, 0px);
  transition: .3s;
}

.selectType_sec .selectType_headingArea .selectType_titleBox .moreBtns {
  margin-left: auto;
}

.moreBtns a .icons::before {
  content: "\f105";
  font-family: 'FontAwesome';
  font-weight: bold;
  color: #FFBF00;
  line-height: 1;
  font-size: 10px;
  transform: translate(-20px, 0px);
  transition: .3s;
}

.moreBtns a:hover .icons::after {
  transform: translate(14px, 0px);
  opacity: 0;
}

.moreBtns a:hover .icons::before {
  transform: translate(4px, 0px);
}

.moreBtns a:hover {
  opacity: .7;
  color: #fff;
}

.consultation_sec {
  background: #313131;
  overflow: hidden;
  position: relative;
}

.consultation_sec .consultation_main {
  padding: 80px 0 80px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.consultation_sec .consultation_body {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.consultation_sec .consultation_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.consultation_sec .consultation_icon img {
  display: block;
  max-width: 100%;
  height: auto;
}

.consultation_sec .consultation_icon span {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f8b537;
  box-shadow: 0 10px 24px rgba(248, 181, 55, .28);
}

.consultation_sec .consultation_icon span::before,
.consultation_sec .consultation_icon span::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
}

.consultation_sec .consultation_icon span::before {
  top: 14px;
  width: 24px;
  height: 18px;
  border-radius: 0 0 14px 14px;
}

.consultation_sec .consultation_icon span::after {
  top: 34px;
  width: 30px;
  height: 4px;
  border-radius: 999px;
}

.consultation_sec .consultation_title h2,
.consultation_sec .consultation_title p {
  margin: 0;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .04em;
  margin-bottom: 30px;
}

.consultation_sec .consultation_text {
  max-width: 640px;
  margin: 0 auto 0;
  margin-bottom: 50px;
}

.consultation_sec .consultation_text p {
  margin: 0;
  color: #DDDDDD;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: .04em;
}

.consultation_sec .consultation_ctaList {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.consultation_sec .consultation_ctaItem {
  width: 300px;
}

.consultation_sec .consultation_ctaLead {
  margin: 0 0 12px;
  color: #231f1c;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
}

.consultation_sec .consultation_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 80px;
  padding: 20px 20px;
  border-radius: 999px;
  color: #1A1A1A;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  transition: .3s;
}

.consultation_sec .consultation_btn:hover {
  opacity: .86;
}

.consultation_sec .consultation_btn--primary {
  background: #f8b537;
}

.consultation_sec .consultation_btn--primary::before {
  content: "";
  aspect-ratio: 22/17;
  width: 22px;
  background-color: #ffffff;
  mask: url("https://22565638.fs1.hubspotusercontent-na1.net/hubfs/22565638/raw_assets/public/taptoyou_SITE_2026/images/tapSiteParts_01.svg");
  transition: .3s;
  background: #1A1A1A;
  transition: .3s;
}
.consultation_sec .consultation_btn--primary:hover::before {
  background: #fff;
}
.consultation_sec .consultation_btn--primary:hover {
  background: #1a1a1a;
  color: #fff;
}

.consultation_sec .consultation_btn--dark {
  background: #fff;
  color: #1a1a1a;
}
.consultation_sec .consultation_btn--dark:hover {
  background: #1a1a1a;
  color: #fff;
}
.consultation_sec .consultation_btn--dark::before {
  content: "\f0e0";
  font-family: 'Font Awesome 6 Free';
  font-weight: 700;
  font-size: 22px;
  height: 21px;
  color: #1A1A1A;
  transition: .3s;
}
.consultation_sec .consultation_btn--dark:hover::before {
  color: #fff;
}
.consultation_sec .consultation_btn--dark .consultation_btnIcon {
  background: rgba(255, 255, 255, .18);
}




.consultation_sec .consultation_logoArea {
  position: relative;
  overflow: hidden;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(35, 31, 28, .12);
  display: none;
  background: #fff;
}

.consultation_sec .consultation_logoArea.disblocks {
  display: block;
}

.consultation_sec .consultation_logoMarquee {
  overflow: hidden;
  width: 100%;
  /* スマホの負荷を下げるため contain は必要最小限に */
  contain: paint;
}

.consultation_sec .consultation_logoTrack {
  display: flex;
  align-items: center;
  width: max-content;
  animation: consultationLogoMarquee 30s linear infinite;

  /* スマホの処理負荷を下げる軽量GPUアクセラレーション */
  will-change: transform;
  transform: translateZ(0);
}

.consultation_sec .consultation_logoGroup {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: max-content;
}

.consultation_sec .consultation_logoSlide {
  flex: 0 0 auto;
  padding: 0 26px;
}

.consultation_sec .consultation_logoItem {
display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto; /* ★親は高さ指定なしで自然に開かせる */
    color: #231f1c;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
    text-align: center;
    text-decoration: none;
}

/* imgへの過剰な3Dプロパティを削除して軽量化 */
.consultation_sec .consultation_logoSlide img {
display: block;
    width: auto;         /* 横幅は自動計算 */
    max-width: none;     /* 幅の上限解除 */
    height: 80px !important;        /* ★画像自体に直接高さを指定（計算負荷を完全カット） */
    object-fit: contain;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.consultation_sec .consultation_logoItem span {
  display: block;
  padding: 0 9px;
}

/* 描画計算が圧倒的に軽い2Dの translateX に戻す */
@keyframes consultationLogoMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .consultation_sec .consultation_logoTrack {
    animation-duration: 90s;
  }
}


.introMerit_sec {
    position: relative;
    overflow: hidden;
    padding: 160px 0 80px;
    background: #fff;
}

.introMerit_sec .introMerit_bgText {
    position: absolute;
    z-index: 0;
    top: 80px;
    left: 0px;
    font-size: 150px;
    white-space: nowrap;
    pointer-events: none;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    color: #ffffff;
    text-shadow: 1px 1px 0 #FFF1C7, -1px 1px 0 #FFF1C7, -1px -1px 0 #FFF1C7, 1px -1px 0 #FFF1C7;
    letter-spacing: .04em;
    line-height: 1;
}

.introMerit_sec .w98 {
  position: relative;
  z-index: 1;
}

.introMerit_sec .introMerit_headingArea {
    width: 100%;
    margin-bottom: 30px;
}

.introMerit_sec .introMerit_headingArea .introMerit_label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.introMerit_sec .introMerit_headingArea .introMerit_label span {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffc71e;
    border: 3px solid #FFE28B;
    animation: enroundbl 1.5s infinite;
}

.introMerit_sec .introMerit_headingArea .introMerit_label p {
    color: #333333;
    font-size: 12px;
    letter-spacing: .04em;
    line-height: 1;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}

.introMerit_sec .introMerit_headingArea h2 {
    margin: 0;
    color: #ffb400;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .04em;
    background: linear-gradient(90deg, #F89F00 0%, #f5c400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: fit-content;
    margin-bottom: 20px;
}

.introMerit_sec .introMerit_headingArea .introMerit_lead {
    margin-top: initial;
}

.introMerit_sec .introMerit_headingArea .introMerit_lead p {
    margin: 0;
    color: #666666;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .04em;
}

.introMerit_sec .introMerit_visual {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    min-height: 550px;
    display: flex;
}
.introMerit_sec .introMerit_visual img {
    object-fit: cover;
    border-radius: 20px;
}
.introMerit_sec .introMerit_visual .introMerit_img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.introMerit_sec .introMerit_visual .introMerit_card {
    position: absolute;
    z-index: 2;
    width: 274px;
    padding: 30px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 0px 15px rgba(0, 0, 0, .05);
}

.introMerit_sec .introMerit_visual .introMerit_card--1 {
    top: 40px;
    left: -20px;
}

.introMerit_sec .introMerit_visual .introMerit_card--2 {
    top: 40px;
    right: -20px;
}

.introMerit_sec .introMerit_visual .introMerit_card--3 {
    bottom: 40px;
    left: -20px;
}

.introMerit_sec .introMerit_visual .introMerit_card--4 {
    bottom: 40px;
    right: -20px;
}
.introMerit_sec .introMerit_visual .introMerit_card .introMerit_cardLabel {
    margin: 0 0 0px;
    padding: 5px 10px;
    border-radius: 4px;
    background: #ffc71e;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .04em;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.introMerit_sec .introMerit_visual .introMerit_card .introMerit_cardTitle {
    display: flex;
    gap: 10px;
}
.introMerit_sec .introMerit_visual .introMerit_card .introMerit_cardTitle h3 {
    margin: 0 0 10px;
    color: #333333;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .04em;
}

.introMerit_sec .introMerit_visual .introMerit_card .introMerit_cardTitle span {
  color: #ffb400;
}

.introMerit_sec .introMerit_visual .introMerit_card .introMerit_cardText p {
  margin: 0;
  color: #333333;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .04em;
}

.salesType_sec {
    position: relative;
    padding: 80px 0 80px;
    background: #fff;
}

.salesType_sec .salesType_decoration {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}

.salesType_sec .salesType_decoration--large {
  top: 36px;
  left: 34px;
  width: 37px;
  height: 37px;
  border: 1px solid rgba(255, 199, 30, .42);
  box-shadow: 0 0 12px rgba(255, 199, 30, .22);
}

.salesType_sec .salesType_decoration--small {
  left: 109px;
  bottom: 62px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 199, 30, .35);
}

.salesType_sec .w126 {
  position: relative;
  z-index: 1;
}

.salesType_sec .salesType_headingArea {
    margin-bottom: 50px;
}

.salesType_sec .salesType_headingArea .salesType_label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.salesType_sec .salesType_headingArea .salesType_label span {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffc71e;
    border: 3px solid #FFE28B;
    animation: enroundbl 1.5s infinite;
}

.salesType_sec .salesType_headingArea .salesType_label p {
    color: #333333;
    font-size: 12px;
    letter-spacing: .04em;
    line-height: 1;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}

.salesType_sec .salesType_headingArea h2 {
    margin: 0;
    color: #ffb400;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .04em;
    background: linear-gradient(90deg, #F89F00 0%, #f5c400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: fit-content;
}

.salesType_sec .salesType_cardList {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.salesType_sec .salesType_cardList .salesType_card {
    padding: 30px 20px 30px;
    border-radius: 20px;
    background: #F9F7F2;
    text-align: center;
}

.salesType_sec .salesType_cardList .salesType_card .salesType_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #fff;
}

.salesType_sec .salesType_cardList .salesType_card .salesType_icon img {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.salesType_sec .salesType_cardList .salesType_card h3 {
    margin: 0px 0 10px;
    color: #333333;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .04em;
}

.salesType_sec .salesType_cardList .salesType_card .salesType_text p {
    margin: 0;
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: .04em;
}

.variousDrinks_sec {
    position: relative;
    padding: 80px 0px 160px;
}

.variousDrinks_sec .variousDrinks_decoration {
  position: absolute;
  top: 159px;
  left: 28px;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 199, 30, .4);
  border-radius: 50%;
  pointer-events: none;
}

.variousDrinks_sec .variousDrinks_headingArea {
    margin: 0 auto 50px;
    text-align: center;
}

.variousDrinks_sec .variousDrinks_headingArea p {
    margin: 0 0 10px;
    color: #FFBF00;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .04em;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}

.variousDrinks_sec .variousDrinks_headingArea h2 {
    color: #ffb400;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .04em;
    background: linear-gradient(90deg, #F89F00 0%, #f5c400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: fit-content;
    margin: 0 auto 20px;
}
.variousDrinks_sec .variousDrinks_headingArea .variousDrinks_lead p {
    margin: 0;
    color: #666666;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .04em;
}

.variousDrinks_sec .variousDrinks_list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.variousDrinks_sec .variousDrinks_list .variousDrinks_item {
  text-align: center;
}

.variousDrinks_sec .variousDrinks_list .variousDrinks_item .variousDrinks_img {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  background: #f7f5f1;
}

.variousDrinks_sec .variousDrinks_list .variousDrinks_item .variousDrinks_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.variousDrinks_sec .variousDrinks_list .variousDrinks_item h3 {
    margin: 20px 0 0;
    color: #333333;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .04em;
}

.controlPanel_sec {
    position: relative;
    background: #F9F9F9;
    padding: 80px 0;
}

.controlPanel_sec .flex_titleBox {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding-bottom: 50px;
    border-bottom: 1px solid #EAEAEA;
    margin-bottom: 50px;
}

.controlPanel_sec .flex_titleBox .inttls {
    position: relative;
}

.controlPanel_sec .flex_titleBox .inttls .titleTop_label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.controlPanel_sec .flex_titleBox .inttls .titleTop_label span {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffc71e;
    border: 3px solid #FFE28B;
    animation: enroundbl 1.5s infinite;
}

.controlPanel_sec .flex_titleBox .inttls .titleTop_label p {
    color: #333333;
    font-size: 12px;
    letter-spacing: .04em;
    line-height: 1;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}

.controlPanel_sec .flex_titleBox .inttls h2 {
    margin: 0;
    color: #ffb400;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .04em;
    background: linear-gradient(90deg, #F89F00 0%, #f5c400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: fit-content;
}

.controlPanel_sec  .controlPanel_row {
    display: flex;
    position: relative;
}

.controlPanel_sec .controlPanel_row .imgs_col {
    width: 61.6%;
}

.controlPanel_sec .controlPanel_row .listpctte {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    padding: 20px 40px;
    right: 0;
    top: 10%;
}

.controlPanel_sec .controlPanel_row .listpctte ul {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}
.controlPanel_sec .controlPanel_row .listpctte ul li {
    padding: 20px 0;
    list-style: none;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: .04em;
    display: flex;
    gap: 10px;
}

.controlPanel_sec .controlPanel_row .listpctte ul li:not(:first-of-type) {
    border-top: 1px solid #EAEAEA;
}

.controlPanel_sec .controlPanel_row .listpctte ul li::before {
    font-weight: bold;
    font-family: 'Font Awesome 5 Free';
}
.controlPanel_sec .controlPanel_row .listpctte ul li i.fa-regular.fa-circle-check {
    margin-top: 6px;
}

.location_sec {
    position: relative;
    overflow: hidden;
    padding: 80px 0 80px;
    background: #fff;
    color: #313131;
}

.location_sec .location_headingArea {
    margin-bottom: 50px;
}

.location_sec .location_headingArea .location_label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.location_sec .location_headingArea .location_label span {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffc71e;
    border: 3px solid #FFE28B;
    animation: enroundbl 1.5s infinite;
}

.location_sec .location_headingArea .location_label p {
    color: #333333;
    font-size: 12px;
    letter-spacing: .04em;
    line-height: 1;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}

.location_sec .location_headingArea h2 {
    margin: 0;
    color: #ffb400;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .04em;
    background: linear-gradient(90deg, #F89F00 0%, #f5c400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: fit-content;
}

.location_sec .location_sliderOuter {
  position: relative;
}

.location_sec .location_slider {
    overflow: visible;
    position: relative;
    width: calc(100% + 20px);
    transform: translate(0px, 0px);
}

.location_sec .location_slider .slick-list {
  overflow: visible;
}

.location_sec .location_slider .slick-track {
  display: flex !important;
  align-items: flex-start;
}

.location_sec .location_slide {
  padding-right: 20px;
}

.location_sec .location_card {
}

.location_sec .location_card .location_img {
    overflow: hidden;
    border-radius: 20px;
    background: #f7f5f1;
    padding-bottom: 84.8%;
    position: relative;
    overflow: hidden;
}

.location_sec .location_card .location_img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.location_sec .location_card h3 {
    margin: 10px 0 0;
    color: #333333;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: .1em;
}

.location_sec .location_sliderOuter .arrow_box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0px 0 0;
    position: relative;
    position: absolute;
    right: 20px;
    top: -50px;
    transform: translate(0px, -100%);
}

.location_sec .location_sliderOuter .arrow_box .slide-arrow.prev-arrow.slick-arrow {
    transform: rotate(180deg);
    margin-right: 10px;
}

.location_sec .location_sliderOuter .arrow_box .slide-arrow.next-arrow.slick-arrow {}

.location_sec .location_sliderOuter .arrow_box .slide-arrow.prev-arrow.slick-arrow, .location_sec .location_sliderOuter .arrow_box .slide-arrow.next-arrow.slick-arrow {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all .3s ease;
    cursor: pointer;
    position:relative;
    border: 1px solid #1a1a1a;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: .3s;
}
.location_sec .location_sliderOuter .arrow_box .slide-arrow.prev-arrow.slick-arrow:hover, .location_sec .location_sliderOuter .arrow_box .slide-arrow.next-arrow.slick-arrow:hover {
    opacity: .7;
}
.location_sec .location_sliderOuter .arrow_box .slide-arrow.prev-arrow.slick-arrow::before, .location_sec .location_sliderOuter .arrow_box .slide-arrow.next-arrow.slick-arrow::before {
    position: absolute;
    top: 50%;
    margin:auto;
    content: "\f105";
    font-family: 'Font Awesome 6 Free';
    font-weight: bold;
    transform: translate(0%, -50%);
    font-size: 10px;
    line-height: 1;
}
.location_sec .location_sliderOuter .w110 {
    position: relative;
}
.ctaYellowon_sec {
    position: relative;
    padding-bottom: 80px;
    padding-top: 80px;
}

.ctaYellowon_sec .ctaYellowon_row {
    
/* Rectangle 145 */
    background: linear-gradient(90deg, #F89F00 0%, #F5C400 100%);
    border-radius: 30px;
    display: flex;
    padding: 80px 60px;
    gap: 40px;
    position: relative;
    box-shadow: 0 0 15px rgb(0 0 0 / 5%);
}

.ctaYellowon_sec .ctaYellowon_row .texts_col {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.ctaYellowon_sec .ctaYellowon_row .btns_col {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ctaYellowon_sec .ctaYellowon_row .texts_col .icons_box {
    width: fit-content;
    display: flex;
    margin-bottom: 20px;
}

.ctaYellowon_sec .ctaYellowon_row .texts_col h2 {
    color: #fff;
    line-height: 1.2;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: .04em;
}

.ctaYellowon_sec .ctaYellowon_row .texts_col p.labelText {
    /* position: absolute; */
    /* left: 60px; */
    margin-top: auto;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    letter-spacing: .04em;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.ctaYellowon_sec .ctaYellowon_row .btns_col .btns {
    border-radius: 20px;
    background: #fff;
    /* padding: 60px; */
}

.ctaYellowon_sec .ctaYellowon_row .btns_col .btns a {
    padding: 60px;
    display: flex;
    gap: 40px;
    color: #333;
    transition: .3s;
    position: relative;
}

.ctaYellowon_sec .ctaYellowon_row .btns_col .btns a .imgss_in {
    display: flex;
}

.ctaYellowon_sec .ctaYellowon_row .btns_col .btns a .ttbox {}

.ctaYellowon_sec .ctaYellowon_row .btns_col .btns a .ttbox .names {
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: .04em;
    font-weight: bold;
    margin-bottom: 10px;
    /* transition: .3s; */
}

.ctaYellowon_sec .ctaYellowon_row .btns_col .btns a .ttbox .eet {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

.ctaYellowon_sec .ctaYellowon_row .btns_col .btns a .ttbox .names:hover {
    /* opacity: .7; */
}

.ctaYellowon_sec .ctaYellowon_row .btns_col .btns a:hover {
    opacity: .7;
}

.ctaYellowon_sec .ctaYellowon_row .btns_col .btns a .arrowscheck {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: #FFBF00;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ctaYellowon_sec .ctaYellowon_row .btns_col .btns a .arrowscheck::after {
    content: "\f105";
    font-family: 'FontAwesome';
    font-weight: bold;
    color: #fff;
    line-height: 1;
    font-size: 10px;
    transform: translate(-3px, 0px);
    transition: .3s;
}

.ctaYellowon_sec .ctaYellowon_row .btns_col .btns a .arrowscheck::before {
    content: "\f105";
    font-family: 'FontAwesome';
    font-weight: bold;
    color: #fff;
    line-height: 1;
    font-size: 10px;
    transform: translate(-20px, 0px);
    transition: .3s;
}

.ctaYellowon_sec .ctaYellowon_row .btns_col .btns a:hover .arrowscheck::before {
    transform: translate(4px, 0px);
}

.ctaYellowon_sec .ctaYellowon_row .btns_col .btns a:hover .arrowscheck::after {
    transform: translate(14px, 0px);
    opacity: 0;
}

.ctaYellowon_sec::before {
    content: "";
    background: #F5C400;
    height: 50%;
    width: 100%;
    position: absolute;
    bottom: 0;
}
.ctaYellowon_sec .wave_container {
    position: absolute;
    bottom: 50%;
    left: 0;
    width: 100%;
    height: 101px;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.ctaYellowon_sec .wave_container svg.wave_svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    fill: #F5C400;
    animation: tap_wave_anim 6s linear infinite;
}

.case_sec {
    position: relative;
    padding: 80px 0 110px;
    background: linear-gradient(360deg, #F89F00 0%, #F5C400 100%);
    overflow: hidden;
}

.case_sec .flex_titleBox {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 50px;
}

.case_sec .flex_titleBox .inttls {
    position: relative;
}

.case_sec .flex_titleBox .inttls .titleTop_label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.case_sec .flex_titleBox .inttls .titleTop_label span {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffc71e;
    border: 3px solid #fff;
    animation: enroundbl 1.5s infinite;
}

.case_sec .flex_titleBox .inttls .titleTop_label p {
    color: #fff;
    font-size: 12px;
    letter-spacing: .04em;
    line-height: 1;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}

.case_sec .flex_titleBox .inttls h2 {
    margin: 0;
    color: #ffffff;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .04em;
    width: fit-content;
}

.case_sec .flex_titleBox .moreBtns {}

.case_sec .flex_titleBox .moreBtns a {
    background: #fff;
    color: #FFBF00;
}

.case_sec .flex_titleBox .moreBtns a .icons {
    background: #FFBF00;
}

.case_sec .flex_titleBox .moreBtns a .icons::before {
    color: #fff;
}

.case_sec .flex_titleBox .moreBtns a .icons::after {
    color: #fff;
}
.case_sec .case_row {
    position: relative;
    width: calc(100% + 20px);
    transform: translate(-10px, 0px);}

.case_sec .case_row ul {
    padding: 0;
    margin: 0;
}

.case_sec .case_row ul .slick-list {
    overflow: visible;
}

.case_sec .case_row ul .slick-list .slick-track {}

.case_sec .case_row ul .slick-list .slick-track li.slick-slide {
    padding: 0 10px;
}
.case_sec .case_row ul .slick-list .slick-track li.slick-slide a {
    display: flex;
    flex-direction: column;
}
.case_sec .case_row ul .slick-list .slick-track li.slick-slide a .ttbox {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-top: -60px;
    z-index: 1;
    width: calc(100% - 40px);
    transform: translate(20px, 0px);
}

.case_sec .case_row ul .slick-list .slick-track li.slick-slide a .imgs_icatch {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding-bottom: 73.7%;
}

.case_sec .case_row ul .slick-list .slick-track li.slick-slide a .imgs_icatch img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: .3s;
}
.case_sec .case_row ul .slick-list .slick-track li.slick-slide a .ttbox .tags_name span.tag_item {
    font-size: 12px;
    color: #333;
    line-height: 1;
    letter-spacing: .04em;
    margin-bottom: 10px;
    display: block;
    width: fit-content;
    font-weight: 400;
}

.case_sec .case_row ul .slick-list .slick-track li.slick-slide a .ttbox .title {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    font-weight: bold;
    letter-spacing: .04em;
}

.case_sec .case_row ul .slick-list .slick-track li.slick-slide a .ttbox .tags_name span.tag_item::before {
  content: "#";
}
.case_sec .case_row ul .slick-list .slick-track li.slick-slide a:hover .imgs_icatch img {
    transform: scale(1.05);
}
.case_sec .case_row .arrow_box02 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0 0;
    position: relative;
    margin-top: 20px;
}

.case_sec .case_row .arrow_box02 .slide-arrow.prev-arrow.slick-arrow {
    transform: rotate(180deg);
}

.case_sec .case_row .arrow_box02 .slide-arrow.next-arrow.slick-arrow {}

.case_sec .case_row .arrow_box02 .slide-arrow.next-arrow.slick-arrow, .case_sec .case_row .arrow_box02 .slide-arrow.prev-arrow.slick-arrow {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all .3s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid #fff;
    /* background: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: .3s;
}

.case_sec .case_row .arrow_box02 .slide-arrow.next-arrow.slick-arrow::before, .case_sec .case_row .arrow_box02 .slide-arrow.prev-arrow.slick-arrow::before {
    position: absolute;
    top: 50%;
    margin: auto;
    content: "\f105";
    font-family: 'Font Awesome 6 Free';
    font-weight: bold;
    transform: translate(0%, -50%);
    font-size: 10px;
    line-height: 1;
    color: #fff;
}

.column_sec {
    position: relative;
    padding: 160px 0 80px;
}

.column_sec .in_title {
    text-align: center;
    margin-bottom: 50px;
}

.column_sec .in_title p {
    color: #FFBF00;
    font-size: 12px;
    letter-spacing: .04em;
    line-height: 1;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    margin-bottom: 10px;
}

.column_sec .in_title h2 {
    margin: 0;
    color: #ffb400;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .04em;
    background: linear-gradient(90deg, #F89F00 0%, #f5c400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: fit-content;
    margin: 0 auto;
}

.column_sec .column_row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0 , 1fr));
    gap: 20px;
}

.column_sec .column_row .column_col {}

.column_sec .column_row .column_col a {
    border: 1px solid #efefef;
    padding: 0px 20px 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.column_sec .column_row .column_col a .img_box {
    position: relative;
    overflow: hidden;
    padding-bottom: 68.6%;
    width: calc(100% + 40px);
    transform: translate(-20px, 0px);
    margin-bottom: 20px;
}

.column_sec .column_row .column_col a .img_box img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: .3s;
}

.column_sec .column_row .column_col a:hover .img_box img {
    transform: scale(1.05);
}

.column_sec .column_row .column_col a .tags_name {
    display: flex;
    margin-bottom: 14px;
}

.column_sec .column_row .column_col a .tags_name span.tag_item {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    letter-spacing: .04em;
    line-height: 1;
}

.column_sec .column_row .column_col a .tags_name span.tag_item::before {
    content: "#";
}

.column_sec .column_row .column_col a .tags_name .time {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: .04em;
    color: #666666;
}

.column_sec .column_row .column_col a .time {
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 10px;
    letter-spacing: .04em;
}

.column_sec .column_row .column_col a .text, .column_sec .column_row .column_col a .text p {
    color: #333;
    font-size: 16px;
    letter-spacing: .04em;
    line-height: 1.7;
    font-weight: bold;
}

.column_sec .moreBtns a {
    margin: 0 auto;
    margin-top: 50px;
}

.news_sec {
    background: #F9F9F9;
    position: relative;
    padding: 80px 0 80px;
}

.news_sec .in_title {
    text-align: center;
    margin-bottom: 50px;
}

.news_sec .in_title p {
    color: #FFBF00;
    font-size: 12px;
    letter-spacing: .04em;
    line-height: 1;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    margin-bottom: 10px;
}

.news_sec .in_title h2 {
    margin: 0;
    color: #ffb400;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .04em;
    background: linear-gradient(90deg, #F89F00 0%, #f5c400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: fit-content;
    margin: 0 auto;
}

.news_sec .news_row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news_sec .news_row .news_col {}

.news_sec .news_row .news_col a {
    padding: 30px 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    color: #333;
    position: relative;
    transition: .3s;
}
.news_sec .news_row .news_col a:hover {
    opacity: .7;
}

.news_sec .news_row .news_col a .time {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #666666;
    letter-spacing: .04em;
    margin-bottom: 10px;
}

.news_sec .news_row .news_col a .text, .news_sec .news_row .news_col a .text p {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: .04em;
}

.news_sec .moreBtns {}

.news_sec .moreBtns a {
    margin: 0 auto;
    margin-top: 50px;
}

.news_sec .news_row .news_col a .arrowscheck {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0px, -50%);
    background: #F9F9F9;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.news_sec .news_row .news_col a .arrowscheck::after {
    content: "";
    content: "\f105";
    font-family: 'FontAwesome';
    font-weight: bold;
    color: #000000;
    line-height: 1;
    font-size: 10px;
    transform: translate(-3px, 0px);
    transition: .3s;
}

.news_sec .news_row .news_col a .arrowscheck::before {}

.news_sec .news_row .news_col a .arrowscheck::before {}

.news_sec .news_row .news_col a .arrowscheck::before {
    content: "";
    content: "\f105";
    font-family: 'FontAwesome';
    font-weight: bold;
    color: #fff;
    line-height: 1;
    font-size: 10px;
    transform: translate(-20px, 0px);
    transition: .3s;
}

.news_sec .news_row .news_col a:hover .arrowscheck::before {
    transform: translate(4px, 0px);
    color: #000;
}

.news_sec .news_row .news_col a:hover .arrowscheck::after {
    transform: translate(14px, 0px);
    opacity: 0;
}

.footerfixed_row .cta_box {}

.footerfixed_row .cta_box div#hs_cos_wrapper_FixeBtns02 {
    display: flex;
    gap: 10px;
}

.footerfixed_row .cta_box div#hs_cos_wrapper_FixeBtns02 .btns.downloads a {
    background: #f8b537;
    color: #fff;
    border: 1px solid #f8b537;
}

.footerfixed_row .cta_box div#hs_cos_wrapper_FixeBtns02 .btns.contacts a {
    background: #000;
    border: 1px solid #000;
    color: #fff;
}

.footerfixed_row .cta_box div#hs_cos_wrapper_FixeBtns02 .btns a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 50px;
    padding: 10px 20px;
    border-radius: 999px;
    color: #1A1A1A;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
    transition: .3s;
    width: 200px;
    font-size: 16px;
    line-height: 1;
    box-shadow: 0 0px 20px rgb(0 0 0 / 15%);
}

.footerfixed_row .cta_box div#hs_cos_wrapper_FixeBtns02 .btns.downloads a::before {
    content: "";
    aspect-ratio: 22/17;
    width: 22px;
    background-color: #ffffff;
    mask: url("https://22565638.fs1.hubspotusercontent-na1.net/hubfs/22565638/raw_assets/public/taptoyou_SITE_2026/images/tapSiteParts_01.svg");
    transition: .3s;
    background: #fff;
    transition: .3s;
}

.footerfixed_row .cta_box div#hs_cos_wrapper_FixeBtns02 .btns.contacts a::before {
    content: "";
    content: "\f0e0";
    font-family: 'Font Awesome 6 Free';
    font-weight: 700;
    font-size: 22px;
    height: 21px;
    color: #fff;
    transition: .3s;
}

.footerfixed_row .cta_box div#hs_cos_wrapper_FixeBtns02 .btns.downloads a:hover {
    background: #fff;
    color: #f8b537;
}
.footerfixed_row .cta_box div#hs_cos_wrapper_FixeBtns02 .btns.downloads a:hover::before {
    background: #f8b537;
}
.footerfixed_row .cta_box div#hs_cos_wrapper_FixeBtns02 .btns.contacts a:hover {
    background: #fff;
    color: #000000;
}
.footerfixed_row .cta_box div#hs_cos_wrapper_FixeBtns02 .btns.contacts a:hover::before {
    color: #000000;
}

.tap_monitor_wrap .yellow_section .slider_container .iconComent_box {
    position: absolute;
    display: flex;
    gap: 13px;
    left: 12.3%;
    z-index: 1;
    top: 120px;
}

.tap_monitor_wrap .yellow_section .slider_container .iconComent_box .cometext {
    background: #FBE7A9;
    font-size: 16px;
    color: #525252;
    font-weight: bold;
    letter-spacing: .04em;
    padding: 9px 20px;
    border-radius: 10px;
    height: fit-content;
    position: relative;
}

.tap_monitor_wrap .yellow_section .slider_container .iconComent_box .imgs {
    opacity: .9;
    margin-top: 20px;
}

.tap_monitor_wrap .yellow_section .slider_container .iconComent_box .cometext::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 7.5px solid transparent;
    border-right: 10px solid #FBE7A9;
    border-bottom: 7.5px solid transparent;
    position: absolute;
    left: 0;
    bottom: 7px;
    transform: translate(-100%, 0px);
}

.bubbles_layer02 {
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: calc(100% + 150px);
    pointer-events: none;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 50px, black 150px, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, transparent 50px, black 150px, black 100%);
}

.bubbles_layer02 .bubble {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    bottom: -50px;
    animation: tap_float_up infinite linear;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 191, 0, 0.2) 100%);
}
/* ---------------------------TOPページlast ---------------------------*/




















/*=====================================
*
*TOPページ(LP)
*
=======================================*/

/* 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: 500px;
    width: fit-content;
    border-radius: 100px;
    z-index: 99;
    /* background: #fff; */
    left: 50%;
    transform: translate(-50%, 0px);
    display: flex;
    /* padding: 10px 10px 10px 20px; */
    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;
}
/*=====================================
*
*page single arcive 他ページ
*
=======================================*/
.mv_pages {
    position: relative;
    display: flex;
    align-items: center;
    padding: 40px 20px;
    background: #F9F9F9;
    min-height: 280px;
}
.mv_pages h1.page-ttl {
    text-align: center;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.2;
}
.mv_pages p.h1_text {
    text-align: center;
    margin-top: 30px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: .04em;
    line-height: 1.5;
}
.body-container--form {
  background-color: #fff !important;
}


.typeCulsel_sec .typeCulsel_row .text_col .accordion_header {
    background-color: #FFF;
    padding: 0px 50px 0px 0px;
    transition: background .3s ease;
    cursor: pointer;
    position: relative;
}

.typeCulsel_sec .typeCulsel_row .text_col .accordion_header::before,
.typeCulsel_sec .typeCulsel_row .text_col .accordion_header::after{
    position: absolute;
    content: '';
    top: 0px;
    right: 10px;
    bottom: 0;
    width: 12px;
    height: 1px;
    margin: auto;
    background: #000000;
    z-index: 1;
}
.typeCulsel_sec .typeCulsel_row .text_col .accordion_header::after{
  transform:rotate(-90deg);
  transition:transform 0.3s;
}
.typeCulsel_sec .typeCulsel_row .text_col .accordion_header.active::after{transform:rotate(0deg);}

.typeCulsel_sec .typeCulsel_row .text_col .accordion_content {
    background-color: #FFF;
    padding: 0px 0px 0px 0px;
    display: none;
}

.typeCulsel_sec .typeCulsel_row .text_col .accordion_header span{
    position: relative;
    font-size: 14px;
    font-weight: 500;
}
.typeCulsel_sec .typeCulsel_row .text_col .accordion_content span{
    position: relative;
    font-size: 14px;
    font-weight: 400;
}



/* hover */
/* .typeCulsel_sec .typeCulsel_row .text_col .accordion_header:hover {
  background-color: #F2F2F2;
} */

.typeCulsel_sec {
    position: relative;
    padding-bottom: 80px;
}

.typeCulsel_sec .typeCulsel_row {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 80px;
}

.typeCulsel_sec .typeCulsel_row:last-of-type {
    margin-bottom: 0;
}

.typeCulsel_sec .typeCulsel_row .text_col {}

.typeCulsel_sec .typeCulsel_row .text_col .flextitles {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.typeCulsel_sec .typeCulsel_row .text_col .flextitles .num {
    font-size: 44px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1;
    letter-spacing: .04em;
    color: #FFBF00;
}

.typeCulsel_sec .typeCulsel_row .text_col .flextitles h2 {
    font-size: 34px;
    font-weight: bold;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-top: -6px;
}

.typeCulsel_sec .typeCulsel_row .text_col p.subtexts {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    letter-spacing: .04em;
    margin-bottom: 30px;
}

.typeCulsel_sec .typeCulsel_row .text_col .accordion {
    position: relative;
}

.typeCulsel_sec .typeCulsel_row .text_col .accordion .boxs {
    border-top: 1px solid #E5E5E5;
    position: relative;
    padding: 10px 0;
}

.typeCulsel_sec .typeCulsel_row .text_col .accordion .boxs::after {
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    background: #F2F2F2;
    top: 10px;
    right: 0;
    z-index: 0;
    border-radius: 5px;
}
.typeCulsel_sec .typeCulsel_row .text_col .accordion .boxs:last-of-type {
    border-bottom: 1px solid #E5E5E5;
}
.typeCulsel_sec .typeCulsel_row:last-of-type .text_col {
    order: 2;
}
.boxbildtypeMrit_sec {
    position: relative;
    background: #F9F9F9;
    padding: 80px 0;
}

.title_box02 {
    position: relative;
}

.title_box02　.flexicontext {}

.title_box02 .flexicontext {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.title_box02 .flexicontext p.ente {
    font-size: 12px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #FFBF00;
}

.title_box02 h2 {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: .04em;
    line-height: 1.2;
    color: #333;
}

.title_box02 p.tte {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    color: #333;
    letter-spacing: .04em;
    margin-top: 20px;
}

.boxbildtypeMrit_sec .title_box02 {
    margin-bottom: 90px;
}

.boxbildtypeMrit_sec .boxbildtypeMrit_row {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
}

.boxbildtypeMrit_sec .boxbildtypeMrit_row .boxbildtypeMrit_col {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    height: fit-content;
}

.boxbildtypeMrit_sec .boxbildtypeMrit_row .boxbildtypeMrit_col .boxbildtypeMrit_img {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    margin-bottom: 20px;
}

.boxbildtypeMrit_sec .boxbildtypeMrit_row .boxbildtypeMrit_col p.boxbildtypeMrit_text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: bold;
}

.boxbildtypeMrit_sec .boxbildtypeMrit_row .boxbildtypeMrit_col:nth-of-type(2) {
    margin-top: -100px;
}

.boxbildtypeMrit_sec .boxbildtypeMrit_row .boxbildtypeMrit_col:nth-of-type(3) {
    margin-top: -200px;
}
.typeCulsel_sec .typeCulsel_row .img_col {
    display: flex;
    height: fit-content;
    border-radius: 20px;
}
.typeCulsel_sec .typeCulsel_row .img_col img {
    object-fit: cover;
}
.body-container--page {
    margin: 0 auto;
    padding: 0 !important;
    padding-top: 80px !important;
}
.boxbildtypeMrit_sec .backimgicons {
    position: absolute;
    right: 20px;
    bottom: 0;
    display: flex;
}

.boxbildtypeMrit_sec .w126 {
    position: relative;
}

.boxbildtyperecommend_sec {
    position: relative;
    background: #F9F9F9;
    padding: 80px 0;
}

.boxbildtyperecommend_sec .boxbildtyperecommend_row {
    display: flex;
    gap: 40px;
}

.boxbildtyperecommend_sec .boxbildtyperecommend_row .text_col {
    width: 50%;
}

.boxbildtyperecommend_sec .boxbildtyperecommend_row .text_col .list_box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
}

.boxbildtyperecommend_sec .boxbildtyperecommend_row .text_col .list_box ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.boxbildtyperecommend_sec .boxbildtyperecommend_row .text_col .list_box ul li {
    list-style: none;
    display: flex;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: .04em;
}

.boxbildtyperecommend_sec .boxbildtyperecommend_row .text_col .list_box ul li::before {
    content: "・";
}

.boxbildtyperecommend_sec .boxbildtyperecommend_row .img_col {
    width: 50%;
    display: flex;
    height: fit-content;
}

.boxbildtyperecommend_sec .boxbildtyperecommend_row .text_col p.cometext {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: .04em;
    margin-top: 20px;
    text-indent: -1em;
    padding-left: 1em;
}

.boxbildtyperecommend_sec .cusmoreBtn {
    position: relative;
    width: fit-content;
    margin: 0 auto;
    margin-top: 50px;
}

.boxbildtyperecommend_sec .cusmoreBtn .slashtext {
    width: fit-content;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    display: flex;
    gap: 10px;
    align-items: center;
    letter-spacing: -0.06em;
    margin-bottom: 10px;
}

.boxbildtyperecommend_sec .cusmoreBtn .slashtext::before {
    content: "\\";
    font-size: 16px;
}

.boxbildtyperecommend_sec .cusmoreBtn .slashtext::after {
    content: "/";
    font-size: 16px;
  }

.boxbildtyperecommend_sec .cusmoreBtn a {
    background: #000;
    font-size: 16px;
    border: 1px solid #000;
    color: #fff;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    height: 45px;
    transition: .3s;
    margin: 0 auto;
}

.boxbildtyperecommend_sec .cusmoreBtn a:hover {
    background: #fff;
    color: #000;
}
.boxbildtypeMrit_sec.differensever {
    background: #fff;
}

.boxbildtypeMrit_sec.differensever .boxbildtypeMrit_row {}

.boxbildtypeMrit_sec.differensever .boxbildtypeMrit_row .boxbildtypeMrit_col {
    background: #F9F7F2;
}

.boxbildtyperecommend_sec.differensever {
    background: #fff;
}

.boxbildtyperecommend_sec.differensever .boxbildtyperecommend_row {}

.boxbildtyperecommend_sec.differensever .boxbildtyperecommend_row .text_col {}

.boxbildtyperecommend_sec.differensever .boxbildtyperecommend_row .text_col .list_box {
    background: #F9F7F2;
}
.TapDisplay_sec {
    position: relative;
    padding: 80px 0 80px;
}

.TapDisplay_sec .TapDisplay_row {
    background: #FFBF00;
    border-radius: 20px;
    padding: 80px 20px 110px;
}

.TapDisplay_sec .TapDisplay_row h2 {
    text-align: center;
    color: #fff;
    font-weight: 900;
    font-size: 34px;
    letter-spacing: .04em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.TapDisplay_sec .TapDisplay_row p.subtexts {
    font-size: 16px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    letter-spacing: .04em;
    line-height: 1.5;
    margin-bottom: 50px;
}

.TapDisplay_sec .TapDisplay_row .img_box {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}
.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con {}

.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box {
    background: rgb(255 255 255 / 95%);
    border-radius: 10px;
    position: absolute;
    padding: 20px;
    box-shadow: 0 0 10px rgb(0 0 0 / 5%);
    max-width: 260px;
}

.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box:nth-of-type(1) {
    top: 50px;
    left: -230px;
}

.TapDisplay_sec .TapDisplay_row .img_box .imgs {
    /* max-width: 650px; */
    /* margin: 0 auto; */
}

.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box .ttl {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.5;
    display: flex;
    gap: 10px;
    font-weight: 500;
}
.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box .ttl span {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffc71e;
    border: 3px solid #FFE28B;
    animation: enroundbl 1.5s infinite;
    margin-top: 5px;
}
.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box .tte {
    font-size: 14px;
    line-height: 1.5;
}

.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box:nth-of-type(2) {
    top: -20px;
    right: -150px;
}


.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box:nth-of-type(3) {
    bottom: 110px;
    left: -210px;
}

.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box:nth-of-type(4) {
    bottom: 150px;
    right: -130px;
}

.UsageImage_sec {
    background: #F9F9F9;
    padding: 80px 0;
}

.UsageImage_sec h2 {
    font-size: 34px;
    font-weight: 900;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 20px;
}

.UsageImage_sec p.subtexts {
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    margin: 0;
    line-height: 1.5;
    margin-bottom: 50px;
}

.UsageImage_sec .UsageImage_row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    counter-reset: my-counter;
}

.UsageImage_sec .UsageImage_row .white_box {
    background: #fff;
    border-radius: 20px;
    padding: 30px 130px 30px 30px;
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
    counter-increment: my-counter;
}

.UsageImage_sec .UsageImage_row .white_box .img_col {
    width: 25%;
    display: flex;
    overflow: hidden;
    border-radius: 20px;
}

.UsageImage_sec .UsageImage_row .white_box .text_col {
    width: 70%;
}

.UsageImage_sec .UsageImage_row .white_box .text_col h3 {
    font-size: 24px;
    color: #FFBF00;
    margin-bottom: 20px;
    line-height: 1.2;
}

.UsageImage_sec .UsageImage_row .white_box .text_col p {
    font-size: 16px;
    line-height: 1.5;
}

.UsageImage_sec .UsageImage_row .white_box .nums {
    position: absolute;
    right: 30px;
    top: 50%;
    background: #FFBF00;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transform: translate(0px, -50%);
    z-index: 2;
}

.UsageImage_sec .UsageImage_row .white_box .nums::after {
    content: counter(my-counter, decimal-leading-zero);
    font-size: 30px;
    color: #fff;
    font-weight: 900;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    letter-spacing: .04em;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    position: relative;
    transform: translate(0px, -50%);
}
.UsageImage_sec .UsageImage_row .white_box:not(:last-of-type)::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    right: 70px;
    top: 50%;
    z-index: 1;
    border-left: 1px dashed #ffbf00;
}

.firstcontentTextimg_sec {
    position: relative;
    padding-bottom: 120px;
    padding-top: 40px;
}
.firstcontentTextimg_sec .firstcontentTextimg_row p.subtexts {
    font-size: 16px;
    line-height: 2;
    font-weight: 500;
    border-radius: 10px;
    height: fit-content;
    margin-top: 40px;
}
.firstcontentTextimg_sec .firstcontentTextimg_row {
    display: flex;
}
.firstcontentTextimg_sec .firstcontentTextimg_row .img_box {
    width: 40%;
}
.kannrikinouimgtextrepeat_sec {
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.kannrikinouimgtextrepeat_sec .kannrikinouimgtextrepeat_row {
    display: flex;
    gap: 40px;
    align-items: center;
}

.kannrikinouimgtextrepeat_sec .kannrikinouimgtextrepeat_row .text_col {
    width: 50%;
    background: #F9F7F2;
    padding: 40px;
    /* width: 100vw; */
    /* margin-left: calc(50% - 50vw); */
    position: relative;
    z-index: 2;
    border-radius: 10px;
    transform: translate(80px, 0px);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 0px 15px rgba(0, 0, 0, .05);
}

.kannrikinouimgtextrepeat_sec .kannrikinouimgtextrepeat_row .img_box {
    width: 50%;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
}

.kannrikinouimgtextrepeat_sec .kannrikinouimgtextrepeat_row .text_col h2 {
    font-size: 30px;
    margin-bottom: 30px;
    margin: 0;
    color: #ffb400;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .04em;
    background: linear-gradient(90deg, #F89F00 0%, #f5c400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: fit-content;
    display: flex;
    margin-bottom: 30px;
}

.kannrikinouimgtextrepeat_sec .kannrikinouimgtextrepeat_row .text_col p.subtexts {
    font-size: 16px;
    line-height: 1.5;
}

.kannrikinouimgtextrepeat_sec .kannrikinouimgtextrepeat_row:nth-of-type(2n) {
    flex-direction: row-reverse;
}

.kannrikinouimgtextrepeat_sec .kannrikinouimgtextrepeat_row:not(:last-of-type) {
    margin-bottom: 50px;
}


.kannrikinouimgtextrepeat_sec .kannrikinouimgtextrepeat_row:nth-of-type(2n) .text_col {
    transform: translate(-80px, 0px);
}
.kannrikinouimgtextrepeat_sec .kannrikinouimgtextrepeat_row .text_col .flexlabel {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.kannrikinouimgtextrepeat_sec .kannrikinouimgtextrepeat_row .text_col .flexlabel span {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffc71e;
    border: 3px solid #FFE28B;
    animation: enroundbl 1.5s infinite;
}

.kannrikinouimgtextrepeat_sec .kannrikinouimgtextrepeat_row .text_col .flexlabel p {
    color: rgb(51, 51, 51);
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 1;
    font-family: Montserrat, sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    margin: 0px;
}
.DisplayPage_sec {
    background: #F9F9F9;
    padding: 80px 0;
}

.DisplayPage_sec h2 {
    font-size: 34px;
    font-weight: 900;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 20px;
}

.DisplayPage_sec p.subtexts {
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    margin: 0;
    line-height: 1.5;
    margin-bottom: 50px;
}

.DisplayPage_sec .DisplayPage_row {
    display: flex;
    gap: 40px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    align-items: center;
}

.DisplayPage_sec .DisplayPage_row:not(:last-of-type) {
    margin-bottom: 20px;
}

.DisplayPage_sec .DisplayPage_row .img_col {
    display: flex;
    width: 40%;
    overflow: hidden;
    border-radius: 10px;
}

.DisplayPage_sec .DisplayPage_row .text_col {
    width: 60%;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
}
.body-container--blog-index {
    padding: 80px 0px 80px !important;
}
article.case_page_row {
    position: relative;
}

article.case_page_row .in_row {
    position: relative;
}

article.case_page_row .in_row ul {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

article.case_page_row .in_row ul li {
    list-style: none;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #efefef;
}

article.case_page_row .in_row ul li .text_box {
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
}
article.case_page_row .in_row ul li .text_box p.tag_in {
    font-size: 14px;
}
article.case_page_row .in_row ul li .text_box .more_btn {
    margin-top: auto;
}
article.case_page_row .in_row ul li .text_box p.title_in {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

article.case_page_row .in_row ul li .text_box .more_btn {}

article.case_page_row .in_row ul li .text_box .more_btn a {
    background: #000;
    font-size: 14px;
    border: 1px solid #000;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    height: 45px;
    transition: .3s;
    /* margin: 0 auto; */
    margin-left: auto;
    margin-top: auto;
}
article.case_page_row .in_row ul li .text_box .more_btn a:hover {
    background: #fff;
    border: 1px solid #000;
    color: #000;
}

article.case_page_row .in_row ul li .img_box {
    display: flex;
}

article.case_page_row .in_row ul li .img_box a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.column_sec.addcolumn_page {
    padding: 0px 0 0px;
}
.news_sec.addnews_page {
    padding: 0;
    background: #fff;
}

.news_sec.addnews_page .news_row .news_col a {
    background: #f9f9f9;
}

.news_sec.addnews_page .news_row .news_col a .arrowscheck {
    background: #fff;
}
.pagination {
    margin-top: 50px;
}
.blogcase_con .blogcase_sec .share_sns_row .sns-share-links {
    display: grid;
}

.sns-share-links {
    display: grid;
    gap: 10px !important;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
}

.sns-share-links a.js-sns-link {
    height: 60px;
    display: flex;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
    background: #f9f9f9;
}

.sns-share-links a.js-sns-link img {
    position: relative;
}

.sns-share-links a.js-sns-link:nth-of-type(1) img {
    aspect-ratio: 21.53 / 22;
    width: 29.53px;
}

.sns-share-links a.js-sns-link:nth-of-type(2) img {
    aspect-ratio: 32 / 30.67;
    width: 32px;
}

.sns-share-links a.js-sns-link:nth-of-type(3) img {
    aspect-ratio: 15.58 / 30;
    width: 15.58px;
}

.sns-share-links a.js-sns-link:hover {
    opacity: .7;
}
.blogcase_con {
    margin-top: 60px;
    margin-bottom: 80px;
}
.blogcase_con .flex_con_in {}

.blogcase_con .flex_con_in .blogcase_sec {}

.blogcase_con .flex_con_in .blogcase_sec .icatchImg_box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    margin: 30px 0;
}
.blogcase_con .flex_con_in .blogcase_sec h1 {
    font-size: 38px;
    margin: 10px 0 30px;
    line-height: 1.2;
}

.article-index {
    margin: 0 0 50px;
    padding: 30px 30px 30px;
    border: 1px solid #efefef;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 3px solid #f8b537;
    display: none;
}

.article-index.index_blocks {
    display: block;
}

.article-index .article-index__title {
    font-size: 16px;
    line-height: 1;
    font-weight: bold;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.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;
}
#hs_cos_wrapper_目次_自動出力 .article-index .article-index__title::before {
    display: none;
}
dl.article-index.automatic.index_blocks.closed dd {
    display: none;
}
.article-index .article-index__title div#tocToggle {
    cursor: pointer;
}
.article-index dd .article-index__list li a::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #f8b537;
    min-width: 16px;
    margin-top: 4px;
}
#hs_cos_wrapper_目次_自動出力 .article-index dd .article-index__list li a {
    background: initial !important;
    display: flex;
    gap: 10px;
}
.article-index dd .article-index__list li a {
    display: block;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 10px 10px 0px;
    border-bottom: 1px dotted #AEAEAE;
    background-size: 18px 18px;
    transition: .3s;
}
.blogcase_con .flex_con_in .blogcase_sec .first_top_text p {
    font-size: 16px;
    line-height: 1.7;
}
.blogcase_con .flex_con_in .blogcase_sec .content_in {}

.blogcase_con .flex_con_in .blogcase_sec .content_in span#hs_cos_wrapper_post_body {}

.blogcase_con .flex_con_in .blogcase_sec .content_in span#hs_cos_wrapper_post_body h2 {
    margin-top: 50px;
    margin-bottom: 30px;
    /* background: #F9F7F2; */
    padding: 15px 0px 15px;
    font-size: 30px;
    border-bottom: 2px solid #f8b537;
    line-height: 1.2;
}

.blogcase_con .flex_con_in .blogcase_sec .content_in span#hs_cos_wrapper_post_body p, .blogcase_con .flex_con_in .blogcase_sec .content_in span#hs_cos_wrapper_post_body p span {
    font-size: 16px !important;
    margin: 30px 0;
}

.blogcase_con .flex_con_in .blogcase_sec .content_in span#hs_cos_wrapper_post_body h3 {
    display: flex;
    font-size: 22px;
    gap: 10px;
    margin: 30px 0;
}

.blogcase_con .flex_con_in .blogcase_sec .content_in span#hs_cos_wrapper_post_body h3::before {
    content: "";
    width: 3px;
    height: 34px;
    background: #f8b537;
}

.blogcase_con .flex_con_in .blogcase_sec .content_in span#hs_cos_wrapper_post_body h4 {
    position: relative;
    display: flex;
    gap: 10px;
    margin: 30px 0;
    font-size: 18px;
}

.blogcase_con .flex_con_in .blogcase_sec .content_in span#hs_cos_wrapper_post_body h4::before {
    content: "";
    width: 20px;
    height: 2px;
    background: #f8b537;
    margin-top: 14px;
}
.RelatedArticleTitle_row {
    /* font-size: 30px; */
    margin-top: 80px;
    margin-bottom: 30px;
}

.RelatedArticleTitle_row h2 {
    font-size: 30px;
    background: #f9f9f9;
    padding: 11px 20px 15px;
    line-height: 1.2;
}

article.list_page_row {
    position: relative;
}

article.list_page_row .w110 {
    padding: 0;
}

article.list_page_row .w110 .in_row {}

article.list_page_row .w110 .in_row ul {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin: 0;
}

article.list_page_row .w110 .in_row ul li {
    list-style: none;
}

article.list_page_row .w110 .in_row ul li .text_box {}

article.list_page_row .w110 .in_row ul li .text_box p.tag_in {}

article.list_page_row .w110 .in_row ul li .text_box p.tag_in a {
    color: #333;
    pointer-events: none;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    letter-spacing: .04em;
    line-height: 1;
    transition: .3s;
}

article.list_page_row .w110 .in_row ul li .text_box p.title_in {}

article.list_page_row .w110 .in_row ul li .text_box p.title_inp.title_in {}

article.list_page_row .w110 .in_row ul li .text_box p.title_in a {
    color: #333;
    font-size: 16px;
    letter-spacing: .04em;
    line-height: 1.7;
    font-weight: bold;
    transition: .3s;
}

article.list_page_row .w110 .in_row ul li .img_box {}

article.list_page_row .w110 .in_row ul li .img_box a {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    margin-bottom: 6px;
}

article.list_page_row .w110 .in_row ul li .img_box a img {
    /* transform: scale(1.5); */
    transition: .3s;
}

article.list_page_row .w110 .in_row ul li .img_box a:hover img {
    transform: scale(1.05);
}

article.list_page_row .w110 .in_row ul li .text_box p.tag_in a:hover {
    opacity: .7;
}

article.list_page_row .w110 .in_row ul li .text_box p.title_in a:hover {
    opacity: .7;
}
#hs-button_widget_1769149432324 {
    border-radius: 100px;
    min-width: 200px;
    text-align: center;
}
.daysetting {
    font-weight: 500;
    color: #666;
    margin-bottom: 0px;
    margin-top: 0px;
}
article.case_page_row .in_row ul li .text_box p.case_card_description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}
article.case_page_row .in_row ul li a {
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: #333;
    transition: .3s;
    height: 100%;
}
article.case_page_row .in_row ul li .img_box img {
    object-fit: cover;
}
article.case_page_row .in_row ul li a:hover {
    opacity: .7;
}
article.case_page_row .in_row ul li .text_box .more_btn {
    margin-left: auto;
    font-size: 14px;
    position: relative;
    padding-right: 40px;
}

article.case_page_row .in_row ul li .text_box .more_btn::before {
    content: "";
    position: absolute;
    right: 0;
    background: #FFBF00;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translate(0px, -50%);
}

article.case_page_row .in_row ul li .text_box .more_btn::after {
    content: "\f105";
    font-family: 'FontAwesome';
    font-weight: bold;
    color: #fff;
    line-height: 1;
    font-size: 10px;
    transform: translate(-3px, 0px);
    transition: .3s;
    position: absolute;
    right: 9px;
    top: 6px;
}
.privacy_content_row {
    position: relative;
    padding-bottom: 80px;
    margin-top: -50px;
}

.privacy_content_row .incontent {}

.privacy_content_row .incontent h2 {
    margin-top: 50px;
    margin-bottom: 30px;
    background: #f9f9f9;
    padding: 15px 20px 15px;
    font-size: 30px;
    border-left: 2px solid #f8b537;
    line-height: 1.2;
    border-radius: 10px;
}

.privacy_content_row .incontent p {
    font-size: 16px !important;
    margin: 30px 0;
    line-height: 1.7;
}

.privacy_content_row .incontent h3 {
    display: flex;
    font-size: 22px;
    gap: 10px;
    margin: 40px 0 30px;
    border-bottom: 1px solid #f8b537;
    padding-bottom: 15px;
    font-weight: 500;
}

.privacy_content_row .incontent h3::before {
    width: 3px;
    height: 34px;
    background: #f8b537;
}

.companysTable_row {
    position: relative;
    padding: 0 20px;
    padding-bottom: 80px;
}
.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;
    background: #fff;
    padding: 30px 0px;
    border-bottom: 1px solid #e7e7e7;
}
.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;
    padding-left: 0 !important;
}
.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;
}
.companysTable_row .companysTable_box table tr:first-of-type {
    border-top: 1px solid #e7e7e7;
}
.companysTable_row .w100 {
    padding: 0 !important;
}
.footer_menu02 {}

footer.footer_sec .footer_menu02 ul.menu__wrapper.no-list li.menu__item.menu__item--depth-1.hs-skip-lang-url-rewrite a.menu__link {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    padding: 0;
      transition: .3s;
}
footer.footer_sec .footer_menu02 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_menu02 ul.menu__wrapper.no-list li.menu__item.menu__item--depth-1.hs-skip-lang-url-rewrite {
    padding: 0;
    /* margin-left: 20px; */
    /* min-width: 160px; */
    width: fit-content;
}

footer.footer_sec .footer_menu02 ul.menu__wrapper {
    justify-content: center;
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.tap_monitor_wrap .tap_wrapper .pulse_btn::before {
    content: "";
}

.tap_monitor_wrap .tap_wrapper .pulse_btn::after {
    content: "";
    transform: rotate(-90deg);
    transition: transform 0.3s;
}

.tap_monitor_wrap .tap_wrapper .pulse_btn::before, .tap_monitor_wrap .tap_wrapper .pulse_btn::after {
    position: absolute;
    content: '';
    top: 0px;
    left: 14px;
    bottom: 0;
    width: 12px;
    height: 2px;
    margin: auto;
    background: #ffffff;
    z-index: 1;
    /* transform: translate(-50%, -50%); */
}

.tap_monitor_wrap .tap_wrapper .pulse_btn:hover::after {
    transform: rotate(0deg);
}
.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box::before {
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border: 1px solid #fff;
    left: -5px;
    top: -5px;
    position: absolute;
    border-radius: 12px;
}
.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box .callout_line {
  position: absolute;
  background: #fff;
}
.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box:nth-of-type(1) .callout_line {
    width: 50px;
    transform: rotate(25deg);
    left: 100%;
    top: 30px;
    height: 2px;
    transform-origin: left top;
}
.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box:nth-of-type(2) .callout_line {
    width: 50px;
    transform: rotate(125deg);
    left: 0%;
    top: 100px;
    height: 2px;
    transform-origin: left top;
}
.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box:nth-of-type(3) .callout_line {
    width: 59px;
    transform: rotate(316deg);
    left: 76%;
    top: 0px;
    height: 2px;
    transform-origin: left top;
}
.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box:nth-of-type(4) .callout_line {
    width: 128px;
    transform: rotate(231deg);
    left: 26%;
    top: 0px;
    height: 2px;
    transform-origin: left top;
}
.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box .callout_line::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #ffc71e;
    border: 3px solid #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
}
.hs-content-id-217766891320 .cta_box, .hs-content-id-217766947148 .cta_box{
    display: none;
}
/* ---------------------------他ページ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;
  }
  header .header_content .menu_con nav.menu.menu--desktop a.menu__link {
    font-size: 14px;
    padding: 10px 10px;
  }
  .TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box:nth-of-type(1) {
    top: -20px;
    left: -150px;
}
  .TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box:nth-of-type(3) {
    bottom: 110px;
    left: -150px;
}
  .TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box:nth-of-type(3)::after {
    top: -72px;
    right: 118px;
}
}


/*==========================================================================
*
*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;
  } */
  
  .footerfixed_row .cta_box div#hs_cos_wrapper_FixeBtns02 .btns.contacts a::before {
    font-size: 18px;
    height: 16px;
}
  .footerfixed_row .cta_box div#hs_cos_wrapper_FixeBtns02 .btns.downloads a::before {
    width: 18px;
}
  .footerfixed_row {
    bottom: 10px;
}
  .footerfixed_row .cta_box div#hs_cos_wrapper_FixeBtns02 .btns a {
    min-height: 40px;
    width: 160px;
    font-size: 14px;
}
  header .header_content .cta_box .RequestCatalog01 a {
    margin: 0 auto;
    margin-top: 30px;
    width: 100%;
  }
  .body-container-wrapper {
    padding-top: 60px !important;
  }
  header .header_content .cta_box .loginbtns a {
    margin-left: 0px;
    margin-top: 10px;
    background: #fff;
    width: 100%;
}
}

@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;
  }
  header .header_content .menu_con .cta_box.sp_tb .loginbtns a {
    margin: 0 auto;
    margin-top: 10px !important;
    border: 1px solid #000;
}
.tap_monitor_wrap .yellow_section .wave_container {
    height: 50px;
    top: -50px;
}


.salesType_sec .salesType_cardList .salesType_card h3 {
    font-size: 17px;
}

.salesType_sec .salesType_cardList .salesType_card .salesType_text p {
    font-size: 12px;
}

.variousDrinks_sec .variousDrinks_list {
    gap: 10px;
}

.controlPanel_sec .controlPanel_row .listpctte ul li {
    font-size: 15px;
}

.controlPanel_sec .controlPanel_row .listpctte {
    padding: 10px 30px;
    top: 0%;
}
.tap_monitor_wrap .yellow_section .wave_container {
    height: 50px;
    top: -50px;
}

.tap_monitor_wrap .hero_section {
    margin-bottom: 0;
}

.salesType_sec .salesType_cardList .salesType_card h3 {
    font-size: 17px;
}

.salesType_sec .salesType_cardList .salesType_card .salesType_text p {
    font-size: 12px;
}

.variousDrinks_sec .variousDrinks_list {
    gap: 10px;
}

.controlPanel_sec .controlPanel_row .listpctte ul li {
    font-size: 15px;
}

.controlPanel_sec .controlPanel_row .listpctte {
    padding: 10px 30px;
    top: 0%;
}

.ctaYellowon_sec .ctaYellowon_row {
    gap: 20px;
    padding: 60px 40px;
}

.ctaYellowon_sec .ctaYellowon_row .btns_col .btns a {
    padding: 60px 30px;
    gap: 20px;
}

.ctaYellowon_sec .ctaYellowon_row .btns_col .btns a .ttbox .names {
    font-size: 20px;
}

.ctaYellowon_sec .ctaYellowon_row .btns_col .btns a .imgss_in {
    min-width: 60px;
    width: 60px;
}

.ctaYellowon_sec .ctaYellowon_row .texts_col h2 {
    font-size: 28px;
}

.case_sec .case_row ul .slick-list .slick-track li.slick-slide a .ttbox {
    width: calc(100% - 20px);
    transform: translate(10px, 0px);
    padding: 20px;
    border-radius: 10px;
}

.case_sec .case_row ul .slick-list .slick-track li.slick-slide a .imgs_icatch {
    border-radius: 10px;
}

.column_sec .column_row .column_col a {
    padding: 0 20px 20px;
}
.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box:nth-of-type(1) {
    left: -20px;
    top: -20px;
}

.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box:nth-of-type(4) {
    bottom: 217px;
    right: -20px;
}

.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box:nth-of-type(3) {
    bottom: 110px;
    left: -20px;
}

.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box:nth-of-type(2) {
    right: -20px;
    top: -30px;
    z-index: 1;
}

.typeCulsel_sec .typeCulsel_row .text_col .flextitles h2 {
    font-size: 30px;
}

.typeCulsel_sec .typeCulsel_row .text_col .flextitles .num {
    font-size: 36px;
}
.kannrikinouimgtextrepeat_sec .kannrikinouimgtextrepeat_row:nth-of-type(2n) .text_col {
    transform: translate(0px, 0px);
}
.kannrikinouimgtextrepeat_sec .kannrikinouimgtextrepeat_row .text_col {
    transform: translate(0px, 0px);
}
.firstcontentTextimg_sec .firstcontentTextimg_row {
    flex-direction: column;
}
.firstcontentTextimg_sec .firstcontentTextimg_row p.subtexts {
    margin-top: 20px;
}
.DisplayPage_sec .DisplayPage_row .text_col {
    font-size: 16px;
}
article.case_page_row .in_row ul li .text_box p.title_in {
    font-size: 16px;
}
  .TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box:nth-of-type(4) .callout_line {
    width: 48px;
    left: 50%;
}

.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box:nth-of-type(2) .callout_line {
    top: initial;
    bottom: 0;
    left: 51%;
}

.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box:nth-of-type(3) .callout_line {
    left: 7%;
}
  /* ---------------------------タブレット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: 70px;
  }
  footer.footer_sec .footer__logo {
    margin-bottom: 30px;
  }
  footer.footer_sec .footer_menu {
    padding-bottom: 30px;
  }
  .Selectableinstallation_sec .flex_row {
    flex-direction: column;
  }
  .scroll_down:before {
    right: 10px;
  }
  .scroll_down:after {
    right: 7px;
  }
  .scroll_down .tte {
    right: 3px;
  }
  .mv_pages h1.page-ttl {
    font-size: 28px;
  }
  .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;
  }
  .mv_sec .mv_title h1 {
/*     font-size: 24px; */
    font-size: 6.6vw;
}
.tap_monitor_wrap .yellow_section .wave_container {
    height: 20px;
    top: -19px;
}

.tap_monitor_wrap .hero_section {
    margin-bottom: 0px;
  aspect-ratio: 1440 / 660;
    background-position: 60% 0px !important;
}

.tap_monitor_wrap .yellow_section .watermark_text {
    font-size: 40px;
}

.tap_monitor_wrap .yellow_section .slider_container {
    padding: 80px 20px 60px;
}

.tap_monitor_wrap .yellow_section .slider_container .iconComent_box {
    top: 60px;
    left: 5%;
}

.tap_monitor_wrap .yellow_section .slider_container .iconComent_box .imgs {
    width: 40px;
    margin-top: 10px;
}

.tap_monitor_wrap .yellow_section .slider_container .iconComent_box .cometext {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
}
.tap_monitor_wrap .tap_wrapper {
    width: 35px;
    height: 35px;
}
.tap_monitor_wrap .tap_wrapper .pulse_btn {
    font-size: 12px;
}
.selectType_sec .selectType_en {
    font-size: 40px;
    top: 60px;
}

.selectType_sec .selectType_headingArea .selectType_titleBox {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.selectType_sec .selectType_headingArea .selectType_titleBox h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.selectType_sec .selectType_headingArea .selectType_titleBox .moreBtns {
    margin: 0;
    /* width: 100%; */
}

.moreBtns a {
    font-size: 14px;
    width: 200px;
}

.selectType_sec .selectType_grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
}

.selectType_sec {
    padding: 80px 0 80px;
}

.selectType_sec .selectType_grid .selectType_card .selectType_imgBox .selectType_textBox h3 {
    font-size: 18px;
}

.selectType_sec .selectType_grid .selectType_card .selectType_imgBox .selectType_textBox {
    position: relative;
    padding: 20px 0 0;
    justify-content: flex-start;
}

.selectType_sec .selectType_grid .selectType_card .selectType_imgBox {
    aspect-ratio: initial;
}

.consultation_sec .consultation_ctaList {
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.consultation_sec .consultation_text {
    margin-bottom: 30px;
}

.consultation_sec .consultation_btn {
    font-size: 16px;
    min-width: 70px;
    height: 70px;
}

.consultation_sec .consultation_title h2, .consultation_sec .consultation_title p {
    font-size: 26px;
}
.introMerit_sec {
    padding: 80px 0 40px;
}

.introMerit_sec .introMerit_bgText {
    font-size: 40px;
    top: 60px;
}

.introMerit_sec .introMerit_headingArea h2 {
    font-size: 26px;
    /* margin-bottom: 10px; */
}

.introMerit_sec .introMerit_visual .introMerit_card {
    position: relative;
    top: initial;
    left: initial;
    right: initial;
    bottom: initial;
    margin-top: 20px;
    width: 100%;
    padding: 30px 20px;
}

.introMerit_sec .introMerit_visual {
    flex-direction: column;
}

.introMerit_sec .introMerit_visual .introMerit_card .introMerit_cardTitle h3 {
    font-size: 16px;
    margin-top: 2px;
}

.salesType_sec {
    padding: 40px 0 40px;
}

.salesType_sec .salesType_headingArea h2 {
    font-size: 26px;
}

.salesType_sec .salesType_headingArea {
    margin-bottom: 30px;
}

.salesType_sec .salesType_cardList {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.salesType_sec .salesType_cardList .salesType_card h3 {
    font-size: 16px;
}

.variousDrinks_sec .variousDrinks_headingArea h2 {
    font-size: 26px;
}

.variousDrinks_sec .variousDrinks_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.variousDrinks_sec .variousDrinks_headingArea {
    margin: 0 auto 30px;
}

.variousDrinks_sec {
    padding: 40px 0px 80px;
}
.controlPanel_sec .flex_titleBox {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.controlPanel_sec .flex_titleBox .inttls h2 {
    font-size: 26px;
}

.controlPanel_sec .controlPanel_row .listpctte {
    position: relative;
    padding: 0px 20px;
}

.controlPanel_sec .controlPanel_row {
    flex-direction: column-reverse;
    gap: 30px;
}

.controlPanel_sec .controlPanel_row .listpctte ul li {
    font-size: 16px;
    gap: 5px;
}

.controlPanel_sec .controlPanel_row .listpctte ul li i.fa-regular.fa-circle-check {
    margin-top: 5px;
}

.controlPanel_sec .controlPanel_row .imgs_col {
    width: 100%;
}
.location_sec .location_headingArea h2 {
    font-size: 26px;
}

.location_sec .location_headingArea {
    margin-bottom: 10px;
}

.location_sec .location_card h3 {
    font-size: 14px;
    line-height: 1.5;
}
.location_sec .location_sliderOuter .arrow_box {
    position: relative;
    transform: initial;
    right: initial;
    top: initial;
    margin-bottom: 10px;
}
.ctaYellowon_sec .ctaYellowon_row {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
}

.ctaYellowon_sec .ctaYellowon_row .texts_col {
    width: 100%;
}

.ctaYellowon_sec .ctaYellowon_row .texts_col h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

.ctaYellowon_sec .ctaYellowon_row .btns_col {
    width: 100%;
}

.ctaYellowon_sec .ctaYellowon_row .btns_col .btns a .ttbox .names {
    font-size: 18px;
    margin-bottom: 4px;
}

.ctaYellowon_sec .ctaYellowon_row .btns_col .btns a {
    padding: 40px 20px 60px;
    gap: 20px;
}

.ctaYellowon_sec .ctaYellowon_row .btns_col .btns a .imgss_in {
    width: 60px;
    min-width: 60px;
}

.ctaYellowon_sec .ctaYellowon_row .texts_col .icons_box {
    margin-bottom: 10px;
}
.ctaYellowon_sec .wave_container {
    height: 20px;
}
.ctaYellowon_sec {
    padding-bottom: 40px;
    padding-top: 40px;
}
.location_sec {
    padding: 80px 0 40px;
}
.case_sec {
    padding: 40px 0 80px;
}

.case_sec .flex_titleBox .inttls h2 {
    font-size: 26px;
}

.case_sec .flex_titleBox {
    margin-bottom: 30px;
}
.case_sec .flex_titleBox .inttls .titleTop_label {
    margin-bottom: 2px;
}
.case_sec .case_row ul .slick-list .slick-track li.slick-slide a .ttbox .title {
    font-size: 14px;
}

.case_sec .case_row ul .slick-list .slick-track li.slick-slide a .ttbox {
    padding: 20px;
    margin-top: -40px;
    border-radius: 10px;
}
.column_sec .in_title h2 {
    font-size: 26px;
}

.column_sec .in_title {
    margin-bottom: 30px;
}

.column_sec {
    padding: 80px 0 80px;
}

.column_sec .column_row {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.column_sec .column_row .column_col a {
    padding: 0px 20px 20px;
}

.column_sec .column_row .column_col a .tags_name span.tag_item {
    font-size: 12px;
}

.column_sec .column_row .column_col a .time {
    font-size: 12px;
}

.column_sec .column_row .column_col a .text, .column_sec .column_row .column_col a .text p {
    font-size: 14px;
}

.column_sec .moreBtns a {
    margin-top: 30px;
}
.news_sec .in_title h2 {
    font-size: 26px;
}

.news_sec .in_title {
    margin-bottom: 30px;
}

.news_sec .news_row .news_col a .text, .news_sec .news_row .news_col a .text p {
    font-size: 14px;
}

.news_sec .news_row .news_col a .time {
    font-size: 12px;
}

.news_sec .news_row .news_col a {
    padding-right: 60px;
}

.news_sec .moreBtns a {
    margin-top: 30px;
}
.mv_pages p.h1_text {
    margin-top: 20px;
    font-size: 14px;
}
.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box {
    position: relative;
    top: initial !important;
    left: initial !important;
    right: initial !important;
    bottom: initial !important;
    margin: 20px 0;
    max-width: initial;
}

.TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box::after {
    display: none;
}

.TapDisplay_sec .TapDisplay_row {
    padding: 30px 20px 30px;
}

.TapDisplay_sec .TapDisplay_row h2 {
    font-size: 26px;
}

.TapDisplay_sec .TapDisplay_row p.subtexts {
    font-size: 14px;
    margin-bottom: 30px;
}

.typeCulsel_sec .typeCulsel_row .text_col .flextitles h2 {
    font-size: 26px;
    line-height: 1.2;
}

.typeCulsel_sec .typeCulsel_row .text_col .flextitles {
    flex-direction: column;
    margin-bottom: 10px;
}

.typeCulsel_sec .typeCulsel_row .text_col .flextitles .num {
    font-size: 30px;
}

.typeCulsel_sec .typeCulsel_row {
    grid-template-columns: 1fr;
    gap: 20px;
}

.typeCulsel_sec .typeCulsel_row .img_col {
    order: 1;
}

.typeCulsel_sec .typeCulsel_row .text_col {
    order: 2;
}

.typeCulsel_sec .typeCulsel_row .text_col p.subtexts {
    margin-bottom: 20px;
}
.title_box02 h2 {
    font-size: 26px;
}

.title_box02 p.tte {
    font-size: 14px;
}

.boxbildtypeMrit_sec .boxbildtypeMrit_row {
    grid-template-columns: 1fr;
}

.boxbildtypeMrit_sec .boxbildtypeMrit_row .boxbildtypeMrit_col:nth-of-type(2) {
    margin: 0;
}

.boxbildtypeMrit_sec .boxbildtypeMrit_row .boxbildtypeMrit_col:nth-of-type(3) {
    margin: 0;
}

.boxbildtypeMrit_sec .title_box02 {
    margin-bottom: 30px;
}

.boxbildtypeMrit_sec .backimgicons {
    width: 60px;
    bottom: -40px;
}

.boxbildtypeMrit_sec {
    /* padding: 80px 0 80px; */
}

.boxbildtyperecommend_sec .boxbildtyperecommend_row {
    flex-direction: column-reverse;
    gap: 30px;
}

.boxbildtyperecommend_sec .boxbildtyperecommend_row .text_col {
    width: 100%;
}

.boxbildtyperecommend_sec .boxbildtyperecommend_row .img_col {
    width: 100%;
}

.boxbildtyperecommend_sec {
    padding-top: 0;
}

.boxbildtyperecommend_sec .boxbildtyperecommend_row .text_col .list_box ul li {
    font-size: 14px;
}

.boxbildtyperecommend_sec .boxbildtyperecommend_row .text_col .list_box {
    padding: 30px 20px;
}

.boxbildtyperecommend_sec .boxbildtyperecommend_row .text_col p.cometext {
    font-size: 12px;
}

.boxbildtypeMrit_sec .boxbildtypeMrit_row .boxbildtypeMrit_col p.boxbildtypeMrit_text {
    font-size: 14px;
}

.TapDisplay_sec {
    padding-top: 0;
}

.UsageImage_sec h2 {
    font-size: 26px;
}

.UsageImage_sec p.subtexts {
    font-size: 14px;
    margin-bottom: 30px;
}
.UsageImage_sec .UsageImage_row .white_box {
    padding: 20px;
    flex-direction: column;
    gap: 20px;
}

.UsageImage_sec .UsageImage_row .white_box .img_col {
    width: 100%;
    border-radius: 10px;
}

.UsageImage_sec .UsageImage_row .white_box .text_col {
    width: 100%;
}

.UsageImage_sec .UsageImage_row .white_box .text_col h3 {
    font-size: 18px !important;
    margin-bottom: 10px;
}

.UsageImage_sec .UsageImage_row .white_box .text_col p {
    font-size: 14px;
}

.UsageImage_sec .UsageImage_row .white_box .nums {
    width: 30px;
    height: 30px;
    right: -15px;
}

.UsageImage_sec .UsageImage_row .white_box .nums::after {
    font-size: 12px;
}

.UsageImage_sec .UsageImage_row .white_box:not(:last-of-type)::after {
    right: 0px;
    height: 106%;
}

.firstcontentTextimg_sec .firstcontentTextimg_row {
    gap: 20px;
    flex-direction: column;
}

.firstcontentTextimg_sec .firstcontentTextimg_row .img_box {
    width: 90%;
}

.firstcontentTextimg_sec .firstcontentTextimg_row p.subtexts {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

.firstcontentTextimg_sec {
    padding-top: 0;
    padding-bottom: 80px;
}

.kannrikinouimgtextrepeat_sec .kannrikinouimgtextrepeat_row {
    flex-direction: column-reverse;
    gap: 20px;
}

.kannrikinouimgtextrepeat_sec .kannrikinouimgtextrepeat_row .text_col {
    width: 100%;
    transform: translate(0px, 0px);
    padding: 20px;
}

.kannrikinouimgtextrepeat_sec .kannrikinouimgtextrepeat_row .img_box {
    width: 100%;
    display: flex;
}

.kannrikinouimgtextrepeat_sec .kannrikinouimgtextrepeat_row .text_col h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.kannrikinouimgtextrepeat_sec .kannrikinouimgtextrepeat_row .text_col p.subtexts {
    font-size: 14px;
}

.kannrikinouimgtextrepeat_sec .kannrikinouimgtextrepeat_row .text_col .flexlabel {
    margin-bottom: 10px;
}

.kannrikinouimgtextrepeat_sec .kannrikinouimgtextrepeat_row:nth-of-type(2n) {
    flex-direction: column-reverse;
}

.kannrikinouimgtextrepeat_sec .kannrikinouimgtextrepeat_row:nth-of-type(2n) .text_col {
    transform: translate(0px, 0px);
}

.DisplayPage_sec h2 {
    font-size: 26px;
}

.DisplayPage_sec p.subtexts {
    font-size: 14px;
    margin-bottom: 30px;
}

.DisplayPage_sec .DisplayPage_row {
    flex-direction: column;
    gap: 20px;
}

.DisplayPage_sec .DisplayPage_row .img_col {
    width: 100%;
}

.DisplayPage_sec .DisplayPage_row .text_col {
    width: 100%;
    font-size: 14px;
}
article.case_page_row .in_row ul {
    grid-template-columns: 1fr;
}
article.case_page_row .in_row ul li .text_box p.title_in {
    font-size: 16px;
    margin-bottom: 20px;
}
article.case_page_row .in_row ul li {
    display: flex;
    flex-direction: column;
}
.sns-share-links a.js-sns-link {
    height: 40px;
}

.sns-share-links a.js-sns-link:nth-of-type(1) img {
    width: 20px;
}

.sns-share-links a.js-sns-link:nth-of-type(2) img {
    width: 20px;
}

.sns-share-links a.js-sns-link:nth-of-type(3) img {
    width: 10px;
}

.blogcase_con .flex_con_in .blogcase_sec h1 {
    font-size: 28px;
}

.blogcase_con .flex_con_in .blogcase_sec .first_top_text p {
    font-size: 14px;
}

.article-index dd .article-index__list li a {
    font-size: 14px;
}

.blogcase_con .flex_con_in .blogcase_sec .content_in span#hs_cos_wrapper_post_body h2 {
    font-size: 24px;
}

.blogcase_con .flex_con_in .blogcase_sec .content_in span#hs_cos_wrapper_post_body p, .blogcase_con .flex_con_in .blogcase_sec .content_in span#hs_cos_wrapper_post_body p span {
    font-size: 14px !important;
}

.blogcase_con .flex_con_in .blogcase_sec .content_in span#hs_cos_wrapper_post_body h3 {
    font-size: 20px;
}

.blogcase_con .flex_con_in .blogcase_sec .content_in span#hs_cos_wrapper_post_body h3::before {
    height: 30px;
}

.blogcase_con .flex_con_in .blogcase_sec .content_in span#hs_cos_wrapper_post_body h4 {
    font-size: 17px;
}

.RelatedArticleTitle_row h2 {
    font-size: 24px;
}

article.list_page_row .w110 .in_row ul {
    grid-template-columns: 1fr;
}
article.case_page_row .in_row ul li a {
    grid-template-columns: 1fr;
}
  .privacy_content_row {}

.privacy_content_row .incontent h2 {
    font-size: 24px;
}

.privacy_content_row .incontent p {
    font-size: 14px !important;
}

.privacy_content_row .incontent h3 {
    font-size: 18px !important;
}

.privacy_content_row {
    margin-top: -50px;
}

.privacy_content_row .incontent h3::before {
    height: 28px;
}
  
  .companysTable_row .companysTable_box table tr {
    flex-direction: column;
    row-gap: 10px;
    padding: 25px 0px;
  }
  .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 0px;
  }
  .companysTable_row .companysTable_box table tr td a {
    font-size: 14px;
}
  footer.footer_sec .footer_menu02 ul.menu__wrapper.no-list li.menu__item.menu__item--depth-1.hs-skip-lang-url-rewrite a.menu__link {
    font-size: 12px;
}

footer.footer_sec .footer_menu02 ul.menu__wrapper {
    margin-top: 20px;
}
  .tap_monitor_wrap .tap_wrapper .pulse_btn::before, .tap_monitor_wrap .tap_wrapper .pulse_btn::after {
    top: -1px;
    left: 11px;
}
  .TapDisplay_sec .TapDisplay_row .img_box .comenttext_con .comenttext_box .callout_line {
    display: none;
}
  .tap_monitor_wrap .yellow_section .slider_container .next_btn {
    right: 10px;
    width: 30px;
    height: 30px;
}
  .tap_monitor_wrap .yellow_section .slider_container .prev_btn {
    left: 10px;
    width: 30px;
    height: 30px;
}
  .slick-list {
    overflow: visible;
}
  .tap_monitor_wrap .tap_wrapper .hover_balloon {
    font-size: 14px;
}
  .consultation_sec .consultation_logoTrack {
    animation: consultationLogoMarquee 30s linear infinite;
}
  /* ---------------------------携帯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: #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;
  }
}