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

html,
body,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 700;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

ul.point {
    background: #e9f5ff;
    padding: 15px 5px;
    border-radius: 10px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 55px;
}
@media (min-width: 1000px) {
  html {
    scroll-padding-top: 83px;
  }
}

body {
  background: #fff;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: #222;
}

.hidden-sp {
  display: none;
}
@media (min-width: 768px) {
  .hidden-sp {
    display: block;
  }
}

@media (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

.inner {
  padding-inline: 15px;
  margin-inline: auto;
}
@media (min-width: 500px) {
  .inner {
    padding-inline: 20px;
  }
}
@media (min-width: 768px) {
  .inner {
    max-width: 1240px;
    padding-inline: 30px;
  }
}
@media (min-width: 1000px) {
  .inner {
    max-width: 1280px;
    padding-inline: 60px;
  }
}

.button {
  border-radius: 999999px;
  height: 53px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-weight: 700;
  line-height: 53px;
  padding-inline: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
}
.button img {
  margin-right: 5px;
  display: block;
}
@media (min-width: 1000px) {
  .button {
    height: 48px;
    line-height: 48px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    padding-inline: 20px;
  }
  .button img {
    margin-right: 10px;
  }
  .button:hover {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media (min-width: 1300px) {
  .button {
    height: 53px;
    line-height: 53px;
    padding-inline: 25px;
  }
}

.button-tel {
  background: #f67d17;
  -webkit-box-shadow: 2px 3px 0 0 #be3131;
          box-shadow: 2px 3px 0 0 #be3131;
  font-family: "Roboto", serif;
  font-size: 25px;
}
.button-tel img {
  width: 19px;
}
@media (min-width: 1000px) {
  .button-tel {
    font-size: 20px;
  }
}
@media (min-width: 1300px) {
  .button-tel {
    font-size: 25px;
  }
}

.button-contact {
  background: #10ab43;
  -webkit-box-shadow: 2px 3px 0 0 #034319;
          box-shadow: 2px 3px 0 0 #034319;
  font-size: 18px;
}
.button-contact img {
  width: 20px;
}
@media (min-width: 1000px) {
  .button-contact {
    font-size: 15px;
  }
}
@media (min-width: 1300px) {
  .button-contact {
    font-size: 18px;
  }
}

.fix-buttons {
  position: fixed;
  z-index: 9999;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .fix-buttons {
    display: none;
  }
}

.fix__tel {
  background: #f67d17;
  height: 55px;
  font-size: 18px;
  color: #fff;
  display: inline-block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 55px;
  text-align: center;
}
.fix__tel img {
  width: 15px;
  margin-right: 2px;
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
  margin-bottom: 2px;
}

.fix__contact {
  background: #10ab43;
  height: 55px;
  font-size: 16px;
  color: #fff;
  display: inline-block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 55px;
  text-align: center;
}
.fix__contact img {
  width: 17px;
  margin-right: 6px;
  vertical-align: -1px;
}

.header {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  height: 55px;
  background: #fff;
}
@media (min-width: 1000px) {
  .header {
    height: 83px;
  }
}

.header__inner {
  padding: 10px 0 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}
@media (min-width: 1000px) {
  .header__inner {
    padding: 32px 15px 30px 20px;
  }
}
@media (min-width: 1300px) {
  .header__inner {
    padding: 32px 25px 30px 30px;
  }
}

.header__logo {
  width: 150px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 1000px) {
  .header__logo {
    width: 200px;
  }
}
@media (min-width: 1300px) {
  .header__logo {
    width: 240px;
  }
}

.header__nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: none;
}
@media (min-width: 1000px) {
  .header__nav {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 50px;
}
@media (min-width: 1000px) {
  .header__nav-list {
    gap: 20px;
  }
}
@media (min-width: 1300px) {
  .header__nav-list {
    gap: 40px;
  }
}

.header__nav-link {
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.header__nav-link a {
  display: inline-block;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .header__nav-link:hover {
    color: #04457f;
  }
}
@media (min-width: 1000px) {
  .header__nav-link {
    font-size: 15px;
  }
}
@media (min-width: 1300px) {
  .header__nav-link {
    font-size: 17px;
  }
}

.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  text-align: center;
  margin-top: 30px;
}
@media (min-width: 1000px) {
  .header__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    margin-left: 15px;
    margin-top: 0;
  }
}
@media (min-width: 1300px) {
  .header__buttons {
    margin-left: 35px;
    gap: 14px;
  }
}

.header__drawer-icon {
  position: relative;
  width: 55px;
  height: 55px;
  background: #03479d;
}
.header__drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 25px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.header__drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 25px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 1000px) {
  .header__drawer-icon {
    display: none;
  }
}

.drawer-icon__bar {
  width: 30px;
  height: 2px;
  position: absolute;
  right: 12.5px;
  background-color: #fff;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, transform 0.4s;
  transition: top 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 17px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 25px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 33px;
}
@media (min-width: 1000px) {
  .drawer-icon__bar {
    display: none;
  }
}

.header__drawer {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  padding-block: 30px 30px;
  display: none;
  top: 55px;
  background-color: #e4f6ff;
}
.header__drawer.is-checked {
  display: block;
}

.header__drawer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  width: 100%;
  margin: 0 auto;
}

.header__drawer-link {
  border-bottom: 1px solid #bbb;
}
.header__drawer-link a {
  padding: 10px 20px;
  display: block;
}

.header__drawer-tel,
.header__drawer-contact {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
  width: 250px;
}
@media (min-width: 1000px) {
  .header__drawer-tel,
  .header__drawer-contact {
    width: auto;
    margin-inline: auto;
  }
}

.fv {
  background: url(../img/fv-bg.webp) no-repeat center center/cover;
  margin-top: 55px;
  overflow: hidden;
}
@media (min-width: 1000px) {
  .fv {
    margin-top: 83px;
  }
}

.fv__price {
  background: #f67d17;
  border-radius: 50%;
  width: 130px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 15px;
  right: 5%;
}
.fv__price img {
  position: absolute;
  width: 75%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 500px) {
  .fv__price {
    width: 160px;
  }
}
@media (min-width: 768px) {
  .fv__price {
    width: 28.4027777778%;
    top: -15%;
    right: -2%;
  }
  .fv__price img {
	width: 76%;
        top: 45%;
        left: 12%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@media (min-width: 1000px) {
  .fv__price {
    top: -18%;
    right: -2%;
  }
}

.fv__inner {
  position: relative;
  max-width: 1280px;
  margin-inline: auto;
}

.fv__content {
  text-align: center;
  position: relative;
  z-index: 5;
  padding-top: 140px;
  padding-bottom: 160px;
}
@media (min-width: 768px) {
  .fv__content {
    padding-top: 182px;
    padding-bottom: 82px;
  }
}

.fv__message {
  font-weight: 700;
}
.fv__message span {
  display: block;
  color: #04457f;
  font-size: clamp(20px, 5.2vw, 69px);
  font-weight: 900;
}
.fv__message img {
  width: 90%;
}
@media (min-width: 768px) {
  .fv__message span {
    margin-left: 50px;
  }
  .fv__message img {
    width: 72.2222222222%;
  }
}
@media (min-width: 1000px) {
  .fv__message span:not(:first-child) {
    margin-top: -30px;
  }
}

.fv__text {
  font-size: clamp(14px, 1.9vw, 25px);
  margin-top: 10px;
  font-weight: 800;
}
@media (min-width: 768px) {
  .fv__text {
    margin-left: 50px;
  }
}

.fv__deco {
  position: absolute;
}

.fv__deco-washroom {
  top: 20px;
  left: 20px;
  width: 26.3888888889%;
}
@media (min-width: 768px) {
  .fv__deco-washroom {
    top: 18px;
    left: 50px;
    width: 17.6388888889%;
  }
}

.fv__deco-kitchen {
  width: 36.8055555556%;
  bottom: 40px;
  right: 20px;
}
@media (min-width: 768px) {
  .fv__deco-kitchen {
    width: 27.0833333333%;
    top: 0;
    left: 33%;
    bottom: auto;
    right: auto;
  }
}

.fv__deco-bath {
  width: 31.25%;
  bottom: 35px;
  left: 20px;
}
@media (min-width: 768px) {
  .fv__deco-bath {
    width: 25.8333333333%;
    left: 40px;
  }
}

.fv__deco-toilet {
  width: 15.9722222222%;
  top: 30px;
  right: 44%;
}
@media (min-width: 500px) {
  .fv__deco-toilet {
    width: 14.5833333333%;
    top: 20px;
  }
}
@media (min-width: 768px) {
  .fv__deco-toilet {
    width: 11.25%;
    bottom: 50px;
    right: 90px;
    top: auto;
  }
}

.about {
  background: url(../img/about-bg.webp) no-repeat left top/cover;
}
@media (min-width: 768px) {
  .about {
    background: url(../img/about-bg.webp) no-repeat center bottom/cover;
  }
}

.about__inner {
  padding-bottom: 120px;
  padding-inline: 20px;
  max-width: 1180px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .about__inner {
    padding-bottom: 243px;
    padding-inline: 40px;
  }
}

.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .about__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}

.about__heading__wrapper {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 40px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .about__heading__wrapper {
    margin-top: 81px;
  }
}

.about__heading {
  font-size: clamp(24px, 3.9vw, 43px);
  line-height: 1.3;
  color: #04457f;
  font-weight: 900;
}

.about__sub-heading {
  font-size: clamp(23px, 3.9vw, 43px);
  color: #04457f;
  font-weight: 900;
}
.about__sub-heading span {
  color: #e53e2b;
  font-size: clamp(28px, 4.8vw, 66px);
  font-weight: 900;
}

.about__map {
  margin-top: 30px;
  max-width: 300px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .about__map {
    width: 37%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: -22px;
  }
}
@media (min-width: 1000px) {
  .about__map {
    margin-top: -52px;
    max-width: 100%;
  }
}
.about__map img {
  width: 100%;
}

.about__map-text {
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
  color: #04457f;
}
@media (min-width: 1300px) {
  .about__map-text {
    font-size: 22px;
  }
}

.about__text {
  font-weight: 500;
  margin-top: 10px;
  font-size: 14px;
}
@media (min-width: 1000px) {
  .about__text {
    font-size: 16px;
  }
}
@media (min-width: 1820px) {
  .about__text {
    font-size: 20px;
    line-height: 2;
  }
}

.about__points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  margin-inline: auto;
  gap: 20px;
}
@media (min-width: 768px) {
  .about__points {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
    margin-top: 34px;
    padding-inline: 0;
  }
}
@media (min-width: 1300px) {
  .about__points {
    gap: 55px;
  }
}

.about__point {
  border-radius: 30px;
  background: #fff;
  width: 100%;
  padding-block: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .about__point {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    padding-block: 0;
  }
}
@media (min-width: 1000px) {
  .about__point {
    width: 280px;
    height: 280px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
@media (min-width: 1300px) {
  .about__point {
    width: 315px;
    height: 315px;
    gap: 0;
  }
}

.about__point-heading {
  border-radius: 25px;
  background: #04457f;
  width: 150px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  color: #fff;
  font-size: 20px;
  font-family: "Roboto", serif;
}
@media (min-width: 768px) {
  .about__point-heading {
    width: 100px;
    font-size: 18px;
  }
}
@media (min-width: 1000px) {
  .about__point-heading {
    height: 40px;
    line-height: 40px;
    font-size: 22px;
    margin-top: 48px;
    width: 150px;
  }
}
@media (min-width: 1300px) {
  .about__point-heading {
    font-size: 25px;
    margin-top: 56px;
  }
}

.about__point-text {
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}
.about__point-text span {
  color: #e53e2b;
}
@media (min-width: 768px) {
  .about__point-text {
    font-size: 16px;
  }
}
@media (min-width: 1000px) {
  .about__point-text {
    font-size: 24px;
    margin-top: 12px;
  }
}
@media (min-width: 1300px) {
  .about__point-text {
    font-size: 30px;
    margin-top: 23px;
  }
}

@media (min-width: 1300px) {
  .cta_inner {
    max-width: 1500px;
  }
}

.cta__contact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 3.3333333333%;
  width: 100%;
  margin-top: 30px;
}
@media (min-width: 500px) {
  .cta__contact-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 0;
  }
}

.cta__image {
  width: 30%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 50px;
  width: 30%;
  margin-inline: auto;
  margin-top: 10px;
}
@media (min-width: 500px) {
  .cta__image {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .cta__image {
    width: 30%;
    padding-left: 30px;
    margin-top: -20.8333333333%;
  }
}

.cta__contact-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .cta__contact-content {
    margin-top: -10%;
  }
}

.cta__contact-heading {
  font-size: clamp(20px, 3vw, 40px);
  text-align: center;
}

.cta__contact-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 90%;
  gap: 10px;
  margin-top: 10px;
  margin-inline: auto;
}
@media (min-width: 500px) {
  .cta__contact-buttons {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .cta__contact-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.0833333333%;
    margin-top: 24px;
  }
}
@media (min-width: 1300px) {
  .cta__contact-buttons {
    margin-top: 40px;
  }
}

.cta__tel-button {
  font-size: clamp(20px, 2.8vw, 42px);
  width: 100%;
  max-width: 363px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .cta__tel-button {
    width: 50%;
    height: 64px;
    line-height: 64px;
  }
  .cta__tel-button img {
    width: 25px;
  }
}
@media (min-width: 1300px) {
  .cta__tel-button {
    max-width: 550px;
    height: 80px;
    line-height: 80px;
  }
  .cta__tel-button img {
    width: 30px;
  }
}

.cta__contact-button {
  font-size: clamp(18px, 2vw, 30px);
  width: 100%;
  max-width: 363px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .cta__contact-button {
    height: 64px;
    line-height: 64px;
    width: 50%;
  }
  .cta__contact-button img {
    width: 25px;
  }
}
@media (min-width: 1300px) {
  .cta__contact-button {
    max-width: 550px;
    height: 80px;
    line-height: 80px;
  }
  .cta__contact-button img {
    width: 28px;
    margin-top: 6px;
  }
}

.cta__content {
  border-radius: 30px;
  border: 8px solid #e53e2b;
  background: #fffef8;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.05);
  padding: 30px 10px;
}
@media (min-width: 768px) {
  .cta__content {
    padding: 30px 30px 40px;
  }
}
@media (min-width: 1000px) {
  .cta__content {
    padding: 52px 50px 60px;
  }
}
@media (min-width: 1300px) {
  .cta__content {
    padding: 52px 70px 60px;
  }
}
@media (min-width: 1820px) {
  .cta__content {
    padding: 52px 86px 60px;
  }
}

.cta__sub-heading {
  text-align: center;
  font-size: clamp(14px, 2.5vw, 33px);
}
.cta__sub-heading img {
  width: 25px;
  padding-right: 3px;
}
.cta__sub-heading span {
  color: #f30;
}
@media (min-width: 768px) {
  .cta__sub-heading img {
    width: 47px;
    padding-right: 10px;
  }
}

.cta__heading {
  text-align: center;
  font-size: clamp(26px, 4.5vw, 60px);
  margin-top: 16px;
}
.cta__heading span {
  color: #f30;
}

.cta__text {
  font-size: 13px;
  margin-top: 23px;
  line-height: 1.8;
  font-weight: 500;
  text-align: center;
}
.cta__text span {
  color: #f30;
  font-weight: 600;
}
@media (min-width: 1000px) {
  .cta__text {
    font-size: 16px;
  }
}
@media (min-width: 1820px) {
  .cta__text {
    font-size: 20px;
  }
}

.swiper {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .swiper {
    margin-top: 60px;
  }
}
@media (min-width: 1000px) {
  .swiper {
    margin-top: 80px;
  }
}

.swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

.swiper-slide img {
  width: 100%;
  aspect-ratio: 340 / 300;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.trouble {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .trouble {
    margin-top: 82px;
  }
}

@media (min-width: 768px) {
  .trouble__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
}

@media (min-width: 768px) {
  .trouble-01 {
    -webkit-box-flex: 8;
        -ms-flex: 8;
            flex: 8;
    margin-top: 29px;
  }
}

@media (min-width: 768px) {
  .trouble-02 {
    -webkit-box-flex: 7;
        -ms-flex: 7;
            flex: 7;
  }
}

.trouble__content {
  margin-top: -5%;
  padding-block: 40px 50px;
  position: relative;
  z-index: 10;
  background: url(../img/trouble-bg.webp) no-repeat center top/cover;
}
@media (min-width: 768px) {
  .trouble__content {
    padding-block: 60px;
    margin-top: -3%;
  }
}
@media (min-width: 1300px) {
  .trouble__content {
    margin-top: -2%;
  }
}

.trouble__heading {
  text-align: center;
  font-size: clamp(20px, 3.4vw, 38px);
}
.trouble__heading span {
  color: #f30;
}

.trouble__text {
  margin-top: 20px;
  text-align: center;
  font-size: clamp(15px, 2.4vw, 28px);
}
.trouble__text span {
  margin-top: 10px;
  text-align: center;
  font-size: clamp(18px, 3.7vw, 42px);
  display: inline-block;
}

.trouble__contact-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 90%;
  gap: 10px;
  margin-top: 20px;
  margin-inline: auto;
}
@media (min-width: 500px) {
  .trouble__contact-buttons {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .trouble__contact-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
  }
}
@media (min-width: 1300px) {
  .trouble__contact-buttons {
    margin-top: 40px;
  }
}

@media (min-width: 768px) {
  .trouble__tel-button {
    height: 64px;
    line-height: 64px;
    padding-inline: 65px;
    font-size: 30px;
  }
  .trouble__tel-button img {
    width: 25px;
  }
}
@media (min-width: 1300px) {
  .trouble__tel-button {
    height: 80px;
    line-height: 80px;
    font-size: 45px;
  }
  .trouble__tel-button img {
    width: 32px;
    margin-top: 6px;
  }
}

@media (min-width: 768px) {
  .trouble__contact-button {
    height: 64px;
    line-height: 64px;
    padding-inline: 55px;
    font-size: 22px;
  }
  .trouble__contact-button img {
    width: 25px;
    margin-top: 3px;
  }
}
@media (min-width: 1300px) {
  .trouble__contact-button {
    height: 80px;
    line-height: 80px;
    font-size: 32px;
  }
  .trouble__contact-button img {
    width: 28px;
  }
}

.washroom-image {
  margin-top: -10px;
  z-index: -1;
}
.washroom-image img {
  width: 100%;
  max-height: 320px;
  -o-object-fit: cover;
  object-fit: cover;
}

.price {
  background: url(../img/price-bg.webp) repeat-y center center/contain;
  padding-block: 50px 70px;
}
@media (min-width: 768px) {
  .price {
    padding-block: 95px 127px;
  }
}

.section__heading {
  font-size: clamp(23px, 3vw, 35px);
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}
.section__heading::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 4px;
  background: #1b1464;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 768px) {
  .section__heading {
    padding-bottom: 40px;
  }
  .section__heading::after {
    width: 80px;
    height: 6px;
  }
}

.price__cards {
  display: grid;
  margin-top: 30px;
  gap: 30px;
}
@media (min-width: 768px) {
  .price__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .price__cards {
    margin-top: 50px;
  }
}
@media (min-width: 1000px) {
  .price__cards {
    gap: 50px;
  }
}

.price__card {
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}

.price__card-heading {
  background: #03479c;
  color: #fff;
  text-align: center;
  font-size: clamp(18px, 2.3vw, 28px);
  padding-block: 10px;
}

.price__card-body {
  padding: 30px 20px 20px;
}
@media (min-width: 1300px) {
  .price__card-body {
    padding: 30px 40px 20px;
  }
}

.price__card-image {
  text-align: center;
}
.price__card-image img {
  height: 200px;
}
@media (min-width: 768px) {
  .price__card-image img {
    height: 275px;
  }
}

.price__card-image--toilet img {
  height: 150px;
}
@media (min-width: 768px) {
  .price__card-image--toilet img {
    height: 245px;
  }
}

.price__card-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .price__card-tags {
    margin-top: 47px;
  }
}

.price__card-tags--toilet {
  margin-top: 33px;
}

.price__card-tag {
  border-radius: 10px;
  background: #c9eafa;
  padding: 5px 20px;
  font-size: 16px;
}
@media (min-width: 1000px) {
  .price__card-tag {
    font-size: 18px;
  }
}
@media (min-width: 1820px) {
  .price__card-tag {
    font-size: 20px;
  }
}

.price__card-price {
  color: #e53e2b;
  font-family: "Staatliches", serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  text-align: center;
  margin-top: 22px;
}

.card-price__yen {
  font-family: "Noto Sans JP", serif;
  font-weight: 800;
  font-size: clamp(20px, 2.8vw, 32px);
}

.card-price__tax {
  font-family: "Noto Sans JP", serif;
  font-weight: 800;
  font-size: clamp(14px, 2.5vw, 20px);
}

.price__card-price-sub {
  text-align: center;
  font-family: "Staatliches", serif;
  font-weight: 400;
  font-size: clamp(25px, 4vw, 54px);
}
@media (min-width: 1000px) {
  .price__card-price-sub {
    margin-top: -10px;
  }
}

.voice {
  margin-top: 40px;
  padding-bottom: 100px;
}
@media (min-width: 768px) {
  .voice {
    margin-top: 70px;
  }
}
@media (min-width: 1000px) {
  .voice {
    margin-top: 110px;
  }
}

.voice__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .voice__cards {
    gap: 0;
    margin-top: 80px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.voice__card {
  border-radius: 20px;
  border: 2px solid #ccc;
  background: #fff;
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .voice__card {
    width: 32%;
    padding: 20px 15px;
  }
}
@media (min-width: 1300px) {
  .voice__card {
    padding: 30px 35px;
    width: 31%;
    gap: 28px;
  }
}

.voice__card-image {
  width: 100px;
  margin: 0 auto;
}

.voice__card-name {
  font-size: 14px;
  font-weight: 600;
  width: 100px;
  margin: 0 auto;
}

.voice__card-info {
  font-size: 14px;
  font-weight: 400;
  width: 100px;
  margin: 0 auto;
}

.voice__card-stars {
  width: 100px;
  margin: 0 auto;
}

.voice__card-text {
  font-weight: 700;
  font-size: 16px;
}
@media (min-width: 1820px) {
  .voice__card-text {
    font-size: 18px;
  }
}

.flow {
  padding-block: 110px 170px;
  background: url(../img/flow-bg.webp) no-repeat center center/cover;
}

@media (min-width: 768px) {
  .flow__inner {
    max-width: 650px;
  }
}
@media (min-width: 1000px) {
  .flow__inner {
    padding-inline: 30px;
    max-width: 1050px;
  }
}
@media (min-width: 1820px) {
  .flow__inner {
    max-width: 1400px;
  }
}

.flow__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
  gap: 10px;
}
@media (min-width: 768px) {
  .flow__items {
    display: grid;
    grid-template-columns: repeat(6, auto);
    gap: 40px 10px;
    margin-top: 85px;
  }
}
@media (min-width: 1000px) {
  .flow__items {
    grid-template-columns: repeat(11, auto);
    gap: 40px 2px;
  }
}
@media (min-width: 1820px) {
  .flow__items {
    gap: 40px 13px;
  }
}

.flow__item {
  background: #fff;
  -webkit-box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.05);
  width: 230px;
  height: 230px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 9px;
}
@media (min-width: 768px) {
  .flow__item {
    width: 181px;
    height: 181px;
  }
}
@media (min-width: 1000px) {
  .flow__item {
    width: 146px;
    height: 146px;
  }
}
@media (min-width: 1820px) {
  .flow__item {
    width: 181px;
    height: 181px;
  }
}

.flow__icon {
  width: 60px;
}

.flow__text {
  font-size: 18px;
  font-weight: 700;
}
.flow__text span {
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .flow__text {
    font-size: 14px;
  }
  .flow__text span {
    font-size: 13px;
  }
}
@media (min-width: 1820px) {
  .flow__text {
    font-size: 18px;
  }
  .flow__text span {
    font-size: 16px;
  }
}

.flow__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (min-width: 768px) {
  .flow__arrow {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    width: 10px;
  }
}
@media (min-width: 1300px) {
  .flow__arrow {
    width: 20px;
  }
}

.qa {
  background: url(../img/price-bg.webp) repeat-y center center/contain;
  padding-block: 50px 70px;
}
@media (min-width: 768px) {
  .qa {
    padding-block: 87px 100px;
  }
}

.qa__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  margin-top: 50px;
}
@media (min-width: 1000px) {
  .qa__items {
    margin-top: 72px;
  }
}

.qa__question {
  border-radius: 20px 20px 0px 0px;
  background: #03479c;
  color: #fff;
  font-size: clamp(16px, 2vw, 28px);
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.qa__question span {
  font-family: "Roboto", serif;
  font-size: clamp(26px, 3.7vw, 40px);
  margin-right: 10px;
}
@media (min-width: 768px) {
  .qa__question {
    padding: 10px 10%;
  }
}

.qa__answer {
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(16px, 2vw, 28px);
}
.qa__answer span {
  font-family: "Roboto", serif;
  font-size: clamp(26px, 3.7vw, 40px);
  margin-right: 10px;
  color: #ff3b30;
}
@media (min-width: 768px) {
  .qa__answer {
    padding: 20px 10%;
  }
}
@media (min-width: 1300px) {
  .qa__answer {
    padding: 30px 10%;
  }
}

.cta-2 {
  background: url(../img/contact-bg.webp) no-repeat center center/cover;
  padding-block: 50px 70px;
  text-align: center;
  position: relative;
}
.cta-2::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .cta-2 {
    padding-block: 87px 100px;
  }
}

.cta-2__heading {
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  position: relative;
  z-index: 11;
}

.cta-2__text {
  color: #fff;
  font-size: 16px;
  margin-top: 30px;
  position: relative;
  z-index: 11;
}
@media (min-width: 768px) {
  .cta-2__text {
    font-size: 18px;
  }
}

.cta-2__contact-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 48px;
  position: relative;
  z-index: 11;
}
@media (min-width: 768px) {
  .cta-2__contact-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}

.cta-2__tel-button {
  background: transparent;
  border: 3px solid #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 26px;
  height: 70px;
  line-height: 70px;
  padding: 20px 40px;
}
@media (min-width: 1300px) {
  .cta-2__tel-button {
    font-size: 44px;
    padding: 24px 50px;
    height: 90px;
    line-height: 90px;
  }
  .cta-2__tel-button img {
    width: 30px;
  }
}

.cta-2__contact-button {
  background: transparent;
  border: 3px solid #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 20px;
  height: 70px;
  line-height: 70px;
  padding: 20px 40px;
}
@media (min-width: 1300px) {
  .cta-2__contact-button {
    font-size: 35px;
    padding: 24px 50px;
    height: 90px;
    line-height: 90px;
  }
  .cta-2__contact-button img {
    width: 30px;
  }
}

.contact {
  margin-top: 60px;
}
@media (min-width: 768px) {
  .contact {
    margin-top: 80px;
  }
}

@media (min-width: 768px) {
  .contact__form {
    margin-top: 70px;
    max-width: 940px;
    margin-inline: auto;
  }
}

.form-group {
  margin-top: 20px;
}
.form-group label {
  font-weight: 700;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-group input,
.form-group textarea {
  padding: 5px 10px;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: 1px solid #222;
  background: #fff;
}
@media (min-width: 768px) {
  .form-group {
    margin-top: 30px;
  }
  .form-group label {
    font-size: 20px;
  }
}
@media (min-width: 1000px) {
  .form-group {
    margin-top: 40px;
  }
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
          box-shadow: 0 0 0 1000px white inset;
}

.required {
  border-radius: 15px;
  background: #E53E2B;
  color: #fff;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  margin-left: 10px;
  line-height: 16px;
}
@media (min-width: 768px) {
  .required {
    font-size: 14px;
  }
}

.wpcf7-form-control {
  border-radius: 10px;
  border: 2px solid #CCC;
  margin-top: 10px;
  width: 100%;
  min-height: 40px;
}
@media (min-width: 768px) {
  .wpcf7-form-control {
    min-height: 50px;
  }
}

.form-submit {
  text-align: center;
}

.wpcf7-submit {
  border-radius: 99999px;
  background: #E53E2B;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-top: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 100px;
  cursor: pointer;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  border: none;
}
.wpcf7-submit:disabled {
  background: #ccc;
}
.wpcf7-submit:hover {
  opacity: 0.9;
}

.wpcf7-spinner {
  display: block;
}

.contact__form-links {
  text-align: center;
  font-size: 14px;
}

.column {
  background: url(../img/column-bg.webp) no-repeat top center/cover;
  padding-block: 100px 70px;
  margin-top: 80px;
}

.column__cards {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .column__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: flex-start;
    gap: 2%;
    margin-top: 30px;
  }
}
@media (min-width: 1000px) {
  .column__cards {
    gap: 3%;
    margin-top: 60px;
  }
	.column .inner a.column__card-link {
		width: 33%;
	}
}

@media (min-width: 768px) {
  .column__card-link:hover .column__card-image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .column__card-link:hover .column__published,
  .column__card-link:hover .column__title,
  .column__card-link:hover .column__overview {
    color: #04457f;
  }
}

.column__card-image {
  border-radius: 15px;
  overflow: hidden;
}
.column__card-image img {
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  aspect-ratio: 278/215;
  -o-object-fit: cover;
  object-fit: cover;
}

.column__card-body {
  padding-block: 10px 10px;
}
@media (min-width: 768px) {
  .column__card-body {
    padding-block: 10px 20px;
  }
}

.column__published {
  font-size: 14px;
}

.column__title {
  font-size: 16px;
}
@media (min-width: 768px) {
  .column__title {
    font-size: 18px;
  }
}
@media (min-width: 1000px) {
  .column__title {
    margin-top: 8px;
  }
}

.column__button {
  text-align: right;
  margin-top: 20px;
  font-size: 18px;
}
.column__button span {
  color: #1B1464;
  font-size: 13px;
  vertical-align: 2px;
  margin-right: 3px;
}
@media (min-width: 768px) {
  .column__button a {
    position: relative;
  }
  .column__button a::after {
    background: #04457f;
    bottom: -4px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.6s;
    transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
    width: 100%;
  }
  .column__button:hover a::after {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@media (min-width: 1000px) {
  .column__button {
    font-size: 20px;
    margin-top: 45px;
  }
}

.header-page {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  height: 55px;
  background: transparent;
}
@media (min-width: 1000px) {
  .header-page {
    height: 83px;
  }
}

.page__fv {
  background: url(../img/price-bg.webp) repeat-y center center/cover;
  padding-top: 55px;
  overflow: hidden;
}
@media (min-width: 1000px) {
  .page__fv {
    padding-top: 83px;
  }
}

.page-heading__wrapper {
  padding-block: 60px 70px;
  border-bottom: 1px solid #03479C;
}

.page-heading__en {
  color: #03479C;
  font-size: clamp(45px, 5.5vw, 80px);
  font-weight: 900;
}

.page-heading__ja {
  color: #03479C;
  font-size: 14px;
  font-weight: 900;
  position: relative;
  padding-left: 17px;
}
.page-heading__ja::before {
  position: absolute;
  content: "";
  background: url(../img/page-fv-deco.svg) no-repeat center center/contain;
  width: 11px;
  height: 15px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) {
  .page-heading__ja {
    font-size: 16px;
  }
}

.breadcrumb__wrapper {
  padding-block: 10px 15px;
}

.breadcrumb {
  color: #03479C;
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.breadcrumb a {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.breadcrumb a:hover {
  opacity: 0.6;
}

.page-wrapper {
  margin-top: 40px;
  margin-bottom: 70px;
}
@media (min-width: 1000px) {
  .page-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 80px;
    margin-bottom: 120px;
    gap: 20px;
  }
}
@media (min-width: 1300px) {
  .page-wrapper {
    gap: 30px;
  }
}

.main {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
}

.page-inner {
  padding-inline: 15px;
  margin-inline: auto;
}
@media (min-width: 500px) {
  .page-inner {
    padding-inline: 20px;
  }
}
@media (min-width: 1300px) {
  .page-inner {
    max-width: 1260px;
    padding-inline: 40px;
  }
}

.main__inner {
  border-radius: 10px;
  background: #F9F9F9;
  padding-block: 40px 100px;
}

.category-list {
  margin-bottom: 20px;
}

.category-list__title {
  font-size: 20px;
  font-weight: 900;
  padding-bottom: 20px;
  border-bottom: 1px dotted #58585A;
}
@media (min-width: 768px) {
  .category-list__title {
    font-size: 26px;
  }
}

.categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  margin-top: 40px;
  gap: 20px 12px;
}
@media (min-width: 768px) {
  .categories {
    gap: 12px;
  }
}

.categories li a {
  font-size: 13px;
  padding: 7px 22px;
  border-radius: 15px;
  background: #EDEDED;
  color: #7B7B7A;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.categories li a.active,
.categories li a:hover {
  background-color: #03479C;
  color: #fff;
}

.page-column__title {
  font-size: 20px;
  font-weight: 900;
  padding-bottom: 20px;
  border-bottom: 1px dotted #58585A;
  margin-top: 70px;
}
@media (min-width: 768px) {
  .page-column__title {
    font-size: 26px;
  }
}

.page-column__cards {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .page-column__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px 26px;
  }
}

.column-page__published {
  font-size: 14px;
  color: #817B7A;
}

.column-page__title {
  font-size: 16px;
  margin-top: 6px;
}
@media (min-width: 768px) {
  .column-page__title {
    font-size: 18px;
  }
}

.column__overview {
  font-size: 13px;
  color: #817B7A;
  margin-top: 6px;
}

.sidebar {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.sidebar__inner {
  padding-inline: 15px;
  margin-inline: auto;
  border-radius: 10px;
  background: #F9F9F9;
  padding-block: 30px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 54px;
}
@media (min-width: 500px) {
  .sidebar__inner {
    padding-inline: 20px;
  }
}

.sidebar__title {
  font-size: 17px;
  font-weight: 900;
  padding-bottom: 13px;
  border-bottom: 1px dotted #58585A;
}

.sidebar__list {
  padding-top: 24px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.sidebar__list a {
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.sidebar__list a:hover {
  color: #04457f;
}

.entry__title {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  margin-top: 5px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dotted #58585A;
}

.entry__published {
  color: #817B7A;
  font-size: 14px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .entry__published {
    font-size: 14px;
  }
}

.entry__image {
  width: 100%;
  margin-top: 14px;
  margin-bottom: 20px;
}
.entry__image img {
  display: block;
}
@media (min-width: 768px) {
  .entry__image {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

.entry__content {
  font-size: 14px;
  color: #402B2C;
  font-weight: 400;
}
@media (min-width: 768px) {
  .entry__content {
    font-size: 15px;
  }
}
@media (min-width: 1000px) {
  .entry__content {
    font-size: 16px;
  }
}
.entry__content p {
  line-height: 1.8;
  font-weight: 400;
margin-bottom:15px;
}
.entry__content li {
  list-style: inside;
  margin-left: 14px;
  line-height: 1.9;
  font-weight: 400;
	margin-bottom:8px;
}
.entry__content h2 {
  margin-top: 40px;
  font-size: clamp(17px, 2.3vw, 24px);
  font-weight: 900;
  padding-bottom: 10px;
  color: #04457f;
  font-weight: 700;
  border-bottom: 1px dotted #04457f;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .entry__content h2 {
    padding-bottom: 16px;
  }
}
.entry__content h3 {
  margin-top: 40px;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 900;
  position: relative;
  padding-left: 28px;
  color: #04457f;
  border-bottom: 1px dotted #04457f;
  padding-bottom: 10px;
  position: relative;
  padding-left: 14px;
  margin-bottom: 15px;
}
.entry__content h3:before {
  position: absolute;
  content: "";
  height: 70%;
  width: 3px;
  background: #04457f;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .entry__content h3 {
    padding-bottom: 16px;
  }
}
.entry__content h4 {
    background: #04457f;
    color: #fff;
    padding: 10px !important;
    border-radius: 5px;
    margin-bottom: 10px !important;
    margin-top: 20px !important;
}
.entry__button-wrapper {
  margin-top: 50px;
  text-align: center;
}
@media (min-width: 768px) {
  .entry__button-wrapper {
    margin-top: 60px;
  }
}
@media (min-width: 1000px) {
  .entry__button-wrapper {
    margin-top: 80px;
  }
}

.entry__button {
  border-radius: 5px;
  background: #03479C;
  color: #fff;
  padding: 15px 70px 13px 40px;
  display: inline-block;
  font-weight: 700;
  position: relative;
}
.entry__button::before {
  position: absolute;
  content: "";
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2A63AB;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: right 0.4s;
  transition: right 0.4s;
}
.entry__button::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 12px;
  background: url(../img/entry-arrow.svg) no-repeat center center/contain;
  top: 50%;
  right: 23px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: right 0.4s;
  transition: right 0.4s;
}
@media (min-width: 768px) {
  .entry__button {
    padding: 15px 90px 15px 60px;
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
  }
  .entry__button:hover {
    background-color: #02387b;
  }
  .entry__button:hover::before {
    right: 7px;
  }
  .entry__button:hover::after {
    right: 20px;
  }
}

.company {
  margin-top: 90px;
}

.company__inner {
  max-width: 913px;
  padding-inline: 20px;
  margin-inline: auto;
}

.company_heading {
  border-radius: 20px 20px 0px 0px;
  background: #03479c;
  color: #fff;
  font-size: 24px;
  text-align: center;
  padding: 10px 20px;
}
@media (min-width: 768px) {
  .company_heading {
    font-size: 30px;
  }
}

.company__table {
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.05);
  width: 100%;
  padding-bottom: 30px;
  padding-inline: 20px;
}
.company__table tr {
  color: #252525;
}
.company__table th,
.company__table td {
  padding: 20px 10px;
  border-bottom: 2px solid rgba(240, 240, 240, 0.8);
  text-align: left;
  font-size: 15px;
}
@media (min-width: 768px) {
  .company__table {
    padding-bottom: 40px;
    padding-inline: 40px;
  }
  .company__table th,
  .company__table td {
    padding: 30px;
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .company__table th,
  .company__table td {
    font-size: 20px;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.page-numbers {
  background-color: #EFEFEF;
  padding: 9px 12px;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .page-numbers {
    -webkit-transition: color 0.4s, background-color 0.4s;
    transition: color 0.4s, background-color 0.4s;
  }
  .page-numbers:hover {
    background-color: #03479c;
    color: #fff;
  }
}
.page-numbers.current {
  background-color: #C6C6C6;
}
@media (min-width: 768px) {
  .page-numbers.current:hover {
    color: #222;
  }
}

.next, .prev {
  background-color: #04457f;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
@media (min-width: 768px) {
  .next:hover, .prev:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.footer {
  background: #03479c;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 28px;
  margin-top: 109px;
}
@media (min-width: 768px) {
  .footer {
    padding-top: 65px;
  }
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media (min-width: 1000px) {
  .footer__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
  }
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 1000px) {
  .footer__nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}
@media (min-width: 1300px) {
  .footer__nav-list {
    gap: 56px;
  }
}

.footer__nav-link a {
  font-size: 16px;
  display: block;
}
.footer__nav-link span {
  font-size: 11px;
  margin-right: 5px;
  vertical-align: 1px;
  display: inline-block;
}
@media (min-width: 768px) {
  .footer__nav-link a {
    font-size: 18px;
    position: relative;
  }
  .footer__nav-link a::after {
    background: #fff;
    bottom: -4px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.6s;
    transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
    width: 100%;
  }
  .footer__nav-link span {
    font-size: 13px;
  }
  .footer__nav-link:hover a::after {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

.footer__logo {
  width: 250px;
}
@media (min-width: 1300px) {
  .footer__logo {
    width: 340px;
  }
}

.footer__text {
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.7;
}
@media (min-width: 1300px) {
  .footer__text {
    font-size: 18px;
  }
}

.footer__copyright {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
}
@media (min-width: 1000px) {
  .footer__copyright {
    margin-top: 7px;
    font-size: 18px;
  }
}

.contact-thanks__content {
  margin-top: 70px;
  margin-bottom: 70px;
  text-align: center;
}

.contact-thanks__heading {
  color: #04457f;
  font-weight: 900;
  font-size: clamp(20px, 3vw, 50px);
}

.contact-thanks__text {
  margin-top: 20px;
  font-weight: 500;
  font-size: 14px;
}
@media (min-width: 768px) {
  .contact-thanks__text {
    font-size: 16px;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}