@charset "UTF-8";
/*==========================================
コンポーネントファイル
===========================================*/
/*
# パンくずリスト
------------------------*/
div .bread {
  display: none;
}

/*
# 一覧ぺージ用カテゴリ(セレクトボックス)
------------------------*/
.global-select {
  width: 64%;
  margin: 0 0 23% auto;
}
.global-select select {
  padding: 6% 10% 6% 6%;
}

/*
# ドロワーメニュー
------------------------------------ */
.sp-menu-btn-wrp {
  top: 1vw;
  right: 3%;
  bottom: auto;
  left: auto;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sp-menu-btn-wrp .sp-menu-btn {
  width: 14.5vw;
  height: 14.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn span {
  width: 70%;
  height: 1px;
  background: var(--primary-color);
}
.sp-menu-btn-wrp .sp-menu-btn .top {
  top: 4.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn .middle {
  top: 0;
  bottom: 0;
}
.sp-menu-btn-wrp .sp-menu-btn .bottom {
  top: 9.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn-txt {
  color: var(--color-white);
  top: -2vw;
  font-size: var(--font-size-10);
}

.sp-menu-btn.active .top {
  transform: translateY(2.5vw) translateX(0px) rotate(45deg);
}

.sp-menu-btn.active .bottom {
  transform: translateY(-2.75vw) translateX(0px) rotate(-45deg);
}

/*  drawer inbox
  ------------------------------------ */
#drawer__nav {
  padding: 8% 11% 30%;
  background: var(--primary-color-extralight);
}
#drawer__nav .drawer__nav-logo {
  width: 35%;
  margin-bottom: 10%;
  text-align: left;
}
#drawer__nav .drawer__nav {
  margin-bottom: 15%;
}
#drawer__nav .drawer__nav-item {
  border-bottom: 1px solid var(--color-gray);
}
#drawer__nav .drawer__nav-item .drawer__nav-link {
  padding: 6% 0;
  font-size: var(--font-size-17);
  border-bottom: none;
  display: block;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown {
  padding: 3% 12% 3% 0;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown span {
  display: block;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown span:before, #drawer__nav .drawer__nav .drawer__nav-dropdown span:after {
  background: var(--color-black);
}
#drawer__nav .drawer__nav .drawer__nav-dropdown-item .drawer__nav-link {
  display: block;
  padding: 3% 0;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown .show span:after {
  opacity: 0 !important;
}
#drawer__nav .drawer__nav .current span {
  padding-left: 12%;
  display: block;
  position: relative;
  text-decoration: underline;
  color: var(--primary-color);
  background: url(../../img/common/number_bg.png) center left/10% no-repeat;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown-list {
  margin: 3% 0;
  padding-left: 4%;
  box-sizing: border-box;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown-list > li > .drawer__nav-link.show::before {
  background: none;
  border: none;
}
#drawer__nav .drawer__nav .drawer__nav-dropdown-list > li > .drawer__nav-link span {
  padding: 0 0 0 5%;
}
#drawer__nav .drawer__nav-address {
  margin: 10% auto;
}
#drawer__nav .drawer__nav-address li {
  margin-bottom: 6%;
}
#drawer__nav .drawer__nav-address li:last-child {
  margin-bottom: 0;
}
#drawer__nav .drawer__nav-subpage {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: var(--font-size-12);
  gap: 4vw;
  margin-top: 12%;
}
#drawer__nav .drawer__nav-subpage-link {
  text-decoration: underline;
}

/*
# c-contact__list
------------------------*/
.c-contact__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5vw 7vw;
}
.c-contact__list .contact__button-official {
  height: 15vw;
  align-items: center;
  justify-content: center;
  width: 75vw;
}
.c-contact__list .contact__item-button {
  display: flex;
}
.c-contact__list .contact__item-button:hover {
  transform: scale(0.9);
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-table {
  text-align: left;
}
.com-table tr {
  display: block;
  padding: 6% 0;
}
.com-table tr th,
.com-table tr td {
  display: block;
}
.com-table tr th {
  margin-bottom: 4%;
}
.com-table tr td a[href^="tel:"],
.com-table tr td a[href^="mailto:"] {
  text-decoration: underline;
}
.com-table tr td .tel__text {
  width: 65%;
  display: block;
}

/*==========================================
  共通ブロック・要素
  ===========================================*/
.com-content {
  text-align: left;
}
.com-content p {
  margin-bottom: 8%;
}

/*
# com-button
------------------------*/
.com-button {
  text-align: center;
  height: 15vw;
  border-radius: 8vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--color-white);
  width: 100%;
  position: relative;
}
.com-button::before {
  width: 6vw;
  height: 6vw;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-items: center;
  inset: 0 3% 0 auto;
  font-size: var(--font-size-13);
}
.com-button.bg-color-accent::before {
  color: var(--accent-color);
}
.com-button.bg-color-primary::before {
  color: var(--primary-color);
}
.com-button.bg-color-white {
  color: var(--primary-color);
}
.com-button.bg-color-white::before {
  background-color: var(--primary-color);
  color: var(--color-white);
}
.com-button.bg-color-white:hover {
  color: var(--primary-color);
}
.com-button:hover {
  transform: scale(0.95);
  opacity: 1;
  color: var(--color-white);
}

/*
# .sky-blue__wave-parts
------------------------*/
.sky-blue__wave-parts {
  position: relative;
}
.sky-blue__wave-parts::before, .sky-blue__wave-parts::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 14vw;
  left: 0;
  right: 0;
  background: url(../../img/common/com-bg_wave.png) 100% no-repeat;
  z-index: 1;
}
.sky-blue__wave-parts::before {
  top: -14vw;
  transform: rotate(180deg);
  background-position: bottom center;
}
.sky-blue__wave-parts::after {
  bottom: -14vw;
  background-position: top center;
}

/*
# has-counter
------------------------*/
.has-counter .counter-item::before {
  width: 8.5vw;
  height: 8.5vw;
  background-size: 100%;
  inset: -4vw auto auto -3vw;
  font-size: var(--font-size-20);
}

/*==========================================
共通タイトル
===========================================*/
.section-title {
  text-align: center;
  margin-bottom: 13%;
}
.section-title span {
  display: block;
}
.section-title .title-en {
  font-size: var(--font-size-30);
  color: var(--primary-color);
  font-family: var(--josefin-sans);
  font-weight: var(--font-weight-bold);
  font-weight: var(--font-weight-light);
  letter-spacing: 0.06em;
  margin-bottom: 2%;
  text-transform: uppercase;
}
.section-title .title-ja {
  letter-spacing: 0.1em;
  font-size: var(--font-size-20);
  font-family: var(--kiwi-maru-medium);
}

.headline-title {
  font-size: var(--font-size-21);
  font-family: var(--kiwi-maru-medium);
  border-bottom: 1px solid var(--color-gray);
  margin-bottom: 4%;
  padding-bottom: 2%;
  letter-spacing: 0.12em;
}

.secondary-title {
  font-size: var(--font-size-19);
  font-family: var(--kiwi-maru-medium);
  background: var(--color-white);
  color: var(--primary-color);
  padding: 2% 5%;
  border-left: 1.25vw solid;
  margin-bottom: 4%;
}

.third-title {
  font-size: var(--font-size-20);
  font-family: var(--kiwi-maru-medium);
  border-bottom: 1px solid var(--color-gray);
  margin-bottom: 4%;
  padding-bottom: 2%;
}

/*==========================================
header
===========================================*/
#header {
  position: fixed;
  z-index: 1001;
  width: 100%;
  inset: 0 0 auto;
  padding: 2% 4% 4%;
}
#header::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 8vw;
  inset: auto 0 -7.85vw;
  background: url(../../img/common/hd-btm_wave.png) top center/100% no-repeat;
}
#header .header__logo {
  width: 29%;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header .header__nav {
  display: none;
}

/*==========================================
mv
===========================================*/
#top-mv {
  height: 85vw;
  position: relative;
  /*==========================================
  メインビジュアル(スライダー)
  ===========================================*/
  margin-top: 3.90625%;
}
#top-mv #mv__slider {
  height: 85vw;
  position: relative;
}
#top-mv #mv__slider li {
  height: 100%;
}
#top-mv #mv__slider li:nth-child(1) {
  background: url(../img/top/mv/slide01_bg.jpg) center/cover no-repeat;
}
#top-mv #mv__slider li:nth-child(2) {
  background: url(../img/top/mv/slide02_bg.jpg) center/cover no-repeat;
}
#top-mv #mv__slider li:nth-child(3) {
  background: url(../img/top/mv/slide03_bg.jpg) center/cover no-repeat;
}
#top-mv .bx-wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
#top-mv .bx-viewport {
  overflow: visible !important;
  margin: auto;
  text-align: center;
}
#top-mv .bx-pager {
  display: none;
}
#top-mv .mv__catch {
  width: 85%;
  margin: 0 auto;
  position: absolute;
  inset: 20% 0 auto;
  z-index: 100;
}
#top-mv .mv__catch img {
  width: 60%;
}

/*==========================================
footer
===========================================*/
#footer {
  padding: 15% 0 20vw;
  position: relative;
}
#footer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 8vw;
  inset: -7.85vw 0 auto;
  background: url(../../img/common/ft-top_wave.png) bottom center/100% no-repeat;
}
#footer .side__fixed-buttons {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1001;
  display: flex;
}
#footer .side__fixed-buttons:has(.side__button-product) .side__button-chart .side__button {
  width: 100%;
}
#footer .side__fixed-buttons .side__button {
  width: 100%;
}
#footer .side__fixed-buttons .side__button-link {
  height: 16vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 3% 0 20%;
  font-size: var(--font-size-11);
  position: relative;
}
#footer .side__fixed-buttons .side__button-link::before {
  position: absolute;
  content: "";
  width: 7vw;
  height: 7vw;
  inset: 0 auto 0 5%;
  margin: auto 0;
  z-index: 1;
}
#footer .side__fixed-buttons .side__button-link span {
  font-size: var(--font-size-14);
}
#footer .side__fixed-buttons .side__button-product .side__button-link {
  padding-left: 20%;
  position: relative;
}
#footer .side__fixed-buttons .side__button-product .side__button-link::before {
  background: url(../../img/common/fixed-ec_ic.png) center/100% no-repeat;
}
#footer .side__fixed-buttons .side__button-chart .side__button-link::before {
  background: url(../../img/common/fixed-mail_ic.png) center/100% no-repeat;
}
#footer .side__fixed-buttons .side__button-chart .color-accent {
  display: block;
  font-size: var(--font-size-13);
}
#footer .side__fixed-buttons .side__button-chart .color-white {
  display: block;
}
#footer .footer__inbox {
  position: relative;
}
#footer .footer__left {
  margin-bottom: 15%;
}
#footer .footer__left .footer__logo {
  display: block;
  width: 45%;
  margin: 0 auto 10%;
}
#footer .footer__right .footer__nav {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  font-size: var(--font-size-14);
}
#footer .footer__right .footer__sub-list .footer__nav-item {
  width: 100%;
}
#footer .footer__right .footer__nav-link {
  color: var(--color-white);
  margin-bottom: 5vw;
  display: block;
}

#copyright {
  word-break: normal;
  text-align: center;
  margin-top: 10%;
}
#copyright small {
  font-size: var(--font-size-12);
}
#copyright a {
  text-decoration: underline;
}

/*==========================================
ページトップ
===========================================*/
.pagetop {
  width: 13%;
  position: fixed;
  bottom: 12%;
  right: 1%;
  z-index: 999;
}

/*==========================================
下層共通スタイル
===========================================*/
/*==========================================
sv
===========================================*/
.lower-sv {
  height: 55vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 11vw;
  position: relative;
  background: url(../../img/sv/ec-base_sv.jpg) center/cover no-repeat;
}
.lower-sv::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3vw;
  inset: auto 0 0;
  background: url(../../img/sv/sv-btm_wave.png) bottom center/100% no-repeat;
}
.lower-sv .sv__title {
  width: 84%;
  margin: 0 auto;
  position: relative;
  padding: 1vw 2%;
  font-size: var(--font-size-25);
  text-align: center;
  text-shadow: 1px 1px 1px var(--color-white);
  background: linear-gradient(to bottom, rgba(var(--primary-color-rgb), 0.2) 0%, rgba(var(--color-white-rgb), 0.8) 12%, rgba(215, 247, 253, 0.8) 100%);
}
.lower-sv .sv__title::before {
  position: absolute;
  content: "";
  width: 9.5vw;
  height: 9.5vw;
  background: url(../../img/sv/sv-ttl_deco.png) center/100% no-repeat;
  inset: auto -2vw -3vw auto;
}

#tap-water-sv {
  background: url(../../img/sv/tap-water-sv_bg.jpg) center/cover no-repeat;
}

#well-water-sv {
  background: url(../../img/sv/well-water-sv_bg.jpg) center/cover no-repeat;
}

#guide-sv {
  background: url(../../img/sv/guide-sv_bg.jpg) center/cover no-repeat;
}

#case-sv {
  background: url(../../img/sv/case-sv_bg.jpg) center/cover no-repeat;
}

#company-sv {
  background: url(../../img/sv/company-sv_bg.jpg) center/cover no-repeat;
}

#bloglist-sv {
  background: url(../../img/sv/bloglist-sv_bg.jpg) center/cover no-repeat;
}

#contact-sv {
  background: url(../../img/sv/contact-sv_bg.jpg) center/cover no-repeat;
}

#complete-sv {
  background: url(../../img/sv/complete-sv_bg.jpg) center/cover no-repeat;
}

#privacy-sv {
  background: url(../../img/sv/privacy-sv_bg.jpg) center/cover no-repeat;
}

#site-sv {
  background: url(../../img/sv/site-sv_bg.jpg) center/cover no-repeat;
}

#e404-sv {
  background: url(../../img/sv/e404-sv_bg.jpg) center/cover no-repeat;
}

#help_tradelaw-sv {
  background: url(../../img/sv/help_tradelaw-sv_bg.jpg) center/cover no-repeat;
}

#help_agreement-sv {
  background: url(../../img/sv/help_agreement-sv_bg.jpg) center/cover no-repeat;
}

#help_guide-sv {
  background: url(../../img/sv/help_guide-sv_bg.jpg) center/cover no-repeat;
}

/*==========================================
top
===========================================*/
/*
# top-greeting
------------------------*/
#top-greeting {
  padding: 10% 0 15%;
  background: linear-gradient(to bottom, #33bde0 0%, #1b9df0 100%);
  position: relative;
  z-index: 100;
}
#top-greeting::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 8vw;
  inset: -7.85vw 0 auto;
  background: url(../../img/top/greeting-top_wave.png) bottom center/100% no-repeat;
}
#top-greeting .greeting__title {
  font-size: var(--font-size-25);
  text-align: center;
  margin-bottom: 10%;
  line-height: 1.4;
}

/*
# top-features
------------------------*/
#top-features {
  padding: 18% 0 25%;
  background: url(../../img/top/feature_bg.jpg) top center no-repeat, var(--color-white);
  position: relative;
  z-index: 101;
}
#top-features::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 96px;
  background: url(../../img/top/features-top_wave.png) bottom center/100% no-repeat;
  inset: -96px 0 auto;
}
#top-features .features__banner {
  width: 100%;
  height: 36vw;
  display: block;
  margin: 0 auto 15%;
}
#top-features .features__banner:hover {
  transform: scale(0.98);
}
#top-features .features__title {
  text-align: center;
  margin-bottom: 12%;
  font-size: var(--font-size-28);
}
#top-features .features__list {
  padding: 12% 6%;
  background: rgba(var(--primary-color-rgb), 0.1);
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
  row-gap: 6vw;
}
#top-features .features__list .features__item {
  width: 48%;
  text-align: center;
}
#top-features .features__list .features__item-icon {
  width: 75%;
  margin: 0 auto;
}
#top-features .features__list .features__item-text {
  margin-top: 5%;
  font-size: var(--font-size-15);
  line-height: 1.6;
}

/*
# top-chart
------------------------*/
#top-chart .chart__title {
  text-align: center;
  margin-bottom: 70px;
}
#top-chart .chart__title span {
  display: block;
}
#top-chart .chart__title .color-blue-gradation {
  font-size: var(--font-size-25);
  margin-bottom: 4%;
}
#top-chart .chart__title .bg-color-white {
  font-size: var(--font-size-20);
  padding: 3% 1%;
}
#top-chart .chart__buttons {
  padding: 0 8%;
}
#top-chart .chart__buttons .chart__button {
  width: 100%;
  margin-bottom: 10%;
}
#top-chart .chart__buttons .chart__button:last-child {
  margin-bottom: 0;
}
#top-chart .chart__buttons .chart__button-link {
  height: 55vw;
  display: block;
  padding: 10% 6%;
}
#top-chart .chart__buttons .chart__button-link:hover {
  opacity: 1;
  transform: scale(0.98);
}
#top-chart .chart__buttons .chart__button-tap .chart__button-link {
  background: url(../../img/top/chart-tap-btn_bg.jpg) center/cover no-repeat;
}
#top-chart .chart__buttons .chart__button-tap .chart__button-title {
  text-shadow: 1px -1px 8px var(--primary-color-dark), 1px -1px 8px var(--primary-color-dark), 1px -1px 8px var(--primary-color-dark), 1px -1px 8px var(--primary-color-dark), 1px -1px 8px var(--primary-color-dark);
}
#top-chart .chart__buttons .chart__button-well .chart__button-link {
  background: url(../../img/top/chart-well-btn_bg.jpg) center/cover no-repeat;
}
#top-chart .chart__buttons .chart__button-well .chart__button-title-markup {
  font-size: var(--font-size-16);
  padding: 0.85vw 3vw;
  position: relative;
}
#top-chart .chart__buttons .chart__button-well .chart__button-title-markup::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: var(--color-white) transparent transparent transparent;
  inset: auto 0 -8px;
  margin: 0 auto;
}
#top-chart .chart__buttons .chart__button-well .chart__button-title span {
  text-shadow: 1px -1px 8px var(--primary-color), 1px -1px 8px var(--primary-color), 1px -1px 8px var(--primary-color), 1px -1px 8px var(--primary-color), 1px -1px 8px var(--primary-color);
}
#top-chart .chart__buttons .chart__button-title {
  margin-bottom: 6%;
}
#top-chart .chart__buttons .chart__button-title span {
  font-size: var(--font-size-24);
  display: block;
}
#top-chart .chart__buttons .chart__button-more {
  width: 56%;
  padding: 2% 4%;
  text-align: center;
  font-size: var(--font-size-15);
}

/*
# top-items
------------------------*/
#top-items {
  padding: 18% 0;
  background: var(--primary-color-extralight);
  position: relative;
  z-index: 102;
}
#top-items::before, #top-items::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 15vw;
  background: url(../../img/top/items-top_wave.png) 100% no-repeat;
  left: 0;
  right: 0;
}
#top-items::before {
  top: -15vw;
  background-position: 0 50%;
}
#top-items::after {
  bottom: -15vw;
  background-position: 0 50%;
  transform: rotate(180deg);
}
#top-items .items__title {
  text-align: center;
  margin-bottom: 12%;
}
#top-items .items__title .title-main {
  display: block;
  font-size: var(--font-size-26);
  margin-bottom: 3%;
}
#top-items .items__title .title-sub {
  display: block;
  font-size: var(--font-size-20);
}
#top-items .items__list .items__box {
  width: 80vw;
  height: 80vw;
  display: flex;
  flex-direction: column;
  margin: 0 auto 12%;
}
#top-items .items__list .items__box:last-child {
  margin-bottom: 0;
}
#top-items .items__list .items__box-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-grow: 1;
  border-radius: 50%;
  position: relative;
  height: 100%;
}
#top-items .items__list .items__box-link:hover {
  transform: translateY(-10px);
}
#top-items .items__list .items__box-tap .items__box-link {
  background: url(../../img/top/items-tap_img.jpg) center/100% no-repeat;
}
#top-items .items__list .items__box-well .items__box-link {
  background: url(../../img/top/items-well_img.jpg) center/100% no-repeat;
}
#top-items .items__list .items__box-filter .items__box-link {
  background: url(../../img/top/items-filter_img.jpg) center/100% no-repeat;
}
#top-items .items__list .items__box:nth-child(odd) .items__box-title {
  text-shadow: 1px -1px 8px var(--primary-color-dark);
}
#top-items .items__list .items__box:nth-child(even) .items__box-title {
  text-shadow: 1px -1px 8px var(--primary-color);
}
#top-items .items__list .items__box-markup {
  position: absolute;
  inset: -2vw auto auto 0;
  width: 20vw;
  height: 20vw;
  border-radius: 50%;
  font-size: var(--font-size-20);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.4;
}
#top-items .items__list .items__box-markup::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.5vw 2vw 1.5vw 0px;
  border-color: transparent var(--accent-color) transparent transparent;
  inset: auto 9% 1.5vw auto;
}
#top-items .items__list .items__box-markup small {
  font-size: var(--font-size-15);
}
#top-items .items__list .items__box-title {
  font-size: var(--font-size-26);
  line-height: 1.5;
  margin-bottom: 5%;
  text-align: center;
}
#top-items .items__list .items__box-title small {
  display: block;
  margin-top: 4%;
  font-size: var(--font-size-15);
}
#top-items .items__list .items__box-button {
  width: 100%;
  text-align: center;
  height: 12vw;
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-16);
}
#top-items .items__button {
  margin: 15% auto 0;
}

/*
# top-links
------------------------*/
#top-links {
  padding: 22% 0 18%;
}
#top-links .links__card {
  margin-bottom: 16%;
}
#top-links .links__card:last-child {
  margin-bottom: 0;
}
#top-links .links__card-link {
  overflow: hidden;
  position: relative;
  padding: 10% 6%;
  display: block;
  box-shadow: -5px -5px 10px 0px var(--color-white), 5px 5px 10px 0px rgba(var(--primary-color-dark-rgb), 0.3);
}
#top-links .links__card-link:hover {
  transform: scale(0.98);
  box-shadow: 0px 0px 5px 0px var(--color-white), 1px 1px 5px 0px rgba(var(--primary-color-dark-rgb), 0.3);
}
#top-links .links__card-title {
  text-align: center;
  font-size: var(--font-size-26);
  margin-bottom: 3%;
}
#top-links .links__card-text strong {
  display: block;
  font-size: var(--font-size-17);
  letter-spacing: 0;
  text-align: center;
}
#top-links .links__card-img img {
  border-radius: 6vw 6vw 13vw 13vw;
}

/*
# top-news
------------------------*/
#top-news .news__inbox {
  position: relative;
}
#top-news .news__post-list {
  padding: 10% 6%;
  display: flex;
  overflow-x: scroll;
  gap: 7vw;
}
#top-news .news__post {
  width: 55%;
}
#top-news .news__post-thumb {
  width: 100%;
  height: 36vw;
  margin-bottom: 10px;
}
#top-news .news__post-link {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  align-items: baseline;
  flex-wrap: wrap;
  font-size: var(--font-size-14);
}
#top-news .news__post-date {
  width: 41%;
}
#top-news .news__post-tags {
  width: 59%;
  padding-left: 1vw;
  border-left: 1px solid;
  line-height: 1;
  gap: 1.5vw;
  display: flex;
  flex-wrap: wrap;
}
#top-news .news__post-title {
  width: 100%;
  font-size: var(--font-size-16);
}
#top-news .news__button {
  margin-top: 13%;
}

/*
# top-contact
------------------------*/
#top-contact {
  padding: 22% 0;
}
#top-contact .contact__text {
  margin-bottom: 12%;
}
#top-contact .contact__item {
  margin-bottom: 15%;
}
#top-contact .contact__item:last-child {
  margin-bottom: 0;
}
#top-contact .contact__item-link {
  width: 83vw;
  height: 83vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  background: url(../../img/top/contact-water_bg.png) center/100% no-repeat;
}
#top-contact .contact__item-link:hover .contact__item-button {
  background: var(--accent-color);
  color: var(--color-white);
}
#top-contact .contact__item-title {
  font-size: var(--font-size-23);
  margin-bottom: 6%;
}
#top-contact .contact__item-text {
  font-size: var(--font-size-15);
  margin-bottom: 8%;
}
#top-contact .contact__item-button {
  width: 85%;
  margin: 0 auto;
  border-width: 1px;
  height: 14vw;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
#top-contact .contact__item-tel .tel__num {
  font-size: var(--font-size-26);
}
#top-contact .contact__item-tel .tel__num small {
  font-size: var(--font-size-15);
}

/*==========================================
tap-water
===========================================*/
/*
# tap-water-flow
------------------------*/
#tap-water-flow .flow__list .flow__item {
  width: 70%;
  position: relative;
  margin: 0 auto 18%;
}
#tap-water-flow .flow__list .flow__item::after {
  position: absolute;
  content: "";
  width: 8%;
  height: 10vw;
  transform: rotate(90deg);
  inset: auto 0 -12vw;
  margin: 0 auto;
  background: url(../../img/tap-water/case_arr.png) center/100% no-repeat;
}
#tap-water-flow .flow__list .flow__item:last-child {
  margin-bottom: 0;
}
#tap-water-flow .flow__list .flow__item:last-child::after {
  background: none;
}
#tap-water-flow .flow__list .flow__item-icon {
  width: 13vw;
  position: absolute;
  inset: -2vw auto auto 0;
}
#tap-water-flow .flow__list .flow__item-text {
  font-size: var(--font-size-21);
  padding-left: 25%;
}
#tap-water-flow .flow__text {
  margin-top: 15%;
  text-align: center;
  font-size: var(--font-size-17);
}
#tap-water-flow .flow__text a {
  text-decoration: underline;
}

/*
# tap-water-movie
------------------------*/
#tap-water-movie .movie__frame {
  text-align: center;
}

/*
# worry__section
------------------------*/
.worry__section .worry__list {
  margin-bottom: 15%;
}
.worry__section .worry__item {
  width: 75%;
  height: 22vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-17);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 10%;
}
.worry__section .worry__item:nth-child(even) {
  margin-left: auto;
}
.worry__section .worry__item:last-child {
  margin-bottom: 0;
}
.worry__section .worry__item span {
  font-size: var(--font-size-20);
}
.worry__section .worry__text {
  font-size: var(--font-size-17);
  margin-bottom: 15%;
}
.worry__section .worry__figure-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5vw 4%;
  margin-bottom: 15%;
}
.worry__section .worry__figure {
  width: 48%;
  text-align: center;
}
.worry__section .worry__figure-caption {
  font-size: var(--font-size-15);
  margin-top: 5%;
}
.worry__section .worry__sub-content .worry__sub-title {
  font-size: var(--font-size-20);
  text-align: center;
  padding: 3% 4%;
  margin-bottom: 10%;
}
.worry__section .worry__sub-content .worry__sub-img {
  text-align: center;
  margin-bottom: 10%;
}
.worry__section .worry__target {
  background: url(../../img/tap-water/worry-guarantee_bg.png) top center/cover no-repeat, linear-gradient(to bottom, rgb(51, 189, 224) 0%, rgb(27, 157, 240) 100%);
  padding: 12% 6%;
  margin-top: 15%;
}
.worry__section .worry__target-title {
  margin-bottom: 10%;
  font-size: var(--font-size-23);
  text-align: center;
}
.worry__section .worry__target-button {
  width: 100%;
  margin: 13% auto 0;
}

.worry__lineup-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5vw 4%;
  margin-top: 15%;
}
.worry__lineup-list .worry__lineup-item {
  width: 48%;
  text-align: center;
}
.worry__lineup-list .worry__lineup-img {
  width: 100%;
  height: 40vw;
  margin-bottom: 2%;
}

#well-water-worry .worry__sub-content .worry__figure-list {
  margin: 15% 0;
}
#well-water-worry .worry__sub-content .worry__sub-text {
  margin-top: 10%;
  font-size: var(--font-size-17);
}
#well-water-worry .worry__sub-content .worry__sub-text a {
  text-decoration: underline;
}

/*
# picks__section
------------------------*/
.picks__section .picks__card {
  position: relative;
  padding-bottom: 12%;
  margin-bottom: 12%;
  border-bottom: 1px solid var(--color-gray-light);
}
.picks__section .picks__card:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.picks__section .picks__card-img {
  width: 85%;
  height: 53vw;
  margin: 0 auto 5%;
}
.picks__section .picks__card-title {
  font-size: var(--font-size-24);
  margin-bottom: 3%;
}
.picks__section .picks__card-price {
  font-size: var(--font-size-20);
  text-align: right;
}
.picks__section .picks__card-button {
  margin-top: 10%;
  height: 14vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-16);
}
.picks__section .picks__card-button:hover {
  transform: scale(0.98);
}

/*
# risk__section
------------------------*/
.risk__section .risk__title .title-en {
  font-size: var(--font-size-27);
}
.risk__section .risk__text {
  margin-bottom: 13%;
}
.risk__section .risk__list {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
  margin-bottom: 15%;
  row-gap: 5vw;
}
.risk__section .risk__list .risk__item {
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding: 9% 2%;
}
.risk__section .risk__list .risk__item-title {
  font-size: var(--font-size-19);
  margin-bottom: 3%;
}
.risk__section .risk__list .risk__item-text {
  font-size: var(--font-size-14);
}
.risk__section .risk__content .risk__content-img {
  margin-bottom: 6%;
}

/*
# benefits__section
------------------------*/
.benefits__section .benefits__title .title-en {
  font-size: var(--font-size-27);
}
.benefits__section .benefits__item {
  padding: 12% 6%;
  margin-bottom: 13%;
  position: relative;
}
.benefits__section .benefits__item:last-child {
  margin-bottom: 0;
}
.benefits__section .benefits__item-icon {
  position: absolute;
  inset: 7vw auto auto 4%;
  width: 16%;
}
.benefits__section .benefits__item-title {
  padding-left: 18%;
}

/*
# case__section
------------------------*/
.case__section .case__text {
  margin-bottom: 15%;
}
.case__section .case__button {
  width: 100%;
}
.case__section .case__post {
  margin-top: 15%;
}
.case__section .case__post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75vw;
  margin-bottom: 4%;
}
.case__section .case__post-tags .case__tag {
  padding: 0 2.5vw;
}
.case__section .case__post-bfaf {
  margin-bottom: 15%;
}
.case__section .case__post-bfaf-img {
  position: relative;
}
.case__section .case__post-bfaf-img .case__post-img {
  width: 100%;
  height: 62vw;
}
.case__section .case__post-bfaf-img .case__post-bfaf-caption {
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-light);
  padding: 0 3vw;
  position: absolute;
  inset: auto auto 6vw 0;
  z-index: 1;
}
.case__section .case__post-bfaf:has(.case__post-after) .case__post-before {
  margin-bottom: 15%;
}
.case__section .case__post-bfaf:has(.case__post-after) .case__post-before::after {
  position: absolute;
  content: "";
  width: 7vw;
  height: 13vw;
  background: url(../../img/tap-water/case_arr.png) center/100% no-repeat;
  inset: auto 0 -13vw;
  margin: 0 auto;
  transform: rotate(90deg);
}
.case__section .case__post-gallery {
  overflow-x: scroll;
  white-space: nowrap;
  padding: 10% 8%;
  margin-bottom: 15%;
}
.case__section .case__post-gallery .case__gallery-img {
  width: 70vw;
  height: 56vw;
  display: inline-block;
  margin-right: 4vw;
}
.case__section .case__post-gallery .case__gallery-img:last-child {
  margin-right: 0;
}

/*==========================================
guide
===========================================*/
.flow__buttons {
  margin-top: 12%;
}
.flow__buttons .flow__button {
  margin-bottom: 10%;
}
.flow__buttons .flow__button:last-child {
  margin-bottom: 0;
}
.flow__buttons .flow__button-link::before {
  transform: rotate(90deg);
}

/*
# flow__section
------------------------*/
.flow__section .flow__content {
  margin-bottom: 15%;
}
.flow__section .flow__list .flow__item {
  margin-bottom: 15%;
  padding-bottom: 19%;
  position: relative;
  background: url(../../img/guide/flow_arr.png) bottom center/37% no-repeat;
}
.flow__section .flow__list .flow__item:last-child {
  background: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.flow__section .flow__list .flow__item-icon {
  position: absolute;
  inset: -3vw auto auto 0;
  width: 16%;
}
.flow__section .flow__list .flow__item-title {
  padding-left: 16%;
}
.flow__section .flow__list .flow__item-content .flow__item-text span {
  font-size: var(--font-size-20);
}
.flow__section .flow__list .flow__item-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3vw 4%;
}
.flow__section .flow__list .flow__item-buttons .flow__item-button {
  width: 48%;
}
.flow__section .flow__list .flow__item-buttons .flow__item-button .flow__button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-width: 1px;
  height: 13vw;
  font-size: var(--font-size-14);
}
.flow__section .flow__list .flow__item-buttons .flow__item-button .flow__button:hover {
  opacity: 1;
  background: var(--primary-color);
  color: var(--color-white);
}
.flow__section .flow__list .flow__item-address {
  width: 80%;
  padding: 8% 6%;
  position: relative;
}
.flow__section .flow__list .flow__item-address::before {
  position: absolute;
  content: "";
  width: 8vw;
  height: 8vw;
  inset: -4vw auto auto -4vw;
  background: url(../../img/guide/flow03-address_deco.png) center/100% no-repeat;
}
.flow__section .flow__list .flow__item-address .flow__address-title {
  font-size: var(--font-size-20);
  margin-bottom: 3%;
}

/*
# guide-faq
------------------------*/
#guide-faq::after {
  background: none;
}
#guide-faq .faq__item {
  margin-bottom: 15%;
  padding: 10% 6%;
}
#guide-faq .faq__item:last-child {
  margin-bottom: 0;
}
#guide-faq .faq__item-title, #guide-faq .faq__item-content {
  position: relative;
  padding-left: 15%;
}
#guide-faq .faq__item-title::before, #guide-faq .faq__item-content::before {
  position: absolute;
  font-size: var(--font-size-26);
  font-family: var(--josefin-sans);
  font-weight: var(--font-weight-light);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
#guide-faq .faq__item-title {
  font-size: var(--font-size-18);
  padding: 3% 3% 3% 15%;
  margin-bottom: 7%;
}
#guide-faq .faq__item-title::before {
  content: "Q";
  width: 13%;
  height: 100%;
  inset: 0 auto 0 0;
  background: var(--primary-color);
  color: var(--color-white);
  border-radius: 3.4vw 0 0 3.4vw;
}
#guide-faq .faq__item-content::before {
  inset: -2vw auto auto 0;
  content: "A";
  width: 11vw;
  height: 11vw;
  background: url(../../img/guide/faq-answer_deco.png) left bottom/100% no-repeat;
  color: var(--primary-color);
}

/*==========================================
case
===========================================*/
/*
# case-archive
------------------------*/
#case-archive .case__tag-list {
  margin: 12% 0 15%;
  gap: 3vw 5vw;
  padding: 8% 5%;
  display: flex;
  flex-wrap: wrap;
}
#case-archive .case__tag-list .case__tag-link {
  padding: 1vw 5vw;
  border-width: 1px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-14);
}
#case-archive .case__tag-list .case__tag-link:hover {
  opacity: 1;
  background: var(--primary-color);
  color: var(--color-white);
}
#case-archive .case__list {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 4vw 4%;
}
#case-archive .case__list .case__card {
  width: 48%;
}
#case-archive .case__list .case__card-link {
  display: block;
}
#case-archive .case__list .case__card-img {
  width: 100%;
  height: 32vw;
  margin-bottom: 3%;
}
#case-archive .case__list .case__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw;
  margin-bottom: 3%;
  font-size: var(--font-size-13);
}
#case-archive .case__list .case__card-tags .case__card-tag {
  padding: 0 2vw;
}
#case-archive .case__list .case__card-title {
  font-size: var(--font-size-15);
}

/*==========================================
company
===========================================*/
/*
# company-concept
------------------------*/
#company-concept {
  padding-top: 38%;
  background: url(../../img/company/concept_bg.png) top center/100% no-repeat;
}

/*
# company-info
------------------------*/
#company-info .info__table {
  padding: 8% 6%;
}

/*
# company-clients
------------------------*/
#company-clients .clients__list {
  padding: 8% 6%;
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 4vw 4%;
}
#company-clients .clients__list .clients__item {
  width: 48%;
  height: 18vw;
  font-size: var(--font-size-15);
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
# company-map
------------------------*/
#company-map .map__wrap {
  margin-bottom: 15%;
}
#company-map .map__wrap:last-child {
  margin-bottom: 0;
}
#company-map .map__wrap-title {
  text-align: center;
  font-size: var(--font-size-19);
  margin-bottom: 5%;
  padding: 3% 4%;
}

/*==========================================
news
===========================================*/
.column__wrap .column__list .column__post a {
  padding: 14% 0;
}
.column__wrap .column__list .column__post:first-child a {
  padding-top: 0;
}
.column__wrap .column__list .column__post-meta {
  margin-bottom: 4%;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.column__wrap .column__list .column__post-meta time {
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--font-size-11);
}
.column__wrap .column__list .column__post-meta .category-label {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 2vw;
  gap: 1vw 1.5vw;
}
.column__wrap .column__list .column__post-meta .category-label li {
  padding: 0 0.75vw;
  font-size: var(--font-size-11);
}
.column__wrap .column__list .column__post-title {
  font-size: var(--font-size-17);
  margin: 3% 0;
}
.column__wrap .column__list .column__post-body {
  font-size: var(--font-size-13);
}
.column__wrap .column__list .more-btn {
  width: 45%;
  font-size: 3.2vw;
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-sizing: border-box;
  padding: 3% 2%;
  display: block;
  color: var(--color-white);
  transition: all 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) a {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb {
  width: 40%;
  height: 33vw;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-meta {
  width: 55%;
}

/*----------------------------------
  詳細ページのカテゴリー表示(タイトル下部)
  ----------------------------------*/
.single__post-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 10%;
}
.single__post-meta time {
  font-size: var(--font-size-13);
  width: 27%;
  font-weight: normal;
  padding: 0.5vw 0;
}
.single__post-meta .category-label {
  display: flex;
  width: 70%;
  flex-wrap: wrap;
  align-items: center;
  gap: 1vw;
}
.single__post-meta .category-label li {
  font-size: var(--font-size-13);
}
.single__post-meta .category-label li a {
  padding: 0 1vw;
}

/*==========================================
  contact
  ===========================================*/
#contact .contact__form {
  margin-bottom: 15%;
}
#contact .contact__form-item .contact__form-label .required {
  /*==========================================
  上下中央揃え
  ===========================================*/
  position: absolute;
  top: 50%; /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: 10px;
}
#contact .contact__form-item .contact__form-input {
  padding: 3% 0;
}
#contact .contact__form-item .contact__form-input .contact__form-list li {
  margin-bottom: 5%;
}
#contact .contact__form-item .contact__form-input .contact__form-list li:last-child {
  margin-bottom: 0;
}
#contact .contact__form-item .contact__form-input textarea {
  height: 37vw;
}
#contact .contact__form-item.contact__form-privacy .contact__form-label {
  text-align: left;
}
#contact .contact__form-value {
  padding: 3%;
}
#contact .contact__form-select {
  width: 50%;
  position: relative;
}
#contact .contact__form-select::after {
  inset: 0 5% 0 auto;
  width: 1.5vw;
  height: 1.5vw;
}
#contact .contact__form-select select {
  padding: 6% 7% 6% 4%;
}
#contact .contact__form #pc01,
#contact .contact__form #pc02 {
  width: 95px;
}
#contact .contact__form #date1,
#contact .contact__form #date2,
#contact .contact__form #date3 {
  width: 73%;
}
#contact .contact__form #address {
  margin-top: 4%;
}
#contact .contact__form .upload-item-wrap .select-img-wrap {
  display: flex;
  justify-content: space-between;
}
#contact .contact__form .upload-item-wrap .thumb {
  width: 45%;
  margin-right: 25px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap {
  width: 50%;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .upload-button {
  font-size: var(--font-size-13);
}
#contact .contact__submits-wrap {
  margin-top: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5vw;
}
#contact .contact__submits-wrap .contact__submits-check {
  width: 75%;
}
#contact .contact__submits-wrap .contact__submits-back {
  width: 52%;
}
#contact .contact__submits-wrap .contact__submits-send {
  width: 40%;
}
#contact input[type=button],
#contact input[type=submit],
#contact .contact-submits-wrap button {
  padding: 6% 2%;
}
#contact input[type=submit],
#contact select {
  -webkit-appearance: none;
}

/*==========================================
  privacy
  ===========================================*/
#privacy .privacy__content {
  margin-bottom: 15%;
  text-align: left;
}
#privacy .privacy__content:last-child {
  margin-bottom: 0;
}

/*==========================================
  site
  ===========================================*/
#site-map .sitemap__item-link {
  padding: 4% 0 4% 8%;
}

/*==========================================
  プライバシーポリシー(LPフレーム時)
  ===========================================*/