@charset 'UTF-8';

/* common */
.washlet_section h5 {
  width: auto;
}

.washlet_section {
    --blue--org: #387acc;
    --blue: #21a9ce;
    --green: #0bb6b6;
    --green--dark: #007e8f;

    --toilet-color-primary: #42589c;
    --toilet-color-white: #fff;
    --toilet-color-accent: #d9534f;
    --toilet-color-panel: #f8f9fa;

    --border: #c3c3c3;
    --bg--blue: #f2faff;
    --bg--blue--dark: rgb(53,121,240,.1);
    --bg--green: #edffea;
    --bg--green--dark: rgb(92,210,19,.1);
    --bg--exdark: #d5e6ff;
    --btn: #5ec300;
    font-family: 'Noto Sans JP', sans-serif;
}

.washlet_section,
.washlet_section > p {
    font-size: 14px;
    line-height: 1.6;
}

* + .washlet_section {
    margin-top: min(6vw, 3.5em);
}

.washlet_section p {
    line-height: 1.6;
}

.washlet_section figure {
    margin: 0;
    text-align: center;
}


.washlet_ttl {
all: unset;
display: flex;
justify-content: center;
align-items: center;
gap: .75em;
height: auto !important;
font-weight: bold;
font-size: min(4.8vw, 1.4em) !important;
letter-spacing: .05em;
text-align: center !important;
margin: 0 0 .9em !important;
padding: .75em .85em .8em .5em !important;
/* background: var(--blue) !important; */
background: var(--toilet-color-primary) !important;
color: #fff !important;
border: 0 !important;
}

.washlet_ttl .idx {
display: block;
width: 1.8em;
height: 1.8em;
line-height: 1.8em;
text-align: center;
font-size: .75em;
border-radius: 3px;
/* color: var(--blue); */
color: var(--toilet-color-primary);
background: #d8ebff;
}


.washlet_flex,
.washlet_flex-even {
  display: flex;
  gap : 2em;
}

.btn {
  position: relative;
  display: block;
  width: min(100%, 250px);
  background: var(--btn) !important;
  color: #fff;
  margin: 1.5em auto 0;
  text-align: center;
  font-weight: bold;
  text-decoration: none !important;
}

.btn:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: .8em;
  border: .35em solid transparent;
  border-left: .55em solid rgba(255, 255, 255, 0.7);
  transform: translateY(-50%);
}

@media print, screen and (min-width: 768px) {
  .washlet_flex {
    display: flex;
    gap: 2em;
  }
   .washlet_flex.--wrap {
    flex-wrap: wrap;
   }

  .washlet_flex-even>* {
    flex: 1;
  }

  .washlet_flex.--col2 {
    gap: 2em;
  }

  .washlet_flex.--col2 > * {
    width: calc(calc(100% - 2em) / 2);
  }

  .washlet_flex.--col3 {
    gap: 2em;
  }

  .washlet_flex.--col3 > * {
    width: calc(calc(100% - 4em) / 3);
  }

  .washlet_flex .txtWrap {
    flex: 1;
  }

  .washlet_flex .washlet_imgWrap {
    flex: 0 1 25%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media print, screen and (max-width: 767px) {
  .washlet_article {
    grid-template-columns: 1fr;
    gap: 1em;
  }

  .washlet_flex,
  .washlet_flex-even {
    flex-direction: column;
  }

  .washlet_ttl {
    padding: .2em .85em .3em .5em !important;
    line-height: 1.4;
    min-height: 3em;
    box-sizing: border-box;
  }
}

/* menu */
.washlet_sec-list {
  margin: 3em 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em 1em;
}

.washlet_sec-list li {
  counter-increment: idx;
}

.washlet_sec-list li a {
  display: block;
  padding: .65em 1em .65em 2.75em;
  border-radius: .25em;
  background: #f2faff;
  color: inherit !important;
  text-decoration: none !important;
  font-weight: bold;
  position: relative;
  font-size: .94em;
}

.washlet_sec-list li a span.in-block {
  display: inline-block;
}

.washlet_sec-list li a:before {
  content: "";
  display: block;
  position: absolute;
  right: 1.25em;
  top: calc(50% - 2px);
  transform: rotate(45deg) translateY(-50%);
  width: .4em;
  height: .4em;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
}

.washlet_sec-list li a:after {
  content: counter(idx);
  display: block;
  position: absolute;
  left: .65em;
  top: 50%;
  transform: translate(0, -50%);
  background: var(--toilet-color-primary);
  color: #fff;
  display: grid;
  place-items: center;
  width: 1.5em;
  height: 1.5em;
  line-height: 1;
}

@media print, screen and (max-width: 767px) {
  .washlet_section .washlet_heading {
    margin-top: 0;
  }

  .washlet_sec-list {
    margin-top: 2em;
    grid-template-columns: 1fr;
    gap: .35em;
  }
}


/* 商品一覧 */
#sec01 {
    margin-top: 2em;
}

.washlet_osusume__function {
    margin: 1.5em auto 2em;
    display: flex;
    flex-wrap: wrap;
    gap: .5em;
}

.washlet_osusume__function > li {
    --functionColor: #6a6a6a;
    --functionBorderColor: #a0a0a0;
    --functionBg: transparent;
    padding: .35em .6em;
    line-height: 1.3;
    text-align: center;
    border-radius: 3px;
    font-size: 1.075em;
    border: 1px solid var(--functionBorderColor);
    color: var(--functionColor);
    background: var(--functionBg);
}

.washlet_osusume__function > .f_clean.--on {
    --functionBorderColor: #ffb342;
    --functionColor: #ff6600;
    --functionBg: #fff789;
}

.washlet_osusume__function > .f_eco.--on {
    --functionBorderColor: #4ecde9;
    --functionColor: #009bd8;
    --functionBg: #eff8fa;
}

.washlet_osusume__function > .f_cleanse.--on {
    --functionBorderColor: #59de00;
    --functionColor: #0ba300;
    --functionBg: #f0fdf1;
}

.washlet_osusume__function > .f_confort.--on {
    --functionBorderColor: #b780c7;
    --functionColor: #9a44c8;
    --functionBg: #f6ebf6;
}

.washet_osusume__note {
    font-size: .9em;
    margin: -1em 0 1.5em;
}

.washlet_osusume-box {
  padding: 1.5em 1em;
  border-bottom: 1px solid #ddd;
}

.washlet_osusume-box:last-child {
  border-bottom: 0;
}

.washlet_osusume-box .washlet_ttl_m {
  border: 0;
  margin: 0 0 1.25em;
  font-size: 1.3em;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: .5em;
}

.washlet_osusume-box .img img {
  display: block;
  margin: 0 auto;
  width: 200px;
  height: 150px;
  object-fit: contain;
}

.washlet_osusume-box .txt {
  display: grid;
  gap: 1.5em;
  grid-template-rows: min-content auto;
  align-content: center;
  flex: 1;
}

.washlet_osusume-box .txt .hd {
  font-size: .85em;
}

.washlet_osusume-box .txt .price .num {
    color: #ff0068;
    font-size: 1.5em;
  font-weight: bold;
}

.washlet_osusume-box .txt .btn_more {
  margin: 0 auto;
  min-width: 180px;
  color: #fff;
  align-self: center;
}

.washlet_osusume-box .btn_more:after {
    content: "";
    display: block;
    position: absolute;
    right: .5em;
    top: 50%;
    width: .35em;
    height: .35em;
    border-right: 2px solid var(--green);
    border-top: 2px solid var(--green);
    transform: rotate(45deg) translateY(-50%);
    opacity: .5;
}

.washlet_osusume-box ul li a > span {
  display: inline-block;
}

.washlet_osusume-box .price-wrap .org-price {
    margin-bottom: .5em;
    font-size: .9em;
    text-align: left;
}

.washlet_osusume-box .price-wrap .suido-price {
    display: flex;
    align-items: center;
    gap: 1em;
}

@media print, screen and (min-width: 768px) {
  .washlet_osusume-box .txt {
    grid-template-columns: 1fr auto;
  }

  .washlet_osusume-box .txt > p {
    grid-column: span 2;
  }

  .washlet_osusume-box .img {
      min-width: 200px;
      box-sizing: border-box;
      flex: 0 0 20%;
  }

  .washlet_osusume-box .img img {
      width: min(200px, 100%);
      height: auto;
  }
}

@media screen and (max-width: 767px) {
  .washlet_osusume-box {
    padding-inline: 0;
  }
  
  .washlet_osusume-box .washlet_ttl_m {
    text-align: center;
  }

  .washlet_osusume-box ul {
    padding-inline: 1em;
  }

  .price-wrap {
      text-align:center;
  }

  .washlet_osusume__function > li {
    font-size: .9em;
    padding: .25em .4em;
  }
}

@media screen and (max-width: 575px) {
    .washlet_osusume__function > li {
        font-size: .85em;
        padding: .35em .4em;
        width: calc(50% - 5px);
    }
}

/* tabMenu */
.washlet_osusume-tabMenu {
    display: flex;
    gap: 5px;
}

.washlet_osusume-tabMenu > li {
    flex: 1;
    border: 1px solid var(--toilet-color-primary);
    border-bottom: 0;
}

.washlet_osusume-tabMenu a {
    display: block;
    padding: .5em;
    text-align: center;
    text-decoration: none;
    color: var(--toilet-color-primary) !important;
    font-weight: bold;
    font-size: 1.2em;
    cursor: pointer;
    transition: opacity .3s ease-out;
}

.washlet_osusume-tabMenu a:hover {
    opacity: .7;
}

.washlet_osusume-tabMenu > li.current a {
    background:  var(--toilet-color-primary);
    color: #fff !important;
}

.washlet_osusume-tabMenu > li.current a:hover {
    opacity: 1;
}

.washlet_osusume-tabWrapper {
    position: relative;
    margin: 0 auto 2em;
}

.washlet_osusume-tabContent {
  padding: 1.5em 1em;
  border: 1px solid var(--toilet-color-primary);
}

/* .washlet_osusume-tabContent.current {
    position: relative;
    visibility: visible;
    opacity: 1;
    pointer-events: visible;
} */

@media (max-width: 767px) {
    .washlet_osusume-tabMenu a {
        font-size: .9em;
    }
}

/* 修理・リフォーム価格相場 */
#toilet-price-section .flex {
    display: flex;
    align-items: center;
}

  #toilet-price-section {
    background-color: transparent;
    margin: 4rem 0 6rem;
    color: var(--toilet-color-text);
    font-family: inherit;
  }

  #toilet-price-section .inner {
    line-height: 1.8;
  }

  #toilet-price-section .section-title h2,
  .price-lead,
  .price-guarantee p.underline,
  .price-guarantee p.price-unified,
  .price-interior__heading,
  .price-interior__lead {
    font-weight: bold;
    text-align: center;
  }

  .price-box__item,
  .price-interior__card {
    background: var(--toilet-color-white);
    border: 3px solid var(--toilet-color-primary);
    border-radius: 0.5rem;
  }

  .price-box__plus,
  .price-box__item:first-child p.price-box__label,
  .price-interior__heading,
  .price-interior__arrow,
  .price-interior__card-title {
    color: var(--toilet-color-primary);
  }

  .price-box__item>.flex,
  .price-box__item:last-child,
  .price-interior__sub {
    justify-content: space-between;
  }

  #toilet-price-section .section-title h2 {
    background-color: var(--toilet-color-primary);
    color: var(--toilet-color-white);
    font-size: 1.6rem;
    font-weight: normal;
    padding: 15px 10px;
    margin: 0 0 1.5rem 0;
  }

  .price-lead {
    font-size: 1.25em;
    margin-bottom: 1em;
  }

  .price-lead span.small {
    font-size: 0.8em;
  }

  .price-box {
    width: 83%;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0 auto;
  }

  .price-box__item {
    width: 100%;
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
  }

  .price-box__plus {
    font-size: 1.25em;
    font-weight: bold;
    line-height: 1;
  }

  .price-box__label {
    font-size: 1.2em;
    font-weight: bold;
  }

  .price-box__item>.flex {
    width: 100%;
  }

  .price-box__amount {
    color: var(--toilet-color-accent);
    font-size: 1.7em;
    font-weight: bold;
    line-height: 1.2;
  }

  .price-box__line {
    width: 100%;
    border: none;
    border-top: 1px solid;
    margin: 0;
  }

  .price-box__note {
    text-align: left;
    text-indent: -1.3em;
    padding-left: 1.3em;
    font-size: .9em;
  }

  .price-box__item:last-child {
    flex-direction: row;
  }

  .price-box__item:last-child p.price-box__amount {
    width: auto;
    justify-content: flex-end;
    gap: .55em;
  }

  .price-box__amount span {
    color: #000;
    font-size: .55em;
  }

  .price-guarantee {
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
  }

  .price-guarantee p.underline {
    color: var(--toilet-color-accent);
    font-size: 1.25em;
  }

  .price-guarantee p.price-unified {
    color: var(--toilet-color-text);
    font-size: 1em;
  }

  .price-caution {
    background: var(--toilet-color-panel);
    padding: 1em 1.5em;
  }

  .price-caution__title {
    color: var(--toilet-color-accent);
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 0.8rem;
  }

  .price-caution__list {
    list-style: decimal;
    list-style-position: inside;
  }

  .price-caution__list li {
    list-style: inherit;
    text-indent: -1.4em;
    padding-left: 1.4em;
    font-size: .825em;
  }

  .price-interior {
    margin-top: 7em;
  }

  .price-interior__heading {
    font-size: 1em;
    margin-bottom: 1em;
  }

  .price-interior__lead {
    font-size: .8em;
  }

  .price-interior__cards {
    width: 80%;
    flex-direction: column;
    gap: 1em;
    align-items: flex-start;
    margin: 1.5em auto 0;
  }

  .price-interior__card {
    flex: 1;
    padding: .7em;
  }

/* ウォシュレット交換の流れ */
.washlet_04_wrap {
  margin-block: 2em 3em;
  gap: 1em;
}

.washlet_04_box {
  position: relative;
  border: 1px solid #ddd;
}

.washlet_04_box:not(:last-child):before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  border: 12px solid transparent;
  border-left: 12px solid var(--green);
  transform: translate(100%, -50%);
  z-index: 1;
}

.washlet_04_box .washlet_04_ttl {
  text-align: center;
  padding: .5em;
  font-weight: bold;
  background: var(--bg--blue);
}

.washlet_04_ttl .num {
    display: block;
    position: absolute;
    color: var(--blue);
    font-size: 1.8em;
    line-height: 1;
    top: 4px;
    opacity: .5;
    left: .5em;
}

.washlet_04_box .img img {
  display: block;
  margin: 1em auto;
}

.washlet_04_box .txt {
  padding: 0 1em 1em;
  font-size: .925em;
}
@media print, screen and (min-width: 768px) {
  .washlet_04_box {
    width: calc(calc(100% - 3em) / 4);
  }
}

@media print, screen and (max-width: 767px) {
  .washlet_04_wrap {
    gap: 2em;
  }
   .washlet_04_box:not(:last-child):before {
    left: 50%;
    top: 100%;
    transform: translate(-50%, 10px);
    border-left-color: transparent;
    border-top-color: var(--green);
    width: 0;
    height: 0;
   }

   .washlet_04_box .washlet_04_ttl {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: .5em;
  }

  .washlet_04_box .washlet_04_ttl .num {
    position: relative;
    top: -.1em;
    left: 0;
  }
}

  
/* 4. 施工事例 */
#examples-pickup {
    margin-bottom: min(8.5%, 5em);
}
.new-article-list {
  margin: 2em auto 0;
}

.new-article-list > li {
  border: 1px solid #ddd;
  padding: .75em;
}

.new-article-list > li a {
  color: inherit !important;
  text-decoration: none !important;
}

.new-article-list > li .new-article-info dt img {
    display: block;
    padding: 0;
    margin: 0 auto 1em;
}

@media print, screen and (min-width: 768px) {
  .new-article-list {
    gap: 1em;
  }

  .new-article-list > li {
    width: calc(calc(100% - 3em) / 4);
  }
}