@charset "UTF-8";

/**
 * SCSS Stylesheet following Google Style Guide
 * Variables, mixins, base styles, and component styles
 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/**
 * Modern CSS Reset - SCSS Version
 * A minimal CSS reset for modern web development
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

address {
  font-style: normal;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

a {
  text-decoration: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
  position: relative;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-select {
  position: relative;
}

.form-select::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #4d4d4d;
  border-bottom: 2px solid #4d4d4d;
  pointer-events: none;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

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

body {
  color: #4d4d4d;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

li {
  list-style: none;
}


table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0;
  padding: 0;
  width: auto;
  border: none;
}

th,
td {
  margin: 0;
  padding: 0;
  border: none;
  font-weight: normal;
  text-align: left;
  vertical-align: top;
  background: none;
}

tr {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}


th {
  font-weight: normal;
  text-align: left;
}

.header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 12px 0 18px;
  transition: background-color 0.3s ease;
  position: relative;
}

.header.menu-open {
  background-color: #fff;
}

.header-content {
  display: flex;
  align-items: center;
  max-width: 1245px;
  width: 93.7%;
  margin: 0 auto;
  justify-content: space-between;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.logo {
  flex-shrink: 0;
  width: 176px;
  padding-top: 10px;
  margin-left: 4px;
}

.logo img {
  display: block;
  transition: filter 0.3s ease;
}

.country-selectors {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #4d4d4d;
  font-family: "Mukta", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  margin-right: 10px;
  margin-top: 4px;
}

.country-selector {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: color 0.3s ease;
  gap: 8px;
  color: #4d4d4d;
  font-size: 12px;
  font-family: "Mukta", sans-serif;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.5;
}

.country-selector span {
  line-height: 1.1;
}

.country-selector.active {
  opacity: 1;
}

.flag-container {
  display: flex;
  gap: 8px;
}

.country-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
  gap: 30px;
}

.nav-link {
    transition: color 0.3s ease;
    font-family: "Mukta", sans-serif;
    color: #4d4d4d;
    font-size: 19px;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-link:hover {
  transition: 0.3s all ease;
  color: #e8380d;
}

nav .nav-link {
  position: relative;
}

#home nav .nav-link:nth-child(1)::after,
#news nav .nav-link:nth-child(2)::after,
#products nav .nav-link:nth-child(3)::after,
#catalog nav .nav-link:nth-child(4)::after {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  bottom: -2px;
  left: 50%;
  height: 2px;
  width: 120%;
  background: #e8380d;
}

.nav-contact {
  background: #e8380d;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  padding: 8px 20px 5px;
  transition: all 0.3s ease;
}

.nav-contact:hover {
  color: #ffffff;
}

.nav-contact::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 17px;
  height: 12px;
  top: 1px;
  background: url("/common/images/ui/contact_icon.svg") no-repeat;
  background-size: contain;
  margin-right: 5px;
  margin-right: 8px;
}

.nav-contact:hover {
  opacity: 0.7;
}

.menu-toggle {
  display: none;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1002;
  margin-top: -10px;
}

.menu-toggle::after {
  content: "MENU";
  font-family: "Montserrat", "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  position: absolute;
  transform: translate(-50%, 0);
  left: 50%;
  bottom: -12px;
  color: #e8380d;
}

.menu-toggle span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #e8380d;
  transition: all 0.3s ease;
  left: 0;
}

.menu-toggle span:nth-child(1) {
  top: 7px;
}

.menu-toggle span:nth-child(2) {
  top: 14px;
}

.menu-toggle span:nth-child(3) {
  top: 21px;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

#spmenu_main {
  position: fixed;
  top: 55px;
  left: 0;
  width: 100%;
  height: calc(100vh - 55px);
  background-color: transparent;
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 999;
  overflow-y: auto;
  display: none;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  padding-bottom: 80px;
}

#spmenu_main.open {
  opacity: 1;
}

#spmenu_main.open {
  background: #fff;
  transform: translateY(0);
}

.spmenu-content {
  padding: 0 0 0;
  text-align: left;
  width: 100%;
}

.spmenu-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.spmenu-nav li {
  opacity: 0;
  transform: translateY(-20px);
  border-top: 1px solid #b3b3b3;
  border-bottom: 1px solid #b3b3b3;
  width: 100%;
  margin-bottom: -1px;
}

.spmenu-nav li:nth-child(1) {
  transition-delay: 0.1s;
}

.spmenu-nav li:nth-child(2) {
  transition-delay: 0.15s;
}

.spmenu-nav li:nth-child(3) {
  transition-delay: 0.2s;
}

.spmenu-nav li:nth-child(4) {
  transition-delay: 0.25s;
}

.spmenu-nav li:nth-child(5) {
  transition-delay: 0.3s;
}

.spmenu-nav a {
  display: block;
  color: #4d4d4d;
  text-decoration: none;
  font-family: "Mukta", sans-serif;
  font-size: 20px;
  font-weight: 400;
  padding: 30px 0 30px 30px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
  line-height: 1;
}

.spmenu-nav a span {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.spmenu-nav a span::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #e8380d;
  border-right: 1px solid #e8380d;
  transform: translateY(-50%) rotate(45deg);
}

#spmenu_main .contact-btn {
  display: block;
  width: 90.6%;
  margin: 0 auto;
  background: #e8380d;
  color: #fff;
  font-family: "Montserrat", "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  padding: 30px 0;
  margin-top: 40px;
  text-decoration: none;
}

#spmenu_main .spmenu-link-list {
  background: #f3f3f3;
  width: 100%;
  padding: 15px 15px 30px;
  margin-top: 40px;
}

#spmenu_main .spmenu-link-item {
  font-family: "Mukta", sans-serif;
  font-size: 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  color: #4d4d4d;
  text-align: left;
  padding: 15px 0;
  text-decoration: none;
  position: relative;
}

#spmenu_main .spmenu-link-item::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #e8380d;
  border-right: 1px solid #e8380d;
  transform: translateY(-50%) rotate(45deg);
}

#spmenu_main .spmenu-link-item a {
  text-decoration: none;
}

#spmenu_main.open .spmenu-nav li {
  opacity: 1;
  transform: translateY(0);
}

.spmenu-country {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s;
}

.spmenu-country a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin: 0 10px 10px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.spmenu-country a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.spmenu-country img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

#spmenu_main.open .spmenu-country {
  opacity: 1;
  transform: translateY(0);
}

.spmenu-social {
  display: flex;
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
  width: 90px;
  margin: 25px auto 0;
  gap: 10px;
}

.spmenu-social a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

#spmenu_main.open .spmenu-social {
  opacity: 1;
  transform: translateY(0);
}

.close-button {
  position: relative;
  bottom: 0;
  left: 0;
  margin: 30px auto 0;
  width: 80%;
  height: 40px;
  background-color: #7e8987;
  border: none;
  color: #fff;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transform: translateY(100%);
}

.close-button:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

#spmenu_main.open .close-button {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.p-head {
  width: 100%;
  position: relative;
}

.p-head .p-head-text {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 27px;
    line-height: 1.34;
    font-weight: 500;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 2px 2px 10px rgb(255, 255, 255), -2px -2px 10px rgb(255, 255, 255);
  text-align: left;
  width: 90.6%;
  max-width: 1120px;
}

.t-head {
  width: 100%;
  position: relative;
}

.t-head .t-head-text {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 29px;
  line-height: 1.34;
  font-weight: 600;
  position: absolute;
  top: 49%;
  left:46%;
  transform: translate(-50%, -50%);
  text-shadow: 2px 2px 10px rgb(255, 255, 255), -2px -2px 10px rgb(255, 255, 255);
  text-align: left;
  width: 90.6%;
  max-width: 1120px;
    letter-spacing: 0.05em;
}

.title {
    color: #333;
    font-weight: 500;
    line-height: 1;
    font-size: 32px;
    text-align: left;
    position: relative;
    padding-left: 25px;
    margin-bottom: 50px;
}

.title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 3px;
  height: 40px;
  background: #e8380d;
}

#waterheater-heading.title {
  font-family: "Montserrat", "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 30px;
  font-weight: 500;
}


#hydrogenwater-heading.title {
  font-family: "Montserrat", "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 30px;
  font-weight: 500;
}


#rangehood-heading.title {
  font-family: "Montserrat", "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 30px;
  font-weight: 500;
}


#cooker-heading.title {
  font-family: "Montserrat", "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 30px;
  font-weight: 500;
}


.first-view {
  width: 100%;
}

.first-view .slick-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.summary {
  padding: 80px 0 90px;
}

.summary-container {
  max-width: 1120px;
  width: 90.6%;
  margin: 0 auto;
}

.summary-title {
    color: #333;
    font-family: "Montserrat", "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-weight: 600;
    line-height: 1;
    font-size: 31px;
    margin: 0 auto 20px;
    text-align: center;
}

.summary-subtitle {
  color: #333;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 auto 14px;
  text-align: center;
}

.summary-text {
    color: #333;
    font-size: 17px;
    font-weight: 400;
    line-height: 2;
    margin: 0 auto 58px;
    text-align: center;
}

.summary-image {
  width: 43.75%;
  margin: 0 auto;
}

.summary-image img {
  width: 100%;
  height: auto;
  display: block;
}

.news {
  padding: 100px 0 80px;
  background: #f5f5f5;
}

.news.no-bg {
  background: none !important;
}

.news-container {
  max-width: 1120px;
  width: 90.6%;
  margin: 0 auto;
}

.more-btn {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background: #666;
  text-decoration: none;
  display: block;
  width: 160px;
  padding: 2px 0;
  transition: 0.3s all ease;
  margin-bottom: 60px;
  margin-left: auto;
}

.more-btn:hover {
  background: #e8380d;
}

.no-bg .news-container {
  max-width: 1120px;
  width: 90.6%;
  margin: 0 auto;
}

.news-tab {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.news-tab-link {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  border: none;
  background: #fff;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  transition: all 0.2s ease;
  width: 25%;
  text-align: center;
    cursor: pointer;
}

.news-tab-link:hover,
.news-tab-link.active {
  background: #4d4d4d;
  color: #fff;
}

.no-bg .news-tab-link {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  border: none;
  background: #f2f2f2;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  transition: all 0.2s ease;
  width: 25%;
  text-align: center;
}

.no-bg .news-tab-link:hover,
.no-bg .news-tab-link.active {
  background: #4d4d4d;
  color: #fff;
}

.news-list {
  width: 100%;
  list-style: none;
  margin: 0 auto 50px;
}

.num {
  width: 100%;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px dotted #666;
  padding: 15px 0;
}

.news-date {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  min-width: 168px;
  text-align: center;
  margin-right: -20px;
}

.news-category {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  background: #808080;
  color: #fff;
  font-size: 14px;
  padding: 2px 8px;
  min-width: 160px;
  text-align: center;
  font-weight: 500;
}

.news-title {
  flex: 1;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.71;
  transition: 0.3s all ease;
}

.news-title a {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  color: #e8380d;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.71;
  transition: 0.3s all ease;
}

.news-title a:hover {
  opacity: 0.7;
}

.sns-container {
  max-width: 1120px;
  width: 90.6%;
  margin: 0 auto;
  margin-top: 60px;
  background: #fff;
  padding: 25px 0 30px;
}

.sns-photo {
  width: 78.5%;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 30px;
}

.sns-photo .left-right {
  width: 474px;
}

.sns-photo .left-right:nth-child(2) {
  width: 354px;
}

.sns-photo .left-right ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  list-style: none;
}

.sns-photo .left-right ul li {
  display: inline-block;
}

.sns-photo .left-right ul li:first-child {
  width: 111px;
  margin-bottom: 8px;
}

.products {
  padding: 100px 0 45px;
}

.products-container {
  max-width: 1120px;
  width: 90.6%;
  margin: 0 auto;
}

.products-container .products-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.products-container .products-inner .products-box {
  width: 48.2%;
  margin-bottom: 80px;
}

.products-container .products-inner .products-box .products-img {
  margin-bottom: 25px;
}

.products-container .products-inner .products-box .products-title {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 23px;
  font-weight: 600;
  color: #4d4d4d;
  margin-bottom: 6px;
}

.products-container .products-inner .products-box .products-text {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #4d4d4d;
  margin-bottom: 20px;
}

.products-container .products-inner .products-box:hover .products-btn {
  background: #e8380d;
}

.products-container .products-inner .products-box .products-btn {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background: #666;
  text-decoration: none;
  display: block;
  width: 160px;
  padding: 2px 0;
  transition: 0.3s all ease;
}

.company {
  padding: 0 0 100px;
}

.company-container {
  max-width: 1120px;
  width: 90.6%;
  margin: 0 auto;
  padding: 40px 0 40px;
  border: 1px solid #e8380d;
}

.company-container .title {
  width: 90%;
  margin: 0 auto;
}

.company-inner {
    width: 90%;
    margin-top: 30px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-inner .company-left {
  width: 40%;
}

.company-inner .company-right {
    width: 55%;
  display: flex;
  flex-direction: column;
}

.company-inner .company-right .company-title {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  color: #333;
  line-height: 1.64;
  margin-top: -0.5em;
  margin: -5px 0 8px 0;
}

.company-inner .company-right .company-text {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  color: #333;
  line-height: 1.75;
  margin: 0;
}

.company-inner .link-container {
  width: 100%;
  display: flex;
  margin: 20px auto 0;
    justify-content: space-between;
}

.company-inner .link-container .link-btn {
  font-family: "Montserrat", "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #fff;
  background: #666;
  padding: 10px 0;
  text-decoration: none;
  display: block;
  width: 48%;
  transition: 0.3s all ease;
}

.company-inner .link-container .link-btn:hover {
  background: #e8380d;
}

.catalog {
  padding: 100px 0 80px;
  background: none;
}

.catalog-container {
  max-width: 1120px;
  width: 90.6%;
  margin: 0 auto;
}

.heading-text {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}

.catalog-list {
  width: 72.8%;
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
}

.catalog-list .catalog-item {
  width: 24.6%;
  transition: 0.3s all ease;
  display: flex;
  flex-direction: column;
}

.catalog-list .catalog-item:hover {
  opacity: 0.7;
}

.catalog-list .catalog-item .catalog-ttl {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #231815;
  text-align: center;
  margin: 25px 0;
}

.catalog-list .catalog-item .catalog-link {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background: #e8380d;
  display: block;
  margin: 0 auto;
  width: 160px;
  text-decoration: none;
  padding: 2px 0;
  margin-top: auto;
}

.contact {
  padding: 100px 0 80px;
  background: none;
}

.contact-container {
  max-width: 1120px;
  width: 90.6%;
  margin: 0 auto;
}

.contact-container .heading-text {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 70px;
}

.contact-list {
  width: 72.8%;
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
}

.contact-list .contact-item {
  width: 24.6%;
}

.contact-list .contact-item .contact-ttl {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  margin: 25px 0;
}

.contact-list .contact-item .contact-link {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background: #e8380d;
  display: block;
  margin: 0 auto;
  width: 160px;
  text-decoration: none;
  padding: 2px 0;
}

.form-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.form-group.area {
  align-items: flex-start;
  margin-bottom: 60px;
}

.choice-group {
  margin: 50px 0;
  justify-content: flex-start;
  align-items: flex-start;
}

.choice-group .form-label {
  margin-top: -5px;
}

.contact-inner {
  width: 91.9%;
  max-width: 1030px;
  margin: 0 auto;
}

.form-label {
  width: 270px;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 10px;
}

.form-control {
  width: calc(97% - 280px);
}

.form-choice {
  width: calc(94% - 280px);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 7px;
  margin-left: 3%;
}

.form-flex {
  display: flex;
  justify-content: space-between;
}

.checkbox {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #4d4d4d;
}

.details {
  width: 100%;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.75;
  padding: 15px 15px;
  border: 1px solid #4d4d4d;
}

.form-control input {
  width: 100%;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.75;
  padding: 15px 15px;
  border: 1px solid #4d4d4d;
}

.form-control textarea {
  width: 100%;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.75;
  padding: 15px 15px;
  border: 1px solid #4d4d4d;
}

.form-flex {
  display: flex;
  justify-content: space-between;
}

.form-flex input {
  width: 48.4%;
}

.form-control input::-moz-placeholder {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #808080;
}

.form-control input::placeholder {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #808080;
}

.required {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  background: #e8380d;
  display: block;
  width: 82px;
  text-align: center;
  padding: 4px 0;
}

.any {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #0071bc;
  width: 66px;
  display: block;
  text-align: center;
  padding: 5px 0;
}

input[type=radio],
input[type=checkbox] {
  cursor: pointer;
}


input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #4d4d4d;
  border-radius: 0;
  background-color: #fff;
  position: relative;
  transition: all 0.3s;
  margin-right: 10px;
}

input[type=checkbox]:checked {
  background-color: #e8380d;
  border-color: #e8380d;
}

input[type=checkbox]:checked::after {
  content: "✓";
  color: white;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

input[type=checkbox]:hover {
  border-color: #e8380d;
}

.button-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.button-group .btn-submit {
  background: #e8380d;
  color: #ffffff;
  text-align: center;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border: none;
  width: 380px;
  padding: 15px 0;
  margin-top: 25px;
  transition: 0.3s all ease;
}

.button-group .btn-submit:hover {
  opacity: 0.7;
}

.button-group .btn-back {
  background-color: #e6e6e6;
  color: #4d4d4d;
  text-align: center;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border: none;
  width: 380px;
  padding: 15px 0;
  margin-top: 25px;
  transition: 0.3s all ease;
}

.button-group .btn-back:hover {
  opacity: 0.7;
}

.policy-link {
  color: #0071bc;
  text-decoration: underline;
}

.policy-text {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  margin: 0 auto;
}

.products-link {
  display: flex;
  justify-content: space-between;
  width: 59.3%;
  margin: 0 auto 60px;
}

.products-item {
  width: 20.7%;
  color: #808080;
  transition: 0.3s all ease;
}

.products-item.active {
  color: #e8380d;
}

.products-item:hover {
  color: #e8380d;
}

.products-item:hover .icon {
  stroke: #e8380d;
}

.products-item .products-link-text {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
  line-height: 1.28;
}

.waterheater {
  padding: 50px 0 100px;
  background: none;
}

.waterheater-container {
  max-width: 1120px;
  width: 90.6%;
  margin: 0 auto;
}

.waterheater-container .products-list {
  width: 90.1%;
  margin: 60px auto 100px;
  display: flex;
  justify-content: space-between;
}

.waterheater-container .products-list .products-item {
width: 19%;
  transition: 0.3s all ease;
}
.waterheater-container .products-list .products-item:hover {
  opacity: 0.7;
}

.waterheater-container .products-list .products-item .products-ttl01 {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin: 5px 0 10px;
    color: #333;
    line-height: 1.4;
}

.waterheater-container .products-list .products-item .products-ttl02 {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 10px;
  color: #333;
}

.waterheater-container .products-list .products-item .products-ttl03 {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 15px;
  color: #333;
}

.waterheater-container .products-list .products-item .products-link {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background: #e8380d;
  display: block;
  margin: 0 auto;
  width: 160px;
  text-decoration: none;
  padding: 2px 0;
}

.waterheater-container .catalog-list {
  width: 72.8%;
  margin: 60px auto 0;
  display: flex;
  justify-content: center;
}

.waterheater-link {
  width: 74.8%;
  margin: 70px auto;
  display: flex;
  justify-content: space-between;
}

.waterheater-link .waterheater-item {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  width: 32.8%;
  background: #F2F2F2;
  color: #4d4d4d;
  text-decoration: none;
  transition: all 0.3s ease;
}

.waterheater-link .waterheater-item a {
  display: block;
  padding: 20px 0;
  position: relative;
}

.waterheater-link .waterheater-item a::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-right: 2px solid #4d4d4d;
  border-bottom: 2px solid #4d4d4d;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
}

.waterheater-link .waterheater-item a:hover::after {
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.waterheater-link .waterheater-item:hover,
.waterheater-link .waterheater-item.active {
  background: #4d4d4d;
  color: #fff;
}

.subtitle {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 28px;
  text-align: left;
  position: relative;
  color: #26b7bc;
  margin-bottom: 30px;
  font-weight: 400;
}

.minititle {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #333;
  text-align: left;
  position: relative;
  padding-right: 28px;
  flex-shrink: 0;
}

.minititle-container {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
  position: relative;
}

.extending-line {
  flex: 1;
  height: 1px;
  background: #808080;
  position: relative;
  overflow: hidden;
}

.waterheater-flex01 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.waterheater-flex01 .box-L {
  width: 100%;
}

.waterheater-flex01 .water-item {
  margin-bottom: 40px;
}

.waterheater-flex01 .water-item .water-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.waterheater-flex01 .water-item .water-flex .water-mark {
  width: 53px;
}

.waterheater-flex01 .water-item .water-flex .water-content {
  width: 100%;
}

.waterheater-flex01 .water-item .water-flex .water-title {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 23px;
  line-height: 1.21;
  font-weight: 400;
  color: #333;
  margin-bottom: 8px;
}

.waterheater-flex01 .water-item .water-flex .water-title.no-mb {
  margin-bottom: 0;
}

.waterheater-flex01 .water-item .water-text {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.44;
  color: #333;
  padding-left: 70px;
}

.water-model {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 13px;
}

.water-model-title {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #26b7bc;
}

.water-model-text {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
}

.waterheater-flex02 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 55px;
}

.waterheater-flex02.ex-bm {
  margin-bottom: 120px !important;
}

.waterheater-flex02 .water-shower {
  width: 18.4%;
  mix-blend-mode: multiply;
}

.hydrogenwater {
  padding: 50px 0 100px;
  background: none;
}

.hydrogenwater-container {
  max-width: 1120px;
  width: 90.6%;
  margin: 0 auto;
}

.hydrogenwater-container .products-list {
  width: 45.6%;
  margin: 60px auto 100px;
  display: flex;
  justify-content: center;
}

.hydrogenwater-container .products-list .products-item {
  width: 39.6%;
  transition: 0.3s all ease;
}

.hydrogenwater-container .products-list .products-item:hover {
  opacity: 0.7;
}

.hydrogenwater-container .products-list .products-item .products-img {
  margin-bottom: 10px;
}

.hydrogenwater-container .products-list .products-item .products-ttl01 {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 5px 0 0;
  color: #333;
}

.hydrogenwater-container .products-list .products-item .products-ttl03 {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin: 10px 0 15px;
  color: #333;
}

.hydrogenwater-container .products-list .products-item .products-link {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background: #e8380d;
  display: block;
  margin: 0 auto;
  width: 160px;
  text-decoration: none;
  padding: 2px 0;
}

.hydrogenwater-container .catalog-list {
  width: 72.8%;
  margin: 60px auto 0;
  display: flex;
  justify-content: center;
}

.hydrogenwater-link {
  width: 74.8%;
  margin: 70px auto;
  display: flex;
  justify-content: space-between;
}

.hydrogenwater-link .hydrogenwater-item {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  width: 32.8%;
  background: #F2F2F2;
  color: #4d4d4d;
  text-decoration: none;
  transition: 0.3s all ease;
}

.hydrogenwater-link .hydrogenwater-item a {
  display: block;
  padding: 20px 0;
  position: relative;
}

.hydrogenwater-link .hydrogenwater-item a::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-right: 2px solid #4d4d4d;
  border-bottom: 2px solid #4d4d4d;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
}

.hydrogenwater-link .hydrogenwater-item a:hover::after {
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.hydrogenwater-link .hydrogenwater-item:hover,
.hydrogenwater-link .hydrogenwater-item.active {
  background: #4d4d4d;
  color: #fff;
}

.hydrogenwater-flex01 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.hydrogenwater-flex01 .box-L {
  width: 47.9%;
}

.hydrogenwater-flex01 .box-L .hydrogen-title {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 24px;
  line-height: 1.28;
  font-weight: 400;
  color: #0071BC;
  margin-bottom: 20px;
  text-align: left;
  margin-left: 0;
  flex-grow: 1;
  min-height: 85px;
}

.hydrogenwater-flex01 .box-R {
  width: 47.9%;
}

.hydrogenwater-flex01 .box-R .hydrogen-title {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 24px;
  line-height: 1.28;
  font-weight: 400;
  color: #0071BC;
  text-align: left;
  margin-left: 0;
  flex-grow: 1;
  margin-bottom: 20px;
  min-height: 85px;
}

.hydrogenwater-flex01 .box-R .caution {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 10px;
}

.hydrogenwater-flex01 .box-R .caution .caution-r {
  font-size: 14px;
  line-height: 1.71;
  text-align: right;
  display: block;
  margin-left: auto;
  margin-top: -1.5em;
}

.hydrogenwater-content {
  background: #F7F7F8;
  padding: 18px 0 20px;
  margin-bottom: 120px;
}

.hydrogenwater-content .hydrogenwater-flex02 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 93.75%;
  margin: 0 auto;
}

.hydrogenwater-content .hydrogenwater-flex02 .box-L {
  width: 55%;
}

.hydrogenwater-content .hydrogenwater-flex02 .box-L .hydrogen-title {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 22px;
  line-height: 1.28;
  font-weight: 400;
  color: #0071BC;
  padding-bottom: 15px;
  text-align: left;
  margin-left: 0;
}

.hydrogenwater-content .hydrogenwater-flex02 .box-L .hydrogen-text {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  width: 80%;
  margin-right: auto;
}

.hydrogenwater-content .hydrogenwater-flex02 .box-R {
  width: 47.9%;
}

.hydrogenwater-content .hydrogenwater-flex02 .box-R .hydrogen-title {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 22px;
  line-height: 1.28;
  font-weight: 400;
  color: #0071BC;
  padding-bottom: 20px;
  text-align: left;
}

.rangehood {
  padding: 50px 0 100px;
  background: none;
}

.rangehood-container {
  max-width: 1120px;
  width: 90.6%;
  margin: 0 auto;
}

.rangehood-container .products-list {
  width: 95%;
  margin: 60px auto 100px;
  display: flex;
  justify-content: space-between;
}

.rangehood-container .products-list .products-item {
  width: 22.5%;
  transition: 0.3s all ease;
}

.rangehood-container .products-list .products-item:hover {
  opacity: 0.7;
}

.rangehood-container .products-list .products-item .products-ttl01 {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 25px 0 0;
  color: #333;
}

.rangehood-container .products-list .products-item .products-ttl03 {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin: 10px 0 15px;
  color: #333;
}

.rangehood-container .products-list .products-item .products-link {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background: #e8380d;
  display: block;
  margin: 0 auto;
  width: 160px;
  text-decoration: none;
  padding: 2px 0;
}

.rangehood-container .catalog-list {
  width: 72.8%;
  margin: 60px auto 0;
  display: flex;
  justify-content: center;
}

.rangehood-link {
  width: 74.8%;
  margin: 70px auto;
  display: flex;
  justify-content: space-between;
}

.rangehood-link .rangehood-item {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  width: 32.8%;
  background: #F2F2F2;
  color: #4d4d4d;
  text-decoration: none;
  transition: 0.3s all ease;
}

.rangehood-link .rangehood-item a {
  display: block;
  padding: 20px 0;
  position: relative;
}

.rangehood-link .rangehood-item a::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-right: 2px solid #4d4d4d;
  border-bottom: 2px solid #4d4d4d;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
}

.rangehood-link .rangehood-item a:hover::after {
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.rangehood-link .rangehood-item:hover,
.rangehood-link .rangehood-item.active {
  background: #4d4d4d;
  color: #fff;
}

.rangehood .subtitle {
  color: #F08300;
  margin-bottom: 5px;
}

.rangehood .subtext {
  color: #F08300;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 50px;
}

.hood-title {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 400;
  color: #F08300;
  padding-bottom: 14px;
  text-align: left;
  margin-left: 0em;
}

.hood-text {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  line-height: 1.666;
  font-weight: 400;
  margin-bottom: 25px;
}

.hood-img {
  width: 74.3%;
  margin: 0 auto;
}

.rangehood-flex01 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
  margin-top: -5px;
}

.rangehood-flex01 .box-L {
  width: 47.9%;
  display: flex;
  flex-direction: column;
}

.rangehood-flex01 .box-L .hood-text {
  min-height: 89px;
}

.rangehood-flex01 .box-L .hood-img {
  margin-top: auto;
}

.rangehood-flex01 .box-R {
  width: 47.9%;
  display: flex;
  flex-direction: column;
}

.rangehood-flex01 .box-R .hood-title {
  padding-bottom: 21px;
}

.rangehood-flex01 .box-R .hood-img {
  margin-top: auto;
}

.rangehood-flex02 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 95px;
}

.rangehood-flex02 .box-L {
  width: 47.9%;
  display: flex;
  flex-direction: column;
}

.rangehood-flex02 .box-L .hood-text {
  min-height: 89px;
}

.rangehood-flex02 .box-R {
  width: 47.9%;
  display: flex;
  flex-direction: column;
}

.rangehood-flex02 .box-R .hood-img {
  margin: 0 auto 39px;
}

.cooker {
  padding: 50px 0 100px;
  background: none;
}

.cooker-container {
  max-width: 1120px;
  width: 90.6%;
  margin: 0 auto;
}

.cooker-container .products-list {
  width: 81.25%;
  margin: 60px auto 100px;
  display: flex;
  justify-content: space-between;
}

.cooker-container .products-list .products-item {
  width: 27.9%;
  transition: 0.3s all ease;
}

.cooker-container .products-list .products-item:hover {
  opacity: 0.7;
}

.cooker-container .products-list .products-item .products-ttl01 {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 25px 0 0;
  color: #333;
}

.cooker-container .products-list .products-item .products-ttl02 {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 10px;
  color: #333;
}

.cooker-container .products-list .products-item .products-ttl03 {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin: 10px 0 15px;
  color: #333;
}
.soon {
    text-align: center;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0px 0 10px;
    color: #e8380d;
	line-height: 1.2;
}

@media (max-width: 768px) {
	.soon {
    font-size: 15px;
}}
	
.cooker-container .products-list .products-item .products-link {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background: #e8380d;
  display: block;
  margin: 0 auto;
  width: 160px;
  text-decoration: none;
  padding: 2px 0;
}

.cooker-container .catalog-list {
  width: 72.8%;
  margin: 60px auto 0;
  display: flex;
  justify-content: center;
}

.cooker-link {
  width: 74.8%;
  margin: 70px auto;
  display: flex;
  justify-content: space-between;
}

.cooker-link .cooker-item {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  width: 32.8%;
  background: #F2F2F2;
  color: #4d4d4d;
  text-decoration: none;
  transition: 0.3s all ease;
}

.cooker-link .cooker-item a {
  display: block;
  padding: 20px 0;
  position: relative;
}

.cooker-link .cooker-item a::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-right: 2px solid #4d4d4d;
  border-bottom: 2px solid #4d4d4d;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
}

.cooker-link .cooker-item a:hover::after {
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.cooker-link .cooker-item:hover,
.cooker-link .cooker-item.active {
  background: #4d4d4d;
  color: #fff;
}

.cooker .subtitle {
  color: #53AC7B;
  margin-bottom: 5px;
}

.cooker .subtext {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 50px;
  color: #53AC7B;
}

.cooker-title {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 28px;
  line-height: 1.28;
  font-weight: 500;
  color: #53AC7B;
  padding-bottom: 0;
  text-align: left;
  margin-left: 0em;
  margin-top: -5px;
	margin-bottom: 10px;
}

.cooker-text {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  line-height: 1.666;
  font-weight: 400;
  margin-bottom: 20px;
  margin-left: 0;
  color: #333333;
}

.cooker-detail {
  background: #F2F2F2;
  padding: 18px 0;
}

.cooker-detail .cooker-detail-flex {
  width: 94.1%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.cooker-detail .cooker-detail-flex .box-L {
  width: 48.6%;
}

.cooker-detail .cooker-detail-flex .box-R {
  width: 48%;
}

.cooker-detail .cooker-detail-flex .cooker-detail-title {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.66;
  color: #000000;
  padding-bottom: 5px;
}

.cooker-detail .cooker-detail-flex .cooker-item {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  padding-left: 1em;
  text-indent: -1em;
  color: #000000;
}

.cooker-detail .cooker-img {
  width: 100%;
}

.cooker-flex01 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}

.cooker-flex01 .box-L {
  width: 47.9%;
}

.cooker-flex01 .box-R {
  width: 47.9%;
}

.cooker-flex02 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
}

.cooker-flex02 .box-L {
  width: 47.9%;
}

.cooker-flex02 .box-R {
  width: 47.9%;
}

.single-water-flex01 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.single-water-flex01 .box-L {
  width: 68.1%;
}

.single-water-flex01 .box-R {
  width: 30.3%;
}

.single-water-flex01 .single-water-item {
  margin-bottom: 40px;
}

.single-water-flex01 .single-water-item:last-child {
  margin-bottom: 30px;
}

.single-water-flex01 .single-water-item .single-water-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.single-water-flex01 .single-water-item .single-water-flex.mb-ex {
  margin-bottom: 15px;
}

.single-water-flex01 .single-water-item .single-water-flex .single-water-mark {
  width: 53px;
}

.single-water-flex01 .single-water-item .single-water-flex .single-water-content {
  width: 100%;
}

.single-water-flex01 .single-water-item .single-water-flex .single-water-title {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 24px;
  line-height: 1.21;
  font-weight: 400;
  color: #333;
  margin-bottom: 8px;
}

.single-water-flex01 .single-water-item .single-water-flex .single-water-title .mini {
  display: block;
  font-size: 75%;
}

.single-water-flex01 .single-water-item .single-water-flex02 {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 72px);
  margin-left: auto;
  margin-bottom: 35px;
}

.single-water-flex01 .single-water-item .single-water-flex02.justy-center {
  align-items: center;
}

.single-water-flex01 .single-water-item .single-water-flex02 .box-L {
  width: 297px;
}

.single-water-flex01 .single-water-item .single-water-flex02 .box-L .single-water-function {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 19px;
  line-height: 1.21;
  font-weight: 400;
  color: #333333;
  width: 297px;
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid #231815;
  text-align: center;
  padding: 20px 0;
}

.single-water-flex01 .single-water-item .single-water-flex02 .box-R {
  width: calc(100% - 312px);
}

.single-water-flex01 .single-water-item .single-water-flex02 .box-R .single-water-detail {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  line-height: 1.375;
  font-weight: 400;
  color: #333333;
}

.single-water-flex01 .single-water-item .single-water-flex02 .box-R .single-water-detail.w-over {
  width: 145%;
}

.single-water-flex01 .single-water-item .single-water-flex02 .box-R .single-water-detail .big {
  font-size: 22px;
  line-height: 1.21;
  display: block;
  margin-bottom: 5px;
}

.single-water-flex01 .single-water-item .single-water-flex02 .box-R .single-water-detail .mini {
  font-size: 16px;
  line-height: 1.375;
  display: block;
  width: 145%;
}

.single-water-flex01 .single-water-item .single-water-text {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.44;
  color: #333;
  padding-left: 70px;
}

.single-water-flex03 {
  display: flex;
  justify-content: space-between;
}

.single-water-flex03 .box-L {
  width: 26.6%;
}

.single-water-flex03 .box-L .shower-img {
  margin-bottom: 5px;
  mix-blend-mode: multiply;
}

.single-water-flex03 .box-L .shower-img figcaption {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 5px;
}

.single-water-flex03 .box-R {
  width: 60.3%;
}

.single-water-flex03 .box-R .shower-img {
  margin-bottom: 5px;
  mix-blend-mode: multiply;
}

.single-water-flex03 .box-R .shower-img figcaption {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-align: justify;
  margin-top: 5px;
}

.single-container .waterheater-flex02 {
  margin-bottom: 55px;
}

.single-water-filter {
  background: #ffffff;
  width: 100%;
  padding: 55px 0;
  margin-bottom: 100px;
}

.single-water-filter .water-filter-flex {
  width: 91%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.single-water-filter .water-filter-flex .box-L {
  width: 45.4%;
}

.single-water-filter .water-filter-flex .box-R {
  width: 51.9%;
}

.single-water-filter .water-filter-flex .box-R .filter-title {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.666;
  color: #26b7bc;
  margin-top: -11px;
  margin-bottom: 1px;
}

.single-water-filter .water-filter-flex .box-R .filter-text {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6255;
  margin-bottom: 14px;
  text-align: justify;
}

.single-water-filter .water-filter-flex .box-R .filter-aside {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  padding-left: 1em;
  text-indent: -1em;
  text-align: justify;
}

.spec-title {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 20px;
  color: #333333;
}

.spec-title.th {
  position: relative;
  padding-left: 35px;
}

.spec-title.th::before {
  position: absolute;
  display: block;
  content: "";
  width: 26px;
  height: 26px;
  background: url(/common/images/ui/th.svg);
  background-position: center;
  background-size: cover;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.spec-title.my {
  position: relative;
  padding-left: 35px;
}

.spec-title.my::before {
  position: absolute;
  display: block;
  content: "";
  width: 26px;
  height: 26px;
  background: url(/common/images/ui/ma.svg);
  background-position: center;
  background-size: cover;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.spec-title.ph {
  position: relative;
  padding-left: 35px;
}

.spec-title.ph::before {
  position: absolute;
  display: block;
  content: "";
  width: 26px;
  height: 26px;
  background: url(/common/images/ui/ph.svg);
  background-position: center;
  background-size: cover;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.spec-flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}

.spec-flex.p01-spec-flex {
  margin-bottom: 50px;
}

.spec-flex .box-L {
  width: 47.1%;
}

.spec-flex .box-L .spectype01 {
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  width: 100%;
}

.spec-flex .box-L .spectype01 tr {
  border-bottom: 1px solid #333333;
}

.spec-flex .box-L .spectype01 tr.border-none {
  border: none;
}

.spec-flex .box-L .spectype01 th {
  vertical-align: middle;
  width: 20.7%;
  background: #d4e9e7;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
}

.spec-flex .box-L .spectype01 th.inside {
  border-bottom: 1px dotted #333333;
  font-weight: 400;
}

.spec-flex .box-L .spectype01 th.border-top {
  border-top: 1px solid #333333;
}

.spec-flex .box-L .spectype01 th:first-child {
  width: 25.4%;
}

.spec-flex .box-L .spectype01 td {
  vertical-align: middle;
  width: 51.8%;
  border-left: 10px solid #f5f5f5;
  background: #ffffff;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
}

.spec-flex .box-L .spectype01 td.border-dotted {
  border-top: 1px dotted #333333;
}

.spec-flex .box-L .spectype01 td.border-top {
  border-top: 1px solid #333333;
}

.spec-flex .box-L .spectype03 {
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  width: 100%;
}

.spec-flex .box-L .spectype03 tr {
  border-bottom: 1px solid #333333;
}

.spec-flex .box-L .spectype03 tr.border-none {
  border: none;
}

.spec-flex .box-L .spectype03 th {
  vertical-align: middle;
  width: 42%;
  background: #fce3d2;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
}

.spec-flex .box-L .spectype03 th.inside {
  border-bottom: 1px dotted #333333;
  font-weight: 400;
}

.spec-flex .box-L .spectype03 th.border-top {
  border-top: 1px solid #333333;
}

.spec-flex .box-L .spectype03 td {
  vertical-align: middle;
  width: 56.2%;
  border-left: 10px solid #f5f5f5;
  background: #ffffff;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
}

.spec-flex .box-L .spectype03 td.border-dotted {
  border-top: 1px dotted #333333;
}

.spec-flex .box-L .spectype03 td.border-top {
  border-top: 1px solid #333333;
}

.spec-flex .box-L .spectype04 {
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  margin-top: -1px;
  width: 100%;
}

.spec-flex .box-L .spectype04 tr {
  border-bottom: 1px solid #333333;
}

.spec-flex .box-L .spectype04 tr.border-none {
  border: none;
}

.spec-flex .box-L .spectype04 th {
  vertical-align: middle;
  width: 41.6%;
  background: #d7ebf5;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
}

.spec-flex .box-L .spectype04 th.outside {
  width: 19.2%;
}

.spec-flex .box-L .spectype04 th.inside {
  width: 22.6%;
  border-bottom: 1px dotted #333333;
  font-weight: 400;
}

.spec-flex .box-L .spectype04 th.border-top {
  border-top: 1px solid #333333;
}

.spec-flex .box-L .spectype04 td {
  vertical-align: middle;
  width: 51.8%;
  border-left: 10px solid #f5f5f5;
  background: #ffffff;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
}

.spec-flex .box-L .spectype04 td.border-dotted {
  border-top: 1px dotted #333333;
}

.spec-flex .box-L .spectype04 td.border-top {
  border-top: 1px solid #333333;
}

.spec-flex .box-R {
  width: 47.1%;
}

.spec-flex .box-R .spectype02 {
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  width: 100%;
}

.spec-flex .box-R .spectype02 tr {
  border-bottom: 1px solid #333333;
}

.spec-flex .box-R .spectype02 tr.border-none {
  border: none;
}

.spec-flex .box-R .spectype02 tr.border-dotted {
  border-bottom: 1px dotted #333333;
}

.spec-flex .box-R .spectype02 th {
  vertical-align: middle;
  width: 58.4%;
  background: #d4e9e7;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
}

.spec-flex .box-R .spectype02 th.inside {
  border-bottom: 1px dotted #333333;
  font-weight: 400;
}

.spec-flex .box-R .spectype02 th .half-inner {
  display: flex;
  justify-content: space-between;
}

.spec-flex .box-R .spectype02 th .half-inner .half-box {
  width: 50%;
}

.spec-flex .box-R .spectype02 th .half-inner .half-box:nth-child(2) {
  font-weight: 400;
}

.spec-flex .box-R .spectype02 th.border-top {
  border-top: 1px solid #333333;
}

.spec-flex .box-R .spectype02 td {
  vertical-align: middle;
  width: 39.6%;
  border-left: 10px solid #f5f5f5;
  background: #ffffff;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
}

.spec-flex .box-R .spectype02 td.border-dotted {
  border-top: 1px dotted #333333;
}

.spec-flex .box-R .spectype02 td.border-top {
  border-top: 1px solid #333333;
}

.spec-flex .box-R .spectype03 {
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  width: 100%;
}

.spec-flex .box-R .spectype03 tr {
  border-bottom: 1px solid #333333;
}

.spec-flex .box-R .spectype03 tr.border-none {
  border: none;
}

.spec-flex .box-R .spectype03 th {
  vertical-align: middle;
  width: 42%;
  background: #fce3d2;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
}

.spec-flex .box-R .spectype03 th.inside {
  border-bottom: 1px dotted #333333;
  font-weight: 400;
}

.spec-flex .box-R .spectype03 th.border-top {
  border-top: 1px solid #333333;
}

.spec-flex .box-R .spectype03 td {
  vertical-align: middle;
  width: 56.2%;
  border-left: 10px solid #f5f5f5;
  background: #ffffff;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
}

.spec-flex .box-R .spectype03 td.border-dotted {
  border-top: 1px dotted #333333;
}

.spec-flex .box-R .spectype03 td.border-top {
  border-top: 1px solid #333333;
}

.spec-flex .box-R .spectype04 {
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  width: 100%;
}

.spec-flex .box-R .spectype04 tr {
  border-bottom: 1px solid #333333;
}

.spec-flex .box-R .spectype04 tr.border-none {
  border: none;
}

.spec-flex .box-R .spectype04 th {
  vertical-align: middle;
  width: 41.6%;
  background: #d7ebf5;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
}

.spec-flex .box-R .spectype04 th.outside {
  width: 19.2%;
}

.spec-flex .box-R .spectype04 th.inside {
  width: 22.6%;
  border-bottom: 1px dotted #333333;
  font-weight: 400;
}

.spec-flex .box-R .spectype04 th.border-top {
  border-top: 1px solid #333333;
}

.spec-flex .box-R .spectype04 td {
  vertical-align: middle;
  width: 51.8%;
  border-left: 10px solid #f5f5f5;
  background: #ffffff;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
}

.spec-flex .box-R .spectype04 td.border-dotted {
  border-top: 1px dotted #333333;
}

.spec-flex .box-R .spectype04 td.border-top {
  border-top: 1px solid #333333;
}

.spec-flex .box-R .feature-title {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}

.spec-flex .box-R .feature-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.spec-flex .box-R .feature-list .feature-item {
  width: 31.4%;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  color: #333333;
  background: #c6e6d4;
  padding: 7px 8px 9px 8px;
  margin-bottom: 15px;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-flex .box-R .feature-list::after {
  content: "";
  width: 31.4%;
}

.model-flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.model-flex.p01-model-flex {
  margin-bottom: 80px;
}

.model-flex .box-L {
  width: 47.1%;
}

.model-flex .box-L .modeltype01 {
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  width: 100%;
}

.model-flex .box-L .modeltype01 tr {
  border-bottom: 1px dotted #333333;
}

.model-flex .box-L .modeltype01 tr.border {
  border-bottom: 1px solid #333333;
}

.model-flex .box-L .modeltype01 tr:first-child td {
  font-weight: 500;
}

.model-flex .box-L .modeltype01 th {
  vertical-align: middle;
  width: 26%;
  background: #d4e9e7;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
}

.model-flex .box-L .modeltype01 th.inside {
  border-bottom: 1px dotted #333333;
}

.model-flex .box-L .modeltype01 th.border-top {
  border-top: 1px solid #333333;
}

.model-flex .box-L .modeltype01 td {
  font-weight: 400;
  vertical-align: middle;
  width: 74%;
  border-left: 10px solid #f5f5f5;
  background: #ffffff;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
}

.model-flex .box-L .modeltype03 {
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
}

.model-flex .box-L .modeltype03 tr {
  border-bottom: 1px dotted #333333;
}

.model-flex .box-L .modeltype03 tr.border {
  border-bottom: 1px solid #333333;
}

.model-flex .box-L .modeltype03 tr:first-child td {
  font-weight: 500;
}

.model-flex .box-L .modeltype03 th {
  vertical-align: middle;
  width: 41.6%;
  background: #d7ebf5;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
}

.model-flex .box-L .modeltype03 th.inside {
  border-bottom: 1px dotted #333333;
}

.model-flex .box-L .modeltype03 th.border-top {
  border-top: 1px solid #333333;
}

.model-flex .box-L .modeltype03 td {
  font-weight: 400;
  vertical-align: middle;
  width: 51.8%;
  border-left: 10px solid #f5f5f5;
  background: #ffffff;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
}

.model-flex .box-R {
  width: 47.1%;
}

.model-flex .box-R .modeltype02 {
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  width: 100%;
}

.model-flex .box-R .modeltype02 tr {
  border-bottom: 1px dotted #333333;
}

.model-flex .box-R .modeltype02 tr.border {
  border-bottom: 1px solid #333333;
}

.model-flex .box-R .modeltype02 tr:first-child td {
  font-weight: 500;
}

.model-flex .box-R .modeltype02 th {
  vertical-align: middle;
  width: 26%;
  background: #d4e9e7;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
}

.model-flex .box-R .modeltype02 th.inside {
  border-bottom: 1px dotted #333333;
}

.model-flex .box-R .modeltype02 th.border-top {
  border-top: 1px solid #333333;
}

.model-flex .box-R .modeltype02 td {
  font-weight: 400;
  vertical-align: middle;
  width: 74%;
  border-left: 10px solid #f5f5f5;
  background: #ffffff;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
}

.category-btn {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
  background: #e8380d;
  text-align: center;
  width: 337px;
  display: block;
  margin: 0 auto;
  padding: 25px 0;
  transition: 0.3s all ease;
}

.category-btn:hover {
  opacity: 0.7;
}

.main-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  margin-top: 12px;
}

.main-flex .box-L {
  margin: 0;
  width: 50%;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  text-indent: -1em;
  padding-left: 1em;
}

.main-flex .box-R {
  margin: 0 !important;
  width: 50%;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  text-indent: -1em;
  padding-left: 1em;
}

.sp-width.main-flex .box-L {
  width: 33.5%;
}

.sp-width.main-flex .box-R {
  width: 62.2%;
}

.content-flex01 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 88px;
}

.content-flex01.ex-bm02 {
  margin-bottom: 120px;
}

.content-flex01 .box-L {
  width: 48.2%;
  display: flex;
  flex-direction: column;
}

.content-flex01 .box-R {
  width: 48.2%;
  display: flex;
  flex-direction: column;
}

.content-flex01 .content-title {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.26;
  color: #f08300;
  margin-bottom: 15px;
}

.content-flex01 .in-title {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 15px;
  padding-left: 55px;
  position: relative;
}

.content-flex01 .in-title::before {
  content: "";
  width: 40px;
  height: 18px;
  background: url(/common/images/contents/single_icon01.svg);
  background-position: center;
  background-size: 100%;
  display: inline-block;
  position: absolute;
  left: 5px;
  top: 3px;
}

.content-flex01 .text {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.66;
  margin-bottom: 23px;
  text-align: justify;
}

.content-flex01 .img {
  width: 79.6%;
  margin: auto auto 0;
}

.content-flex02 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
}

.content-flex02 .box-L {
  width: 48.2%;
  display: flex;
  flex-direction: column;
}

.content-flex02 .box-R {
  width: 48.2%;
  display: flex;
  flex-direction: column;
}

.content-flex02 .content-title {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.26;
  color: #f08300;
  margin-bottom: 15px;
}

.content-flex02 .in-title {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 15px;
  padding-left: 55px;
  position: relative;
}

.content-flex02 .in-title.ex-bm03 {
  margin-bottom: 13px;
}

.content-flex02 .in-title::before {
  content: "";
  width: 40px;
  height: 18px;
  background: url(/common/images/contents/single_icon01.svg);
  background-position: center;
  background-size: 100%;
  display: inline-block;
  position: absolute;
  left: 5px;
  top: 3px;
}

.content-flex02 .text {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.66;
  margin-bottom: 23px;
  text-align: justify;
}

.content-flex02 .img {
  width: 79.6%;
  margin: auto auto 0;
}

.content-flex02 .img.mt-nonauto {
  margin-top: 30px;
}

.gascooker .content-flex01 .content-title {
  color: #95b162;
}

.gascooker .content-flex01 .in-title::before {
  background: url(/common/images/contents/single_icon02.svg);
  background-repeat: none;
  background-size: 100%;
}

.gascooker .content-flex02 .content-title {
  color: #95b162;
}

.gascooker .content-flex02 .in-title::before {
  background: url(/common/images/contents/single_icon02.svg);
  background-repeat: none;
  background-size: 100%;
}

.gascooker .spec-flex .box-L .spectype03 th {
  background: #dee7ce;
}

.gascooker .spec-flex .box-R .spectype03 th {
  background: #dee7ce;
}

.ihcooker .content-flex01 .content-title {
  color: #53ac7b;
}
.ihcooker .main-flex,.gascooker .main-flex 
 {
	 flex-direction: column;
}
.ihcooker .sp-width.main-flex .box-L,.ihcooker .sp-width.main-flex .box-R  {
    width: 100%;
}
.gascooker .single-flex01 .main-flex .box-L,.gascooker .single-flex01 .main-flex .box-R {
    width: 100%;
}
.ihcooker .content-flex01 .in-title::before {
  background: url(/common/images/contents/single_icon03.svg);
  background-repeat: none;
  background-size: 100%;
}

.ihcooker .content-flex01 .img {
  width: 100%;
  margin: 0;
}

.ihcooker .content-flex02 .content-title {
  color: #53ac7b;
}

.ihcooker .content-flex02 .in-title::before {
  background: url(/common/images/contents/single_icon03.svg);
  background-repeat: none;
  background-size: 100%;
}

.ihcooker .spec-flex .box-L .spectype03 th {
  background: #c6e6d4;
}

.ihcooker .spec-flex .box-R .spectype03 th {
  background: #c6e6d4;
}

.rohydro .hydro-title {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  color: #0071bc;
  margin-bottom: 5px;
}

.rohydro .hydro-text {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
  color: #0071bc;
  margin-bottom: 45px;
}

.rohydro .hydro-subtitle {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  color: #0071bc;
  margin-bottom: 29px;
}

.rohydro .content-flex01 {
  margin-bottom: 40px;
}

.rohydro .content-flex01 .box-L {
  width: 39%;
}

.rohydro .content-flex01 .box-L .img {
  width: 100%;
  margin: 0 auto;
}

.rohydro .content-flex01 .box-R {
  width: 54.2%;
  margin-top: -8px;
}

.rohydro .content-flex01 .box-R .content-title {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.28;
  color: #0071bc;
}

.rohydro .content-flex01 .box-R .img {
  width: 100%;
}

.rohydro .hydro-img {
  margin-bottom: 50px;
}

.rohydro .content-flex02 {
  display: flex;
}

.rohydro .content-flex02 .box-L {
  width: 50%;
  margin-top: 0;
}

.rohydro .content-flex02 .box-L .img {
  width: 100%;
  margin-top: 0;
}

.rohydro .content-flex02 .box-R {
  width: 50%;
  margin-top: 0;
}

.rohydro .content-flex02 .box-R .img {
  width: 100%;
  margin-top: 0;
}

.rohydro .heydro-outer {
  border: 2px solid #e8380d;
  border-radius: 11px;
}

.rohydro .hydro-flex03 {
  width: 91.9%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 25px;
  margin: 0 auto;
}

.rohydro .hydro-flex03 .box-L {
  width: 43.3%;
}

.rohydro .hydro-flex03 .box-L .extra-title {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.23;
  color: #333333;
  text-align: center;
  position: relative;
  margin-bottom: 12px;
}

.rohydro .hydro-flex03 .box-L .extra-title::before {
  content: "";
  width: 100%;
  height: 18px;
  background: #fff459;
  position: absolute;
  top: 0.7em;
  left: 50%;
  transform: translate(-50%, 0);
  mix-blend-mode: multiply;
}

.rohydro .hydro-flex03 .box-L .extra-title::after {
  content: "";
  width: 100%;
  height: 18px;
  background: #fff459;
  position: absolute;
  top: 1.8em;
  left: 50%;
  transform: translate(-50%, 0);
  mix-blend-mode: multiply;
}

.rohydro .hydro-flex03 .box-L .extra-text {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
}

.rohydro .hydro-flex03 .box-R {
  width: 50.7%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin: 0;
}

.rohydro .hydro-flex03 .box-R .extra-img01 {
  width: 50%;
}

.rohydro .hydro-flex03 .box-R .extra-img01 img {
  mix-blend-mode: multiply;
}

.rohydro .hydro-flex03 .box-R .extra-img01 figcaption {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.28;
  color: #333333;
  text-align: center;
}

.rohydro .hydro-flex03 .box-R .extra-img02 {
  width: 50%;
}

.rohydro .hydro-flex03 .box-R .extra-img02 img {
  mix-blend-mode: multiply;
}

.rohydro .hydro-flex03 .box-R .extra-img02 figcaption {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.28;
  color: #333333;
  text-align: center;
}

.rohydro .bottle-outer {
  background: #ffffff;
  padding: 30px 0;
  margin-bottom: 70px;
}

.rohydro .bottle-outer .hydro-flex04 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90.1%;
  margin: 0 auto;
}

.rohydro .bottle-outer .hydro-flex04 .box-L {
  width: 37.6%;
}

.rohydro .bottle-outer .hydro-flex04 .box-L .extra-title02 {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.28;
  color: #0071bc;
  margin-bottom: 7px;
}

.rohydro .bottle-outer .hydro-flex04 .box-L .extra-text02 {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
}

.rohydro .bottle-outer .hydro-flex04 .box-R {
  width: 58.4%;
}

.rohydro .hydro-flex05 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 120px;
}

.rohydro .hydro-flex05 .box-L {
  width: 48.9%;
  position: relative;
}

.rohydro .hydro-flex05 .box-L .extra-title03 {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.28;
  color: #0071bc;
}

.rohydro .hydro-flex05 .box-L .extra-img01 {
  width: 100%;
}

.rohydro .hydro-flex05 .box-R {
  width: 46.6%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.rohydro .hydro-flex05 .box-R .extra-L {
  width: 40.3%;
}

.rohydro .hydro-flex05 .box-R .extra-title03 {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.28;
  color: #0071bc;
  margin-bottom: 10px;
}

.rohydro .hydro-flex05 .box-R .extra-text03 {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
}

.rohydro .hydro-flex05 .box-R .extra-img01 {
  width: 57.3%;
}

.footer-btn-container {
  max-width: 1120px;
  width: 90.6%;
  margin: 0 auto;
  position: relative;
  padding-bottom: 135px;
}

.footer-btn-container .footer-top-reverse {
  font-family: "Mukta", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  background: #f3f3f3;
  width: 188px;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px 40px;
  border: none;
  transition: 0.3s all ease;
 text-align: center;
}

.footer-btn-container .footer-top-reverse:hover {
  opacity: 0.7;
  cursor: pointer;
}

.footer-btn-container .footer-top-reverse::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #e8380d;
  border-right: 1.5px solid #e8380d;
  transform: rotate(-45deg);
  margin-right: 5px;
    position: absolute;
    right: 33px;
    top: 46%;
}

.footer-btn {
  display: block;
  width: 71.4%;
  margin: 0 auto;
  background: #e8380d;
  color: #fff;
  font-family: "Montserrat", "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  padding: 30px 0;
  text-decoration: none;
  transition: 0.3s all ease;
    letter-spacing: 0.05em;
}

.footer-btn:hover {
  opacity: 0.7;
}

.footer {
  background: #f3f3f3;
  padding: 40px 0 20px;
}

.footer-container {
  max-width: 1120px;
  width: 90.6%;
  margin: 0 auto;
  position: relative;
    text-align: center;
}

.footer-sns {
  width: 88px;
  display: flex;
  justify-content: space-between;
  position: absolute;
  right: 0;
  top: 0;
}

.insta-icon {
  width: 36px;
  transition: 0.3s all ease;
}

.insta-icon:hover {
  opacity: 0.7;
}

.face-icon {
  width: 36px;
  transition: 0.3s all ease;
}

.face-icon:hover {
  opacity: 0.7;
}

.footer-logo {
  width: 176px;
  margin: 0 auto 20px;
}

.footer-link-list {
    display: inline-flex;
    justify-content: space-between;
    margin: 0 auto 15px;
    position: relative;
    border-left: 1px solid #d2d2d2;
}

.footer-link-item {
    text-align: center;
    font-weight: 500;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-decoration: none;
    position: relative;
}

.footer-link-item a {
    display: block;
    font-family: "Mukta", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #404544;
    text-decoration: none;
    transition: 0.3s all ease;
    border-right: 1px solid #d2d2d2;
    padding-right: 1em;
    padding-left: 1em;
}

.footer-link-item a:hover {
  opacity: 0.7;
}

.copyright {
  font-family: "Mukta", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #404544;
  text-align: center;
}

.single {
  background: #f5f5f5;
  padding-top: 70px;
}
        /* 空のサムネイル用のスタイル */
        .empty-thumbnail {
            width: 100%;
            height: 100%;
            background-color: #ffffff;
            box-sizing: border-box;
            cursor: default; /* クリックできないことを示す */
            opacity: 0.5; /* 少し薄くして操作できないことを示す */
        }
#main-carousel {
  margin-bottom: 10px;
}

.splide__track--nav>.splide__list>.splide__slide {
  border: 0 solid transparent !important;
  cursor: pointer;
}

.splide__slide {
  transition: 0.6s all ease;
}

.splide__list {
  justify-content: space-between;
  transition: 0.6s all ease;
}

#thumbnail-carousel #thumbnail-carousel-list {
  display: flex;
  justify-content: space-between;
  gap: 1.25%;
}

#thumbnail-carousel .splide__slide {
  width: 24% !important;
  height: auto !important;
  transition: 0.3s all ease;
  position: relative;
}

#thumbnail-carousel .splide__slide:hover {
  opacity: 0.7;
}

#thumbnail-carousel .splide__slide img {
  display: block !important;
}

#thumbnail-carousel .splide__slide.is-active {
  border: 1px solid rgba(0, 0, 0, 0.3) !important;
  box-sizing: content-box;
}

.splide__arrow.splide__arrow--next {
  right: -12px;
  width: 22px;
  background: none;
}

.splide__arrow.splide__arrow--prev {
  left: -18px;
  width: 22px;
  background: none;
}

.single-flex01 {
  max-width: 1120px;
  width: 90.6%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

.single-flex01 .box-L {
  width: 46.8%;
}

.single-flex01 .box-R {
  width: 48.5%;
  margin-top: 60px;
}

.single-flex01 .box-R .title {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 36px;
  text-align: left;
  position: relative;
  padding-left: 20px;
  margin-bottom: 55px;
  font-weight: 500;
}

.single-flex01 .box-R .title .mini {
  display: block;
  font-weight: 700;
  font-size: 18px;
  margin-top: 7px;
  margin-bottom: 18px;
}

.single-flex01 .box-R .title .med {
  display: block;
  font-weight: 700;
  font-size: 22px;
  margin-top: 7px;
}

.single-flex01 .box-R .title .med.ex-mt {
  margin-top: 1em;
}

.single-flex01 .box-R .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 56%;
  transform: translate(0, -50%);
  width: 2px;
  height: 135px;
  background: #f00;
}

.single-flex01 .copy {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.33;
  text-align: left;
  position: relative;
  width: 108%;
}

.single-flex01 .main-text {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.75;
  text-align: left;
  position: relative;
  margin-bottom: 45px;
}

.single-flex01 .single-link {
  display: flex;
  justify-content: space-between;
	flex-wrap: wrap;
}

.single-flex01 .single-link-item {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  width: 49%;
  background: #fff;
  color: #333;
  padding: 20px 10px 20px 0;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
	margin-bottom: 10px;
}

.single-flex01 .single-link-item:hover {
  background: #4d4d4d;
  color: #ffffff;
}

.single-flex01 .single-link-item:hover::after {
  border-right: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
}

.single-flex01 .bot_catalog::before {
    content: "";
    display: inline-block;
    position: relative;
    width: 29px;
    height: 20px;
    top: 4px;
    background-repeat: no-repeat;
    background-image: url(/common/images/ui/catalog.svg);
    background-size: contain;
    margin-right: 5px;
    margin-right: 8px;
    transition: 0.3s all ease;
}

.single-flex01 .bot_catalog:hover::before {
  background: url("/common/images/ui/catalog_w.svg") no-repeat;
}

.single-flex01 .bot_manual::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 20px;
    height: 20px;
    top: 4px;
  background: url("/common/images/ui/manual.svg") no-repeat;
  background-size: contain;
  margin-right: 5px;
  margin-right: 8px;
  transition: 0.3s all ease;
}

.single-flex01 .bot_manual:hover::before {
  background: url("/common/images/ui/manual_w.svg") no-repeat;
}
.single-flex01 .bot_contact::before {
  content: "";
  display: inline-block;
  position: relative;
    width: 23px;
    height: 20px;
    top: 5px;
  background: url("/common/images/ui/mail.svg") no-repeat;
  background-size: contain;
  margin-right: 5px;
  margin-right: 8px;
  transition: 0.3s all ease;
}

.single-flex01 .bot_contact:hover::before {
  background: url("/common/images/ui/mail_w.svg") no-repeat;
}

.single-flex01 .single-link-item::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #4d4d4d;
  border-top: 2px solid #4d4d4d;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
}

.single-container {
  max-width: 1120px;
  width: 90.6%;
  margin: 0 auto;
  padding-bottom: 80px;
  margin-bottom: 100px;
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .header {
    padding: 15px 20px 15px 15px;
    height: 60px;
  }

  .header-content {
    flex-direction: row;
    gap: 0;
    height: 100%;
    align-items: center;
    width: 100%;
  }

  .header-right {
    position: absolute;
    transform: translate(0, -50%);
    top: 50%;
    right: 63px;
    width: 110px;
  }

  .header-right .nav {
    display: none !important;
  }

  .country-selector {
    text-transform: uppercase;
    letter-spacing: 0;
    transition: color 0.3s ease;
    gap: 0;
    color: #4d4d4d;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    gap: 2px;
  }

  .country-selector span {
    display: none !important;
  }

  .flag-container {
    display: flex;
    gap: 7px;
  }

  .country-selectors {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 0;
    color: #4d4d4d;
    font-family: "Mukta", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    margin-right: 0;
    margin-top: 0;
  }

  .country-icon {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .logo {
    width: 110px;
    padding-top: 0;
  }

  #spmenu_main {
    display: none;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .nav-link {
    font-size: 12px;
  }

  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .news-list {
    margin-bottom: 20px;
  }

  .num {
    width: 87.5%;
    margin: 30px auto 20px;
  }

  .news-date,
  .news-category {
    min-width: auto;
    margin-right: 0;
  }

  .sns-container {
    padding: 0 15px;
  }

  .sns-photo {
    width: 100%;
    margin: 20px auto 0;
  }

  .sns-photo.top-sns {
    margin-bottom: 40px;
  }

  .sns-photo .left-right {
    width: 100%;
    padding-bottom: 40px;
  }

  .sns-photo .left-right ul li.balloon {
    top: -30px;
  }

  .summary {
    padding: 40px 0 60px;
  }

  .summary-title {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .summary-subtitle {
    margin: 0 auto 10px;
    font-size: 20px;
    font-weight: 400;
  }

  .summary-text {
    font-size: 14px;
    text-align: justify;
    margin-bottom: 40px;
        line-height: 1.6;
  }

  .summary-image {
    width: 100%;
  }

  .news {
    padding: 50px 0 40px;
  }

  .news .title {
    font-size: 27px;
    margin-bottom: 40px;
  }

  .news .title::before {
    height: 39px;
    width: 2px;
  }

  .news-tab {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4px;
    margin-bottom: 25px;
  }

  .news-tab-link {
    width: calc(50% - 2px);
    line-height: 1;
  }

  .news-item {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 13px 0;
  }

  .news-date {
    font-size: 14px;
  }

  .news-category {
    font-size: 12px;
  }

  .news-title {
    font-size: 14px;
    width: 100%;
    flex: none;
  }

  .news-title {
    flex: 1;
  }

  .news-title a {
    color: #e8380d;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.71;
  }

  .news-title a:hover {
    color: #06c;
  }

  .news {
    padding: 50px 0 40px;
  }

  .news #page-news-heading.title {
    font-size: 27px;
    margin-bottom: 40px;
  }

  .news #page-news-heading.title::before {
    height: 39px;
    width: 2px;
  }

  .news-tab {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4px;
    margin-bottom: 25px;
  }

  .news-tab-link {
    width: calc(50% - 2px) !important;
    line-height: 1;
  }

  .news-item {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 13px 0;
  }

  .news-date {
    font-size: 14px;
  }

  .news-category {
    font-size: 12px;
  }

  .news-title {
    font-size: 14px;
    width: 100%;
    flex: none;
  }

  .sns-container {
    margin-top: 25px;
    padding-top: 1px;
  }

  .sns-photo.top-sns {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .products {
    padding: 65px 0 10px;
  }

  .products .title {
    font-size: 30px;
    margin-bottom: 25px;
  }

  .products .title::before {
    height: 39px;
  }

  .products .products-img {
    width: 100vw;
    margin-left: -5.2%;
    margin-bottom: 20px !important;
  }

  .products-title {
    font-size: 20px !important;
    margin-bottom: 4px !important;
  }

  .products-text {
    font-size: 16px !important;
    margin-bottom: 15px !important;
  }

  .products-btn {
    font-size: 12px;
  }

  .products-box {
    margin-bottom: 50px;
  }

  .products .products-container .products-inner .products-box {
    width: 100%;
    margin-bottom: 60px;
  }

  .company {
    padding-bottom: 80px;
  }

  .company .title {
    font-size: 30px;
    margin-bottom: 25px;
    width: 85%;
  }

  .company .title::before {
    height: 39px;
    width: 2px;
  }

  .company-container {
    max-width: 1120px;
    width: 90.6%;
    margin: 0 auto;
    padding: 45px 0 50px;
    border: 1px solid #e8380d;
  }

  .company-inner {
    flex-direction: column;
    margin-top: 0;
    width: 85%;
  }

  .company-inner .company-left,
  .company-inner .company-right {
    width: 100%;
  }

  .company-inner .company-left .company-title,
  .company-inner .company-right .company-title {
    font-size: 16px;
  }

  .company-inner .company-left .company-text,
  .company-inner .company-right .company-text {
    font-size: 14px;
    text-decoration: none;
  }

  .company-inner .company-left .link-btn,
  .company-inner .company-right .link-btn {
    padding: 15px 0;
    font-size: 16px;
        margin-bottom: 10px;
        width: 100%;
  }

  .company-inner .company-left {
    margin-bottom: 20px;
  }

  .company-inner .link-container {
    width: 100%;
    flex-direction: column;
  }

  .catalog {
    padding: 50px 0 80px;
  }

  .catalog #page-catalog-heading.title {
    font-size: 27px;
    margin-bottom: 30px;
  }

  .catalog #page-catalog-heading.title::before {
    height: 39px;
    width: 2px;
  }

  .catalog .heading-text {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
  }

  .catalog .catalog-list {
    width: 100%;
    margin: 30px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .catalog .catalog-list .catalog-item {
    width: 42.4%;
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
  }

  .catalog .catalog-list .catalog-item:last-child {
    margin-bottom: 0;
  }

  .catalog .catalog-list .catalog-item .catalog-ttl {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin: 15px 0;
  }

  .catalog .catalog-list .catalog-item .catalog-link {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background: #e8380d;
    display: block;
    margin: auto auto 0;
    width: 100%;
    text-decoration: none;
    padding: 2px 0;
  }

  .contact {
    padding: 50px 0 80px;

  }

  .contact #page-contact-heading.title {
    font-size: 27px;
    margin-bottom: 30px;
  }

  .contact #page-contact-heading.title::before {
    height: 39px;
    width: 2px;
  }

  .contact .heading-text {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: 30px;
  }

  .contact .contact-list {
    width: 72.8%;
    margin: 60px auto 0;
    display: flex;
    justify-content: space-between;
  }

  .contact .contact-list .contact-item {
    width: 24.6%;
  }

  .contact .contact-list .contact-item .contact-ttl {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin: 25px 0;
  }

  .contact .contact-list .contact-item .contact-link {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background: #e8380d;
    display: block;
    margin: 0 auto;
    width: 160px;
    text-decoration: none;
    padding: 2px 0;
  }

  .contact .form-group {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .contact .form-group.area {
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .contact .choice-group {
    margin: 25px 0 5px;
  }

  .contact .contact-inner {
    width: 100%;
    max-width: 1030px;
    margin: 0 auto;
  }

  .contact .form-label {
    width: 100%;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: 0;
    margin-bottom: 10px;
    gap: 10px;
  }

  .contact .form-control {
    width: 100%;
  }

  .contact .form-choice {
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    margin: 0;
    gap: 0;
  }

  .contact .form-flex {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }

  .contact .checkbox {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #4d4d4d;
    vertical-align: middle;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
  }

  .contact .details {
    width: 100%;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 1.75;
    padding: 10px 10px;
    border: 1px solid #4d4d4d;
  }

  .contact .form-control input {
    width: 100%;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 1.75;
    padding: 10px 10px;
    border: 1px solid #4d4d4d;
  }

  .contact .form-control textarea {
    width: 100%;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 1.75;
    padding: 15px 15px;
    border: 1px solid #4d4d4d;
  }

  .contact .form-flex {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }

  .contact .form-flex input {
    width: 100%;
  }

  .contact .form-control input::-moz-placeholder {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #808080;
  }

  .contact .form-control input::placeholder {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #808080;
  }

  .contact .required {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    background: #e8380d;
    display: block;
    width: 67px;
    text-align: center;
    padding: 4px 0;
  }

  .contact .any {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #0071bc;
    width: 66px;
    display: block;
    text-align: center;
    padding: 5px 0;
  }

  .contact input[type=radio],
  .contact input[type=checkbox] {
    cursor: pointer;
  }

  .contact input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #4d4d4d;
    border-radius: 0;
    background-color: #fff;
    position: relative;
    transition: all 0.3s;
    margin-right: 10px;
  }

  .contact input[type=checkbox]:checked {
    background-color: #e8380d;
    border-color: #e8380d;
  }

  .contact input[type=checkbox]:checked::after {
    content: "✓";
    color: white;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .contact input[type=checkbox]:hover {
    border-color: #e8380d;
  }

  .contact .button-group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .contact .button-group .btn-submit {
    background: #e8380d;
    color: #ffffff;
    text-align: center;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 500;
    border: none;
    width: 79.4%;
    padding: 15px 0;
    margin-top: 0px;
  }

  .contact .button-group .btn-back {
    background-color: #e6e6e6;
    color: #4d4d4d;
    text-align: center;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 500;
    border: none;
    width: 79.4%;
    padding: 15px 0;
    margin-top: 0px;
  }

  .contact .policy-link {
    color: #0071bc;
    text-decoration: underline;
  }

  .contact .policy-text {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
  }

  .footer-btn-container {
    padding-bottom: 70px;
  }

  .footer-btn {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .sp-only {
    display: block;
  }

  .spmenu-country a {
    font-size: 12px;
    padding: 6px 15px;
  }

  .news-tab-link {
    font-size: 14px;
    padding: 10px 0;
  }

  .more-btn {
    margin-bottom: 45px;
    font-size: 12px;
  }

  .no-bg .news-tab-link {
    font-size: 14px;
    padding: 10px 0;
  }

  .footer-btn {
    font-size: 16px;
    padding: 20px 0;
  }
}

.breadcrumb {
  width: 100%;
  padding: 12px 0;
  background-color: #e6e6e6;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-size: 14px;
  line-height: 1;
}

.breadcrumb__list {
  width: 90.6%;
  margin: 0 auto;
  max-width: 1238px;
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  color: #666;
}

.breadcrumb__item--current {
  color: #e8380d;
  font-weight: 400;
  padding: 4px 0;
}

.breadcrumb__link {
  color: #666;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s ease;
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.breadcrumb__separator {
  margin: 0 6px;
  color: #666;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-weight: 400;
  padding: 4px 0;
}

@media (max-width: 768px) {
  .breadcrumb {
    padding: 7px 0;
    font-size: 12px;
  }

  .breadcrumb__separator {
    margin: 0 10px;
  }

  .breadcrumb__link {
    font-size: 12px;
    letter-spacing: 0;
  }
}

@media (max-width: 768px) {
  br {
    display: none !important;
  }

  .products-link {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 82%;
    margin: 0 auto 40px;
  }

  .products-item {
    width: 48%;
    color: #808080;
    margin-bottom: 30px;
    transition: 0.3s all ease;
  }

  .products-item.active {
    color: #e8380d;
  }

  .products-item:hover {
    color: #e8380d;
  }

  .products-item:hover img {
    stroke: #e8380d;
  }

  .products-item .products-link-text {
    font-family: 12px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
  }

  .waterheater {
    padding: 30px 0 100px;
    background: none;
  }

  .waterheater-container {
    max-width: 1120px;
    width: 90.6%;
    margin: 0 auto;
  }


  .waterheater-container .products-list {
    width: 100%;
    margin: 40px auto 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .waterheater-container .products-list .products-item {
    width: 49.6%;
    margin-bottom: 50px;
  }

  .waterheater-container .products-list .products-item:nth-child(2) {
    margin-top: 1.5px;
  }

  .waterheater-container .products-list .products-item .products-img {
    width: 72.2%;
    margin: 0 auto;
  }

  .waterheater-container .products-list .products-item .products-ttl01 {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin: 5px 0 0;
  }

  .waterheater-container .products-list .products-item .products-ttl02 {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 10px;
  }

  .waterheater-container .products-list .products-item .products-ttl03 {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 15px;
  }

  .waterheater-container .products-list .products-item .products-link {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background: #e8380d;
    display: block;
    margin: 0 auto;
    width: 80%;
    text-decoration: none;
    padding: 2px 0;
  }

  .waterheater-container .catalog-list {
    width: 41%;
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .waterheater-container .catalog-list .catalog-item {
    width: 100%;
  }

  .waterheater-container .catalog-list .catalog-item .catalog-ttl {
    font-size: 16px;
    margin: 15px 0;
  }

  .waterheater-container .catalog-list .catalog-item .catalog-link {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    width: 100%;
  }

  #waterheater-heading.title {
        font-size: 22px;
        margin-bottom: 40px;
        line-height: 1.3;
        padding-left: 18px;
  }

  #waterheater-heading.title::before {
    height: 134%;
    width: 3px;
  }

  .waterheater-link {
    width: 100%;
    margin: 0 auto 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .waterheater-link .waterheater-item {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    width: 49.4%;
    background: #F2F2F2;
    color: #4d4d4d;
    padding: 0 0;
    text-decoration: none;
    margin-bottom: 4px;
  }

  .waterheater-link .waterheater-item a {
    padding-top: 10px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 20px;
    display: block;
    position: relative;
  }
.waterheater-link .waterheater-item a::after {
    right: 50%;
    top: auto;
	bottom: 3px;
}
  .subtitle {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 22px;
    line-height: 1.15;
    text-align: left;
    position: relative;
    color: #26b7bc;
    margin-bottom: 40px;
    font-weight: 400;
  }

  .minititle {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-align: left;
    position: relative;
    padding-right: 15px;
    flex-shrink: 0;
  }

  .minititle-container {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
  }

  .extending-line {
    flex: 1;
    height: 1px;
    background: #808080;
    position: relative;
    overflow: hidden;
  }

  .waterheater-flex01 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
  }

  .waterheater-flex01 .box-L {
    width: 100%;
  }

  .waterheater-flex01 .box-R {
    width: 83.2%;
    margin: 0 auto;
  }

  .waterheater-flex01 .water-item {
    margin-bottom: 25px;
  }

  .waterheater-flex01 .water-item .water-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
  }

  .waterheater-flex01 .water-item .water-flex .water-mark {
    width: 42px;
  }

  .waterheater-flex01 .water-item .water-flex .water-content {
    width: 100%;
  }

  .waterheater-flex01 .water-item .water-flex .water-title {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 18px;
    line-height: 1.21;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
  }

  .waterheater-flex01 .water-item .water-text {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.44;
    color: #333;
    padding-left: 3.2em;
  }

  .water-model {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 15px;
  }

  .water-model-title {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #26b7bc;
  }

  .water-model-text {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
  }

  .waterheater-flex02 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .waterheater-flex02.ex-bm {
    margin-bottom: 80px !important;
  }

  .waterheater-flex02 .water-shower {
    width: 47.9%;
    margin-bottom: 20px;
  }

  #hydrogenwater-heading.title {
        font-size: 22px;
        margin-bottom: 40px;
        line-height: 1.3;
        padding-left: 18px;
  }

  #hydrogenwater-heading.title::before {
        height: 3em;
        width: 3px;
  }

  .hydrogenwater {
    padding: 50px 0 100px;
    background: none;
  }

  .hydrogenwater-container {
    max-width: 1120px;
    width: 90.6%;
    margin: 0 auto;
  }

  .hydrogenwater-container .products-list {
    width: 100%;
    margin: 40px auto 60px;
    display: flex;
    justify-content: center;
  }

  .hydrogenwater-container .products-list .products-item {
    width: 49.6%;
  }

  .hydrogenwater-container .products-list .products-item .products-img {
    width: 72.2%;
    margin: 0 auto;
  }

  .hydrogenwater-container .products-list .products-item .products-ttl01 {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin: 5px 0 0;
  }

  .hydrogenwater-container .products-list .products-item .products-ttl02 {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 10px;
  }

  .hydrogenwater-container .products-list .products-item .products-ttl03 {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    margin: 10px 0 15px;
  }

  .hydrogenwater-container .products-list .products-item .products-link {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background: #e8380d;
    display: block;
    margin: 0 auto;
    width: 80%;
    text-decoration: none;
    padding: 2px 0;
  }

  .hydrogenwater-container .catalog-list {
    width: 41%;
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hydrogenwater-container .catalog-list .catalog-item {
    width: 100%;
  }

  .hydrogenwater-container .catalog-list .catalog-item .catalog-ttl {
    font-size: 16px;
    margin: 15px 0;
  }

  .hydrogenwater-container .catalog-list .catalog-item .catalog-link {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    width: 100%;
  }

  .hydrogenwater-link {
    width: 100%;
    margin: 0 auto 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .hydrogenwater-link .hydrogenwater-item {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    width: 49.4%;
    background: #F2F2F2;
    color: #4d4d4d;
    padding: 0;
    text-decoration: none;
    margin-bottom: 4px;
  }
.hydrogenwater-link .hydrogenwater-item a::after {
        right: 50%;
        top: auto;
        bottom: 3px;
}
  .hydrogenwater-link .hydrogenwater-item a {
        padding-top: 10px;
        padding-right: 0;
        padding-left: 0;
        padding-bottom: 20px;
        display: block;
        position: relative;
  }

  .hydrogenwater-flex01 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-direction: column;
  }

  .hydrogenwater-flex01 .box-L {
    width: 100%;
    margin-bottom: 45px;
  }

  .hydrogenwater-flex01 .box-L .hydrogen-title {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 20px;
    line-height: 1.28;
    font-weight: 400;
    color: #0071BC;
    padding-bottom: 15px;
    text-align: left;
    margin: 0;
    min-height: unset;
  }

  .hydrogenwater-flex01 .box-R {
    width: 100%;
  }

  .hydrogenwater-flex01 .box-R .hydrogen-title {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 20px;
    line-height: 1.28;
    font-weight: 400;
    color: #0071BC;
    padding-bottom: 15px;
    text-align: left;
    margin: 0;
  }

  .hydrogenwater-flex01 .box-R .caution {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    margin-top: 10px;
  }

  .hydrogenwater-flex01 .box-R .caution .caution-r {
    font-size: 12;
    line-height: 1.71;
    text-align: left;
    display: block;
    margin-left: auto;
    margin-top: 0;
  }

  .hydrogenwater-content {
    background: #F7F7F8;
    padding: 35px 0 35px;
    margin-bottom: 70px;
  }

  .hydrogenwater-content .hydrogenwater-flex02 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 84.8%;
    margin: 0 auto;
  }

  .hydrogenwater-content .hydrogenwater-flex02 .box-L {
    width: 100%;
    margin-bottom: 20px;
  }

  .hydrogenwater-content .hydrogenwater-flex02 .box-L .hydrogen-title {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 20px;
    line-height: 1.28;
    font-weight: 400;
    color: #0071BC;
    padding-bottom: 10px;
    text-align: left;
    margin: 0;
  }

  .hydrogenwater-content .hydrogenwater-flex02 .box-L .hydrogen-text {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    width: 100%;
  }

  .hydrogenwater-content .hydrogenwater-flex02 .box-R {
    width: 100%;
  }

  .hydrogenwater-content .hydrogenwater-flex02 .box-R .hydrogen-title {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 28px;
    line-height: 1.28;
    font-weight: 400;
    color: #0071BC;
    padding-bottom: 15px;
    text-align: left;
    margin: 0;
  }

  #rangehood-heading.title {
        font-size: 22px;
        margin-bottom: 40px;
        line-height: 1.3;
        padding-left: 18px;
  }

  #rangehood-heading.title::before {
    height: 134%;
    width: 3px;
  }

  .rangehood {
    padding: 50px 0 100px;
    background: none;
  }

  .rangehood-container {
    max-width: 1120px;
    width: 90.6%;
    margin: 0 auto;
  }

  .rangehood-container .products-list {
    width: 100%;
    margin: 40px auto 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .rangehood-container .products-list .products-item {
    width: 46.4%;
  }

  .rangehood-container .products-list .products-item .products-img {
    width: 100%;
    margin: 0 auto;
  }

  .rangehood-container .products-list .products-item .products-ttl01 {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin: 15px 0 8px;
  }

  .rangehood-container .products-list .products-item .products-ttl02 {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 8px;
  }

  .rangehood-container .products-list .products-item .products-ttl03 {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 15px;
  }

  .rangehood-container .products-list .products-item .products-link {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background: #e8380d;
    display: block;
    margin: 0 auto;
    width: 80%;
    text-decoration: none;
    padding: 2px 0;
  }

  .rangehood-container .catalog-list {
    width: 41%;
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .rangehood-container .catalog-list .catalog-item {
    width: 100%;
  }

  .rangehood-container .catalog-list .catalog-item .catalog-ttl {
    font-size: 16px;
    margin: 15px 0;
  }

  .rangehood-container .catalog-list .catalog-item .catalog-link {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    width: 100%;
  }

  .rangehood-link {
    width: 100%;
    margin: 0 auto 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .rangehood-link .rangehood-item {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    width: 49.4%;
    background: #F2F2F2;
    color: #4d4d4d;
    padding: 0;
    text-decoration: none;
    margin-bottom: 4px;
  }

  .rangehood-link .rangehood-item a {
        padding-top: 10px;
        padding-right: 0;
        padding-left: 0;
        padding-bottom: 20px;
        display: block;
        position: relative;
  }

  .rangehood-link .rangehood-item a::after {
        right: 50%;
        top: auto;
        bottom: 3px;
}
  .rangehood .subtitle {
    color: #F08300;
    margin-bottom: 8px;
  }

  .rangehood .subtext {
    color: #F08300;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 40px;
  }

  .hood-title {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 400;
    color: #F08300;
    padding-bottom: 10px;
    text-align: left;
    margin-left: 0em;
  }

  .hood-text {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    line-height: 1.666;
    font-weight: 400;
    margin-bottom: 25px;
  }

  .hood-img {
    width: 84.3%;
    margin: 0 auto 50px;
  }

  .rangehood-flex01 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: -5px;
    margin-bottom: 0;
  }

  .rangehood-flex01 .box-L {
    width: 100%;
  }

  .rangehood-flex01 .box-R {
    width: 100%;
  }

  .rangehood-flex01 .box-R .hood-title {
    padding-bottom: 10px;
  }

  .rangehood-flex02 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
  }

  .rangehood-flex02 .box-L {
    width: 100%;
  }

  .rangehood-flex02 .box-R {
    width: 100%;
  }

  .rangehood-flex02 .box-R .hood-img {
    margin-bottom: 50px;
  }

  .rangehood-content {
    margin-bottom: 55px;
  }

  #cooker-heading.title {
        font-size: 22px;
        margin-bottom: 40px;
        line-height: 1.3;
        padding-left: 15px;
  }

  #cooker-heading.title::before {
    height: 134%;
    width: 3px;
  }

  .cooker {
    padding: 50px 0 100px;
    background: none;
  }

  .cooker-container {
    max-width: 1120px;
    width: 90.6%;
    margin: 0 auto;
  }

  .cooker-container .products-list {
    width: 100%;
    margin: 40px auto 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .cooker-container .products-list .products-item {
    width: 46.4%;
  }

  .cooker-container .products-list .products-item .products-img {
    width: 100%;
    margin: 0 auto;
  }

  .cooker-container .products-list .products-item .products-ttl01 {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin: 15px 0 8px;
  }

  .cooker-container .products-list .products-item .products-ttl03 {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    margin: 10px 0 15px;
  }

  .cooker-container .products-list .products-item .products-link {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background: #e8380d;
    display: block;
    margin: 0 auto;
    width: 80%;
    text-decoration: none;
    padding: 2px 0;
  }

  .cooker-container .catalog-list {
    width: 41%;
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .cooker-container .catalog-list .catalog-item {
    width: 100%;
  }

  .cooker-container .catalog-list .catalog-item .catalog-ttl {
    font-size: 16px;
    margin: 15px 0;
  }

  .cooker-container .catalog-list .catalog-item .catalog-link {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    width: 100%;
  }

  .cooker-link {
    width: 100%;
    margin: 0 auto 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .cooker-link .cooker-item {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    width: 49.4%;
    background: #F2F2F2;
    color: #4d4d4d;
    padding: 0 0;
    text-decoration: none;
    margin-bottom: 4px;
  }

  .cooker-link .cooker-item a {
        padding-top: 10px;
        padding-right: 0;
        padding-left: 0;
        padding-bottom: 20px;
        display: block;
        position: relative;
  }

  .cooker-link .cooker-item  a::after {
        right: 50%;
        top: auto;
        bottom: 3px;
}
  .cooker .subtitle {
    color: #53AC7B;
    margin-bottom: 8px;
  }

  .cooker .subtext {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 40px;
    color: #53AC7B;
  }

  .cooker-title {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 26px;
    line-height: 1.28;
    font-weight: 500;
    color: #53AC7B;
    padding-bottom: 5px;
    text-align: left;
    margin-left: 0em;
    margin-top: 0;
  }

  .cooker-text {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    line-height: 1.666;
    font-weight: 400;
    margin-bottom: 25px;
    margin-left: 0;
    color: #333;
  }

  .cooker-detail {
    background: #F2F2F2;
    padding: 15px 0 10px;
  }

  .cooker-detail .cooker-detail-flex {
    width: 87.9%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .cooker-detail .cooker-detail-flex .box-L {
    width: 100%;
    border-bottom: 1px solid #808080;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .cooker-detail .cooker-detail-flex .box-R {
    width: 100%;
  }

  .cooker-detail .cooker-detail-flex .cooker-detail-title {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.66;
    color: #000000;
    padding-bottom: 5px;
  }

  .cooker-detail .cooker-detail-flex .cooker-item {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    padding-left: 1em;
    text-indent: -1em;
    color: #000000;
  }

  .cooker-detail .cooker-img {
    width: 100%;
  }

  .cooker-flex01 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
    flex-direction: column-reverse;
  }

  .cooker-flex01 .box-L {
    width: 100%;
  }

  .cooker-flex01 .box-R {
    width: 100%;
    margin-bottom: 25px;
  }

  .cooker-flex02 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
    flex-direction: column-reverse;
  }

  .cooker-flex02 .box-L {
    width: 100%;
  }

  .cooker-flex02 .box-R {
    width: 100%;
    margin-bottom: 25px;
  }

  .single {
    background: #f5f5f5;
    padding-top: 45px;
  }

  #main-carousel {
    margin-bottom: 10px;
  }

  #thumbnail-carousel .splide__slide {
    width: 24% !important;
    height: auto !important;
  }

  #thumbnail-carousel .splide__slide img {
    display: block !important;
  }

  #thumbnail-carousel .splide__slide.is-active {
    border: none !important;
  }

  #thumbnail-carousel .splide__list {
    justify-content: space-between;
  }

  .splide__arrow.splide__arrow--next {
    right: -7px;
    width: 14px;
    background: none;
  }

  .splide__arrow.splide__arrow--prev {
    left: -7px;
    width: 14px;
    background: none;
  }

  .ex-mt {
    margin-top: 5px !important;
  }

  .single-flex01 {
    max-width: 1120px;
    width: 90.6%;
    margin: 0 auto;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    margin-bottom: 60px;
  }

  .single-flex01 .box-L {
    width: 100%;
  }

  .single-flex01 .box-R {
    width: 100%;
    margin-top: 0;
  }

  .single-flex01 .box-R .title {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 26px;
    text-align: left;
    position: relative;
    padding-left: 20px;
    margin-bottom: 25px;
  }

  .single-flex01 .box-R .title .mini {
    display: block;
    font-weight: 700;
    font-size: 16px;
    margin-top: 4px;
    margin-bottom: 10px;
  }

  .single-flex01 .box-R .title .med {
    display: block;
    font-weight: 700;
    font-size: 20px;
  }

  .single-flex01 .box-R .title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: 2px;
    height: 120%;
    background: #f00;
  }

  .single-flex01 .copy {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.33;
    text-align: left;
    position: relative;
    width: 100%;
  }

  .single-flex01 .main-text {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.75;
    text-align: left;
    position: relative;
    margin-bottom: 25px;
  }

  .single-flex01 .single-link {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
  }

  .single-flex01 .single-link-item {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    width: 49.3%;
    background: #fff;
    color: #333;
    padding: 10px 5px 10px 0;
    text-decoration: none;
  }
.single-flex01 .single-link-item::after {
    right: 10px;
}
  .single-container {
    max-width: 1120px;
    width: 90.6%;
    margin: 0 auto;
    padding-bottom: 60px;
    margin-bottom: 60px;
  }

  .single-water-flex01 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 50px;
  }

  .single-water-flex01 .box-L {
    width: 100%;
  }

  .single-water-flex01 .box-R {
    width: 80.5%;
    margin: 0 auto;
  }

  .single-water-flex01 .single-water-item {
    margin-bottom: 20px;
  }

  .single-water-flex01 .single-water-item:last-child {
    margin-bottom: 30px;
  }

  .single-water-flex01 .single-water-item .single-water-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }

  .single-water-flex01 .single-water-item .single-water-flex.mb-ex {
    margin-bottom: 8px;
  }

  .single-water-flex01 .single-water-item .single-water-flex .single-water-mark {
    width: 42px;
  }

  .single-water-flex01 .single-water-item .single-water-flex .single-water-content {
    width: calc(100% - 55px);
  }

  .single-water-flex01 .single-water-item .single-water-flex .single-water-title {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 18px;
    line-height: 1.21;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
  }

  .single-water-flex01 .single-water-item .single-water-flex .single-water-title .mini {
    display: block;
    font-size: 75%;
  }

  .single-water-flex01 .single-water-item .single-water-flex02 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 92.6%;
    margin: 0 auto 25px;
  }

  .single-water-flex01 .single-water-item .single-water-flex02.justy-center {
    align-items: center;
  }

  .single-water-flex01 .single-water-item .single-water-flex02 .box-L {
    width: 81.9%;
    margin-right: auto;
    margin-bottom: 10px;
  }

  .single-water-flex01 .single-water-item .single-water-flex02 .box-L .single-water-function {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 18px;
    line-height: 1.21;
    font-weight: 400;
    color: #333333;
    width: 100%;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #231815;
    text-align: center;
    padding: 10px 8px 10px;
  }

  .single-water-flex01 .single-water-item .single-water-flex02 .box-R {
    width: 100%;
  }

  .single-water-flex01 .single-water-item .single-water-flex02 .box-R .single-water-detail {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    line-height: 1.375;
    font-weight: 400;
    color: #333333;
  }

  .single-water-flex01 .single-water-item .single-water-flex02 .box-R .single-water-detail.w-over {
    width: 100%;
  }

  .single-water-flex01 .single-water-item .single-water-flex02 .box-R .single-water-detail .big {
    font-size: 20px;
    line-height: 1.21;
    display: block;
    margin-bottom: 5px;
  }

  .single-water-flex01 .single-water-item .single-water-flex02 .box-R .single-water-detail .mini {
    font-size: 14px;
    line-height: 1.375;
    display: block;
    width: 100%;
  }

  .single-water-flex01 .single-water-item .single-water-text {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.44;
    color: #333;
    padding-left: 60px;
  }

  .single-water-flex03 {
    display: flex;
    justify-content: space-between;
  }

  .single-water-flex03 .box-L {
    width: 27.1%;
  }

  .single-water-flex03 .box-L .shower-img {
    margin-bottom: 5px;
  }

  .single-water-flex03 .box-L .shower-img figcaption {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.64;
  }

  .single-water-flex03 .box-R {
    width: 61.4%;
  }

  .single-water-flex03 .box-R .shower-img {
    margin-bottom: 5px;
  }

  .single-water-flex03 .box-R .shower-img figcaption {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.64;
    text-align: left;
  }

  .single-container .waterheater-flex02 {
    margin-bottom: 30px;
  }

  .single-water-filter {
    background: #ffffff;
    width: 100%;
    padding: 35px 0 35px;
    margin-bottom: 80px;
  }

  .single-water-filter .water-filter-flex {
    width: 85.5%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .single-water-filter .water-filter-flex .box-L {
    width: 100%;
    margin-bottom: 20px;
  }

  .single-water-filter .water-filter-flex .box-R {
    width: 100%;
  }

  .single-water-filter .water-filter-flex .box-R .filter-title {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.36;
    color: #26b7bc;
    margin-bottom: 5px;
  }

  .single-water-filter .water-filter-flex .box-R .filter-text {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.625;
    margin-bottom: 20px;
    text-align: left;
  }

  .single-water-filter .water-filter-flex .box-R .filter-aside {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    padding-left: 1em;
    text-indent: -1em;
  }

  .spec-title {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 10px;
    color: #333333;
  }

  .main-flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
        flex-direction: column;
  }

  .main-flex.sp-width .box-L {
        width: 100%;
  }

  .main-flex.sp-width .box-R {
        width: 100%;
  }

  .main-flex .box-L {
    margin: 0;
        width: 100%;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
    text-indent: -1em;
    padding-left: 1em;
  }

  .main-flex .box-R {
    margin: 0 !important;
        width: 100%;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
    text-indent: -1em;
    padding-left: 1em;
  }

  .content-flex01 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
    flex-wrap: wrap;
  }

  .content-flex01.ex-bm02 {
    margin-bottom: 80px;
  }

  .content-flex01 .box-L {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 35px;
  }

  .content-flex01 .box-R {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .content-flex01 .content-title {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.26;
    color: #f08300;
    margin-bottom: 10px;
  }

  .content-flex01 .in-title {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
    padding-left: 43px;
    position: relative;
  }

  .content-flex01 .in-title::before {
    content: "";
        width: 30px;
        height: 16px;
    background: url(/common/images/contents/single_icon01.svg);
    background-position: center;
    background-size: 100%;
    display: inline-block;
    position: absolute;
    left: 3px;
    top: 3px;
  }

  .content-flex01 .text {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.66;
    margin-bottom: 18px;
    text-align: left;
  }

  .content-flex01 .img {
    width: 91.1%;
    margin: auto auto 0;
  }

  .content-flex02 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    flex-wrap: wrap;
  }

  .content-flex02 .box-L {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 35px;
  }

  .content-flex02 .box-R {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .content-flex02 .content-title {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.26;
    color: #f08300;
    margin-bottom: 8px;
  }

  .content-flex02 .in-title {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
    padding-left: 43px;
    position: relative;
  }

  .content-flex02 .in-title::before {
    content: "";
    width: 36px;
    height: 20px;
    background: url(/common/images/contents/single_icon01.svg);
    background-position: center;
    background-size: 100%;
    display: inline-block;
    position: absolute;
    left: 3px;
    top: 2px;
  }

  .content-flex02 .text {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.66;
    margin-bottom: 18px;
    text-align: left;
  }

  .content-flex02 .img {
    width: 91.1%;
    margin: auto auto 0;
  }

  .content-flex02 .img.mt-nonauto {
    margin-top: 15px;
  }

  .content-flex02.mb-sp {
    margin-bottom: 45px;
  }

  .gascooker .content-flex01 .content-title {
    color: #95b162;
  }

  .gascooker .content-flex01 .in-title::before {
    background: url(/common/images/contents/single_icon02.svg);
    background-repeat: none;
    background-size: 100%;
  }

  .gascooker .content-flex02 .content-title {
    color: #95b162;
  }

  .gascooker .content-flex02 .in-title::before {
    background: url(/common/images/contents/single_icon02.svg);
    background-repeat: none;
    background-size: 100%;
  }

  .rohydro .hydro-title {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
        font-size: 22px;
        font-weight: 500;
    line-height: 1.2;
    color: #0071bc;
    margin-bottom: 8px;
  }

  .rohydro .hydro-text {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
    color: #0071bc;
    margin-bottom: 30px;
  }

  .rohydro .hydro-subtitle {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
        font-size: 19px;
        font-weight: 500;
    line-height: 1.25;
    color: #0071bc;
    margin-bottom: 20px;
  }

  .rohydro .content-flex01 {
    margin-bottom: 25px;
    flex-direction: column;
  }

  .rohydro .content-flex01 .box-L {
    width: 100%;
    margin-bottom: 50px;
  }

  .rohydro .content-flex01 .box-L .img {
    width: 100%;
    margin: 0 auto;
  }

  .rohydro .content-flex01 .box-R {
    width: 100%;
  }

  .rohydro .content-flex01 .box-R .content-title {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
        font-size: 22px;
        font-weight: 500;
    line-height: 1.28;
    color: #0071bc;
    margin-bottom: 5px;
  }

  .rohydro .content-flex01 .box-R .img {
    width: 100%;
  }

  .rohydro .hydro-img {
    margin-bottom: 50px;
  }

  .rohydro .content-flex02 {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
  }

  .rohydro .content-flex02 .box-L {
    width: 100%;
    margin-top: 0;
    margin-bottom: 50px;
  }

  .rohydro .content-flex02 .box-L .img {
    width: 100%;
    margin-top: 0;
  }

  .rohydro .content-flex02 .box-R {
    width: 100%;
    margin-top: 0;
  }

  .rohydro .content-flex02 .box-R .img {
    width: 100%;
    margin-top: 0;
  }

  .rohydro .heydro-outer {
    border: 2px solid #e8380d;
    border-radius: 11px;
  }

  .rohydro .hydro-flex03 {
    width: 88.8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 25px 0 30px;
    margin: 0 auto;
  }

  .rohydro .hydro-flex03 .box-L {
    width: 100%;
    margin-bottom: 5px;
  }

  .rohydro .hydro-flex03 .box-L .extra-title {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.23;
    color: #333333;
    text-align: center;
    position: relative;
    margin-bottom: 18px;
  }

  .rohydro .hydro-flex03 .box-L .extra-title::before {
    content: "";
    width: 71%;
    height: 18px;
    background: #fff459;
    position: absolute;
    top: 0.6em;
    left: 50%;
    transform: translate(-50%, 0);
    mix-blend-mode: multiply;
  }

  .rohydro .hydro-flex03 .box-L .extra-title::after {
    content: "";
    width: 59%;
    height: 18px;
    background: #fff459;
    position: absolute;
    top: 1.9em;
    left: 50%;
    transform: translate(-50%, 0);
    mix-blend-mode: multiply;
  }

  .rohydro .hydro-flex03 .box-L .extra-text {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #333333;
  }

  .rohydro .hydro-flex03 .box-R {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin: 0;
  }

  .rohydro .hydro-flex03 .box-R .extra-img01 {
    width: 50%;
  }

  .rohydro .hydro-flex03 .box-R .extra-img01 img {
    mix-blend-mode: multiply;
  }

  .rohydro .hydro-flex03 .box-R .extra-img01 figcaption {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.28;
    color: #333333;
    text-align: center;
  }

  .rohydro .hydro-flex03 .box-R .extra-img02 {
    width: 50%;
  }

  .rohydro .hydro-flex03 .box-R .extra-img02 img {
    mix-blend-mode: multiply;
  }

  .rohydro .hydro-flex03 .box-R .extra-img02 figcaption {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.28;
    color: #333333;
    text-align: center;
  }

  .rohydro .bottle-outer {
    background: #ffffff;
    padding: 35px 0;
    margin-bottom: 40px;
  }

  .rohydro .bottle-outer .hydro-flex04 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 92%;
    margin: 0 auto;
  }

  .rohydro .bottle-outer .hydro-flex04 .box-L {
    width: 100%;
    margin-bottom: 20px;
  }

  .rohydro .bottle-outer .hydro-flex04 .box-L .extra-title02 {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
        font-size: 22px;
        font-weight: 500;
    line-height: 1.28;
    color: #0071bc;
    margin-bottom: 10px;
  }

  .rohydro .bottle-outer .hydro-flex04 .box-L .extra-text02 {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #333333;
  }

  .rohydro .bottle-outer .hydro-flex04 .box-R {
    width: 100%;
  }

  .rohydro .hydro-flex05 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 80px;
  }

  .rohydro .hydro-flex05 .box-L {
    position: relative;
    width: 100%;
    margin-bottom: 35px;
  }

  .rohydro .hydro-flex05 .box-L .extra-title03 {
    width: 68%;
    position: relative;
    top: 0;
    left: 0;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.28;
    color: #0071bc;
    margin-bottom: -12%;
  }

  .rohydro .hydro-flex05 .box-L .extra-img01 {
    width: 100%;
  }

  .rohydro .hydro-flex05 .box-R {
    width: 95.5%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
  }

  .rohydro .hydro-flex05 .box-R .extra-L {
    width: 100%;
  }

  .rohydro .hydro-flex05 .box-R .extra-title03 {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.28;
    color: #0071bc;
    margin-bottom: 5px;
  }

  .rohydro .hydro-flex05 .box-R .extra-text03 {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #333333;
    margin-bottom: 10px;
  }

  .rohydro .hydro-flex05 .box-R .extra-img01 {
    width: 100%;
  }

  .spec-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 80px;
  }

  .spec-flex .box-L {
    width: 100%;
  }

  .spec-flex .box-L .spectype01 {
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
  }

  .spec-flex .box-L .spectype01 tr {
    border-bottom: 1px solid #333333;
  }

  .spec-flex .box-L .spectype01 tr.border-none {
    border: none;
  }

  .spec-flex .box-L .spectype01 th {
    word-break: break-word;
    vertical-align: middle;
    width: 41.1%;
    background: #d4e9e7;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    padding: 10px;
  }

  .spec-flex .box-L .spectype01 th.inside {
    border-bottom: 1px dotted #333333;
    font-weight: 400;
  }

  .spec-flex .box-L .spectype01 th.inside .med {
    font-weight: 500;
  }

  .spec-flex .box-L .spectype01 th.border-top {
    border-top: 1px solid #333333;
  }

  .spec-flex .box-L .spectype01 th:first-child {
    width: 41.1%;
  }

  .spec-flex .box-L .spectype01 td {
    vertical-align: middle;
    width: 57.3%;
    border-left: 7px solid #f5f5f5;
    background: #ffffff;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    padding: 10px;
  }

  .spec-flex .box-L .spectype01 td.border-dotted {
    border-top: 1px dotted #333333;
  }

  .spec-flex .box-L .spectype01 td.border-top {
    border-top: 1px solid #333333;
  }

  .spec-flex .box-L .spectype03 {
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    width: 100%;
  }

  .spec-flex .box-L .spectype03 tr {
    border-bottom: 1px solid #333333;
  }

  .spec-flex .box-L .spectype03 tr.border-none {
    border: none;
  }

  .spec-flex .box-L .spectype03 th {
    word-break: break-word;
    vertical-align: middle;
    width: 41.1%;
    background: #fce3d2;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    padding: 10px;
  }

  .spec-flex .box-L .spectype03 th.inside {
    border-bottom: 1px dotted #333333;
    font-weight: 400;
  }

  .spec-flex .box-L .spectype03 th.inside .med {
    font-weight: 500;
  }

  .spec-flex .box-L .spectype03 th.border-top {
    border-top: 1px solid #333333;
  }

  .spec-flex .box-L .spectype03 th:first-child {
    width: 41.1%;
  }

  .spec-flex .box-L .spectype03 td {
    vertical-align: middle;
    width: 57.3%;
    border-left: 7px solid #f5f5f5;
    background: #ffffff;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    padding: 10px;
  }

  .spec-flex .box-L .spectype03 td.border-dotted {
    border-top: 1px dotted #333333;
  }

  .spec-flex .box-L .spectype03 td.border-top {
    border-top: 1px solid #333333;
  }

  .spec-flex .box-L .spectype04 {
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
  }

  .spec-flex .box-L .spectype04 tr {
    border-bottom: 1px solid #333333;
  }

  .spec-flex .box-L .spectype04 tr.border-none {
    border: none;
  }

  .spec-flex .box-L .spectype04 th {
    vertical-align: middle;
    width: 41.7%;
    background: #d7ebf5;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    padding: 10px;
  }

  .spec-flex .box-L .spectype04 th.outside {
    width: 19.2%;
  }

  .spec-flex .box-L .spectype04 th.inside {
    width: 41.7%;
    border-bottom: 1px dotted #333333;
    font-weight: 400;
  }

  .spec-flex .box-L .spectype04 th.border-top {
    border-top: 1px solid #333333;
  }

  .spec-flex .box-L .spectype04 td {
    vertical-align: middle;
    width: 51.8%;
    border-left: 10px solid #f5f5f5;
    background: #ffffff;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    padding: 10px;
  }

  .spec-flex .box-L .spectype04 td.border-dotted {
    border-top: 1px dotted #333333;
  }

  .spec-flex .box-L .spectype04 td.border-top {
    border-top: 1px solid #333333;
  }

  .spec-flex .box-R {
    width: 100%;
    margin-top: -1px;
  }

  .spec-flex .box-R .spectype02 {
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
  }

  .spec-flex .box-R .spectype02 tr {
    border-bottom: 1px solid #333333;
  }

  .spec-flex .box-R .spectype02 tr.border-none {
    border: none;
  }

  .spec-flex .box-R .spectype02 tr.border-dotted {
    border-bottom: 1px dotted #333333;
  }

  .spec-flex .box-R .spectype02 th {
    word-break: break-word;
    vertical-align: middle;
    width: 41.1%;
    background: #d4e9e7;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    padding: 10px;
  }

  .spec-flex .box-R .spectype02 th.inside {
    border-bottom: 1px dotted #333333;
    font-weight: 400;
  }

  .spec-flex .box-R .spectype02 th .half-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .spec-flex .box-R .spectype02 th .half-inner .half-box {
    width: 100%;
  }

  .spec-flex .box-R .spectype02 th .half-inner .half-box:nth-child(2) {
    font-weight: 400;
  }

  .spec-flex .box-R .spectype02 th.border-top {
    border-top: 1px solid #333333;
  }

  .spec-flex .box-R .spectype02 td {
    vertical-align: middle;
    width: 57.3%;
    border-left: 7px solid #f5f5f5;
    background: #ffffff;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    padding: 10px;
  }

  .spec-flex .box-R .spectype02 td.border-dotted {
    border-top: 1px dotted #333333;
  }

  .spec-flex .box-R .spectype02 td.border-top {
    border-top: 1px solid #333333;
  }

  .spec-flex .box-R .spectype03 {
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    width: 100%;
  }

  .spec-flex .box-R .spectype03 tr {
    border-bottom: 1px solid #333333;
  }

  .spec-flex .box-R .spectype03 tr.border-none {
    border: none;
  }

  .spec-flex .box-R .spectype03 th {
    word-break: break-word;
    vertical-align: middle;
    width: 41.1%;
    background: #fce3d2;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    padding: 10px;
  }

  .spec-flex .box-R .spectype03 th.inside {
    border-bottom: 1px dotted #333333;
    font-weight: 400;
  }

  .spec-flex .box-R .spectype03 th.inside .med {
    font-weight: 500;
  }

  .spec-flex .box-R .spectype03 th.border-top {
    border-top: 1px solid #333333;
  }

  .spec-flex .box-R .spectype03 th:first-child {
    width: 41.1%;
  }

  .spec-flex .box-R .spectype03 td {
    vertical-align: middle;
    width: 57.3%;
    border-left: 7px solid #f5f5f5;
    background: #ffffff;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    padding: 10px;
  }

  .spec-flex .box-R .spectype03 td.border-dotted {
    border-top: 1px dotted #333333;
  }

  .spec-flex .box-R .spectype03 td.border-top {
    border-top: 1px solid #333333;
  }

  .spec-flex .box-R .spectype04 {
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
  }

  .spec-flex .box-R .spectype04 tr {
    border-bottom: 1px solid #333333;
  }

  .spec-flex .box-R .spectype04 tr.border-none {
    border: none;
  }

  .spec-flex .box-R .spectype04 th {
    vertical-align: middle;
    width: 41.7%;
    background: #d7ebf5;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    padding: 10px;
  }

  .spec-flex .box-R .spectype04 th.outside {
    width: 19.2%;
  }

  .spec-flex .box-R .spectype04 th.inside {
    width: 41.7%;
    border-bottom: 1px dotted #333333;
    font-weight: 400;
  }

  .spec-flex .box-R .spectype04 th.border-top {
    border-top: 1px solid #333333;
  }

  .spec-flex .box-R .spectype04 td {
    word-break: break-all;
    vertical-align: middle;
    width: 51.8%;
    border-left: 10px solid #f5f5f5;
    background: #ffffff;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    padding: 10px;
  }

  .spec-flex .box-R .spectype04 td.border-dotted {
    border-top: 1px dotted #333333;
  }

  .spec-flex .box-R .spectype04 td.border-top {
    border-top: 1px solid #333333;
  }

  .spec-flex .box-R .feature-title {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .spec-flex .box-R .feature-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .spec-flex .box-R .feature-list .feature-item {
    width: 47.6%;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    color: #333333;
    background: #c6e6d4;
    padding: 4px 5px 6px 5px;
    margin-bottom: 15px;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .spec-flex .box-R .feature-list::after {
    content: "";
    width: 47.6%;
  }

  .ihcooker .content-flex01 .box-L {
    margin-bottom: 0;
  }

  .ihcooker .spec-flex {
    margin-bottom: 45px;
  }

  .ihcooker .spec-flex .box-R {
    margin-top: 30px;
  }

  .model-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 60px;
  }

  .model-flex .box-L {
    width: 100%;
    margin-bottom: 40px;
  }

  .model-flex .box-L .modeltype01 {
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    width: 100%;
  }

  .model-flex .box-L .modeltype01 tr {
    border-bottom: 1px dotted #333333;
  }

  .model-flex .box-L .modeltype01 tr.border {
    border-bottom: 1px solid #333333;
  }

  .model-flex .box-L .modeltype01 tr:first-child td {
    font-weight: 500;
  }

  .model-flex .box-L .modeltype01 th {
    word-break: break-word;
    vertical-align: middle;
    width: 41.1%;
    background: #d4e9e7;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    padding: 10px;
  }

  .model-flex .box-L .modeltype01 th.inside {
    border-bottom: 1px dotted #333333;
  }

  .model-flex .box-L .modeltype01 th.border-top {
    border-top: 1px solid #333333;
  }

  .model-flex .box-L .modeltype01 td {
    word-break: break-word;
    font-weight: 400;
    vertical-align: middle;
    width: 57.3%;
    border-left: 10px solid #f5f5f5;
    background: #ffffff;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    padding: 10px;
  }

  .model-flex .box-R {
    width: 100%;
  }

  .model-flex .box-R .modeltype02 {
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    width: 100%;
  }

  .model-flex .box-R .modeltype02 tr {
    border-bottom: 1px dotted #333333;
  }

  .model-flex .box-R .modeltype02 tr.border {
    border-bottom: 1px solid #333333;
  }

  .model-flex .box-R .modeltype02 tr:first-child td {
    font-weight: 500;
  }

  .model-flex .box-R .modeltype02 th {
    vertical-align: middle;
    width: 41.1%;
    background: #d4e9e7;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    padding: 10px;
  }

  .model-flex .box-R .modeltype02 th.inside {
    border-bottom: 1px dotted #333333;
  }

  .model-flex .box-R .modeltype02 th.border-top {
    border-top: 1px solid #333333;
  }

  .model-flex .box-R .modeltype02 td {
    font-weight: 400;
    vertical-align: middle;
    width: 57.3%;
    border-left: 10px solid #f5f5f5;
    background: #ffffff;
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    padding: 10px;
  }

  .rohydro .model-flex {
    margin-bottom: 20px;
  }

  .category-btn {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #ffffff;
    background: #e8380d;
    text-align: center;
    width: 79.4%;
    display: block;
    margin: 0 auto;
    padding: 20px 0;
  }

  .footer-btn-container {
    max-width: 1120px;
    width: 90.6%;
    margin: 0 auto;
    position: relative;
  }

  .footer-btn-container .footer-top-reverse {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #333;
    background: #f3f3f3;
    width: 130px;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 10px 18px;
    border: none;
  }

  .footer-btn-container .footer-top-reverse::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid #e8380d;
    border-right: 1.5px solid #e8380d;
    transform: rotate(-45deg);
    margin-right: 5px;
    position: absolute;
    right: 4%;
    top: 48%;
  }

  .footer-btn {
    display: block;
    width: 100%;
    margin: 0 auto;
    background: #e8380d;
    color: #fff;
    font-family: "Montserrat", "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    padding: 30px 0;
    text-decoration: none;
  }

  .footer {
    background: #f3f3f3;
    padding: 35px 0 35px;
  }

  .footer-container {
    max-width: 1120px;
    width: 90.6%;
    margin: 0 auto;
    position: relative;
  }

  .footer-sns {
    width: 88px;
    display: flex;
    justify-content: space-between;
    position: relative;
    right: unset;
    top: unset;
    margin: 0 auto 35px;
  }

  .insta-icon {
    width: 36px;
  }

  .face-icon {
    width: 36px;
  }

  .footer-logo {
    width: 140px;
    margin: 0 auto 40px;
  }

  .footer-link-list {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 740px;
    margin: 0 auto 30px;
    position: relative;
    flex-wrap: wrap;
    gap: 8px 20px;
    border-left: none;
  }

  .footer-link-list::after {
    content: none;
  }

  .footer-link-item {
    text-align: center;
    font-weight: 500;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-decoration: none;
    position: relative;
    margin-left: -1px;
  }

  .footer-link-item::after {
    position: absolute;
    content: "";
    height: 15px;
    width: 1px;
    background-color: #d2d2d2;
    right: -10px;
    top: 50%;
    transform: translate(0, -50%);
  }

  .footer-link-item::before {
    position: absolute;
    content: "";
    height: 15px;
    width: 1px;
    background-color: #d2d2d2;
    left: -10px;
    top: 50%;
    transform: translate(0, -50%);
  }

  .footer-link-item a {
    display: block;
    font-family: "Mukta", sans-serif;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    border-right: none;
  }

  .copyright {
    font-size: 12px;
    text-align: center;
  }

  .pc-only {
    display: none;
  }

  .p-head {
    width: 100%;
    position: relative;
  }

  .p-head .p-head-text {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 3.73vw;
    line-height: 1.5;
    font-weight: 400;
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 2px 2px 10px rgb(255, 255, 255), -2px -2px 10px rgb(255, 255, 255);
    text-align: left;
    width: 90.6%;
    max-width: 1120px;
    text-wrap: auto;
  }
	.p-head .p-head-text .sp-only{
		display: block !important
  }
	.p-head .p-head-text br{
		display: block !important
  }    
	.p-head .p-head-text .pc-only {
        display: none !important;
    }
	
  .t-head {
    width: 100%;
    position: relative;
  }

  .t-head .t-head-text {
    font-family: "Noto Sans", "Noto Sans JP", "Noto Sans Thai", sans-serif;
    font-size: 4vw;
    line-height: 1.34;
    font-weight: 600;
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 2px 2px 10px rgb(255, 255, 255), -2px -2px 10px rgb(255, 255, 255);
    text-align: left;
    width: 90.6%;
    max-width: 1120px;
  }
  .t-head .t-head-text br{
    display: inherit !important;
    }
	
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;

  z-index: 9999;

  pointer-events: none;

  opacity: 0;

  transition: opacity 0.8s ease;
}


body.fade::after {
  opacity: 1;
}

.icon-wrapper {
  position: relative;
}

.icon-wrapper img {
  display: block;
  transition: opacity 0.3s ease;
}

.icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.products-item:hover .icon-hover {
  opacity: 1;
}

.products-item:hover .icon-default {
  opacity: 0;
}

.icon-wrapper img {
  width: 100%;
}

.attention{
    font-size: 14px;
    margin-top: 10px;
}