@charset "UTF-8";
@media screen and (max-width: 700px) {
  .hidden-sp {
    display: none;
  }
}
@media screen and (min-width: 701px) {
  .hidden-tb {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .hidden-pc {
    display: none;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
}
@media screen and (min-width: 701px) {
  body {
    font-size: 1.25vw;
    font-weight: 700;
  }
}

h3 {
  font-size: 20px;
  font-weight: 700;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, 2px 2px 5px gray; /* グレーの影 */
}
@media screen and (min-width: 701px) {
  h3 {
    font-size: 2.5vw;
  }
}

a:hover {
  opacity: 0.6;
}

.inner {
  padding-block: 50px;
  margin-inline: 20px;
}
@media screen and (min-width: 701px) {
  .inner {
    padding-block: 4.861vw;
    margin-inline: 2.778vw 23.611vw;
  }
}

.header-inner {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 701px) {
  .header-inner {
    padding: 0.694vw 2.083vw;
  }
}

.header-logo img {
  width: 50px;
}
@media screen and (min-width: 701px) {
  .header-logo img {
    width: 6.944vw;
  }
}

.header-nav {
  display: none;
}
@media screen and (min-width: 701px) {
  .header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.778vw;
  }
}

.header-nav__link {
  font-size: 1.389vw;
  color: #594d4d;
  font-weight: 700;
}

.drawer-icon {
  width: 36px;
  height: 21px;
  position: relative;
  z-index: 51;
}
@media screen and (min-width: 701px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 3px;
  border-radius: 6px;
  background: #111;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 9px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 18px;
}

.drawer-content {
  width: 320px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  padding: 86px 40px 40px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  background: rgba(255, 255, 255, 0.7);
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__link {
  display: block;
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: right;
  font-weight: 700;
  letter-spacing: 0.48px;
  font-size: 20px;
}

.fv {
  position: relative;
  color: #594d4d;
}

.fv-inner {
  padding-block: 30px 50px;
  padding-inline: 20px;
  background: url(../img/FV_bg.png) no-repeat center top/cover;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.083vw;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 701px) {
  .fv-inner {
    padding-block: 3.472vw 2.083vw;
    padding-inline: 2.778vw;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.fv-body {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.778vw;
}
.fv-body p {
  font-size: 20px;
  line-height: 1.5em;
  text-align: left;
  font-weight: 600;
}
@media screen and (min-width: 701px) {
  .fv-body p {
    font-size: 2.778vw;
  }
}

.fv-body__cards {
  margin-top: 1.389vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.694vw;
}

.fv-body__card {
  padding-block: 1.389vw;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  border-radius: 50%;
  width: 100px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 701px) {
  .fv-body__card {
    width: 13.056vw;
    height: 10.764vw;
    font-size: 2.5vw;
  }
}

.card1 {
  background: #f23d82;
}

.card2 {
  background: #b827f1;
}

.card3 {
  background: #9cd33d;
}

.fv-img img {
  width: 220px;
  border-radius: 2.083vw;
}
@media screen and (min-width: 701px) {
  .fv-img img {
    width: 31.944vw;
    border-radius: 2.083vw;
  }
}

.fv-img__top {
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}

.fv-img__bottom {
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  z-index: 2;
}

.fv-scroll {
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: blink 1s step-start infinite;
          animation: blink 1s step-start infinite;
}
.fv-scroll img {
  width: 80px;
}
@media screen and (min-width: 701px) {
  .fv-scroll {
    bottom: -2.083vw;
  }
  .fv-scroll img {
    width: 5.556vw;
  }
}

@-webkit-keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
.banner {
  position: fixed;
  bottom: 0;
  z-index: 20;
}
.banner img {
  width: 100%;
}
@media screen and (min-width: 701px) {
  .banner {
    right: 1.389vw;
    bottom: 0.694vw;
    display: none;
  }
  .banner img {
    width: 17.361vw;
  }
}

.banner-inner {
  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;
}
@media screen and (min-width: 701px) {
  .banner-inner {
    -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;
    gap: 20px;
  }
}

@media screen and (min-width: 701px) {
  .banner-sp {
    display: none;
  }
}

.banner-pc {
  display: none;
}
@media screen and (min-width: 701px) {
  .banner-pc {
    display: block;
  }
}

.tokucho {
  background: url(../img/tokucho-bg.jpeg) no-repeat center top/cover;
}
.tokucho h3 {
  color: #464994;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, 2px 2px 5px gray; /* グレーの影 */
}

.tokucho1-container {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.778vw;
}
@media screen and (min-width: 701px) {
  .tokucho1-container {
    margin-top: 2.083vw;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.tokucho1-content {
  padding-block: 1.389vw;
  padding-inline: 0.694vw;
  background: #c1ffc7;
  border-radius: 1.389vw;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  width: 300px;
  height: auto;
}
@media screen and (min-width: 701px) {
  .tokucho1-content {
    width: 21.528vw;
    height: 19.444vw;
  }
}

.tokucho1-content__head {
  font-size: 20px;
  font-weight: 800;
}
.tokucho1-content__head span {
  color: #eb0205;
  font-weight: 700;
  font-size: 24px;
}
@media screen and (min-width: 701px) {
  .tokucho1-content__head {
    font-size: 2.5vw;
  }
  .tokucho1-content__head span {
    font-size: 3.125vw;
  }
}

.tokucho1-content__text {
  margin-top: 1.389vw;
  font-weight: 700;
}
.tokucho1-content__text span {
  color: #eb0205;
  font-weight: 700;
}
.tokucho2 {
  margin-top: 50px;
}
@media screen and (min-width: 701px) {
  .tokucho2 {
    margin-top: 5.556vw;
  }
}

.tokucho2-container {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.389vw;
}
@media screen and (min-width: 701px) {
  .tokucho2-container {
    margin-top: 3.472vw;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.tokucho2-content {
  padding: 20px;
  background: #eefeff;
  color: #40428a;
  border-radius: 1.389vw;
  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;
  gap: 1.042vw;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 300px;
  height: auto;
}
@media screen and (min-width: 701px) {
  .tokucho2-content {
    padding: 1.042vw;
    width: 20.278vw;
    height: 40.278vw;
  }
}

.tokucho2-content__head img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 180px;
  height: 100px;
}
.tokucho2-content__head p {
  font-weight: 700;
  font-size: 20px;
}
@media screen and (min-width: 701px) {
  .tokucho2-content__head img {
    width: 15.278vw;
    height: 13.889vw;
  }
  .tokucho2-content__head p {
    font-size: 2.361vw;
  }
}

.tokucho2-content__text {
  margin-top: 1.389vw;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
}
.tokucho2-content__text span {
  font-weight: 700;
}
@media screen and (min-width: 701px) {
  .tokucho2-content__text {
    font-size: 1.25vw;
  }
}

.service {
  background: url(../img/service-bg.png) no-repeat left/cover;
  color: #05390d;
}

.service-container {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (min-width: 701px) {
  .service-container {
    margin-top: 3.472vw;
    gap: 2.083vw;
  }
}

.service-content {
  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: 2.083vw;
}
.service-content img {
  width: 250px;
  border-radius: 2.083vw;
}
@media screen and (min-width: 701px) {
  .service-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .service-content img {
    width: 27.778vw;
    border-radius: 2.083vw;
  }
}

@media screen and (min-width: 701px) {
  .service-content:nth-of-type(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.service-content__body {
  width: 300px;
}
.service-content__body h4 {
  font-size: 20px;
  font-weight: 700;
}
.service-content__body p {
  margin-top: 1.389vw;
  font-weight: 700;
}
@media screen and (min-width: 701px) {
  .service-content__body {
    width: 27.778vw;
  }
  .service-content__body h4 {
    font-size: 1.806vw;
    font-weight: 700;
  }
  .service-content__body p {
    margin-top: 1.389vw;
    font-weight: 700;
  }
}

.service2 {
  margin-top: 50px;
}
@media screen and (min-width: 701px) {
  .service2 {
    margin-top: 3.472vw;
  }
}

.service2-container {
  margin-top: 3.472vw;
}
.service2-container table {
  margin-inline: auto;
  border-collapse: separate;
  border-spacing: 0.694vw 0.556vw; /* 横20px, 縦8px */
}
.service2-container th {
  width: 100px;
  padding-block: 0.694vw;
  font-weight: 700;
}
.service2-container td {
  width: 250px;
  padding-block: 0.694vw;
  font-weight: 700;
}
.service2-container .tr-yellow {
  background: #eeee91;
}
.service2-container .tr-green {
  background: #7eff92;
}
@media screen and (min-width: 701px) {
  .service2-container th {
    width: 13.889vw;
    padding-block: 0.694vw;
    font-weight: 700;
  }
  .service2-container td {
    width: 38.194vw;
    padding-block: 0.694vw;
    font-weight: 700;
  }
}

.service3 {
  margin-top: 50px;
}
@media screen and (min-width: 701px) {
  .service3 {
    margin-top: 3.472vw;
  }
}

.service3-container {
  margin-top: 2.083vw;
  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: 1.389vw;
}
@media screen and (min-width: 701px) {
  .service3-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.service3-card {
  padding: 10px;
  background: #ecffea;
  border-radius: 2.083vw;
  width: 100%;
  height: 19.444vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.042vw;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.service3-card img {
  height: 10.417vw;
}
.service3-card p {
  font-weight: 700;
}
@media screen and (min-width: 701px) {
  .service3-card {
    padding: 0.694vw;
    -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;
    width: 20.833vw;
    height: 19.444vw;
  }
  .service3-card img {
    height: 10.417vw;
  }
}

.member {
  background: url(../img/member-bg.jpeg) no-repeat center top/cover;
}

.member-container {
  margin-top: 3.472vw;
  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: 20px;
}
@media screen and (min-width: 701px) {
  .member-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.472vw;
  }
}

.member-content img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
@media screen and (min-width: 701px) {
  .member-content img {
    width: 17.361vw;
    height: 17.361vw;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 50%;
  }
}

.member-body__name {
  margin-top: 1.389vw;
}
.member-body__name span {
  font-size: 20px;
  font-weight: 700;
}
.member-body__name p {
  font-weight: 700;
}
@media screen and (min-width: 701px) {
  .member-body__name span {
    font-size: 1.667vw;
    font-weight: 700;
  }
}

.member-body__text {
  margin-top: 2.083vw;
  font-weight: 700;
}

.kuchikomi {
  background: url(../img/kuchikomi-bg.png) repeat center/cover;
}

.kuchikomi-inner h3 {
  color: #086109;
}

.kuchikomi-container {
  margin-top: 2.083vw;
  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;
}
.kuchikomi-container img {
  width: 100%;
}
@media screen and (min-width: 701px) {
  .kuchikomi-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.389vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .kuchikomi-container img {
    width: 23.778vw;
  }
}

.plan {
  background: url(../img/plan-bg.jpeg) no-repeat center/cover;
  color: #452805;
}
.plan p {
  margin-top: 1.389vw;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 701px) {
  .plan p {
    font-size: 1.389vw;
  }
}

.rmt-40 {
  margin-top: 2.778vw;
}

.plan-container {
  margin-top: 2.778vw;
  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;
}
.plan-container img {
  width: 100%;
}
@media screen and (min-width: 701px) {
  .plan-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.389vw;
  }
  .plan-container img {
    width: 23.778vw;
  }
}

.cta {
  padding-block: 6.944vw;
  background: url(../img/ctaa-bg.jpeg) no-repeat center/cover;
}
@media screen and (min-width: 701px) {
  .cta {
    padding-inline: 5.556vw;
  }
}

.cta-content {
  padding-block: 4.861vw;
  background: rgba(255, 242, 232, 0.5);
}
.cta-content img {
  margin-top: 1.389vw;
}
.cta-content p {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 701px) {
  .cta-content p {
    font-size: 2.083vw;
  }
}

.qa {
  position: relative;
  background: url(../img/qa-bg.png) no-repeat center/cover;
}
.qa::before {
  content: "";
  background: #c6f3e8;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: -1;
}

.qa-container {
  width: 100%;
}

.qa-l {
  margin-top: 10px;
  text-align: left;
}
.qa-l img {
  width: 100%;
}
@media screen and (min-width: 701px) {
  .qa-l img {
    width: 50vw;
  }
}

.qa-r {
  text-align: right;
}
.qa-r img {
  width: 100%;
}
@media screen and (min-width: 701px) {
  .qa-r img {
    width: 48.611vw;
  }
}

.company {
  background: rgb(255, 242, 232);
}
.company table {
  margin-top: 3.472vw;
  margin-inline: auto;
  border-collapse: separate;
  border-spacing: 0.694vw 0.556vw; /* 横20px, 縦8px */
}
.company th {
  padding-block: 0.347vw;
  color: #fff;
  background: #b827fa;
  width: 120px;
  border-radius: 0.694vw;
  vertical-align: middle;
  font-weight: 700;
}
.company td {
  padding-inline: 0.694vw;
  vertical-align: middle;
  background: #fff;
  text-align: center;
  width: 250px;
  -webkit-box-shadow: 4px 4px 7px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 4px 4px 7px 0px rgba(0, 0, 0, 0.4);
  font-weight: 700;
}
@media screen and (min-width: 701px) {
  .company th {
    width: 20.833vw;
  }
  .company td {
    width: 48.611vw;
  }
}

.map {
  margin-top: 30px;
}
.map iframe {
  width: 300px;
  height: 230px;
}
@media screen and (min-width: 701px) {
  .map {
    margin-top: 2.083vw;
  }
  .map iframe {
    width: 48.611vw;
    height: 27.778vw;
  }
}

.footer {
  padding-block: 30px;
}
@media screen and (min-width: 701px) {
  .footer {
    padding-block: 3.472vw;
  }
}

.footer-nav {
  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;
}
@media screen and (min-width: 701px) {
  .footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0.694vw;
  }
}

.footer-nav__link {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.694vw;
  font-weight: 700;
}
@media screen and (min-width: 701px) {
  .footer-nav__link {
    font-size: 1.389vw;
  }
  .footer-nav__link::after {
    content: "/";
  }
  .footer-nav__link:nth-of-type(4)::after {
    content: "";
  }
}

.footer-logo {
  margin-top: 2.083vw;
}
.footer-logo img {
  width: 100px;
}
@media screen and (min-width: 701px) {
  .footer-logo img {
    width: 8.333vw;
  }
}