@charset "UTF-8";

html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a {
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

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

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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
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;
}

/* 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]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

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

/* Natural flow and rhythm in articles by default */
article>*+* {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
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=checkbox],
input[type=radio] {
  display: none;
}

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

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

/* ====================================================================
# header
==================================================================== */
.header {
  height: 58px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  flex-shrink: 0;
  background: var(--white, #FFF);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .header {
    height: 60px;
  }
}

.header__inner {
  width: 100%;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 58px;
}

@media screen and (max-width: 768px) {
  .header__inner {
    padding-left: 15px;
    padding-right: 15px;
    justify-content: flex-start;
  }
}

.header__logo {
  max-width: 260px;
  display: block;
}

@media screen and (max-width: 768px) {
  .header__logo {
    max-width: 165px;
    margin-right: 8px;
  }
}

.header__contact {
  display: flex;
  gap: 14px;
}

.header__time {
  color: #333;
  font-size: 9px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .header__time {
    font-size: 6px;
  }
}

.header__time span {
  font-size: 7px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .header__time span {
    font-size: 4px;
  }
}

.header__tel {
  display: block;
  font-family: "Inter", sans-serif;
  color: #073C77;
  font-size: 26px;
  font-weight: 700;
  position: relative;
  line-height: 1.2;
}

.header__contact-box {
  margin-left: 15px;
}

@media screen and (max-width: 768px) {
  .header__tel {
    font-size: 18px;
    margin-top: 4px;
  }
}

@media screen and (max-width: 470px) {
  .header__tel {
    font-size: 16px;
    margin-top: 4px;
  }
}


.header__tel::before {
  content: url(../images/header-tel-icon.svg);
}

@media screen and (max-width: 768px) {
  .header__tel::before {
    content: url(../images/header-tel-icon_sp.svg);
  }
}

.header__buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header__button img {
  height: 32px;
}



/* ====================================================================
# MV
==================================================================== */
.mv {
  margin-top: 58px;
  background-image: url(../images/mv_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: calc(100vw/1920*1080);
  max-width: 100%;
  /* display: flex; */
  align-items: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  .mv {
    margin-top: 60px;
    background-image: url(../images/mv_bg_sp.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: calc(100vw/981*1619);
  }
}

.mv__inner {
  position: relative;
}

@media screen and (max-width: 768px) {
  .mv__inner {
    margin-top: 32px;
    padding-bottom: 16px;
  }
}


#top-btn {
  max-width: 270px;
  width: 23%;
  position: absolute;
  right: 5%;
  bottom: 9%;
}

@media screen and (max-width: 1300px) {
  #top-btn {
    width: 22%;
    right: 2%;
    bottom: 7%;
  }
}

@media screen and (max-width: 768px) {
  #top-btn {
    max-width: 80%;
    width: 400px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 470px) {
  #top-btn {
    max-width: 80%;
    width: 310px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}


#top-btn .form-btn {
  display: flex;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 16px 30px;
  background-color: #fc7d06;
  border: #073c77 solid 6px;
  border-radius: 30px;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
  margin-left: 0px;
}

#top-btn .form-btn_sp {
  display: none;
}

@media screen and (max-width: 1300px) {
  #top-btn .form-btn {
    font-size: 20px;
    padding: 10px 14px;
  }
}

@media screen and (max-width: 950px) {
  #top-btn .form-btn {
    font-size: 17px;
    padding: 6px 10px;
  }
}

@media screen and (max-width: 768px) {
  #top-btn .form-btn {
    display: none;
  }

  #top-btn .form-btn_sp {
    display: flex;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding: 16px 30px;
    background-color: #fc7d06;
    border: #073c77 solid 5px;
    border-radius: 30px;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
    margin-left: 0px;
  }

  #top-btn .form-btn_sp {
    width: 100%;
    font-size: 24px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  #top-btn .form-btn_sp {
    font-size: 16px;
    padding: 5px 5px;
  }
}

.mv__cta-box .form-btn {
  display: flex;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 16px 30px;
  background-color: #fc7d06;
  border: #073c77 solid 6px;
  border-radius: 30px;
  width: 400px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  margin-left: 50px;
  align-items: center;
}

@media screen and (max-width: 470px) {
  .mv__cta-box .form-btn {
    border: #073c77 solid 4px;

  }
}

.mv__cta-box .form-btn #form-btn-arrow {
  width: 25px;
  height: 25px;
  margin-left: 20px;
  margin-right: 0;
  position: static;
}

@media screen and (max-width: 950px) {
  .mv__cta-box .form-btn #form-btn-arrow {
    width: 21px;
    height: 21px;
    margin-left: 7px;
    margin-right: 0;
    transform: translateX(0);
  }
}

@media screen and (max-width: 768px) {
  .mv__cta-box .form-btn_sp #form-btn-arrow {
    width: 25px;
    height: 25px;
    margin-left: 20px;
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .mv__cta-box .form-btn_sp #form-btn-arrow {
    width: 20px;
    height: 20px;
    margin-left: 15px;
    margin-right: 0;
  }
}

.form-btn.form-btn_2 {
  margin-left: auto;
  margin-right: auto;
}

.mv__cta-box .form-btn p {
  display: block;
  text-align: center;
}

@media screen and (max-width: 1250px) {

  .mv__cta-box .form-btn,
  .form-btn.form-btn_2 {
    margin-top: 70px;
    margin-left: 47%;
    margin-right: auto;
    width: 280px;
  }
}

@media screen and (max-width: 1000px) {

  .mv__cta-box .form-btn,
  .form-btn.form-btn_2 {
    font-size: 20px;
    padding: 10px 14px;
    margin-top: 70px;
    margin-left: 50%;
    margin-right: auto;
    width: 216px;
  }

  .mv__cta-box .form-btn p {
    display: block;
    width: 130px;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {

  .mv__cta-box .form-btn,
  .form-btn.form-btn_2 {
    font-size: 18px;
    padding: 7px 10px;
    margin-top: 70px;
    margin-left: 50%;
    margin-right: auto;
    width: 180px;
  }

}

@media screen and (max-width: 470px) {

  .mv__cta-box .form-btn,
  .form-btn.form-btn_2 {
    font-size: 17px;
    padding: 5px 10px;
    margin-top: 70px;
    margin-left: 48%;
    margin-right: auto;
    width: 170px;
  }

}

/* ====================================================================
# cta area
==================================================================== */
.cta-area {
  background-color: #11549E;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .cta-area {
    padding: 20px 0;
  }
}

.cta-area__labels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.cta-area__label {
  color: #FF6600;
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.03em;
  background-color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  max-height: 32px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .cta-area__label {
    font-size: 16px;
    padding: 8px 14px;
  }
}

.cta-area__note {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 768px) {
  .cta-area__note {
    font-size: 20px;
  }
}

.cta-area__note span {
  font-size: 20px;
}

.cta-area__info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}

@media screen and (max-width: 768px) {
  .cta-area__info {
    gap: 20px;
  }
}

.cta-area__main {
  text-align: right;
}

.cta-area__tel {
  color: #fff100;
  font-size: 63px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  line-height: 100%;
  display: flex;
  gap: 8px;
  transition: color 0.3s;
}

.cta-area__tel:hover {
  color: #FF6600;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .cta-area__tel {
    font-size: 43px;
  }
}

@media screen and (max-width: 480px) {
  .cta-area__tel {
    font-size: 38px;
  }
}


.cta-area__tel::before {
  content: url(../images/cta-tel-icon.svg);
}

.cta-area__hours {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

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

.cta-area__hours span {
  font-size: 14px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .cta-area__hours span {
    font-size: 10px;
  }
}

.cta-area__option {
  display: flex;
  gap: 4px;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.03em;
  transition: color 0.3s;
}

.cta-area__option:hover {
  color: #FF6600;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .cta-area__option {
    font-size: 20px;
  }
}

.cta-area__option--mail::before {
  content: url(../images/cta-mail-icon.svg);
}

.cta-area__option--line {
  margin-top: 12px;
}

.cta-area__option--line::before {
  content: url(../images/cta-line-icon.svg);
}

/* main-block 
--------------------------------------------------------------*/
.for-sp {
  display: none;
}

br.for-sp_mini {
  display: none;
}


@media screen and (max-width: 1000px) {
  br.for-sp {
    display: block;
  }

  span.for-sp {
    display: inline-block;
  }
}

@media screen and (max-width: 400px) {
  br.for-sp {
    display: none;
  }

  br.for-sp_mini {
    display: block;
  }
}


@media screen and (max-width: 1500px) {

  h1 {
    font-size: 1.8em;
  }

  h2 {
    font-size: 1.3em;
  }
}

#main-block {
  /* height: 3000px; */
  width: 100%;
  background-image: url(../images/background-left-side.png), url(../images/background-right-side.png);
  background-repeat: repeat-y;
  background-position: left, right;
  position: relative
}

@media screen and (max-width: 768px) {
  #main-block {
    background-image: none;
    position: relative;
    z-index: 0;
  }

  #main-block::before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../images/background-left-side.png), url(../images/background-right-side.png);
    background-repeat: repeat-y;
    background-position: left, right;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(1px);
  }

}

@media screen and (max-width: 470px) {
  #main-block::before {
    background-image: url(../images/background-left-side_mini.png), url(../images/background-right-side_mini.png);
    background-repeat: repeat-y;
    background-position: left, right;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(1px);
  }

}


#main-block section {
  color: #073C77;
}

.title {
  background-image: url(../images/title-icon.png);
  background-size: 47px;
  background-repeat: no-repeat;
  background-position: 2px 4px;
}

.explanation .title,
.explanation h2,
.explanation h3 {
  padding-left: 50px;
}

.explanation .title {
  padding-bottom: 16px;
}

.explanation h2 span.circle {
  font-size: 80%;
  text-align: center;
  width: 33px;
  height: 33px;
  display: inline-block;
  border-radius: 20px;
  border: #073C77 solid 2px;
  margin-left: 3px;
}

.explanation h3 {
  padding-top: 16px;
  padding-bottom: 16px;
}

@media screen and (max-width: 1250px) {

  .explanation .title,
  .explanation h2,
  .explanation h3 {
    display: block;
    width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 1000px) {
  .explanation h2 span.circle {
    width: 30px;
    height: 30px;
  }

  .explanation .title,
  .explanation h2,
  .explanation h3 {
    max-width: 450px;
    width: 85%;
  }

  h1 {
    font-size: 1.6em;
  }

  h2 {
    font-size: 1.2em;
  }

  h3 {
    font-size: 1.12em;
  }
}

@media screen and (max-width: 470px) {

  .explanation h2,
  .explanation h3 {
    padding-left: 5px;
  }


  .explanation h2 span.circle {
    width: 27px;
    height: 27px;
  }

  h1 {
    font-size: 1.3em;
  }

  h2 {
    font-size: 1.1em;
  }

  h3 {
    font-size: 1em;
  }
}

/* #logo-container {
  position: relative;
} */

/* #left-logo {
  position: sticky;
  left: 0;
  bottom: 0;
  width: 50%;
}

#right-logo {
  position: sticky;
  right: 0;
  top: 0;
  width: 50%;
} */

#main-block #left-logo {
  float: left;
  position: sticky;
  left: 10px;
  top: 50%;
  height: 400px;
  width: 142px;
}

#main-block #left-logo::after {
  content: "";
  display: block;
  clear: both;
}

#main-block #right-logo {
  float: right;
  position: sticky;
  right: 10px;
  top: 100px;
  height: 400px;
  width: 142px;
}

#main-block #right-logo::after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (max-width: 1000px) {

  #main-block #left-logo,
  #main-block #right-logo {
    width: 110px;
    height: auto;
  }
}

@media screen and (max-width: 768px) {

  #main-block #left-logo,
  #main-block #right-logo {
    display: none;
  }

}

.feature {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 1250px) {
  .feature {
    display: block;
  }
}

@media screen and (max-width: 470px) {
  .feature {
    padding-top: 85px;
    padding-bottom: 85px;

  }
}


#lixil-product {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 30px;
  /* margin-bottom: 100px; */
}

#raijousha {
  padding-bottom: 200px;
}

@media screen and (max-width: 1250px) {
  #raijousha {
    padding-bottom: 320px;
    padding-top: 140px;
  }
}

@media screen and (max-width: 1000px) {
  #raijousha {
    padding-bottom: 280px;
  }
}

@media screen and (max-width: 470px) {
  #raijousha {
    padding-bottom: 200px;
  }
}


#lixil-product .feature {
  padding-bottom: 20px;
}

#lixil-comment-wrap {
  margin-bottom: 100px;
}

#lixil-comment {
  max-width: 850px;
  width: 70%;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 1250px) {
  #lixil-comment {
    width: 550px;
  }
}

@media screen and (max-width: 1000px) {
  #lixil-comment {
    max-width: 410px;
    width: 85%;
  }
}

.feature img {
  width: 350px;
  margin-right: 60px;
  object-fit: contain;
  object-position: top;
}

@media screen and (max-width: 1500px) {
  .feature img {
    margin-right: 20px;
  }
}

@media screen and (max-width: 1400px) {
  .feature img {
    width: 280px;
  }
}

@media screen and (max-width: 1250px) {
  .feature img {
    width: 220px;
    position: absolute;
    left: 23%;
    bottom: 25px;
  }

  #lixil-product img {
    bottom: -70px;
  }

  #raijousha img {
    width: 190px;
    left: 60%;
    top: 15px;
  }

  #raijousha h2 {
    padding-left: 20px;
  }
}

@media screen and (max-width: 1000px) {
  .feature img {
    width: 200px;
    position: absolute;
    left: 21%;
    bottom: 25px;
  }

  #lixil-product img {
    bottom: -70px;
  }

  #raijousha img {
    width: 190px;
    left: 55%;
    top: 15px;
  }

  #raijousha h2 {
    padding-left: 0px;
  }
}

@media screen and (max-width: 768px) {
  .feature img {
    left: 30%;
    transform: translateX(-63%);
  }

  #raijousha img {
    left: 75%;
  }
}

@media screen and (max-width: 470px) {
  .feature img {
    width: 140px;
    bottom: 55px;
  }

  #lixil-product img {
    bottom: -40px;
  }

  #raijousha img {
    width: 130px;
    top: 50px;
    left: 80%;
  }
}

.link-arrow {
  /* color: #4B4949; */
  display: inline-block;
  /* font-size: 14px; */
  font-weight: bold;
  /* padding-left: 34px; */
  /* background-image: url(/images/icon_arrow.png); */
  /* background-position: left 3px; */
  /* background-repeat: no-repeat; */
  /* background-size: 24px; */
  text-decoration: none;
}

#link-arrow-map {
  position: static;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .link-arrow {
    transform: translateX(165px);
  }

  #link-arrow-map {
    transform: none;
  }
}

/* .wow {
  position: relative;
} */

/* それぞれのパーツが右からスライドインしてくる */
.js-fadein-right {
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px);
  /* 右から入ってくる */
  transition: all 0.8s ease-out;
  will-change: transform, opacity;
  position: relative;
}

.js-fadein-right.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) translateZ(0);
}

/* スライドインここまで */

.right-image {
  position: absolute;
  right: 15%;
  bottom: 35%;
  width: 270px;
}

@media screen and (max-width: 1500px) {
  .right-image {
    width: 230px;
    right: 15%;
    bottom: 40%;
  }
}

@media screen and (max-width: 1250px) {
  .right-image {
    right: 22%;
    bottom: 50%;
  }
}

@media screen and (max-width: 1000px) {
  .right-image {
    width: 210px;
    right: 22%;
    bottom: 55%;
  }
}

@media screen and (max-width: 768px) {
  .right-image {
    width: 190px;
    right: 14%;

  }
}

@media screen and (max-width: 470px) {
  .right-image {
    width: 140px;
    right: 14%;
    bottom: 60%;
  }
}


#kitchen-tokimeki-pen3 {
  width: 210px;
  position: absolute;
  right: 22%;
  bottom: 10%;
}

#garagara-3pens {
  width: 270px;
  position: absolute;
  right: 40%;
  bottom: 14%;
}

@media screen and (max-width: 1500px) {
  #kitchen-tokimeki-pen3 {
    right: 18%;
    bottom: 10%;
  }

  #garagara-3pens {
    position: absolute;
    right: 35%;
    bottom: 14%;
  }
}


@media screen and (max-width: 1400px) {
  #kitchen-tokimeki-pen3 {
    right: 18%;
    bottom: 3%;
  }

  #garagara-3pens {
    position: absolute;
    right: 39%;
    bottom: 5%;
  }
}

@media screen and (max-width: 1250px) {
  #kitchen-tokimeki-pen3 {
    right: 25%;
    bottom: 20px;
  }

  #garagara-3pens {
    position: absolute;
    right: 50%;
    bottom: 50px;
  }
}

@media screen and (max-width: 1000px) {
  #kitchen-tokimeki-pen3 {
    width: 160px;
    bottom: 40px;
  }

  #garagara-3pens {
    width: 220px;
    bottom: 50px;
  }
}

@media screen and (max-width: 768px) {
  #kitchen-tokimeki-pen3 {
    width: 140px;
    right: 30%;
    transform: translateX(50%);
    bottom: 40px;
  }

  #garagara-3pens {
    width: 200px;
    bottom: 50px;
  }
}

@media screen and (max-width: 470px) {
  #kitchen-tokimeki-pen3 {
    width: 110px;
    right: 25%;
    transform: translateX(50%);
    bottom: 40px;
  }

  #garagara-3pens {
    width: 150px;
    bottom: 50px;
  }
}



/* product ranking
------------------------------------------------------------- */
.product-ranking {
  background-image: url(../images/product_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .product-ranking {
    padding-top: 60px;
  }
}

.product-ranking__title {
  text-align: center;
  color: #073c77;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 768px) {
  .product-ranking__title {
    font-size: 28px;
  }
}

.product-ranking__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

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

.product-ranking__item {
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 2px 4px 20px 0 rgba(0, 0, 0, 0.15);
  padding: 15px 20px 20px;
}

.product-ranking__header {
  max-width: 280px;
  margin: 0 auto;
}

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

.product-ranking__brand img {
  max-width: 103px;
}

.product-ranking__toilet {
  margin-top: 14px;
}

.product-ranking__model {
  margin-top: 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}

.product-ranking__description {
  text-align: center;
  margin-top: 24px;
  color: #11549e;
  font-size: 16px;
  font-weight: 500;
}

.product-ranking__price-box {
  margin-top: 17px;
}

.product-ranking__discount {
  max-width: 346px;
  margin: 0 auto;
}

.product-ranking__note {
  text-align: center;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 400;
}

/* other products
------------------------------------------------------------- */
.other-products__inner {
  padding-top: 60px;
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .other-products__inner {
    padding-bottom: 60px;
  }
}

.other-products__banner {
  text-align: center;
}

.other-products__label {
  display: inline-block;
  background-color: #20A5EB;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 30px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .other-products__label {
    font-size: 28px;
  }
}

.other-products__label::after {
  content: "";
  background-color: #20A5EB;
  position: absolute;
  width: 47px;
  height: 18px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.other-products__info {
  margin-top: 38px;
}

.other-products__subtitle {
  display: flex;
  justify-content: center;
  gap: 14px;
}

@media screen and (max-width: 768px) {
  .other-products__subtitle {
    display: block;
    text-align: center;
  }
}

.other-products__subtitle img {
  max-width: 120px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .other-products__subtitle img {
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
  }
}

.other-products__tag {
  background-color: #ED6C00;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 10px;
}

.other-products__description {
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 768px) {
  .other-products__description {
    margin-top: 20px;
    text-align: left;
  }
}

.other-products__txt {
  margin-top: 16px;
  text-align: center;
  color: #e60012;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 768px) {
  .other-products__txt {
    font-size: 18px;
    text-align: left;
  }
}

.other-products__section-title {
  margin-top: 40px;
  color: #a34b01;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .other-products__section-title {
    margin-top: 30px;
    font-size: 28px;
  }
}

.other-products__gas-list {
  margin-top: 32px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 2px 4px 20px 0 rgba(0, 0, 0, 0.15);
  padding: 24px 80px;
}

@media screen and (max-width: 768px) {
  .other-products__gas-list {
    margin-top: 16px;
    padding: 32px;
  }
}

.other-products__gas-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

@media screen and (max-width: 768px) {
  .other-products__gas-items {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.other-products__gas-item {
  max-width: 327px;
  margin: 0 auto;
}

.other-products__note {
  margin-top: 14px;
  color: #E60012;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: flex;
}

@media screen and (max-width: 768px) {
  .other-products__note {
    display: block;
    font-size: 16px;
    margin-top: 32px;
  }
}

.other-products__ecojous {
  width: 72px;
  -o-object-fit: contain;
  object-fit: contain;
}

.other-products__toto-list {
  margin-top: 40px;
  margin-top: 32px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 2px 4px 20px 0 rgba(0, 0, 0, 0.15);
  padding: 26px 32px;
}

@media screen and (max-width: 768px) {
  .other-products__toto-list {
    padding: 32px;
  }
}

.other-products__toto-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
}

@media screen and (max-width: 768px) {
  .other-products__toto-items {
    grid-template-columns: 1fr;
  }
}

.other-products__toto-item {
  max-width: 327px;
  margin: 0 auto;
}

/* reason
------------------------------------------------------------- */
.reason {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #EBF7FF;
}

@media screen and (max-width: 768px) {
  .reason {
    padding-top: 60px;
  }
}

.reason__description {
  max-width: 1000px;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
}

.reason__list {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .reason__list {
    margin-top: 48px;
  }
}

.reason__item {
  background-color: #20A5EB;
  padding-bottom: 13px;
}

.reason__item-title {
  text-align: center;
  color: #FFF100;
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.03em;
  margin-top: -38px;
}

@media screen and (max-width: 768px) {
  .reason__item-title {
    font-size: 20px;
  }
}

.reason__item-text {
  color: #004248;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.03em;
  background-color: #fff;
  padding: 15px 9px;
  margin: 7px 15px 0;
  min-height: 175px;
}

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

/* voice
------------------------------------------------------------- */
.voice {
  padding-top: 60px;
  padding-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .voice {
    padding-bottom: 60px;
  }
}

.voice__carousel {
  margin-top: 52px;
}

.voice__list {
  position: relative;
  padding: 0 46px;
}

@media screen and (max-width: 768px) {
  .voice__list {
    padding: 0 20px;
  }
}

.voice__item {
  background-color: #fff;
  border: 3px solid #20A5EB;
}

.voice__category {
  background-color: #20A5EB;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 160%;
}

@media screen and (max-width: 768px) {
  .voice__category {
    font-size: 20px;
  }
}

.voice__content {
  padding: 12px 20px;
  height: 620px;
}

@media screen and (max-width: 768px) {
  .voice__content {
    height: 600px;
  }
}

.voice__location {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  text-align: center;
}

.voice__image {
  margin-top: 12px;
  padding: 0 20px;
}

.voice__image img {
  box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.15);
}

.voice__comment {
  margin-top: 20px;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}

/* flow
------------------------------------------------------------- */
.flow {
  background-color: #EBF7FF;
  padding-top: 60px;
  padding-bottom: 60px;
}

.flow__steps {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px 32px;
}

@media screen and (max-width: 768px) {
  .flow__steps {
    margin-top: 40px;
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 32px;
  }
}

.flow__step {
  text-align: center;
  position: relative;
}

.flow__step:not(:last-child)::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #20A5EB;
  width: 27px;
  height: 52px;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

@media screen and (max-width: 768px) {
  .flow__step:not(:last-child)::before {
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    width: 52px;
    height: 27px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.flow__step-number {
  background-color: #20A5EB;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  font-family: "Inter", sans-serif;
  padding: 14px 0 10px;
  border-radius: 8px 8px 0 0;
}

.flow__step-number span {
  font-size: 28px;
}

.flow__step-content {
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  padding: 12px 20px 30px;
  border: 2px solid #20A5EB;
}

.flow__step-title {
  color: #11549E;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.flow__step-label {
  display: inline-block;
  margin-top: 10px;
  background-color: #FF6600;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
  width: 80px;
  border-radius: 4px;
}

.flow__image {
  margin-top: 8px;
  margin-left: auto;
  margin-right: auto;
  max-width: 103px;
}

.flow__step-text {
  text-align: left;
  margin-top: 18px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
}

/* contact
------------------------------------------------------------- */
.contact {
  padding-top: 60px;
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .contact {
    padding-bottom: 60px;
  }
}

.contact__body {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  background-color: #f6f6f6;
  padding: 40px 140px;
  max-width: 1050px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .contact__body {
    margin-top: 40px;
    padding: 20px;
  }
}

.contact__field {
  margin-top: 16px;
  display: flex;
}

@media screen and (max-width: 768px) {
  .contact__field {
    display: block;
    margin-top: 24px;
  }
}

.contact__field.contact__field--checkbox {
  display: block;
  margin-top: 24px;
}

.contact__label {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.04em;
  width: 250px;
  display: inline-block;
  margin-right: 20px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .contact__label {
    margin-right: 0;
    width: 100%;
  }
}

.contact__required {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.04em;
  background-color: #F0452F;
  padding: 2px 10px;
  border-radius: 5px;
}

.contact__optional {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.04em;
  background-color: #F0932F;
  padding: 2px 10px;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {

  .contact__input,
  .contact__select,
  .contact__textarea {
    margin-top: 8px;
  }
}

.contact__input {
  background-color: #fff;
  padding: 10px 16px;
  border-radius: 5px;
  border: 1px solid #ddd;
  width: 400px;
}

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

.contact__input::-moz-placeholder,
.contact__textarea::-moz-placeholder {
  font-size: 14px;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  font-size: 14px;
}

.contact__select {
  background-color: #fff;
  padding: 10px 16px;
  border-radius: 5px;
  border: 1px solid #ddd;
  width: 100%;
  color: #333;
  font-size: 14px;
}

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

.contact__select-wrapper {
  position: relative;
  width: 400px;
}

@media screen and (max-width: 768px) {
  .contact__select-wrapper {
    width: 100%;
  }
}

.contact__select-wrapper::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #444;
  width: 10px;
  height: 8px;
}

.contact__textarea {
  background-color: #fff;
  padding: 10px 16px;
  border-radius: 5px;
  border: 1px solid #ddd;
  width: 400px;
  min-height: 214px;
}

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

.contact__wrap {
  color: #999999;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .contact__wrap {
    margin-top: 8px;
  }
}

.contact__note-link {
  color: #999999;
  text-decoration: underline;
}

.contact__note--small {
  font-size: 12px;
}

.contact__checkbox {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
}

.contact__button {
  margin-top: 24px;
}

.contact__submit {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.1em;
  background-color: #20A5EB;
  width: 100%;
  padding: 17px;
  transition: all 0.2s;
}

.contact__submit:hover {
  background-color: #FF6600;
}

.contact__field--checkbox label {
  position: relative;
  cursor: pointer;
  padding-left: 14px;
}

.contact__field--checkbox label::before {
  margin-right: 5px;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 0.5px solid #ddd;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.contact__field--checkbox label::after {
  position: absolute;
  top: 5px;
  left: 5px;
  transform: rotate(50deg);
  width: 5px;
  height: 10px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: "";
  opacity: 0;
}

.contact__field--checkbox label:has(:checked)::after {
  opacity: 1;
}

.contact__label-checkbox span {
  padding-left: 10px;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .contact__label-checkbox span {
    font-size: 12px;
  }
}

/* area
------------------------------------------------------------- */
.area {
  padding: 60px 0;
  background-color: #EBF7FF;
}

.area__list {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding: 32px 100px;
  max-width: 1000px;
}

@media screen and (max-width: 768px) {
  .area__list {
    padding: 40px 20px;
  }
}

.area__item:not(:first-child) {
  margin-top: 40px;
}

.area__prefecture {
  color: #20A5EB;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03em;
  border-bottom: 1px solid;
  padding-bottom: 8px;
}

.area__cities {
  margin-top: 18px;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.03em;
}

.area__cta {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 470px;
}

/* office list
------------------------------------------------------------- */
.office-list {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .office-list {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.office-list__items {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}

@media screen and (max-width: 768px) {
  .office-list__items {
    margin-top: 40px;
  }
}

.office-list__item {
  display: flex;
  align-items: center;
  margin-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 768px) {
  .office-list__item {
    display: block;
    margin-top: 24px;
  }
}

.office-list__name {
  width: 240px;
  color: #20A5EB;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.office-list__info {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 768px) {
  .office-list__info {
    margin-top: 8px;
  }
}

.office-list__address {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 768px) {
  .office-list__address {
    margin-top: 8px;
  }
}

.office-list__image {
  margin-top: 16px;
}

.office-list__button {
  display: inline-block;
  margin-top: 16px;
  background-color: #20A5EB;
  border-radius: 100px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding: 16px 44px 16px 24px;
  position: relative;
}

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

.office-list__button::after {
  content: "";
  display: inline-block;
  position: absolute;
  background: #fff;
  width: 10px;
  height: 17px;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* ====================================================================
# footer
==================================================================== */
.footer {
  background-color: #20A5EB;
  text-align: center;
  padding-top: 24px;
  padding-bottom: 8px;
}

.footer__logo {
  display: block;
  width: 260px;
  margin: 0 auto;
}

.footer__copyright {
  margin-top: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
}

/* ====================================================================
# page top
==================================================================== */
.page-top-button {
  position: fixed;
  z-index: 9000;
  right: 30px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: #20A5EB;
  border-radius: 100px;
  transition: opacity 0.3s;
}

@media screen and (max-width: 768px) {
  .page-top-button {
    right: 15px;
  }
}

.page-top-button:hover {
  opacity: 0.8;
}

.page-top-button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  content: "";
  background-color: #fff;
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

/* ====================================================================
# Common
==================================================================== */
@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}

@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

.inner {
  width: 100%;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}

@media screen and (max-width: 768px) {
  .inner {
    max-width: 600px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.section-title-wrap {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.section-title {
  text-align: center;
  color: #073C77;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}

@media screen and (max-width: 470px) {
  .section-title {
    font-size: 28px;
  }
}


.section-title span {
  font-size: 32px;
}

@media screen and (max-width: 768px) {
  .section-title span {
    font-size: 28px;
  }
}

.section-description {
  margin-top: 24px;
  color: #333;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  text-align: center;
}

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

/* ====================================================================
# thanksページ
==================================================================== */
.thanks {
  padding: 200px 0;
}

.thanks__text {
  text-align: center;
}

.thanks__button {
  margin-top: 20px;
  text-align: center;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.contact-options__email {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0;
  background-color: #20A5EB;
  border-radius: 100px;
  padding: 16px 38px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .contact-options__email {
    font-size: 16px;
    margin-top: 20px;
  }
}

#thanks__message {
  height: 300px;
}

/* ====================================================================
# swiperカスタマイズ
==================================================================== */
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: 50px !important;
  width: 50px !important;
}

@media screen and (max-width: 768px) {

  .swiper-button-prev,
  .swiper-button-next {
    height: 30px !important;
    width: 30px !important;
  }
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url(../images/slider-prev.png);
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(../images/slider-next.png);
}

/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

.swiper-button-prev {
  left: -20px !important;
}

@media screen and (max-width: 768px) {
  .swiper-button-prev {
    left: 0 !important;
  }
}

.swiper-button-next {
  right: -20px !important;
}

@media screen and (max-width: 768px) {
  .swiper-button-next {
    right: 0 !important;
  }
}