@charset "UTF-8";
:root {
  --primary: #00B7CC;
  --secondary: #4371BA;
  --blue: #7E88ED;
  --red: #EF6B6B;
  --orange: #F2970B;
  --green: #85B201;
  --black: #212A37;
  --gray-100: #657A85;
  --gray-200: #A9B4B9;
  --gray-300: #CED4DB;
  --gray-350: #F0F2F4;
  --gray-400: #F6F7F8;
  --gray-500: #eeeeee;
  --white: #fff;
  --light-blue-100: #E0F6F9;
  --light-blue-200: #F2FBFC;
  --light-blue-300: #EAF8FA;
}

.is-drawer-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  background-color: #f8f8f8;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
/* フォームリセット */
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  font-size: 16px;
}

a {
  text-decoration: none;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*:focus {
  outline: none;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

/* Display utilities */
.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-inline {
  display: inline;
}

.row {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  align-items: flex-start;
}
.row > * {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .row > * {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .row > * + * {
    margin-top: 1rem;
  }
}

.article__content {
  width: calc(79.6875% - 2rem);
}
@media screen and (max-width: 768px) {
  .article__content {
    width: 100%;
  }
}

.article__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .article__header {
    margin-bottom: 1rem;
  }
}

.article__title {
  font-size: 24px;
  color: var(--primary);
  font-weight: 600;
  padding-bottom: 6px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .article__title {
    font-size: 20px;
  }
}
.article__title::before, .article__title::after {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.article__title::before {
  background-color: var(--gray-300);
  width: 100%;
}
.article__title::after {
  background-color: var(--primary);
  width: 80px;
}

.article__date {
  text-align: right;
}

.article__inner {
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
  margin-top: 40px;
}

.article__sidebar {
  width: 20.3125%;
}
@media screen and (max-width: 768px) {
  .article__sidebar {
    display: none;
  }
}

.article__body h2 {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .article__body h2 {
    margin-bottom: 1rem;
  }
}
.article__body h3 {
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .article__body h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
}
.article__body h2 {
  font-size: 24px;
  color: var(--primary);
  font-weight: 600;
  padding-bottom: 6px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .article__body h2 {
    font-size: 20px;
  }
}
.article__body h2::before, .article__body h2::after {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.article__body h2::before {
  background-color: var(--gray-300);
  width: 100%;
}
.article__body h2::after {
  background-color: var(--primary);
  width: 80px;
}
.article__body h3 {
  font-size: 20px;
  color: var(--primary);
  font-weight: 600;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--primary);
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .article__body h3 {
    font-size: 18px;
  }
}
.article__body h3.center {
  margin-inline: auto;
}
.article__body h3.text-bg-lightBlue {
  border: 0;
  width: 100%;
  padding-bottom: 0;
  font-size: 18px;
}
.article__body h4 {
  font-size: 16px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}
.article__body h4.full-line {
  border-bottom: 1px solid var(--primary);
}
.article__body p + p {
  margin-top: 1rem;
}
.article__body a {
  color: var(--primary);
  text-decoration: underline;
}
.article__body .style-none {
  color: var(--text);
  border: 0;
}
.article__body .style-none::before, .article__body .style-none::after {
  display: none;
}
.article__body .title-attention {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  border-bottom: 1px solid var(--red);
}

.article__description + .article__body {
  margin-top: 2rem;
}

.article__nav {
  margin-block: 3.5rem 4rem;
}

@media screen and (max-width: 768px) {
  .article__nav-wrap {
    width: 90%;
    margin-inline: auto;
  }
}
.article__nav-wrap + .article__nav-wrap {
  margin-top: 24px;
}

.article__nav-title {
  font-weight: bold;
  margin-bottom: 1rem;
}

.article__nav-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 40px;
}
@media screen and (max-width: 768px) {
  .article__nav-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }
}

.article__nav-list--vertical {
  grid-template-columns: 1fr;
}

.article__nav-item {
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .article__nav-item {
    font-size: 15px;
  }
}

a.article__nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--primary);
  height: 100%;
  transition: ease-in-out 0.3s;
}
a.article__nav-link:hover {
  background-color: var(--gray-500);
}
a.article__nav-link::after {
  content: "";
  display: block;
  width: 16px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: var(--primary);
  mask-image: url("../images/common/icon-arrow-white.png");
  mask-size: contain;
  mask-repeat: no-repeat;
  transform: rotate(90deg);
}

.section {
  overflow: hidden;
  padding-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .section {
    padding-bottom: 1.5rem;
  }
}
.section + .section {
  padding-top: 3rem;
}
@media screen and (max-width: 768px) {
  .section + .section {
    padding-top: 1.5rem;
  }
}

.section__container {
  padding-top: 48px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .section__container {
    padding-top: 64px;
  }
}

.inner {
  width: 100%;
  max-width: 1330px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: none;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.content {
  padding-block: 2rem;
}
.content:first-of-type {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .content {
    padding-block: 1rem;
  }
}
.content:last-of-type {
  padding-bottom: 0;
}

.content--bg {
  background-color: var(--gray-400);
}

.content__item + .content__item {
  margin-top: 2rem;
}

.header {
  background-color: var(--white);
  border-top: 6px solid var(--primary);
  padding-block: 18px 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding-block: 18px 12px;
  }
}

.header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-inline: 20px;
}
@media screen and (max-width: 1280px) {
  .header__inner {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    align-items: center;
  }
}

.header__logo {
  display: block;
  transition: ease-in-out 0.3s;
}
.header__logo:hover {
  opacity: 0.7;
}
.header__logo .logo__img {
  width: 200px;
}
@media screen and (max-width: 1024px) {
  .header__logo .logo__img {
    width: 160px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo .logo__img {
    width: 120px;
  }
}
@media screen and (max-width: 1024px) {
  .header__logo .logo--text {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo .logo--text {
    gap: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .header__logo .logo__organization {
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo .logo__organization {
    font-size: 8px;
  }
}

.header__utils {
  margin-left: auto;
}
@media screen and (max-width: 1280px) {
  .header__utils {
    display: none;
  }
}

.header__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header__lang,
.header__contact {
  padding-inline: 20px;
  border-right: 1px solid var(--black);
  transition: ease-in-out 0.3s;
}
.header__lang:hover,
.header__contact:hover {
  color: var(--primary);
}

.header__lang {
  font-size: 14px;
}

.header__search {
  margin-left: 20px;
  min-width: 238px;
}

.header__nav {
  margin-top: 12px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 1440px) {
  .header__nav-list {
    gap: 32px;
  }
}

.header__nav-item {
  position: relative;
}

.header__submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding: 8px 0;
  z-index: 100;
}

.header__nav-item:hover .header__submenu {
  display: block;
}

.header__submenu-item {
  padding: 0;
}

.header__submenu-link {
  display: block;
  padding: 8px 16px;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__submenu-link:hover {
  background-color: #f5f5f5;
}

.header__nav-link {
  transition: color 0.3s;
}
@media screen and (max-width: 1280px) {
  .header__nav-link {
    font-size: 15px;
  }
}
.header__nav-link:hover {
  color: var(--primary);
}
.header__nav-link.is-active {
  color: var(--primary);
}

.header__menu-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  margin-top: 10px;
}
@media screen and (max-width: 1280px) {
  .header__menu-button {
    margin-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  .header__menu-button {
    margin-left: auto;
    margin-top: 0;
  }
}

.hamburger {
  display: inline-block;
  width: 40px;
  aspect-ratio: 1;
  position: relative;
  transition: all 0.3s ease;
  z-index: 110;
}

.hamburger__line {
  position: absolute;
  height: 2px;
  width: 23px;
  background-color: var(--primary);
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

/* 3本線を上中下に配置 */
.hamburger__line:nth-child(1) {
  top: 10px;
}

.hamburger__line:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.hamburger__line:nth-child(3) {
  bottom: 10px;
}

/* メニュー開いた時のアニメーション（.is-activeクラスで制御） */
.hamburger.is-open {
  margin-top: 0;
}
.hamburger.is-open .hamburger__line {
  background-color: var(--white);
  width: 28px;
}
.hamburger.is-open .hamburger__line:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger.is-open .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%);
}
.hamburger.is-open .hamburger__line:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  color: var(--white);
  padding: 18px 20px;
  transform: translateX(110%);
  transition: transform 0.8s ease;
  z-index: 100;
  overflow: auto;
}
.drawer.is-open {
  transform: translateX(0);
}

.drawer__logo {
  display: inline-block;
  width: 210px;
}

.drawer__nav {
  margin-top: 52px;
}

.header--en .header__logo {
  width: 478px;
}

.drawer--en .drawer__logo {
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
}

.global-menu__nav--en .global-menu__nav-body {
  height: auto;
}

.footer {
  background-color: var(--primary);
}

.footer__inner {
  padding: 32px;
  color: var(--white);
  max-width: 1440px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 32px 15px;
  }
}

.footer__logo {
  display: inline-block;
  transition: ease-in-out 0.3s;
}
.footer__logo:hover {
  opacity: 0.7;
}
.footer__logo .logo__img {
  width: 210px;
}
@media screen and (max-width: 768px) {
  .footer__logo .logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.footer__nav {
  margin-top: 40px;
}

.footer__copyright {
  background-color: var(--white);
  color: var(--primary);
  text-align: center;
  font-size: 12px;
  padding-block: 8px 10px;
}

.sidebar {
  position: sticky;
  top: 20px;
  left: 0;
  padding-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .sidebar {
    display: none;
  }
}

.sidebar__item {
  padding: 16px;
}
@media screen and (max-width: 1280px) {
  .sidebar__item {
    padding: 12px 6px 12px 2px;
  }
}
.sidebar__item:not(:first-child) {
  border-top: 1px dashed var(--gray-300);
}
.sidebar__item.is-active {
  background-color: #E5F8FA;
  border-left: 2px solid var(--primary);
  padding-left: 14px;
}
@media screen and (max-width: 1280px) {
  .sidebar__item.is-active {
    padding-left: 0px;
  }
}

.sidebar__title {
  font-weight: bold;
  display: flex;
  align-items: flex-start;
}
.sidebar__title::before {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  background-color: var(--primary);
  mask-image: url("../images/common/icon-water.png");
  mask-size: contain;
  mask-repeat: no-repeat;
}

.sidebar__sublist {
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
}
@media screen and (max-width: 1280px) {
  .sidebar__sublist {
    padding-left: 16px;
  }
}

.sidebar__subitem {
  position: relative;
  padding-left: 12px;
  transition: all 0.3s ease-in-out;
}
.sidebar__subitem::before {
  position: absolute;
  left: 0;
  top: 10px;
  content: "";
  display: block;
  width: 6px;
  aspect-ratio: 1/1;
  background-color: var(--black);
  mask-image: url("../images/common/icon-corner.png");
  mask-size: contain;
  mask-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}
.sidebar__subitem:hover {
  color: var(--primary);
}
.sidebar__subitem:hover::before {
  background-color: var(--primary);
}

.sidebar__link.is-active {
  color: var(--primary);
}

.global-menu {
  display: grid;
  grid-template-columns: 16.6666% 1fr;
  gap: 40px 60px;
}
@media screen and (max-width: 768px) {
  .global-menu {
    grid-template-columns: 1fr;
    grid-template-areas: "nav" "left";
  }
}

.global-menu__left-section {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .global-menu__left-section {
    grid-area: left;
  }
}

.global-menu__contact {
  margin-top: 32px;
}

.global-menu__links {
  display: flex;
  gap: 1em;
  margin-top: 32px;
}

.global-menu__link {
  font-size: 14px;
  display: flex;
  gap: 0.5em;
  transition: ease-in-out 0.3s;
}
.global-menu__link:first-child::after {
  content: "/";
}
.global-menu__link:hover {
  opacity: 0.7;
}

.global-menu__nav {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .global-menu__nav {
    grid-area: nav;
    flex-direction: column;
  }
}

.global-menu__nav-wrap {
  width: calc(50% - 12px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.global-menu__nav-wrap:last-child {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .global-menu__nav-wrap {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .global-menu__nav-wrap--bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }
}

.global-menu__nav-wrap-item {
  width: 100%;
}

.global-menu__nav-title {
  font-size: 20px;
  font-weight: bold;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .global-menu__nav-title--accordion {
    cursor: pointer;
    position: relative;
  }
}

@media screen and (max-width: 768px) {
  .global-menu__nav-title--accordion::before,
  .global-menu__nav-title--accordion::after {
    content: "";
    width: 17px;
    height: 2px;
    background-color: var(--white);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }
}

@media screen and (max-width: 768px) {
  .global-menu__nav-title--accordion::after {
    transform: rotate(90deg) translateY(-50%);
    transform-origin: top;
  }
}

.global-menu__nav-body {
  transition: height 0.3s ease-in-out;
  display: flex;
  gap: 20px;
  padding-top: 8px;
}
@media screen and (max-width: 768px) {
  .global-menu__nav-body {
    height: 0;
    overflow: hidden;
    flex-direction: column;
  }
}

.global-menu__nav-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.global-menu__nav-list--row {
  position: relative;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  padding-left: 32px;
}
.global-menu__nav-list--row::before {
  position: absolute;
  left: 20px;
  top: 6px;
  content: "";
  display: block;
  width: 6px;
  aspect-ratio: 1/1;
  background: url("../images/common/icon-corner.png") no-repeat center center/contain;
}
.global-menu__nav-list--row .global-menu-nav-item:not(:last-child)::after {
  content: "/";
  margin-left: 12px;
}

.global-menu__nav-title.is-open::after {
  transform: rotate(0deg) translateY(-50%);
}
.global-menu__nav-title.is-open + .global-menu__nav-body {
  height: auto;
}

.global-menu-nav-item__title {
  font-weight: bold;
  display: flex;
  align-items: center;
}
.global-menu-nav-item__title::before {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  background: url("../images/common/icon-water.png") no-repeat center center/contain;
}

.global-menu-nav-item__list {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.global-menu-nav-item__item {
  position: relative;
  padding-left: 12px;
}
.global-menu-nav-item__item::before {
  position: absolute;
  left: 0;
  top: 10px;
  content: "";
  display: block;
  width: 6px;
  aspect-ratio: 1/1;
  background: url("../images/common/icon-corner.png") no-repeat center center/contain;
}

.global-menu-nav-item__link {
  transition: opacity 0.3s ease-in-out;
}
.global-menu-nav-item__link:hover {
  opacity: 0.7;
}

.pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0;
}

.pagination__item .page-numbers {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.875rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.25rem;
  color: var(--gray-700);
  text-decoration: none;
  transition: all 0.3s ease;
}
.pagination__item .page-numbers:hover {
  background-color: var(--gray-100);
}
.pagination__item .page-numbers.current {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.pagination__item .page-numbers.current:hover {
  background-color: var(--primary);
}

.top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

.top-btn__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: ease-in-out 0.3s;
}
.top-btn__link:hover {
  opacity: 0.7;
}

.top-btn__text {
  width: fit-content;
  font-size: 12px;
  color: var(--primary);
}

a.button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  transition: ease-in-out 0.3s;
  padding: 8px 12px 6px;
  text-decoration: none;
}
a.button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  a.button {
    padding: 8px 8px 6px;
  }
}
a.button--border {
  border: 1px solid var(--white);
  color: var(--white);
  text-align: center;
}
a.button--border:hover {
  color: var(--white);
  background-color: var(--primary);
}
a.button--arrow {
  gap: 10px;
}
a.button--arrow::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: var(--white);
  mask-image: url("../../images/common/icon-arrow-white.png");
  mask-size: cover;
  flex-shrink: 0;
}
a.button--center {
  justify-content: center;
}
a.button--white {
  color: var(--black);
  background-color: var(--white);
  font-weight: bold;
}
a.button--white::after {
  background-color: var(--primary);
}
a.button--primary {
  color: var(--white);
  background-color: var(--primary);
  border-radius: 40px;
}
a.button--secondary {
  color: var(--white);
  background-color: var(--secondary);
  border-radius: 5px;
}
a.button--red {
  color: var(--white);
  background-color: var(--red);
}
a.button--blue {
  color: var(--white);
  background-color: var(--blue);
  border-radius: 5px;
}
a.button--orange {
  color: var(--white);
  background-color: var(--orange);
  border-radius: 5px;
}
a.button--green {
  color: var(--white);
  background-color: var(--green);
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  a.button--blue, a.button--orange, a.button--green {
    width: 100%;
  }
}

.logo {
  display: block;
}

.logo__img {
  display: block;
  aspect-ratio: 210/63;
  mask-image: url("/images/common/site-logo.png");
  mask-size: contain;
  mask-repeat: no-repeat;
}

.logo--primary {
  color: var(--primary);
}
.logo--primary .logo__img {
  background-color: var(--primary);
}

.logo--white {
  color: var(--white);
}
.logo--white .logo__img {
  background-color: var(--white);
}

.logo--text {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo__organization {
  font-size: 14px;
  font-weight: bold;
}

.breadcrumb {
  padding-block: 40px;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.breadcrumb__item {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb__item:not(:last-child)::after {
  display: block;
  content: "";
  height: 1px;
  width: 16px;
  background-color: var(--gray-200);
}
.breadcrumb__item:last-child a,
.breadcrumb__item span {
  color: var(--gray-200);
  pointer-events: none;
  cursor: default;
}
.breadcrumb__item a {
  text-decoration: none;
}

.page-header {
  padding-block: 54px;
  background: url("/images/common/page-header-pc.png") no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .page-header {
    background: url("/images/common/page-header-sp.png") no-repeat center center/cover;
  }
}

.page-header__inner {
  text-align: center;
  color: var(--white);
}

.page-header__title {
  font-size: 16px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .page-header__title {
    font-size: 14px;
  }
}

.page-header__subtitle {
  font-size: 30px;
  line-height: 1;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .page-header__subtitle {
    font-size: 24px;
    line-height: 1.2;
  }
}

.google-search {
  background-color: var(--gray-500);
  border: none;
  border-radius: 16px;
}
.google-search form.gsc-search-box {
  position: relative;
  padding: 4px;
  padding-left: 12px;
  margin-bottom: 0;
  max-width: 240px;
  margin: 0;
}
.google-search form.gsc-search-box ::placeholder {
  color: var(--gray-200);
}
.google-search table.gsc-search-box {
  padding: 0;
  margin-bottom: 0;
}
.google-search input {
  background-color: var(--gray-500) !important;
  border: none !important;
  padding-left: 4px !important;
  font-size: 14px;
}
.google-search .gsib_a,
.google-search .gsst_a {
  padding: 0 !important;
  background-image: none !important;
}
.google-search .gsib_b {
  width: 0;
  height: 0;
}
.google-search .gsc-input-box {
  background-color: var(--gray-500);
  padding: 0;
  border: none !important;
}
.google-search .gsc-search-button {
  display: block !important;
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 50%;
  border: none !important;
}
.google-search a.gsst_a {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 52%;
  transform: translateY(-50%);
  right: 26px;
}
.google-search .gsc-search-button svg {
  width: 16px;
}

.search-input {
  position: relative;
}
.search-input ::placeholder {
  color: var(--gray-200);
}

.search-input__input {
  background-color: var(--gray-500);
  border: none;
  border-radius: 16px;
  padding: 4px 12px;
  width: 100%;
}

.search-input__button {
  aspect-ratio: 1/1;
  width: 24px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  right: 4px;
  background-color: var(--gray-100);
  border-radius: 50%;
}

.search-input__icon {
  width: 18px;
}

.title {
  font-weight: 700;
}

.title--box {
  display: inline-block;
  font-size: 12px;
  padding: 4px 8px 2px;
  border-radius: 2px;
  color: var(--white);
}
.title--box + * {
  margin-top: 8px;
}

.title--orange {
  background-color: var(--orange);
}

.title--red {
  background-color: var(--red);
}

.title--primary {
  background-color: var(--primary);
}

.title--secondary {
  background-color: var(--secondary);
}

.section-title {
  font-weight: 600;
}
.section-title__en {
  font-size: 60px;
  color: var(--primary);
  font-style: italic;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.8rem;
}
@media screen and (max-width: 768px) {
  .section-title__en {
    font-size: 36px;
    letter-spacing: 0.25em;
  }
}
.section-title__ja {
  display: block;
  line-height: 1;
  margin-top: -10px;
}
@media screen and (max-width: 768px) {
  .section-title__ja {
    font-size: 14px;
    margin-top: -4px;
    letter-spacing: 0.25em;
  }
}

.partner-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .partner-block {
    margin-top: 2rem;
  }
}

h3.partner-block__title {
  text-align: center;
  font-size: 24px;
  color: var(--primary);
  margin-block: 0 !important;
  border: 0;
}
@media screen and (max-width: 768px) {
  h3.partner-block__title {
    font-size: 20px;
  }
}

.partner-block__banner {
  width: 67.9591836735%;
}
@media screen and (max-width: 768px) {
  .partner-block__banner {
    width: 100%;
  }
}

.partner-block__title + .partner-block__banner {
  margin-top: 32px;
}

.partner-block__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background-color: var(--gray-400);
  padding: 40px;
  width: 72.8571428571%;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .partner-block__list {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 10px;
  }
}

.partner-block__item img {
  width: 100%;
}

.box {
  padding: 24px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .box {
    padding: 16px;
  }
}
.box + .box {
  margin-top: 1rem;
}

.box--note {
  background-color: var(--gray-400);
}

.box--light-gray {
  background-color: var(--gray-350);
}

.box--blue {
  background-color: var(--light-blue-100);
}

.box--border-primary {
  border: 1px solid var(--primary);
}

.box--border-secondary {
  border: 1px solid var(--secondary);
}

.box--border-red {
  border: 1px solid var(--red);
}

.box--border-gray {
  border: 1px solid var(--gray-300);
}

.box__title {
  font-weight: bold;
  font-size: 16px;
}

.profile-block {
  padding-block: 2.5rem 2rem;
}

h2 + .profile-block {
  padding-top: 0;
}

.profile-block__name {
  font-size: 24px;
}

.profile-block__container {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .profile-block__container {
    flex-direction: column;
  }
}

.profile-block__left {
  flex-shrink: 0;
}

.profile-block__right {
  flex: 1;
}

.profile-block__title {
  display: block;
  font-size: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--light-gray);
}

.profile-block__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-block__item {
  display: flex;
  align-items: flex-start;
  gap: 58px;
  padding-block: 12px;
  border-bottom: 1px solid var(--light-gray);
}

.profile-block__year {
  min-width: 50px;
}
.profile-block__year:empty {
  display: none;
}

.profile-block__text {
  flex: 1;
  color: #444;
}

.trend-info {
  padding: 40px 20px;
  border: 1px solid var(--secondary);
}

.trend-info__title {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  color: var(--secondary);
}

.trend-info__subtitle {
  font-size: 20px;
  font-weight: bold;
  color: var(--secondary);
}

.movie {
  position: relative;
}
.movie img {
  width: 100%;
}
.movie::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: var(--white);
  mask-image: url("/images/safety/toilet/play.png");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.movie--gray::before {
  background-color: var(--gray-200);
}

.accordion summary {
  padding: 20px 24px;
  background-color: var(--light-blue-300);
  cursor: pointer;
  list-style: none;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion summary > span::after {
  display: block;
  content: "";
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  background: url(../images/common/icon-plus.png) no-repeat center center/contain;
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .accordion summary > span::after {
    width: 30px;
    height: 30px;
  }
}
.accordion[open] summary > span::after {
  transition: transform 0.3s;
  background: url(../images/common/icon-minus.png) no-repeat center center/contain;
}

.image-block__body {
  display: flex;
  gap: 2rem;
}

.info-block {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .info-block {
    grid-template-columns: 1fr;
  }
}
.info-block + .info-block {
  margin-top: 32px;
}

.info-block--half {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .info-block--half {
    grid-template-columns: 1fr;
  }
}

.info-block h6 {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .info-block__image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    text-align: right;
  }
}

.caution-text {
  border: 1px dashed var(--orange);
  padding: 20px;
}
.caution-text .midashi {
  font-size: 16px;
  font-weight: 600;
  color: var(--orange);
}

.attention-block {
  border: 1px solid var(--red);
}

.attention-block__title {
  color: var(--white);
  background-color: var(--red);
  text-align: center;
  padding: 16px;
}

.attention-block__content {
  padding: 20px;
}

.attention-block__section + .attention-block__section {
  margin-top: 32px;
}

.attention-block__section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-weight: bold;
  font-size: 20px;
}
.attention-block__section-title::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../images/common/icon-x.png) center/cover;
}

.attention-block__section-content {
  margin-top: 1rem;
}
.attention-block__section-content p + p {
  margin-top: 0;
}

.news-list {
  display: flex;
  flex-direction: column;
}

a.news-list__link {
  display: block;
  padding-block: 1rem;
  text-decoration: none;
  border-bottom: 1px solid var(--gray-300);
}

.news-list__date {
  display: flex;
}

.news-list__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 4px;
  gap: 8px;
}

.news-list__icon {
  display: inline-block;
  font-size: 12px;
  padding: 2px 4px;
  background-color: var(--red);
  color: var(--white);
}

.news-list__icon--border {
  border: 1px solid var(--red);
  color: var(--red);
  background-color: var(--white);
}

.home-mv {
  position: relative;
  overflow: hidden;
}

.home-mv__image {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .home-mv__image {
    padding-bottom: 24px;
  }
}
.home-mv__image .swiper-slide {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .home-mv__image .swiper-slide {
    display: flex;
    align-items: center;
  }
}
.home-mv__image .swiper-slide picture,
.home-mv__image .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .home-mv__image .swiper-slide picture,
  .home-mv__image .swiper-slide img {
    height: auto;
  }
}
.home-mv__image .swiper-button-prev {
  left: 60px;
}
.home-mv__image .swiper-button-next {
  right: 60px;
}
@media screen and (max-width: 768px) {
  .home-mv__image .swiper-button-prev,
  .home-mv__image .swiper-button-next {
    display: none;
  }
}
.home-mv__image .swiper-horizontal > .swiper-pagination-bullets,
.home-mv__image .swiper-pagination-bullets.swiper-pagination-horizontal,
.home-mv__image .swiper-pagination-custom,
.home-mv__image .swiper-pagination-fraction {
  bottom: 0px !important;
}

.home-mv__news {
  padding-block: 15px;
  transition: ease-in-out 0.3s;
}
.home-mv__news:hover {
  opacity: 0.7;
}

.home-mv__news-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.home-mv__news-item__tag {
  background-color: var(--primary);
  color: var(--white);
  font-size: 14px;
  padding: 4px 8px;
}

.home-mv__news-item__category {
  background-color: var(--gray-200);
  color: var(--white);
  font-size: 12px;
  padding: 4px 8px;
}

.home-mv__news-item__link {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: bold;
  color: var(--primary);
}
@media screen and (max-width: 768px) {
  .home-mv__news-item__link {
    flex-wrap: wrap;
    gap: 4px;
  }
}

.home-toilet-info,
.home-toilet-study {
  overflow: hidden;
}

.home-toilet-info__inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  .home-toilet-info__inner {
    flex-direction: column;
  }
}

.home-toilet-info__title-wrap {
  position: relative;
  background-color: var(--primary);
  color: var(--white);
  padding-block: 76px;
  padding-right: 40px;
  width: 24%;
}
@media screen and (max-width: 768px) {
  .home-toilet-info__title-wrap {
    width: 100%;
    padding-right: 0;
    padding-block: 56px;
  }
}
.home-toilet-info__title-wrap::before {
  content: "TOILET";
  position: absolute;
  top: 0;
  left: -80px;
  width: 100%;
  opacity: 0.15;
  position: absolute;
  font-size: 100px;
  font-weight: bold;
  font-style: italic;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .home-toilet-info__title-wrap::before {
    left: -15px;
    font-size: 90px;
  }
}
.home-toilet-info__title-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100vw - 76%);
  height: 100%;
  background-color: var(--primary);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .home-toilet-info__title-wrap::after {
    padding-inline: calc(50vw - 50%);
    margin-inline: calc(50% - 50vw);
    width: 100vw;
  }
}

.home-toilet-info__title {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .home-toilet-info__title {
    drop-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2509803922);
  }
}

.home-toilet-info__description {
  margin-top: 40px;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .home-toilet-info__description {
    margin-top: 40px;
  }
}

.home-toilet-info__content {
  position: relative;
  width: 76%;
  padding: 60px 40px;
}
@media screen and (max-width: 768px) {
  .home-toilet-info__content {
    width: 100%;
    padding: 60px 0;
  }
}
.home-toilet-info__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100vw - 24%);
  height: 100%;
  background: url(../images/home/toilet-info-bg.jpg) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .home-toilet-info__content::before {
    width: 100vw;
    padding-inline: calc(50vw - 50%);
    margin-inline: calc(50% - 50vw);
    background: url(../images/home/toilet-info-bg-sp.jpg) no-repeat center center/cover;
  }
}

.home-toilet-info__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .home-toilet-info__list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 8px;
  }
}

a.home-toilet-info__link,
a.home-toilet-study__link {
  font-size: 18px;
  line-height: 1.2;
  padding: 20px;
  height: 100%;
  border-radius: 5px;
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 768px) {
  a.home-toilet-info__link,
  a.home-toilet-study__link {
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 4px 6px;
    gap: 6px 0;
    font-size: 13px;
  }
}
a.home-toilet-info__link:hover,
a.home-toilet-study__link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  a.home-toilet-info__link span,
  a.home-toilet-study__link span {
    width: calc(100% - 24px);
  }
}
a.home-toilet-info__link::before,
a.home-toilet-study__link::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-color: #99E2EA;
  mask-image: url(../images/common/icon-water.png);
  mask-size: cover;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  a.home-toilet-info__link::before,
  a.home-toilet-study__link::before {
    display: none;
  }
}
a.home-toilet-info__link::after,
a.home-toilet-study__link::after {
  width: 28px;
  height: 28px;
}
@media screen and (max-width: 768px) {
  a.home-toilet-info__link::after,
  a.home-toilet-study__link::after {
    width: 16px;
    height: 16px;
  }
}

a.home-toilet-study__link::before {
  background-color: #A1B8DD;
}
a.home-toilet-study__link::after {
  background-color: var(--secondary);
}

.home-toilet-study__inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  .home-toilet-study__inner {
    flex-direction: column;
  }
}

.home-toilet-study__title-wrap {
  position: relative;
  background-color: var(--secondary);
  color: var(--white);
  padding-block: 76px;
  padding-right: 40px;
  width: 24%;
}
@media screen and (max-width: 768px) {
  .home-toilet-study__title-wrap {
    width: 100%;
    padding-right: 0;
    padding-block: 56px;
  }
}
.home-toilet-study__title-wrap::before {
  content: "STUDY";
  position: absolute;
  top: 0;
  left: -80px;
  width: 100%;
  opacity: 0.15;
  position: absolute;
  font-size: 100px;
  font-weight: bold;
  font-style: italic;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .home-toilet-study__title-wrap::before {
    left: -15px;
    font-size: 90px;
  }
}
.home-toilet-study__title-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100vw - 76%);
  height: 100%;
  background-color: var(--secondary);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .home-toilet-study__title-wrap::after {
    padding-inline: calc(50vw - 50%);
    margin-inline: calc(50% - 50vw);
    width: 100vw;
  }
}

.home-toilet-study__title {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .home-toilet-study__title {
    drop-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2509803922);
  }
}

.home-toilet-study__description {
  margin-top: 40px;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .home-toilet-study__description {
    margin-top: 40px;
  }
}

.home-toilet-study__content {
  position: relative;
  width: 76%;
  padding: 60px 40px;
}
@media screen and (max-width: 768px) {
  .home-toilet-study__content {
    width: 100%;
    padding: 60px 0;
  }
}
.home-toilet-study__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100vw - 24%);
  height: 100%;
  background: url(../images/home/toilet-study-bg.jpg) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .home-toilet-study__content::before {
    width: 100vw;
    padding-inline: calc(50vw - 50%);
    margin-inline: calc(50% - 50vw);
    background: url(../images/home/toilet-study-bg-sp.jpg) no-repeat center center/cover;
  }
}

.home-toilet-study__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .home-toilet-study__list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
  }
}

.home-recommend {
  padding-block: 80px;
  background-color: var(--light-blue-300);
  overflow: hidden;
}
.home-recommend .swiper-slide {
  height: auto;
}
@media screen and (max-width: 768px) {
  .home-recommend .swiper-button-next,
  .home-recommend .swiper-button-prev {
    width: 41px;
    height: 82px;
    background: url(../images/home/slider-arrow-sp.png) no-repeat center center/contain;
  }
}
.home-recommend .swiper-button-next {
  right: 0;
}
.home-recommend .swiper-button-prev {
  left: 0;
}
@media screen and (max-width: 768px) {
  .home-recommend .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    background-color: var(--white);
  }
}
@media screen and (max-width: 768px) {
  .home-recommend .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
    background-color: var(--primary);
  }
}

.home-recommend__inner {
  position: relative;
  padding-inline: 80px;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .home-recommend__inner {
    padding-inline: 15px;
  }
}

.home-recommend__slider {
  padding-bottom: 32px;
  overflow: hidden;
}
.home-recommend__slider .swiper-pagination {
  bottom: 1px !important;
}

.home-recommend__item {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: ease-in-out 0.3s;
}
.home-recommend__item:hover {
  opacity: 0.7;
}

.home-recommend__item-image {
  height: 52.2935779817%;
}
.home-recommend__item-image img {
  height: 100%;
  object-fit: cover;
}

.home-recommend__item-text {
  background-color: var(--white);
  padding: 20px;
  border-radius: 5px;
  height: 47.7064220183%;
}

.home-recommend__item-category {
  font-weight: bold;
  color: #A9B4B9;
}

.home-recommend__item-title {
  font-size: 18px;
  color: var(--primary);
  font-weight: bold;
}

.home-about {
  position: relative;
  padding-block: 80px;
  overflow: clip;
}
@media screen and (max-width: 768px) {
  .home-about {
    padding-block: 24px 132px;
  }
}
.home-about::before, .home-about::after {
  content: "";
  position: absolute;
  z-index: -1;
}
.home-about::before {
  aspect-ratio: 1/1;
  width: 32.1527777778%;
  left: -40px;
  bottom: -80px;
  opacity: 0.4;
  filter: blur(160px);
  background-color: var(--primary);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .home-about::before {
    width: 100.8695652174%;
    left: -15%;
    bottom: 0;
  }
}
.home-about::after {
  background: url(../images/home/about-bg.png) no-repeat center center/cover;
  right: 10px;
  top: -20px;
  width: 25%;
  aspect-ratio: 360/385;
}
@media screen and (max-width: 768px) {
  .home-about::after {
    width: 78.2608695652%;
    right: -4%;
    top: -8%;
  }
}

.home-about__inner {
  display: flex;
  gap: 40px;
  max-width: 1040px;
}
@media screen and (max-width: 768px) {
  .home-about__inner {
    flex-direction: column-reverse;
  }
}

.home-about__image {
  flex: 34.6153846154%;
  flex-shrink: 0;
}

.home-about__text {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 20px;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .home-about__text {
    padding: 0 20px;
    background-color: unset;
  }
}

.home-about__description {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .home-about__description {
    margin-top: 36px;
  }
}

.home-qa {
  padding-block: 80px;
}

.home-qa__inner {
  max-width: 1080px;
}

.home-qa__list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-qa__item {
  position: relative;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0px 3px 10px 0px rgba(33, 42, 55, 0.1490196078);
}
.home-qa__item details {
  padding: 20px 24px;
  transition: ease-in-out 0.3s;
}
.home-qa__item details:hover {
  opacity: 0.7;
}
.home-qa__item details[open] .home-qa__item-question::after {
  transition: transform 0.3s;
  background: url(../images/common/icon-minus.png) no-repeat center center/contain;
}
.home-qa__item summary {
  cursor: pointer;
  list-style: none;
}
.home-qa__item summary::-webkit-details-marker {
  display: none;
}
@media screen and (max-width: 768px) {
  .home-qa__item {
    font-size: 14px;
  }
}

.home-qa__item-category {
  color: var(--gray-200);
  font-weight: 600;
}

.home-qa__item-question {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 40px;
  gap: 10px;
  margin-top: 4px;
  color: var(--primary);
  font-weight: bold;
}
.home-qa__item-question::before {
  content: "Q";
  display: block;
  color: var(--primary);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 26px;
  position: absolute;
  top: -4px;
  left: 0;
}
.home-qa__item-question::after {
  display: block;
  content: "";
  margin-left: auto;
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  background: url(../images/common/icon-plus.png) no-repeat center center/contain;
  transition: transform 0.3s;
  position: relative;
  top: -4px;
}
@media screen and (max-width: 768px) {
  .home-qa__item-question::after {
    width: 30px;
    height: 30px;
  }
}

.home-qa__item-answer {
  position: relative;
  margin-top: 20px;
  padding-left: 40px;
}
.home-qa__item-answer::before {
  content: "A";
  display: block;
  position: absolute;
  top: -10px;
  left: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--red);
  font-weight: 600;
  font-size: 26px;
}

.home-qa__btn,
.home-information__btn {
  margin-top: 40px;
}
.home-qa__btn .button,
.home-information__btn .button {
  position: relative;
  min-width: 248px;
  padding-block: 18px;
}
.home-qa__btn .button::after,
.home-information__btn .button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 4px;
  width: 32px;
  height: 32px;
  background: url(../images/common/icon-arrow-line.png) no-repeat center center/contain;
  transform: translateY(-50%);
}

.home-information {
  padding-block: 80px;
  background-color: var(--light-blue-300);
}

.home-information__inner {
  max-width: 1080px;
}

.home-information__title {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.home-information__body {
  display: flex;
  gap: 60px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .home-information__body {
    flex-direction: column;
    gap: 20px;
  }
}

.home-information__category {
  width: 16.6666666667%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .home-information__category {
    width: 100%;
  }
}

.home-information__category-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .home-information__category-list {
    flex-direction: row;
    gap: 10px;
  }
}

@media screen and (max-width: 768px) {
  .home-information__category-item {
    width: calc(50% - 10px);
  }
}

.home-information__category-link {
  display: flex;
  align-items: center;
  font-weight: bold;
  transition: ease-in-out 0.3s;
}
.home-information__category-link:hover {
  opacity: 0.7;
}
.home-information__category-link::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  mask-image: url(../images/common/icon-arrow-triangle.png);
  mask-size: cover;
}
.home-information__category-link.is-active {
  color: var(--primary);
}
.home-information__category-link.is-active::before {
  background-color: var(--primary);
}

.home-information__content {
  width: 81.4814814815%;
}
@media screen and (max-width: 768px) {
  .home-information__content {
    width: 100%;
  }
}

.home-information__item a {
  position: relative;
  display: flex;
  gap: 20px;
  border-bottom: 2px dashed #A9B4B9;
  padding-block: 16px;
  padding-right: 32px;
  transition: ease-in-out 0.3s;
}
.home-information__item a:hover {
  opacity: 0.7;
}
.home-information__item a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-color: var(--primary);
  mask-image: url(../images/common/icon-arrow-line.png);
  mask-size: cover;
}
@media screen and (max-width: 768px) {
  .home-information__item a {
    flex-direction: column;
    gap: 0;
  }
}

.home-information__item:first-child a {
  padding-top: 0;
}

.home-information__date {
  font-weight: bold;
  flex-shrink: 0;
}

.home-information__text {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 2px;
}

.home-information__tag {
  display: inline-block;
  font-size: 12px;
  padding: 2px 4px;
  background-color: var(--red);
  color: var(--white);
}

.home-information__text-title {
  width: 100%;
}

.home-banners {
  padding-block: 40px;
  background-color: var(--light-blue-300);
}

.home-banners__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.home-banners__list--top {
  gap: 10px;
  padding-inline: 42px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}
@media screen and (max-width: 768px) {
  .home-banners__list--top {
    gap: 8px;
    padding-inline: 0;
  }
}
.home-banners__list--top > * {
  width: calc(25% - 10px);
}
@media screen and (max-width: 768px) {
  .home-banners__list--top > * {
    width: calc(50% - 8px);
  }
}
.home-banners__list--top .home-banners__item a {
  aspect-ratio: 230/88;
}
.home-banners__list--bottom {
  gap: 12px;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .home-banners__list--bottom {
    gap: 8px;
  }
}
.home-banners__list--bottom > * {
  width: calc(20% - 12px);
}
@media screen and (max-width: 768px) {
  .home-banners__list--bottom > * {
    width: calc(50% - 8px);
  }
}
.home-banners__list--bottom .home-banners__item a {
  aspect-ratio: 244/62;
}

.home-banners__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
}
.home-banners__item a:hover {
  opacity: 0.7;
}
.home-banners__item a img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.home-showcase {
  background-color: var(--light-blue-300);
  padding-block: 80px;
}
@media screen and (max-width: 768px) {
  .home-showcase {
    padding-block: 32px;
  }
}

.home-showcase__list {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .home-showcase__list {
    flex-direction: column;
  }
}

.home-menu {
  background-color: var(--light-blue-300);
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .home-menu {
    padding-block: 32px;
  }
}

.home-menu__inner {
  max-width: 1040px;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .home-menu__inner {
    flex-direction: column;
  }
}

.home-menu__item {
  background-color: var(--white);
  padding: 20px;
  border-radius: 10px;
}

.home-menu__title {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
}
.home-menu__title::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background-color: var(--primary);
  mask-image: url("/images/common/icon-water.png");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  margin-right: 10px;
}

.home-menu__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 18px;
}

.home-menu__list-item a {
  position: relative;
  display: block;
  font-size: 21px;
  padding-left: 35px;
}
.home-menu__list-item a::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  left: 7px;
  top: 12px;
  background-color: var(--black);
  mask-image: url("/images/common/icon-corner.png");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
}

.vision_box .title {
  position: relative;
  display: inline-block;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--white);
  padding: 4px 12px;
}

.vision_box .box_text {
  text-align: center;
  padding: 20px;
  background-color: var(--light-blue-100);
}

.history_dl {
  display: grid;
  grid-template-columns: 100px 1fr;
}
@media screen and (max-width: 768px) {
  .history_dl {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .history_dl dt {
    font-weight: bold;
  }
}

@media screen and (max-width: 768px) {
  .history_dl dd {
    margin-bottom: 1rem;
  }
}

.history_dl dd span {
  display: block;
  font-size: 90%;
}

.map {
  position: relative;
  aspect-ratio: 5/4;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .enkaku .color-table th {
    width: 110px;
  }
}

.manual-table .border-table__row th {
  width: 300px;
}
.manual-table .border-table__row td > a {
  margin-inline: auto;
}

.manual-table-2 .border-table__row th {
  width: 280px;
}
@media screen and (max-width: 768px) {
  .manual-table-2 .border-table__row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--gray-300);
    padding-block: 0.5rem;
  }
  .manual-table-2 th,
  .manual-table-2 td {
    border: none !important;
    padding: 0 !important;
  }
}

.faq {
  padding-top: 2rem;
}

.faq__subcategory {
  margin-top: 1rem;
}
.faq__subcategory + .faq__subcategory {
  margin-top: 3rem;
}

.faq__subsubcategory {
  margin-top: 1rem;
}
.faq__subsubcategory + .faq__subsubcategory {
  margin-top: 2.5rem;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

h2.faq__title {
  color: var(--black);
  font-size: 20px;
}
h2.faq__title::before, h2.faq__title::after {
  display: none;
}

.trend .article__content h2, .trend .article__content h3, .trend .article__content h4 {
  color: var(--secondary);
}
.trend .article__content h2::after {
  background-color: var(--secondary);
}
.trend .article__content h3 {
  border-color: var(--secondary);
}
.trend .article__content a.article__nav-link {
  color: var(--black);
  border-color: var(--secondary);
}
.trend .article__content a.article__nav-link::after {
  background-color: var(--secondary);
}
.trend .article__content a.text-link-arrow::after {
  background-image: url("../images/common/icon-arrow-secondary.png");
}

.interview__question {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 20px;
  color: var(--secondary);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .interview__question {
    flex-direction: column;
    font-size: 16px;
    gap: 0.5rem;
  }
}
.interview__question span:first-child {
  flex-shrink: 0;
}
.interview__question .number {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .interview__question .number {
    width: 100%;
    font-size: 24px;
  }
}

.interview__answer {
  margin-top: 2rem;
  padding-left: calc(2.5rem + 16px);
}
@media screen and (max-width: 768px) {
  .interview__answer {
    padding-left: 0;
    margin-top: 1rem;
  }
}
.interview__answer + .interview__question {
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .interview__answer + .interview__question {
    margin-top: 3rem;
  }
}

.saving-list-w-icon {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.saving-list-w-icon li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--primary);
}
.saving-list-w-icon li::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: url("../images/saving/ecology/icon03.gif");
  background-size: contain;
  background-repeat: no-repeat;
}

.history__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.history__table th,
.history__table td {
  vertical-align: top;
  padding: 16px 20px;
}
.history__table th {
  width: 240px;
  font-weight: bold;
  text-align: center;
  border-right: 4px solid var(--gray-300);
  position: relative;
}
@media screen and (max-width: 768px) {
  .history__table th:empty {
    display: none;
  }
}
.history__table td {
  background: #fff;
  color: #333;
  position: relative;
}
.history__table tr:first-child th, .history__table tr:first-child td {
  border-top: none;
}
@media (max-width: 768px) {
  .history__table th,
  .history__table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0.5rem 0;
  }
  .history__table th {
    border-right: none;
    border-bottom: none;
  }
  .history__table tr {
    display: block;
    margin-bottom: 16px;
  }
}

.history__midashi {
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 2px;
  margin: 0 0 8px 0;
  letter-spacing: 0.05em;
}

.history__date01,
.history__date02 {
  position: relative;
  color: var(--white);
  font-weight: bold;
  border-radius: 2px;
  padding: 4px 0;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.history__date01 span,
.history__date02 span {
  position: relative;
  z-index: 2;
}
.history__date01::before, .history__date01::after,
.history__date02::before,
.history__date02::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .history__date01::before, .history__date01::after,
  .history__date02::before,
  .history__date02::after {
    display: none;
  }
}
.history__date01::before,
.history__date02::before {
  width: 100%;
  height: 1px;
  right: -20px;
}
.history__date01::after,
.history__date02::after {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  right: -26px;
}

.history__date01 {
  background: var(--gray-200);
}
.history__date01::before, .history__date01::after {
  background: var(--gray-200);
}

.history__date02 {
  background: var(--secondary);
}
.history__date02::before, .history__date02::after {
  background: var(--secondary);
}

.jis03_table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}
.jis03_table th, .jis03_table td {
  border: 1px solid var(--gray-300);
  text-align: center;
  vertical-align: middle;
  padding: 0.5rem;
  font-size: 12px;
}
.jis03_table th {
  background: var(--gray-100);
  color: var(--primary);
}
.jis03_table tr:first-child th {
  background: #44c3dc;
  color: #fff;
  border-bottom: 2px solid #b2d7e8;
}
.jis03_table tr th:first-child {
  background: var(--light-blue-100);
  color: var(--primary);
  width: 120px;
  border-right: 2px solid #b2d7e8;
}
@media screen and (max-width: 768px) {
  .jis03_table tr th:first-child {
    width: 60px;
  }
}
.jis03_table tr th:not(:first-child) {
  background: var(--light-blue-100);
  color: var(--primary);
  width: calc((100% - 120px) / 4) !important;
  border-right: 2px solid #b2d7e8;
}
@media screen and (max-width: 768px) {
  .jis03_table tr th:not(:first-child) {
    width: calc((100% - 60px) / 4) !important;
  }
}
.jis03_table td img {
  height: auto;
  display: inline-block;
}

.jis03_table--short {
  width: calc(100% - (100% - 120px) / 4);
}
@media screen and (max-width: 768px) {
  .jis03_table--short {
    width: calc(100% - (100% - 40px) / 4);
  }
}

.pictogram-list {
  border: 1px solid var(--gray-300);
}
.pictogram-list li {
  padding: 0;
  border-right: 1px solid var(--gray-300);
  margin-top: 0 !important;
}
.pictogram-list li > * {
  width: 100%;
  margin-top: 0 !important;
  text-align: center;
  padding: 0.5rem;
}
@media screen and (max-width: 768px) {
  .pictogram-list {
    font-size: 14px;
  }
}

.pictgram-table {
  table-layout: fixed;
}
.pictgram-table tr:first-child th:first-child {
  width: 140px;
}
.pictgram-table tr:first-child th:nth-child(2) {
  width: 140px;
}
.pictgram-table tr:first-child th:nth-child(3) {
  width: 140px;
}

.article__content.news-detail p + p {
  margin-top: 2rem;
}

.contact__inner {
  max-width: 800px;
  margin: 0 auto;
}

.contact__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .contact__content {
    padding: 1rem;
  }
}
.contact__content label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  width: 32%;
}
@media screen and (max-width: 768px) {
  .contact__content label {
    width: 100%;
  }
}
.contact__content label::before {
  content: "";
  font-size: 12px;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 0.25rem;
  color: var(--white);
}
.contact__content label.required::before {
  content: "必須";
  background-color: var(--red);
}
.contact__content label.free::before {
  content: "任意";
  background-color: var(--gray-300);
}
.contact__content .wpcf7-form-control-wrap {
  display: block;
  width: calc(68% - 16px);
}
.contact__content .wpcf7-spinner {
  position: absolute;
}
.contact__content input[type=text],
.contact__content input[type=email],
.contact__content input[type=tel],
.contact__content input[type=number],
.contact__content textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  transition: all 0.3s ease;
  background: var(--white);
}
@media screen and (max-width: 768px) {
  .contact__content input[type=text],
  .contact__content input[type=email],
  .contact__content input[type=tel],
  .contact__content input[type=number],
  .contact__content textarea {
    width: 100%;
  }
}
.contact__content input[type=text]:focus,
.contact__content input[type=email]:focus,
.contact__content input[type=tel]:focus,
.contact__content input[type=number]:focus,
.contact__content textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(var(--primary), 0.1);
}
.contact__content input[type=text]::placeholder,
.contact__content input[type=email]::placeholder,
.contact__content input[type=tel]::placeholder,
.contact__content input[type=number]::placeholder,
.contact__content textarea::placeholder {
  color: var(--gray-300);
}
.contact__content input[type=text],
.contact__content input[type=email] {
  height: 48px;
}
.contact__content textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
}
.contact__content input[type=submit],
.contact__content .confirm_button {
  background-color: var(--secondary);
  color: var(--white);
  border: none;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  align-self: flex-start;
}
.contact__content input[type=submit]:hover:not(:disabled),
.contact__content .confirm_button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--primary), 0.3);
}
.contact__content input[type=submit]:active:not(:disabled),
.contact__content .confirm_button:active:not(:disabled) {
  transform: translateY(0);
}
.contact__content input[type=submit]:disabled,
.contact__content .confirm_button:disabled {
  background-color: var(--gray-300);
  cursor: not-allowed;
  opacity: 0.6;
}
.contact__content .back_button {
  background-color: var(--gray-300);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 16px;
}
.contact__content input[type=hidden] {
  display: none;
}
.contact__content .error input,
.contact__content .error textarea {
  border-color: var(--red);
  background: var(--red);
}
.contact__content .error input:focus,
.contact__content .error textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(var(--red), 0.1);
}
.contact__content .success input,
.contact__content .success textarea {
  border-color: var(--green);
  background: var(--green);
}
.contact__content .success input:focus,
.contact__content .success textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(var(--green), 0.1);
}
.contact__content.loading {
  opacity: 0.7;
  pointer-events: none;
}
.contact__content.loading input[type=submit] {
  background: var(--gray-300);
  cursor: not-allowed;
}
.contact__content.loading input[type=submit]:hover {
  transform: none;
  box-shadow: none;
}

.contact__item {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.contact__item + .contact__item {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .contact__item + .contact__item {
    margin-top: 2rem;
  }
}

.contact__submit {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.contact-form-container {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  min-height: 100vh;
  padding: 2rem 1rem;
}
.contact-form-container .contact-form {
  animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.grecaptcha-badge {
  bottom: 100px !important;
}

.home .grecaptcha-badge,
.single .grecaptcha-badge,
.archive .grecaptcha-badge {
  display: none;
}

/* 確認画面をデフォルトで非表示 */
.confirm-area {
  display: none;
}
.confirm-area .wpcf7-form-control-wrap {
  padding: 8px;
}

.confirm-area__text {
  margin-bottom: 3rem;
}

#autozip {
  display: none !important;
}

#email-match-error {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: block;
}

#security-error-message {
  color: #ff0000;
  font-size: 16px;
  font-weight: bold;
  padding: 15px;
  background-color: #ffe6e6;
  border: 2px solid #ff0000;
  border-radius: 5px;
  margin-bottom: 20px;
  text-align: center;
}

.sanitary-scroll {
  overflow-y: scroll;
}
.sanitary-scroll .h-full {
  object-position: center bottom;
}
.sanitary-scroll > .row {
  min-width: 988px;
}
@media screen and (max-width: 768px) {
  .sanitary-scroll .col-3 {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
  .sanitary-scroll .col-9 {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
}

.brand-list {
  padding: 2rem;
  background-color: var(--white);
}
@media screen and (max-width: 768px) {
  .brand-list {
    padding: 1rem;
  }
}

.brandList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .brandList {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.brandList--order-2 {
  order: 2;
}
@media screen and (max-width: 768px) {
  .brandList--order-2 {
    order: 1;
  }
}

.brandImage--order-1 {
  order: 1;
}
@media screen and (max-width: 768px) {
  .brandImage--order-1 {
    order: 2;
  }
}

.brandItem {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brandLogo {
  max-width: 100%;
  object-fit: contain;
  flex-shrink: 0;
  min-height: 20px;
}
@media screen and (max-width: 768px) {
  .brandLogo {
    min-height: 20px;
  }
}
.brandLogo--text {
  font-family: "M PLUS 1", sans-serif !important;
  font-weight: 500 !important;
  color: var(--black) !important;
  line-height: 1.2 !important;
  display: flex !important;
  align-items: center !important;
  height: 36px !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
}
@media screen and (max-width: 768px) {
  .brandLogo--text {
    height: 30px !important;
  }
}

.brandText {
  font-family: "M PLUS 1", sans-serif !important;
  font-weight: 500 !important;
  color: var(--black) !important;
  line-height: 1.2 !important;
  display: flex !important;
  align-items: center !important;
  height: 36px !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
}
@media screen and (max-width: 768px) {
  .brandText {
    height: 30px !important;
  }
}
.brandText small {
  font-size: 10px !important;
  color: var(--gray-600);
  margin-left: 0.25em;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .brandText small {
    font-size: 9px !important;
  }
}

.table-scroll {
  overflow-x: auto;
  width: 100%;
}
.table-scroll > table {
  min-width: 720px;
}
.table-scroll--en > table {
  min-width: 520px;
}

.fixed-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, auto);
  gap: 1rem;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .fixed-table {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fixed-table__item {
  text-align: center;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
}

.fixed-table__image {
  display: grid;
  place-items: center;
}

.fixed-table__text {
  align-self: start;
}

.fixed-table__desc {
  display: block;
  font-size: 12px;
}

.color-table {
  border-collapse: separate;
  border-spacing: 1;
}
.color-table th, .color-table td {
  padding: 0.5rem;
}
.color-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: bold;
  text-align: center;
}
.color-table td {
  text-align: center;
}

.color-table--each td {
  background: var(--light-blue-200);
}
.color-table--each tr:nth-child(even) td {
  background: var(--light-blue-100);
}

.color-table--half {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--gray-300);
}
.color-table--half th, .color-table--half td {
  width: 50%;
}
.color-table--half th {
  border-right: 1px solid var(--white);
}
.color-table--half td {
  background: var(--white);
}
.color-table--half td:first-child {
  border-bottom: 1px solid var(--gray-300);
}
.color-table--half td + td {
  background: var(--light-blue-100);
  border-bottom: 1px solid var(--white);
}
.color-table--half tr:last-child td {
  border-bottom: none !important;
}

.color-table--white th {
  border-bottom: 1px solid var(--gray-300);
}
.color-table--white td {
  background: var(--white);
  border-bottom: 1px solid var(--gray-300);
}

.color-table--blue td {
  background: var(--light-blue-200);
}

.color-table--border {
  border-spacing: 0;
}
.color-table--border td {
  border-bottom: 1px solid var(--gray-100);
  border-right: 1px solid var(--gray-100);
}
.color-table--border td:first-child {
  border-left: 1px solid var(--gray-100);
}

.border-table {
  width: 100%;
  display: table;
  text-align: left;
}
.border-table * {
  font-size: 14px;
}
.border-table .tel {
  font-weight: bold;
  font-size: 24px;
}
.border-table th,
.border-table td {
  padding: 0.5rem;
  border-bottom: 1px solid var(--gray-300);
}

.border-table--has-header {
  border: 1px solid var(--gray-300);
}
.border-table--has-header th {
  background: var(--light-blue-100);
}
.border-table--has-header td {
  border-right: 1px solid var(--gray-300);
}

.border-table__row {
  display: table-row;
}

.border-table-vertical {
  width: 100%;
  display: table;
  border-collapse: collapse;
  text-align: left;
}
.border-table-vertical th {
  background: var(--gray-400);
}
.border-table-vertical th,
.border-table-vertical td {
  padding: 8px;
  border: 1px solid var(--gray-300);
}

.border-table-vertical--white th, .border-table-vertical--white td {
  background: var(--white);
}

.border-table-vertical--no-color th,
.border-table-vertical--no-color td {
  background-color: transparent;
}
.border-table-vertical--no-color .no-border {
  border: none;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.5rem !important;
}

.m-2 {
  margin: 1rem !important;
}

.m-3 {
  margin: 1.5rem !important;
}

.m-4 {
  margin: 2rem !important;
}

.m-5 {
  margin: 2.5rem !important;
}

.m-6 {
  margin: 3rem !important;
}

.m-7 {
  margin: 3.5rem !important;
}

.m-8 {
  margin: 4rem !important;
}

.m-9 {
  margin: 4.5rem !important;
}

.m-10 {
  margin: 5rem !important;
}

@media (max-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
}

@media (max-width: 768px) {
  .m-md-1 {
    margin: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .m-md-2 {
    margin: 1rem !important;
  }
}

@media (max-width: 768px) {
  .m-md-3 {
    margin: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .m-md-4 {
    margin: 2rem !important;
  }
}

@media (max-width: 768px) {
  .m-md-5 {
    margin: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .m-md-6 {
    margin: 3rem !important;
  }
}

@media (max-width: 768px) {
  .m-md-7 {
    margin: 3.5rem !important;
  }
}

@media (max-width: 768px) {
  .m-md-8 {
    margin: 4rem !important;
  }
}

@media (max-width: 768px) {
  .m-md-9 {
    margin: 4.5rem !important;
  }
}

@media (max-width: 768px) {
  .m-md-10 {
    margin: 5rem !important;
  }
}

.my-0 {
  margin-block: 0 !important;
}

.my-1 {
  margin-block: 0.5rem !important;
}

.my-2 {
  margin-block: 1rem !important;
}

.my-3 {
  margin-block: 1.5rem !important;
}

.my-4 {
  margin-block: 2rem !important;
}

.my-5 {
  margin-block: 2.5rem !important;
}

.my-6 {
  margin-block: 3rem !important;
}

.my-7 {
  margin-block: 3.5rem !important;
}

.my-8 {
  margin-block: 4rem !important;
}

.my-9 {
  margin-block: 4.5rem !important;
}

.my-10 {
  margin-block: 5rem !important;
}

@media (max-width: 768px) {
  .my-md-0 {
    margin-block: 0 !important;
  }
}

@media (max-width: 768px) {
  .my-md-1 {
    margin-block: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .my-md-2 {
    margin-block: 1rem !important;
  }
}

@media (max-width: 768px) {
  .my-md-3 {
    margin-block: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .my-md-4 {
    margin-block: 2rem !important;
  }
}

@media (max-width: 768px) {
  .my-md-5 {
    margin-block: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .my-md-6 {
    margin-block: 3rem !important;
  }
}

@media (max-width: 768px) {
  .my-md-7 {
    margin-block: 3.5rem !important;
  }
}

@media (max-width: 768px) {
  .my-md-8 {
    margin-block: 4rem !important;
  }
}

@media (max-width: 768px) {
  .my-md-9 {
    margin-block: 4.5rem !important;
  }
}

@media (max-width: 768px) {
  .my-md-10 {
    margin-block: 5rem !important;
  }
}

.mx-0 {
  margin-inline: 0 !important;
}

.mx-1 {
  margin-inline: 0.5rem !important;
}

.mx-2 {
  margin-inline: 1rem !important;
}

.mx-3 {
  margin-inline: 1.5rem !important;
}

.mx-4 {
  margin-inline: 2rem !important;
}

.mx-5 {
  margin-inline: 2.5rem !important;
}

.mx-6 {
  margin-inline: 3rem !important;
}

.mx-7 {
  margin-inline: 3.5rem !important;
}

.mx-8 {
  margin-inline: 4rem !important;
}

.mx-9 {
  margin-inline: 4.5rem !important;
}

.mx-10 {
  margin-inline: 5rem !important;
}

@media (max-width: 768px) {
  .mx-md-0 {
    margin-inline: 0 !important;
  }
}

@media (max-width: 768px) {
  .mx-md-1 {
    margin-inline: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .mx-md-2 {
    margin-inline: 1rem !important;
  }
}

@media (max-width: 768px) {
  .mx-md-3 {
    margin-inline: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .mx-md-4 {
    margin-inline: 2rem !important;
  }
}

@media (max-width: 768px) {
  .mx-md-5 {
    margin-inline: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .mx-md-6 {
    margin-inline: 3rem !important;
  }
}

@media (max-width: 768px) {
  .mx-md-7 {
    margin-inline: 3.5rem !important;
  }
}

@media (max-width: 768px) {
  .mx-md-8 {
    margin-inline: 4rem !important;
  }
}

@media (max-width: 768px) {
  .mx-md-9 {
    margin-inline: 4.5rem !important;
  }
}

@media (max-width: 768px) {
  .mx-md-10 {
    margin-inline: 5rem !important;
  }
}

@media (max-width: 768px) {
  .mx-md-auto {
    margin-inline: auto !important;
  }
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.5rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mt-3 {
  margin-top: 1.5rem !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mt-5 {
  margin-top: 2.5rem !important;
}

.mt-6 {
  margin-top: 3rem !important;
}

.mt-7 {
  margin-top: 3.5rem !important;
}

.mt-8 {
  margin-top: 4rem !important;
}

.mt-9 {
  margin-top: 4.5rem !important;
}

.mt-10 {
  margin-top: 5rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

@media (max-width: 768px) {
  .mt-md-0 {
    margin-top: 0 !important;
  }
}

@media (max-width: 768px) {
  .mt-md-1 {
    margin-top: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .mt-md-2 {
    margin-top: 1rem !important;
  }
}

@media (max-width: 768px) {
  .mt-md-3 {
    margin-top: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .mt-md-4 {
    margin-top: 2rem !important;
  }
}

@media (max-width: 768px) {
  .mt-md-5 {
    margin-top: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .mt-md-6 {
    margin-top: 3rem !important;
  }
}

@media (max-width: 768px) {
  .mt-md-7 {
    margin-top: 3.5rem !important;
  }
}

@media (max-width: 768px) {
  .mt-md-8 {
    margin-top: 4rem !important;
  }
}

@media (max-width: 768px) {
  .mt-md-9 {
    margin-top: 4.5rem !important;
  }
}

@media (max-width: 768px) {
  .mt-md-10 {
    margin-top: 5rem !important;
  }
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mb-5 {
  margin-bottom: 2.5rem !important;
}

.mb-6 {
  margin-bottom: 3rem !important;
}

.mb-7 {
  margin-bottom: 3.5rem !important;
}

.mb-8 {
  margin-bottom: 4rem !important;
}

.mb-9 {
  margin-bottom: 4.5rem !important;
}

.mb-10 {
  margin-bottom: 5rem !important;
}

@media (max-width: 768px) {
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 768px) {
  .mb-md-1 {
    margin-bottom: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .mb-md-2 {
    margin-bottom: 1rem !important;
  }
}

@media (max-width: 768px) {
  .mb-md-3 {
    margin-bottom: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .mb-md-4 {
    margin-bottom: 2rem !important;
  }
}

@media (max-width: 768px) {
  .mb-md-5 {
    margin-bottom: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .mb-md-6 {
    margin-bottom: 3rem !important;
  }
}

@media (max-width: 768px) {
  .mb-md-7 {
    margin-bottom: 3.5rem !important;
  }
}

@media (max-width: 768px) {
  .mb-md-8 {
    margin-bottom: 4rem !important;
  }
}

@media (max-width: 768px) {
  .mb-md-9 {
    margin-bottom: 4.5rem !important;
  }
}

@media (max-width: 768px) {
  .mb-md-10 {
    margin-bottom: 5rem !important;
  }
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 0.5rem !important;
}

.ml-2 {
  margin-left: 1rem !important;
}

.ml-3 {
  margin-left: 1.5rem !important;
}

.ml-4 {
  margin-left: 2rem !important;
}

.ml-5 {
  margin-left: 2.5rem !important;
}

.ml-6 {
  margin-left: 3rem !important;
}

.ml-7 {
  margin-left: 3.5rem !important;
}

.ml-8 {
  margin-left: 4rem !important;
}

.ml-9 {
  margin-left: 4.5rem !important;
}

.ml-10 {
  margin-left: 5rem !important;
}

@media (max-width: 768px) {
  .ml-md-0 {
    margin-left: 0 !important;
  }
}

@media (max-width: 768px) {
  .ml-md-1 {
    margin-left: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .ml-md-2 {
    margin-left: 1rem !important;
  }
}

@media (max-width: 768px) {
  .ml-md-3 {
    margin-left: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .ml-md-4 {
    margin-left: 2rem !important;
  }
}

@media (max-width: 768px) {
  .ml-md-5 {
    margin-left: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .ml-md-6 {
    margin-left: 3rem !important;
  }
}

@media (max-width: 768px) {
  .ml-md-7 {
    margin-left: 3.5rem !important;
  }
}

@media (max-width: 768px) {
  .ml-md-8 {
    margin-left: 4rem !important;
  }
}

@media (max-width: 768px) {
  .ml-md-9 {
    margin-left: 4.5rem !important;
  }
}

@media (max-width: 768px) {
  .ml-md-10 {
    margin-left: 5rem !important;
  }
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 0.5rem !important;
}

.mr-2 {
  margin-right: 1rem !important;
}

.mr-3 {
  margin-right: 1.5rem !important;
}

.mr-4 {
  margin-right: 2rem !important;
}

.mr-5 {
  margin-right: 2.5rem !important;
}

.mr-6 {
  margin-right: 3rem !important;
}

.mr-7 {
  margin-right: 3.5rem !important;
}

.mr-8 {
  margin-right: 4rem !important;
}

.mr-9 {
  margin-right: 4.5rem !important;
}

.mr-10 {
  margin-right: 5rem !important;
}

@media (max-width: 768px) {
  .mr-md-0 {
    margin-right: 0 !important;
  }
}

@media (max-width: 768px) {
  .mr-md-1 {
    margin-right: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .mr-md-2 {
    margin-right: 1rem !important;
  }
}

@media (max-width: 768px) {
  .mr-md-3 {
    margin-right: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .mr-md-4 {
    margin-right: 2rem !important;
  }
}

@media (max-width: 768px) {
  .mr-md-5 {
    margin-right: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .mr-md-6 {
    margin-right: 3rem !important;
  }
}

@media (max-width: 768px) {
  .mr-md-7 {
    margin-right: 3.5rem !important;
  }
}

@media (max-width: 768px) {
  .mr-md-8 {
    margin-right: 4rem !important;
  }
}

@media (max-width: 768px) {
  .mr-md-9 {
    margin-right: 4.5rem !important;
  }
}

@media (max-width: 768px) {
  .mr-md-10 {
    margin-right: 5rem !important;
  }
}

.mx-auto {
  margin-inline: auto !important;
}

.my-auto {
  margin-block: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

@media (max-width: 768px) {
  .m-md-auto {
    margin-inline: auto !important;
  }
}

@media (max-width: 768px) {
  .my-md-auto {
    margin-block: auto !important;
  }
}

@media (max-width: 768px) {
  .ml-md-auto {
    margin-left: auto !important;
  }
}

@media (max-width: 768px) {
  .mr-md-auto {
    margin-right: auto !important;
  }
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.5rem !important;
}

.p-2 {
  padding: 1rem !important;
}

.p-3 {
  padding: 1.5rem !important;
}

.p-4 {
  padding: 2rem !important;
}

.p-5 {
  padding: 2.5rem !important;
}

.p-6 {
  padding: 3rem !important;
}

.p-7 {
  padding: 3.5rem !important;
}

.p-8 {
  padding: 4rem !important;
}

.p-9 {
  padding: 4.5rem !important;
}

.p-10 {
  padding: 5rem !important;
}

@media (max-width: 768px) {
  .p-md-0 {
    padding: 0 !important;
  }
}

@media (max-width: 768px) {
  .p-md-1 {
    padding: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .p-md-2 {
    padding: 1rem !important;
  }
}

@media (max-width: 768px) {
  .p-md-3 {
    padding: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .p-md-4 {
    padding: 2rem !important;
  }
}

@media (max-width: 768px) {
  .p-md-5 {
    padding: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .p-md-6 {
    padding: 3rem !important;
  }
}

@media (max-width: 768px) {
  .p-md-7 {
    padding: 3.5rem !important;
  }
}

@media (max-width: 768px) {
  .p-md-8 {
    padding: 4rem !important;
  }
}

@media (max-width: 768px) {
  .p-md-9 {
    padding: 4.5rem !important;
  }
}

@media (max-width: 768px) {
  .p-md-10 {
    padding: 5rem !important;
  }
}

.py-0 {
  padding-block: 0 !important;
}

.py-1 {
  padding-block: 0.5rem !important;
}

.py-2 {
  padding-block: 1rem !important;
}

.py-3 {
  padding-block: 1.5rem !important;
}

.py-4 {
  padding-block: 2rem !important;
}

.py-5 {
  padding-block: 2.5rem !important;
}

.py-6 {
  padding-block: 3rem !important;
}

.py-7 {
  padding-block: 3.5rem !important;
}

.py-8 {
  padding-block: 4rem !important;
}

.py-9 {
  padding-block: 4.5rem !important;
}

.py-10 {
  padding-block: 5rem !important;
}

@media (max-width: 768px) {
  .py-md-0 {
    padding-block: 0 !important;
  }
}

@media (max-width: 768px) {
  .py-md-1 {
    padding-block: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .py-md-2 {
    padding-block: 1rem !important;
  }
}

@media (max-width: 768px) {
  .py-md-3 {
    padding-block: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .py-md-4 {
    padding-block: 2rem !important;
  }
}

@media (max-width: 768px) {
  .py-md-5 {
    padding-block: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .py-md-6 {
    padding-block: 3rem !important;
  }
}

@media (max-width: 768px) {
  .py-md-7 {
    padding-block: 3.5rem !important;
  }
}

@media (max-width: 768px) {
  .py-md-8 {
    padding-block: 4rem !important;
  }
}

@media (max-width: 768px) {
  .py-md-9 {
    padding-block: 4.5rem !important;
  }
}

@media (max-width: 768px) {
  .py-md-10 {
    padding-block: 5rem !important;
  }
}

.px-0 {
  padding-inline: 0 !important;
}

.px-1 {
  padding-inline: 0.5rem !important;
}

.px-2 {
  padding-inline: 1rem !important;
}

.px-3 {
  padding-inline: 1.5rem !important;
}

.px-4 {
  padding-inline: 2rem !important;
}

.px-5 {
  padding-inline: 2.5rem !important;
}

.px-6 {
  padding-inline: 3rem !important;
}

.px-7 {
  padding-inline: 3.5rem !important;
}

.px-8 {
  padding-inline: 4rem !important;
}

.px-9 {
  padding-inline: 4.5rem !important;
}

.px-10 {
  padding-inline: 5rem !important;
}

@media (max-width: 768px) {
  .px-md-0 {
    padding-inline: 0 !important;
  }
}

@media (max-width: 768px) {
  .px-md-1 {
    padding-inline: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .px-md-2 {
    padding-inline: 1rem !important;
  }
}

@media (max-width: 768px) {
  .px-md-3 {
    padding-inline: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .px-md-4 {
    padding-inline: 2rem !important;
  }
}

@media (max-width: 768px) {
  .px-md-5 {
    padding-inline: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .px-md-6 {
    padding-inline: 3rem !important;
  }
}

@media (max-width: 768px) {
  .px-md-7 {
    padding-inline: 3.5rem !important;
  }
}

@media (max-width: 768px) {
  .px-md-8 {
    padding-inline: 4rem !important;
  }
}

@media (max-width: 768px) {
  .px-md-9 {
    padding-inline: 4.5rem !important;
  }
}

@media (max-width: 768px) {
  .px-md-10 {
    padding-inline: 5rem !important;
  }
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.5rem !important;
}

.pt-2 {
  padding-top: 1rem !important;
}

.pt-3 {
  padding-top: 1.5rem !important;
}

.pt-4 {
  padding-top: 2rem !important;
}

.pt-5 {
  padding-top: 2.5rem !important;
}

.pt-6 {
  padding-top: 3rem !important;
}

.pt-7 {
  padding-top: 3.5rem !important;
}

.pt-8 {
  padding-top: 4rem !important;
}

.pt-9 {
  padding-top: 4.5rem !important;
}

.pt-10 {
  padding-top: 5rem !important;
}

@media (max-width: 768px) {
  .pt-md-0 {
    padding-top: 0 !important;
  }
}

@media (max-width: 768px) {
  .pt-md-1 {
    padding-top: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .pt-md-2 {
    padding-top: 1rem !important;
  }
}

@media (max-width: 768px) {
  .pt-md-3 {
    padding-top: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .pt-md-4 {
    padding-top: 2rem !important;
  }
}

@media (max-width: 768px) {
  .pt-md-5 {
    padding-top: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .pt-md-6 {
    padding-top: 3rem !important;
  }
}

@media (max-width: 768px) {
  .pt-md-7 {
    padding-top: 3.5rem !important;
  }
}

@media (max-width: 768px) {
  .pt-md-8 {
    padding-top: 4rem !important;
  }
}

@media (max-width: 768px) {
  .pt-md-9 {
    padding-top: 4.5rem !important;
  }
}

@media (max-width: 768px) {
  .pt-md-10 {
    padding-top: 5rem !important;
  }
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 1rem !important;
}

.pb-3 {
  padding-bottom: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 2rem !important;
}

.pb-5 {
  padding-bottom: 2.5rem !important;
}

.pb-6 {
  padding-bottom: 3rem !important;
}

.pb-7 {
  padding-bottom: 3.5rem !important;
}

.pb-8 {
  padding-bottom: 4rem !important;
}

.pb-9 {
  padding-bottom: 4.5rem !important;
}

.pb-10 {
  padding-bottom: 5rem !important;
}

@media (max-width: 768px) {
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 768px) {
  .pb-md-1 {
    padding-bottom: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .pb-md-2 {
    padding-bottom: 1rem !important;
  }
}

@media (max-width: 768px) {
  .pb-md-3 {
    padding-bottom: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .pb-md-4 {
    padding-bottom: 2rem !important;
  }
}

@media (max-width: 768px) {
  .pb-md-5 {
    padding-bottom: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .pb-md-6 {
    padding-bottom: 3rem !important;
  }
}

@media (max-width: 768px) {
  .pb-md-7 {
    padding-bottom: 3.5rem !important;
  }
}

@media (max-width: 768px) {
  .pb-md-8 {
    padding-bottom: 4rem !important;
  }
}

@media (max-width: 768px) {
  .pb-md-9 {
    padding-bottom: 4.5rem !important;
  }
}

@media (max-width: 768px) {
  .pb-md-10 {
    padding-bottom: 5rem !important;
  }
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-1 {
  padding-left: 0.5rem !important;
}

.pl-2 {
  padding-left: 1rem !important;
}

.pl-3 {
  padding-left: 1.5rem !important;
}

.pl-4 {
  padding-left: 2rem !important;
}

.pl-5 {
  padding-left: 2.5rem !important;
}

.pl-6 {
  padding-left: 3rem !important;
}

.pl-7 {
  padding-left: 3.5rem !important;
}

.pl-8 {
  padding-left: 4rem !important;
}

.pl-9 {
  padding-left: 4.5rem !important;
}

.pl-10 {
  padding-left: 5rem !important;
}

@media (max-width: 768px) {
  .pl-md-0 {
    padding-left: 0 !important;
  }
}

@media (max-width: 768px) {
  .pl-md-1 {
    padding-left: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .pl-md-2 {
    padding-left: 1rem !important;
  }
}

@media (max-width: 768px) {
  .pl-md-3 {
    padding-left: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .pl-md-4 {
    padding-left: 2rem !important;
  }
}

@media (max-width: 768px) {
  .pl-md-5 {
    padding-left: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .pl-md-6 {
    padding-left: 3rem !important;
  }
}

@media (max-width: 768px) {
  .pl-md-7 {
    padding-left: 3.5rem !important;
  }
}

@media (max-width: 768px) {
  .pl-md-8 {
    padding-left: 4rem !important;
  }
}

@media (max-width: 768px) {
  .pl-md-9 {
    padding-left: 4.5rem !important;
  }
}

@media (max-width: 768px) {
  .pl-md-10 {
    padding-left: 5rem !important;
  }
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-1 {
  padding-right: 0.5rem !important;
}

.pr-2 {
  padding-right: 1rem !important;
}

.pr-3 {
  padding-right: 1.5rem !important;
}

.pr-4 {
  padding-right: 2rem !important;
}

.pr-5 {
  padding-right: 2.5rem !important;
}

.pr-6 {
  padding-right: 3rem !important;
}

.pr-7 {
  padding-right: 3.5rem !important;
}

.pr-8 {
  padding-right: 4rem !important;
}

.pr-9 {
  padding-right: 4.5rem !important;
}

.pr-10 {
  padding-right: 5rem !important;
}

@media (max-width: 768px) {
  .pr-md-0 {
    padding-right: 0 !important;
  }
}

@media (max-width: 768px) {
  .pr-md-1 {
    padding-right: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .pr-md-2 {
    padding-right: 1rem !important;
  }
}

@media (max-width: 768px) {
  .pr-md-3 {
    padding-right: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .pr-md-4 {
    padding-right: 2rem !important;
  }
}

@media (max-width: 768px) {
  .pr-md-5 {
    padding-right: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .pr-md-6 {
    padding-right: 3rem !important;
  }
}

@media (max-width: 768px) {
  .pr-md-7 {
    padding-right: 3.5rem !important;
  }
}

@media (max-width: 768px) {
  .pr-md-8 {
    padding-right: 4rem !important;
  }
}

@media (max-width: 768px) {
  .pr-md-9 {
    padding-right: 4.5rem !important;
  }
}

@media (max-width: 768px) {
  .pr-md-10 {
    padding-right: 5rem !important;
  }
}

.bold {
  font-weight: bold;
}

.text-center {
  text-align: center !important;
}

@media screen and (max-width: 768px) {
  .text-md-center {
    text-align: center;
  }
}

.text-right {
  text-align: right !important;
}

@media screen and (max-width: 768px) {
  .text-md-right {
    text-align: right;
  }
}

.text-left {
  text-align: left !important;
}

@media screen and (max-width: 768px) {
  .text-md-left {
    text-align: left;
  }
}

.text-underline {
  text-decoration: underline;
}

.text-indent {
  display: block;
  padding-left: 1em;
}

.text-indent-2 {
  padding-left: 2em;
  text-indent: -2em;
}

.text-indent-3 {
  padding-left: 3em;
  text-indent: -3em;
}

.list-indent {
  padding-left: 1em;
  text-indent: -1em;
}

.text-12 {
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .text-md-12 {
    font-size: 12px;
  }
}

.text-14 {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .text-md-14 {
    font-size: 14px;
  }
}

.text-16 {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .text-md-16 {
    font-size: 16px;
  }
}

.text-18 {
  font-size: 18px;
}

.text-20 {
  font-size: 20px;
}

.text-bold {
  font-weight: bold;
}

a.text-link-arrow {
  color: var(--secondary);
  display: inline-block;
  position: relative;
  text-decoration: none;
  padding-right: 28px;
  transition: ease-in-out 0.3s;
}
a.text-link-arrow:hover {
  opacity: 0.7;
}
a.text-link-arrow::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/common/icon-arrow-primary.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.text-black {
  color: var(--black) !important;
}

.text-gray {
  color: var(--gray-200) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-red {
  color: var(--red) !important;
}

.text-bg-primary {
  background-color: var(--primary) !important;
  color: var(--white);
  padding: 4px 8px;
}

.text-bg-secondary {
  background-color: var(--secondary) !important;
  color: var(--white);
  padding: 4px 8px;
}

.text-bg-lightBlue {
  background-color: var(--light-blue-100) !important;
  color: var(--secondary);
  padding: 4px 8px;
}

.border-primary {
  border: 1px solid var(--primary);
}

.border-bottom-primary {
  border-bottom: 1px solid var(--primary);
}

.border-top-primary {
  border-top: 1px solid var(--primary);
}

.border-secondary {
  border: 1px solid var(--secondary);
}

.border-bottom-secondary {
  border-bottom: 1px solid var(--secondary);
}

.border-top-secondary {
  border-top: 1px solid var(--secondary);
}

.border-gray {
  border: 1px solid var(--gray-300);
}

.border-bottom-gray {
  border-bottom: 1px solid var(--gray-300);
}

.border-top-gray {
  border-top: 1px solid var(--gray-300);
}

.bg-white {
  background-color: var(--white) !important;
}

.bg-light-blue {
  background-color: var(--light-blue-100) !important;
}

.bg-gray-100 {
  background-color: var(--gray-100) !important;
}

.bg-gray-200 {
  background-color: var(--gray-200) !important;
}

.bg-gray-300 {
  background-color: var(--gray-300) !important;
}

.w-fit {
  width: fit-content;
}

.w-auto {
  width: auto;
}

.w-60 {
  width: 60%;
}

.w-80 {
  width: 80%;
}

.w-90 {
  width: 90%;
}

.w-95 {
  width: 95%;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .w-md-fit {
    width: fit-content;
  }
}

@media screen and (max-width: 768px) {
  .w-md-auto {
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  .w-md-60 {
    width: 60%;
  }
}

@media screen and (max-width: 768px) {
  .w-md-80 {
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .w-md-full {
    width: 100%;
  }
}

div.swiper-button-prev,
div.swiper-button-next {
  background: url(../images/home/slider-arrow.png);
  background-size: cover;
  width: 40px;
  height: 40px;
}
div.swiper-button-prev:hover,
div.swiper-button-next:hover {
  opacity: 0.7;
}

div.swiper-button-next {
  transform: scale(-1, -1);
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--gray-200);
  border-radius: 0;
  opacity: 1;
  margin: 0 10px;
  bottom: 0 !important;
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: var(--primary);
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

@media screen and (max-width: 768px) {
  .flex-col-md {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .flex-col-md-reverse {
    flex-direction: column-reverse;
  }
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.gap-4 {
  gap: 2rem;
}

.gap-5 {
  gap: 2.5rem;
}

.gap-6 {
  gap: 3rem;
}

.gap-7 {
  gap: 3.5rem;
}

.place-items-center {
  place-items: center;
}

.align-items-start {
  align-items: start;
}

.align-items-center {
  align-items: center;
}

.align-items-end {
  align-items: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.float-none {
  float: none;
}

@media screen and (max-width: 768px) {
  .float-md-none {
    float: none;
  }
}

.list--disc {
  list-style-type: disc;
  padding-left: 20px;
}

.list--circle {
  list-style-type: circle;
  padding-left: 20px;
}
.list--circle li {
  border-bottom: 1px solid var(--gray-300);
  padding-bottom: 1rem;
}

.list--decimal {
  list-style-type: decimal;
  padding-left: 2em;
}

.list--indent li {
  padding-left: 20px;
  text-indent: -20px;
}

.grid {
  display: grid;
}

.grid-col-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .grid-col-2 {
    gap: 0.5rem;
  }
}

.grid-col-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .grid-col-3 {
    gap: 0.5rem;
  }
}

.grid-col-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .grid-col-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-col-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .grid-col-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .grid-col-md-1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}

html {
  scroll-padding-top: 0;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  font-family: "Jost", sans-serif;
  color: var(--black);
  background-color: var(--white);
  overflow-y: scroll;
  word-break: break-all;
}

body.is-fixed {
  position: fixed;
  width: 100%;
}

body.is-drawer-open {
  overflow: hidden;
}

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

.only-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .only-pc {
    display: none;
  }
}

.row > *:first-child {
  padding-left: 0;
}

.row > *:last-child {
  padding-right: 0;
}

/*# sourceMappingURL=style.css.map */
