@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: 100px;
  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;
}
@media screen and (max-width: 768px) {
  .header__tel {
    font-size: 18px;
    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;
}

.header__nav {
  text-align: center;
  border-top: 1px solid #11549E;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: inline-flex;
  align-items: center;
  gap: 32px;
}

.header__nav-item a {
  color: #333;
  font-size: 15px;
  font-weight: 500;
}

/* hamburger menu
------------------------------------------------------------- */
.hamburger {
  position: fixed;
  z-index: 9999;
  top: 20px;
  right: 15px;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.hamburger.is-active {
  top: 15px;
  right: 15px;
}

.hamburger span {
  background-color: #20A5EB;
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 3px;
  transition: 0.3s transform, 0.3s background-color;
}

.hamburger-menu {
  font-size: 12px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.1em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 130%;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
  transition: 0.3s opacity;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.is-active span:nth-child(1) {
  top: 15px;
  transform: rotate(-45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 15px;
  transform: rotate(45deg);
}

/* drawer menu
  ------------------------------------------------------------- */
.drawer-menu {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9000;
  display: none;
  height: 100vh;
  width: 100%;
  background-color: #EBF7FF;
  text-align: center;
}

.drawer-menu__inner {
  width: 100%;
  height: inherit;
  padding-bottom: 60px;
}

.drawer-menu__items {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 24px;
}

.drawer-menu__item {
  display: inline-block;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 20px;
}

.drawer-menu__link {
  color: #333;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.875;
  font-weight: 500;
  display: inline-block;
}

.drawer-menu__logo {
  margin-top: 65px;
  text-align: center;
}

.drawer__logo {
  max-width: 165px;
  margin: 0 auto;
  display: block;
}

.drawer__contact-box {
  margin-top: 20px;
}

.drawer__time {
  color: #333;
  font-size: 9px;
  font-weight: 700;
}
.drawer__time span {
  font-size: 7px;
  font-weight: 500;
}

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

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

.drawer__buttons {
  margin-top: 32px;
}

.drawer__button {
  display: block;
  margin: 0 auto;
}

.drawer__button.drawer__button--contact {
  width: 200px;
}

.drawer__button.drawer__button--line {
  width: 260px;
  margin-top: 16px;
}

/* ====================================================================
# MV
==================================================================== */
.mv {
  margin-top: 100px;
  background-image: url(../images/mv_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 620px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .mv {
    margin-top: 60px;
    background-image: url(../images/mv_bg_sp.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  }
}

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

.mv__text-block {
  display: inline-block;
  text-align: center;
}

.mv__announcement {
  max-width: 500px;
}

.mv__catchphrase {
  max-width: 790px;
  margin-top: 10px;
}

.mv__description {
  margin-top: 3px;
  color: #073C77;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 44.8px */
  letter-spacing: 0.84px;
  display: inline-block;
  text-shadow: 3px 3px 0 #fff, -3px 3px 0 #fff, -3px -3px 0 #fff, 3px -3px 0 #fff;
}
@media screen and (max-width: 768px) {
  .mv__description {
    font-size: 18px;
  }
}

.mv__cta-box {
  margin-top: 30px;
}

.mv__area {
  color: #073C77;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 44.8px */
  letter-spacing: 0.84px;
  text-align: center;
  display: inline-block;
  text-shadow: 3px 3px 0 #fff, -3px 3px 0 #fff, -3px -3px 0 #fff, 3px -3px 0 #fff;
}
@media screen and (max-width: 768px) {
  .mv__area {
    font-size: 18px;
  }
}

.mv__button {
  display: block;
  max-width: 440px;
  margin-top: 7px;
  margin-left: auto;
  margin-right: auto;
}

.mv__price-box {
  max-width: 465px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .mv__price-box {
    position: static;
    margin-top: 278px;
  }
}

/* ====================================================================
# 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;
  }
}

.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);
}

/* 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: 400px;
  color: #333;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .contact__select {
    width: 100%;
  }
}

.contact__select-wrapper {
  position: relative;
}

.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;
  }
}
.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;
  }
}

/* ====================================================================
# 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;
  }
}