@charset "UTF-8";
html {
  font-size: 16px;
}

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

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

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 {
  background-color: #fff;
  height: 100px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.6);
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .header {
    height: 60px;
  }
}

.header__inner {
  display: flex;
  height: inherit;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .header__inner {
    max-width: 375px;
    padding: 0;
  }
}

.header__logo {
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin-left: 46px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .header__logo {
    font-size: 24px;
    margin-left: 20px;
  }
}

.header__right {
  display: flex;
  height: inherit;
  align-items: center;
  gap: 24px;
}

.header__hamburger {
  display: none;
}
@media screen and (max-width: 1120px) {
  .header__hamburger {
    display: flex;
    width: 65px;
    height: 60px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
  }
}

.header__hamburger span {
  width: 25px;
  height: 3px;
  background-color: #000000;
  transition: all 0.3s ease;
}

.header__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.header__mobile-menu.is-active {
  transform: translateX(0);
}

.header__mobile-menu-content {
  width: 100%;
  height: 100%;
  padding: 20px 20px 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.header__mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
}
.header__mobile-menu-close span {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
}

.header__mobile-nav {
  margin-top: 60px;
}

.header__mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__mobile-nav-link {
  display: block;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  text-align: center;
  border-bottom: 1px solid #eee;
  transition: color 0.3s ease;
}
.header__mobile-nav-link:hover {
  color: #FFAC38;
}

.header__mobile-cta {
  margin-top: 15px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.header__mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1A3477;
  color: #fff;
  padding: 20px;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.header__mobile-cta-button:hover {
  background-color: #11224d;
}

.header__mobile-cta-icon {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 17px;
  vertical-align: middle;
}

.header__mobile-cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header__mobile-cta-link {
  font-size: 20px;
  font-weight: 700;
}

.header__mobile-cta-text {
  display: inline-block;
  margin: 0 auto;
  font-size: 12px;
  opacity: 0.9;
}

.header__mobile-cta-button--line {
  background-color: #54BD82 !important;
}
.header__mobile-cta-button--line:hover {
  background-color: #3ea069 !important;
}

.header__mobile-cta-button--tel {
  background-color: #1A3477 !important;
}
.header__mobile-cta-button--tel:hover {
  background-color: #11224d !important;
}

body.menu-open {
  overflow: hidden;
}

.header__nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1120px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-item {
  margin: 0;
}

.header__nav-link {
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.header__nav-link:hover {
  color: #FFAC38;
}

.header__cta {
  display: flex;
  height: inherit;
  align-items: center;
  gap: 0;
}
@media screen and (max-width: 1120px) {
  .header__cta {
    display: none;
  }
}

.header__cta-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 150px;
  height: inherit;
  font-size: 14px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.header__cta-button--line {
  background-color: #54BD82;
  color: #fff;
}
.header__cta-button--line:hover {
  background-color: #3ea069;
}
.header__cta-button--tel {
  background-color: #1A3477;
  color: #fff;
}
.header__cta-button--tel:hover {
  background-color: #11224d;
}

.header__cta-button-sub {
  font-size: 12px;
}

.header__cta-tel-icon {
  width: 28px;
  height: 28px;
  display: inline-block;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
}

.mv {
  position: relative;
  padding: 150px 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/images/japanese_paper.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .mv {
    padding: 0;
    min-height: 600px;
    margin: 0 auto;
  }
}

.mv__inner {
  display: flex;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .mv__inner {
    flex-direction: column;
    max-width: 375px;
    padding: 0;
  }
}

.mv__content {
  width: 522px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
  gap: 40px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .mv__content {
    flex-direction: column;
    padding: 80px 20px 20px;
    gap: 20px;
    width: auto;
  }
}

.mv__title {
  font-size: 48px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.2;
  flex: 1;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .mv__title {
    font-size: 28px;
    flex: none;
    margin-bottom: 28px;
  }
}

.mv__subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .mv__subtitle {
    font-size: 16px;
  }
}

.mv__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
  width: 458px;
}
@media screen and (max-width: 768px) {
  .mv__cta {
    align-items: center;
    flex: none;
    width: 300px;
  }
}

.mv__cta-badge {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 16px;
}
@media screen and (max-width: 768px) {
  .mv__cta-badge {
    margin-bottom: 0;
  }
}

.mv__cta-line {
  width: 8px;
  height: 1px;
  background-color: #54BD82;
}

.mv__cta-text {
  font-size: 14px;
  font-weight: 400;
  color: #54BD82;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .mv__cta-text {
    font-size: 12px;
  }
}

.mv__cta-arrow {
  width: 8px;
  height: 13.86px;
  background-color: #54BD82;
}

.mv__cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .mv__cta-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

.mv__cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 415px;
  height: 60px;
  border-radius: 40px;
  font-size: 24px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .mv__cta-button {
    max-width: 300px;
  }
}

.mv__cta-button--line {
  background-color: #54BD82;
  color: #fff;
  border: 2px solid #54BD82;
}

.mv__cta-button--tel {
  background-color: #1A3477;
  color: #fff;
  border: 2px solid #1A3477;
}

.mv__cta-tel-icon {
  width: 28px;
  height: 28px;
  background-image: url("/images/tel.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
  vertical-align: middle;
}

.mv__cta-tel-sub {
  margin-left: 20px;
  color: #1A3477;
  background-color: #fff;
  padding: 5px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.mv__cta-arrow-down {
  width: 22.5px;
  height: 4px;
  background-color: #fff;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.mv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}

.reasons {
  padding: 80px 0 140px;
  background: #FFF4AF;
}
@media screen and (max-width: 768px) {
  .reasons {
    padding: 20px;
  }
}

.reasons__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .reasons__inner {
    max-width: 375px;
    padding: 0;
  }
}

.reasons__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .reasons__header {
    margin-bottom: 20px;
  }
}

.reasons__title {
  font-size: 36px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .reasons__title {
    font-size: 24px;
  }
}

.reasons__line {
  width: 80px;
  height: 3px;
  background-color: #FFAC38;
}
@media screen and (max-width: 768px) {
  .reasons__line {
    width: 60px;
    height: 2px;
  }
}

.reasons__list {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 40px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .reasons__list {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
}

.reasons__item {
  position: relative;
  flex: 1;
  max-width: 360px;
}
@media screen and (max-width: 768px) {
  .reasons__item {
    width: 300px;
    margin: 0 auto;
  }
}

.reasons__number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 80px;
  background-color: #fff;
  border-radius: 120px 120px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
  font-size: 42px;
  font-weight: 700;
  color: #FFAC38;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .reasons__number {
    width: 105.88px;
    height: 60px;
    border-radius: 105.88px 105.88px 0 0;
    font-size: 36px;
    padding-bottom: 0;
  }
}

.reasons__card {
  background-color: #fff;
  border-radius: 20px;
  padding: 50px 30px 0;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  z-index: 1;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .reasons__card {
    padding: 40px 30px;
    margin-top: 56.17px;
  }
}

.reasons__icon {
  width: 120px;
  height: 120px;
}

.reasons__icon img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reasons__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.reasons__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #FFAC38;
  line-height: 1.2;
  text-align: center;
}

.reasons__card-text {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: 1.2;
  text-align: left;
}

.pricing {
  position: relative;
  padding: 80px 0;
}
.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/images/japanese_paper.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .pricing {
    padding: 20px;
  }
}

.pricing__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .pricing__inner {
    max-width: 375px;
    padding: 0;
    text-align: center;
  }
}

.pricing__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .pricing__header {
    margin-bottom: 20px;
  }
}

.pricing__title {
  font-size: 36px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .pricing__title {
    font-size: 24px;
  }
}

.pricing__line {
  width: 80px;
  height: 3px;
  background-color: #FFAC38;
}
@media screen and (max-width: 768px) {
  .pricing__line {
    width: 60px;
    height: 2px;
  }
}

.pricing__subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .pricing__subtitle {
    font-size: 12px;
    margin-bottom: 20px;
  }
}

.pricing__calculation {
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .pricing__calculation {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }
}

.boxx {
  display: flex;
  flex-direction: column;
  background-color: #FFF8DC;
  gap: 20px;
  padding: 40px 40px 20px;
}

.box {
  display: flex;
  align-items: center;
}

.pricing__basic-box {
  background-color: #fff;
  height: inherit;
  border: 2px solid #FFAC38;
  border-radius: 10px;
  width: 267px;
  height: 493px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .pricing__basic-box {
    min-width: auto;
    width: 100%;
  }
}

.pricing__basic-title {
  font-size: 24px;
  font-weight: 700;
  color: #FFAC38;
  line-height: 1.2;
}

.pricing__plus {
  padding: 0 30px;
  width: 25px;
  height: 25px;
  position: relative;
  margin: 0 auto;
}
.pricing__plus::before, .pricing__plus::after {
  content: "";
  position: absolute;
  background-color: #FFAC38;
}
.pricing__plus::before {
  width: 25px;
  height: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pricing__plus::after {
  width: 3px;
  height: 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pricing__equals {
  margin-top: 276px;
  padding: 0 30px;
  width: 25px;
  height: 25px;
  position: relative;
}
.pricing__equals::before, .pricing__equals::after {
  content: "";
  position: absolute;
  background-color: #FFAC38;
}
.pricing__equals::before {
  width: 25px;
  height: 3px;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pricing__equals::after {
  width: 25px;
  height: 3px;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pricing__details-box {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  border: 2px solid #FFAC38;
  border-radius: 10px;
  padding: 20px;
  height: 493px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .pricing__details-box {
    width: 100%;
  }
}

.pricing__details-title {
  font-size: 24px;
  font-weight: 700;
  color: #FFAC38;
  line-height: 1.2;
  margin: 0 0 15px 0;
  text-align: center;
}

.pricing__detail-item {
  background-color: #FAF7EB;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
}
.pricing__detail-item:last-child {
  margin-bottom: 0;
}

.pricing__detail-title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  margin: 0 0 5px 0;
}

.pricing__detail-text {
  font-size: 12px;
  font-weight: 300;
  color: #000000;
  line-height: 1.4;
  margin: 0;
}

.pricing__detail-plus {
  width: 25px;
  height: 25px;
  position: relative;
  margin: 0 auto;
}
.pricing__detail-plus::before, .pricing__detail-plus::after {
  content: "";
  position: absolute;
  background-color: #000;
}
.pricing__detail-plus::before {
  width: 25px;
  height: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pricing__detail-plus::after {
  width: 3px;
  height: 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pricing__total-box {
  border-radius: 10px;
  margin-top: 40px;
  padding: 20px 0;
  height: 489px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 250px;
}
@media screen and (max-width: 768px) {
  .pricing__total-box {
    min-width: auto;
    width: 100%;
  }
}

.pricing__total-icon {
  width: 160px;
  height: auto;
  margin: 0 auto 15px;
}
.pricing__total-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.pricing__total-title {
  font-size: 32px;
  font-weight: 700;
  color: #FFAC38;
  letter-spacing: 0.2rem;
  line-height: 1.2;
  margin: 0 0 15px 0;
}

.pricing__total-button {
  background-color: #1A3477;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.pricing__total-button-highlight {
  color: #FFF4AF;
  border-bottom: 2px solid #FFF4AF;
}

.pricing__note {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.625;
  text-align: left;
}

.plans {
  padding: 80px 0;
  background: #FFF4AF;
}
@media screen and (max-width: 768px) {
  .plans {
    padding: 20px;
  }
}

.plans__inner {
  max-width: 1180px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .plans__inner {
    max-width: 375px;
    padding: 0;
    text-align: center;
  }
}

.plans__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .plans__header {
    margin-bottom: 20px;
  }
}

.plans__title {
  font-size: 36px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .plans__title {
    font-size: 24px;
  }
}

.plans__line {
  width: 80px;
  height: 3px;
  background-color: #FFAC38;
}
@media screen and (max-width: 768px) {
  .plans__line {
    width: 60px;
    height: 2px;
  }
}

.plans__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .plans__list {
    gap: 30px;
  }
}

.plans__wrapper {
  border: 4px solid #FFAC38;
  border-radius: 20px;
  padding: 50px 20px 20px;
  background-color: #FAF7EB;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .plans__wrapper {
    padding: 50px 0 30px;
  }
}

.plans__card-center {
  position: absolute;
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 32px;
  padding: 20px;
  width: 300px;
  height: 80px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 15px;
  background-color: #FFAC38;
  border-radius: 100px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1155px) {
  .plans__card-center {
    top: -4%;
  }
}
@media screen and (max-width: 768px) {
  .plans__card-center {
    width: 200px;
    height: 60px;
    font-size: 24px;
    padding: 10px;
    top: -2%;
  }
}

.plans__family {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .plans__family {
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
}

.plans__card {
  background-color: #fff;
  max-width: 360px;
  border-radius: 20px;
  padding: 50px 10px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .plans__card {
    width: 300px;
    padding: 40px 10px;
    flex: none;
  }
}

.plans__card-icon {
  width: 150px;
  height: 150px;
}

.plans__card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.plans__card-wrapper {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 5px;
}

.plans__card-title {
  font-size: 32px;
  font-weight: 700;
  color: #FFAC38;
  line-height: 1.2;
}

.plans__card-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
}

.plans__prices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.plans__price {
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 48px;
  gap: 10px;
  padding: 0 5px;
}

.price__general {
  gap: 8px;
}

.plans__price-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 125px;
  height: 44px;
  border-radius: 2px;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  border-radius: 2px;
  line-height: 1.2;
  position: relative;
  padding-right: 15px;
  -webkit-clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
          clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
}
@media screen and (max-width: 768px) {
  .plans__price-badge {
    height: 40px;
    width: 92px;
    font-size: 16px;
  }
}

.plans__price-badge--general {
  background-color: #1A3477;
}

.plans__price-badge--member {
  background-color: #947835;
}

.plans__price-amount {
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
}

.amount_general {
  font-size: 32px;
}

.amount_special {
  font-size: 52px;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 768px) {
  .amount_special {
    font-size: 48px;
    line-height: 0.9;
  }
}

.plans__price-unit {
  display: flex;
  flex-direction: column;
  margin-bottom: 4px;
}

.plans__price-excluding-tax {
  font-size: 12px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
}

.plans__price-ten-thousand {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .plans__price-ten-thousand {
    font-size: 16px;
  }
}

.plans__price-tax-included {
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
}

.plans__plan-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 4px 10px;
  border-top: 1px solid #947835;
  border-bottom: 1px solid #947835;
  font-size: 24px;
  font-weight: 500;
  color: #947835;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .plans__plan-badge {
    font-size: 16px;
  }
}

.plans__other {
  display: flex;
  gap: 40px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .plans__other {
    flex-direction: column;
    margin: 0 auto;
  }
}

.plans__card--special {
  width: 380px;
  padding: 50px 10px 40px;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .plans__card--special {
    width: 300px;
    padding: 40px 10px;
    flex: none;
  }
}

.plans__card-header {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plans__card-header .plans__card-title {
  font-size: 32px;
  font-weight: 700;
  color: #FFAC38;
  line-height: 1.2;
}

.member {
  padding: 80px 0;
  background-color: #FAF7EB;
}
@media screen and (max-width: 768px) {
  .member {
    padding: 20px;
  }
}

.member__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .member__inner {
    max-width: 375px;
    padding: 0;
  }
}

.member__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .member__header {
    margin-bottom: 20px;
  }
}

.member__title {
  font-size: 36px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .member__title {
    font-size: 24px;
  }
}

.member__line {
  width: 80px;
  height: 3px;
  background-color: #FFAC38;
}
@media screen and (max-width: 768px) {
  .member__line {
    width: 60px;
    height: 2px;
  }
}

.member__content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px;
  background-color: #1A3477;
  border-radius: 20px;
  border: 2px solid #fff;
}
.member__content::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid #fff;
  border-radius: 10px;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .member__content {
    flex-direction: column;
    padding: 20px;
  }
}

.member__benefits-wrapper {
  display: flex;
  flex-direction: column;
  gap: 300px;
}

.member__benefits {
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 30px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .member__benefits {
    padding: 10px;
  }
}

.member__benefit {
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
  height: 150px;
}
@media screen and (max-width: 768px) {
  .member__benefit {
    gap: 10px;
  }
}

.member__benefit-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  border-radius: 20px 0px 0px 20px;
  width: 100px;
  height: 150px;
  background-color: #947835;
  border: 1px solid #947835;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .member__benefit-badge {
    width: 50px;
    font-size: 20px;
  }
}

.member__benefit-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .member__benefit-content {
    flex-direction: column;
    gap: 20px;
  }
}

.member__benefit-icon {
  width: 130px;
  height: 130px;
}
@media screen and (max-width: 768px) {
  .member__benefit-icon {
    width: 80px;
    height: 80px;
  }
}

.member__benefit-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.member__benefit-title {
  font-size: 40px;
  font-weight: 500;
  color: #000;
  line-height: 1.2;
  text-align: center;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline; /* 下線 */
  -webkit-text-decoration-style: wavy;
          text-decoration-style: wavy; /* 波線 */
  -webkit-text-decoration-color: orange;
          text-decoration-color: orange;
}
@media screen and (max-width: 768px) {
  .member__benefit-title {
    font-size: 20px;
  }
}

.member__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 280px;
  margin: 0 auto;
}

.member__cta-badge {
  display: flex;
  align-items: center;
  gap: 3px;
  width: 100%;
  height: 16px;
}

.member__cta-line {
  width: 8px;
  height: 1px;
  background-color: #fff;
}

.member__cta-text {
  display: block;
  margin: 0 auto;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}

.member__cta-arrow {
  width: 8px;
  height: 13.86px;
  background-color: #fff;
}

.member__cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 415px;
  height: 60px;
  background-color: #54BD82;
  border: 2px solid #54BD82;
  border-radius: 40px;
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .member__cta-button {
    width: 280px;
    height: 60px;
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.cta {
  padding: 80px 0;
  background-image: url("/images/cta-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .cta {
    padding: 20px;
  }
}

.cta__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .cta__inner {
    max-width: 375px;
    padding: 0;
  }
}

.cta__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .cta__header {
    margin-bottom: 20px;
  }
}

.cta__title {
  font-size: 36px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cta__title {
    font-size: 24px;
  }
}

.cta__line {
  width: 80px;
  height: 3px;
  background-color: #FFAC38;
}
@media screen and (max-width: 768px) {
  .cta__line {
    width: 60px;
    height: 2px;
  }
}

.cta__subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .cta__subtitle {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.cta__list {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .cta__list {
    flex-direction: column;
    gap: 20px;
  }
}

.cta__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  border-right: 1px solid #000000;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .cta__item {
    padding: 20px 0;
    border-right: none;
    border-bottom: 1px solid #000000;
    gap: 10px;
    flex: none;
  }
}

.cta__item:last-child {
  border-right: none;
}
@media screen and (max-width: 768px) {
  .cta__item:last-child {
    border-bottom: none;
  }
}

.cta__icon {
  width: 160px;
  height: 160px;
}

.cta__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cta__item-title {
  font-size: 20px;
  font-weight: 500;
  color: #FFAC38;
  line-height: 1.2;
  text-align: center;
}

.cta__item-text {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: 1.2;
}

.cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 60px;
  background-color: #1A3477;
  border: 2px solid #1A3477;
  border-radius: 40px;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta__button-icon {
  width: 20px;
  height: 20px;
  background-image: url("/images/tel-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
}

.cta__line-buttons {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta__line-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 60px;
  background-color: #54BD82;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.cta__line-qr {
  width: 60px;
  height: 60px;
}

.cta__line-qr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.facility {
  padding: 80px 0;
  background-color: #FAF7EB;
}
@media screen and (max-width: 768px) {
  .facility {
    padding: 20px;
  }
}

.facility__inner {
  max-width: 1180px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .facility__inner {
    max-width: 375px;
    padding: 0;
  }
}

.facility__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .facility__header {
    margin-bottom: 20px;
    padding: 0 20px;
  }
}

.facility__title {
  font-size: 36px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .facility__title {
    font-size: 24px;
  }
}

.facility__line {
  width: 80px;
  height: 3px;
  background-color: #FFAC38;
}
@media screen and (max-width: 768px) {
  .facility__line {
    width: 60px;
    height: 2px;
  }
}

.facility__subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .facility__subtitle {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.facility__content {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .facility__content {
    flex-direction: column;
    gap: 30px;
  }
}

.facility__image {
  flex: 1;
  width: 100%;
  height: 426px;
}
@media screen and (max-width: 768px) {
  .facility__image {
    width: 335px;
    height: 300px;
    margin: 0 auto;
  }
}

.facility__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.facility__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .facility__info {
    flex: none;
    gap: 0;
  }
}

.facility__basic {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.facility__basic-text {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  line-height: 1.2;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}
.facility__basic-text::before {
  content: "・";
  margin-right: 8px;
}

.facility__details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .facility__details {
    padding-top: 20px;
  }
}

.facility__details-text {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  line-height: 1.2;
  text-align: left;
}

.facility__details-text-left {
  white-space: nowrap;
}

.facility__company {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.facility__company-item {
  display: flex;
  gap: 10px;
  padding: 23px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .facility__company-item {
    padding: 10px;
    flex-direction: column;
    align-items: center;
  }
}

.facility__company-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.facility__company-label {
  font-size: 20px;
  width: 160px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .facility__company-label {
    width: auto;
    font-size: 16px;
  }
}

.facility__company-text {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  line-height: 1.2;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .facility__company-text {
    font-size: 16px;
    text-align: center;
  }
}

.facility__details-wrapper {
  display: flex;
}

.access {
  padding: 80px 0;
  background-image: url("/images/access-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .access {
    padding: 20px;
  }
}

.access__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .access__inner {
    max-width: 375px;
    padding: 0;
  }
}

.access__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .access__header {
    margin-bottom: 20px;
  }
}

.access__title {
  font-size: 36px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .access__title {
    font-size: 24px;
  }
}

.access__line {
  width: 80px;
  height: 3px;
  background-color: #FFAC38;
}
@media screen and (max-width: 768px) {
  .access__line {
    width: 60px;
    height: 2px;
  }
}

.access__content {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  max-width: 800px;
  gap: 40px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .access__content {
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }
}

.access__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .access__info {
    width: 265px;
    margin: 0 auto;
  }
}

.access__name {
  font-size: 32px;
  font-weight: 300;
  color: #000000;
  line-height: 1.2;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .access__name {
    font-size: 24px;
  }
}

.access__address {
  font-size: 20px;
  font-weight: 300;
  color: #000000;
  line-height: 1.2;
  text-align: left;
}

.access__station {
  font-size: 20px;
  font-weight: 300;
  color: #000000;
  line-height: 1.2;
  text-align: left;
}

.access__map {
  width: 399px;
  height: 305px;
}
@media screen and (max-width: 768px) {
  .access__map {
    width: 100%;
  }
}

.access__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.company {
  padding: 80px 0;
  background: #FFF4AF;
}
@media screen and (max-width: 768px) {
  .company {
    padding: 20px;
  }
}

.company__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .company__inner {
    max-width: 375px;
    padding: 0;
  }
}

.company__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .company__header {
    margin-bottom: 20px;
  }
}

.company__title {
  font-size: 36px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .company__title {
    font-size: 24px;
  }
}

.company__line {
  width: 80px;
  height: 3px;
  background-color: #FFAC38;
}
@media screen and (max-width: 768px) {
  .company__line {
    width: 60px;
    height: 2px;
  }
}

.company__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  width: 630px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .company__content {
    width: 100%;
    padding: 0 10px;
  }
}

.company__item {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .company__item {
    flex-direction: column;
  }
}

.company__label {
  font-size: 18px;
  font-weight: 300;
  color: #000;
  line-height: 1.54;
  letter-spacing: -0.02em;
  text-align: left;
  width: 124px;
}

.company__text {
  font-size: 18px;
  font-weight: 300;
  color: #000;
  line-height: 1.54;
  letter-spacing: -0.02em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .company__text {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

@media screen and (max-width: 768px) {
  .footer__mobile {
    background-image: url(/images/access-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
  }
}

@media screen and (max-width: 768px) {
  .footer__mobile-inner {
    width: 375px;
    padding: 0;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .footer__mobile-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .footer__mobile-info-category {
    border-top: 1px solid #BBBBBB;
  }
}

@media screen and (max-width: 768px) {
  .footer__mobile-info-link {
    position: relative;
    display: block;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 300;
    color: #000;
  }
}

@media screen and (max-width: 768px) {
  .footer__mobile-info-list:last-of-type {
    border-bottom: 1px solid #BBBBBB;
  }
}

@media screen and (max-width: 768px) {
  .footer__mobile-info-link::before {
    position: absolute;
    content: "";
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background-color: #BBBBBB;
    transform: translateY(-50%) rotate(45deg);
    transform-origin: right center;
  }
}

@media screen and (max-width: 768px) {
  .footer__mobile-info-link::after {
    position: absolute;
    content: "";
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background-color: #BBBBBB;
    transform: translateY(-50%) rotate(-45deg);
    transform-origin: right center;
  }
}

.footer {
  padding: 60px 0;
  background-color: #1A3477;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 20px;
  }
}

.footer__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    max-width: 375px;
    padding: 0;
    text-align: center;
  }
}

.footer__logo {
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.footer__content {
  display: flex;
  flex-direction: row;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }
}

.footer__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .footer__info {
    width: 335px;
  }
}

.footer__info-item {
  display: flex;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  line-height: 1.54;
  letter-spacing: -0.02em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .footer__info-item {
    margin: 0 auto;
  }
}

.footer__info-category {
  display: inline-block;
  width: 148px;
}

.footer__info-name {
  display: inline-block;
  width: 372px;
}
@media screen and (max-width: 768px) {
  .footer__info-name {
    width: 335px;
  }
}

.footer__info-text {
  display: inline-block;
  width: 100px;
  color: #fff;
}

.footer__copyright {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
}

.lg2-show {
  display: none;
}
@media screen and (max-width: 1120px) {
  .lg2-show {
    display: flex;
  }
}

@media screen and (max-width: 1120px) {
  .lg2-hide {
    display: none;
  }
}

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

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

.mv-error {
  margin: 200px 0;
}
@media screen and (max-width: 768px) {
  .mv-error {
    margin: 100px 0 20px;
  }
}