@charset "UTF-8";
/* 背景スクロール無効 */
body.no-scroll {
  overflow: hidden;
}

.fade-header {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  position: fixed;
  top: 2%;
  width: 100%;
  z-index: 1000;
}
.fade-header.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ヘッダー */
header .header-list {
  height: 10vh;
  width: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.9019607843);
  padding: 0 3%;
  margin: auto;
  border-radius: 10px;
}
header .header-list .logo {
  width: 15%;
  margin: auto;
}
header .header-list .logo a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
  white-space: nowrap;
}
header .header-list .logo a h3 {
  margin: 0 3%;
}
header .header-list nav {
  width: 85%;
  margin: auto;
}
header .header-list nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
header .header-list nav ul li .icon-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
header .header-list nav ul li .icon-link img {
  width: 30px;
}
header .header-list nav ul li .icon-link .icon-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  white-space: nowrap;
  gap: 7.5px;
}
header .header-list nav ul li .icon-link .icon-item p {
  font-size: 1.8rem;
}
header .header-list nav ul li .icon-link .icon-item span {
  font-size: 1rem;
  color: #C6C6C6;
  font-family: "Myriad Pro";
  padding-left: 4%;
}
header .header-list nav ul li .icon-link:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (min-width: 768px) and (max-width: 1100px) {
  header .header-list {
    display: none;
  }
  .h-list {
    display: block;
  }
  .h-list .h-item {
    position: relative;
    width: auto;
    text-align: right;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    counter-increment: item;
    right: 20px;
    top: 20px;
  }
  .h-list .h-item .menu-trigger {
    position: relative;
    width: 40px;
    height: 30px;
    background: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
  }
  .h-list .h-item .menu-trigger span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #022542;
    border-radius: 4px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 2;
  }
  .h-list .h-item .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .h-list .h-item .menu-trigger span:nth-of-type(2) {
    top: 13.5px;
  }
  .h-list .h-item .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .h-list .h-item .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(11px) rotate(-45deg);
            transform: translateY(11px) rotate(-45deg);
  }
  .h-list .h-item .menu-trigger.active span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    -webkit-animation: active-menu05-bar02 0.8s forwards;
            animation: active-menu05-bar02 0.8s forwards;
  }
  .h-list .h-item .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-16px) rotate(45deg);
            transform: translateY(-16px) rotate(45deg);
  }
  .h-list .sp-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    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;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
    background-color: #FEF3FA;
    background-image: url(../img/fv/background-img.png), url(../img/fv/background-img.png);
    background-repeat: no-repeat, no-repeat;
    background-position: left bottom, right top;
  }
  .h-list .sp-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 90%;
    height: 75%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .h-list .sp-menu ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 50%;
  }
  .h-list .sp-menu ul li .icon-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .h-list .sp-menu ul li .icon-link .icon-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    white-space: nowrap;
    gap: 5%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .h-list .sp-menu ul li .icon-link .icon-item p {
    font-size: 1.6rem;
    margin-bottom: 5px;
    font-weight: 600;
  }
  .h-list .sp-menu ul li .icon-link .icon-item span {
    font-size: 1.2rem;
    color: #ada3a3;
    font-family: "Myriad Pro";
    padding-left: 2%;
  }
  .h-list .sp-menu ul::before {
    content: "";
    position: absolute;
    top: 10%;
    left: -14%;
    width: 500px;
    height: 600px;
    background-color: #ECB7D2;
    -webkit-filter: blur(125px);
    filter: blur(235px);
    border-radius: 50%;
    z-index: -1;
  }
  .h-list .sp-menu.active {
    pointer-events: auto;
    opacity: 1;
  }
  @-webkit-keyframes active-menu05-bar02 {
    100% {
      height: 0;
    }
  }
  @keyframes active-menu05-bar02 {
    100% {
      height: 0;
    }
  }
}
@media (max-width: 767px) {
  header .header-list {
    display: none;
  }
  .h-list {
    display: block;
  }
  .h-list .h-item {
    position: relative;
    width: auto;
    text-align: right;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    counter-increment: item;
    right: 20px;
    top: 20px;
  }
  .h-list .h-item .menu-trigger {
    position: relative;
    width: 40px;
    height: 30px;
    background: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
  }
  .h-list .h-item .menu-trigger span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #022542;
    border-radius: 4px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 2;
  }
  .h-list .h-item .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .h-list .h-item .menu-trigger span:nth-of-type(2) {
    top: 13.5px;
  }
  .h-list .h-item .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .h-list .h-item .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(11px) rotate(-45deg);
            transform: translateY(11px) rotate(-45deg);
  }
  .h-list .h-item .menu-trigger.active span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    -webkit-animation: active-menu05-bar02 0.8s forwards;
            animation: active-menu05-bar02 0.8s forwards;
  }
  .h-list .h-item .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-16px) rotate(45deg);
            transform: translateY(-16px) rotate(45deg);
  }
  .h-list .sp-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    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;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
    background-color: #FEF3FA;
    background-image: url(../img/fv/background-img.png), url(../img/fv/background-img.png);
    background-repeat: no-repeat, no-repeat;
    background-position: left bottom, right top;
  }
  .h-list .sp-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 90%;
    height: 75%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .h-list .sp-menu ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 50%;
  }
  .h-list .sp-menu ul li .icon-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .h-list .sp-menu ul li .icon-link .icon-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    white-space: nowrap;
    gap: 5%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .h-list .sp-menu ul li .icon-link .icon-item p {
    font-size: 1.6rem;
    margin-bottom: 5px;
    font-weight: 600;
  }
  .h-list .sp-menu ul li .icon-link .icon-item span {
    font-size: 1.2rem;
    color: #ada3a3;
    font-family: "Myriad Pro";
    padding-left: 2%;
  }
  .h-list .sp-menu ul::before {
    content: "";
    position: absolute;
    top: 10%;
    left: -14%;
    width: 500px;
    height: 600px;
    background-color: #ECB7D2;
    -webkit-filter: blur(125px);
    filter: blur(235px);
    border-radius: 50%;
    z-index: -1;
  }
  .h-list .sp-menu.active {
    pointer-events: auto;
    opacity: 1;
  }
  @-webkit-keyframes active-menu05-bar02 {
    100% {
      height: 0;
    }
  }
  @keyframes active-menu05-bar02 {
    100% {
      height: 0;
    }
  }
}
main {
  /* トップへ戻る */
}
main .top-arrow {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 2px;
  height: 50px;
  background-color: #022542;
  border-radius: 9999px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
}
main .top-arrow::before, main .top-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 9px;
  background-color: #022542;
  border-radius: 9999px;
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
}
main .top-arrow::before {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
main .top-arrow::after {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}
main .top-arrow.visible {
  opacity: 1;
  visibility: visible;
}

/* フッター */
footer .footer-main {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 75px auto;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
footer .footer-main .footer-content {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer .footer-main .footer-content .footer-info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5%;
}
footer .footer-main .footer-content .footer-info .footer-log {
  width: 20%;
  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-right: 5%;
}
footer .footer-main .footer-content .footer-info .footer-log .footer-azalea-log {
  margin-bottom: 30%;
}
footer .footer-main .footer-content .footer-info .footer-log img {
  width: 100%;
}
footer .footer-main .footer-content .footer-info .footer-details .footer-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 600;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 3%;
}
footer .footer-main .footer-content .footer-info .footer-details .footer-address h3 {
  line-height: 2;
  font-size: 1.1vw;
}
footer .footer-main .footer-content .footer-info .footer-details .footer-address .tel {
  font-size: 1.5vw;
  color: #DC5096;
  line-height: 1.5;
}
footer .footer-main .footer-content .footer-info .footer-details .footer-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .footer-main .footer-content .footer-info .footer-details .footer-menu ul li {
  width: 33%;
  margin: 1.5% 0;
}
footer .footer-main .footer-content .footer-info .footer-details .footer-menu ul li .footer-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
footer .footer-main .footer-content .footer-info .footer-details .footer-menu ul li .footer-link .footer-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  white-space: nowrap;
  gap: 5%;
}
footer .footer-main .footer-content .footer-info .footer-details .footer-menu ul li .footer-link .footer-item p {
  font-size: 1.1vw;
}
footer .footer-main .footer-content .footer-info .footer-details .footer-menu ul li .footer-link .footer-item span {
  font-size: 0.9rem;
  color: #C6C6C6;
  font-family: "Myriad Pro";
  padding-left: 4%;
}
footer .footer-main .footer-content .footer-partner-logo {
  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;
  width: 100%;
}
footer .footer-main .footer-content .footer-partner-logo .partner-link {
  width: 15%;
}
footer .footer-main .footer-content .footer-partner-logo .partner-link img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer-main .footer-map {
  width: 35%;
  aspect-ratio: 4/3;
}
footer .footer-main .footer-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}
footer .copyright {
  background-color: #FFCFDB;
  text-align: center;
  padding: 25px 0;
}
footer .copyright small {
  font-size: 1.2rem;
  color: #FFFFFF;
  font-family: "Myriad Pro";
}

@media (min-width: 768px) and (max-width: 1100px) {
  footer .footer-main {
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 75px auto 25px;
  }
  footer .footer-main .footer-content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-main .footer-content .footer-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 5%;
  }
  footer .footer-main .footer-content .footer-info .footer-log {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  footer .footer-main .footer-content .footer-info .footer-log .footer-azalea-log {
    margin-bottom: 25px;
  }
  footer .footer-main .footer-content .footer-info .footer-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  footer .footer-main .footer-content .footer-info .footer-details .footer-address h3 {
    line-height: 2;
    font-size: 2vw;
  }
  footer .footer-main .footer-content .footer-info .footer-details .footer-address .tel {
    font-size: 2.5vw;
    margin-right: 10%;
  }
  footer .footer-main .footer-content .footer-info .footer-details .footer-menu ul li .footer-link .footer-item p {
    font-size: 1.75vw;
  }
  footer .footer-main .footer-content .footer-partner-logo {
    width: 90%;
    margin: 0 auto 25px;
  }
  footer .footer-main .footer-map {
    width: 100%;
    aspect-ratio: 4/3;
  }
  footer .footer-main .footer-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
  }
  footer .copyright {
    background-color: #FFCFDB;
    text-align: center;
    padding: 25px 0;
  }
  footer .copyright small {
    font-size: 1.2rem;
    color: #FFFFFF;
    font-family: "Myriad Pro";
  }
}
@media (max-width: 767px) {
  footer .footer-main {
    width: 89%;
    display: block;
    margin: 37.5px auto;
  }
  footer .footer-main .footer-content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10%;
  }
  footer .footer-main .footer-content .footer-info {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  footer .footer-main .footer-content .footer-info .footer-log {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 46%;
    margin: 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  footer .footer-main .footer-content .footer-info .footer-log .footer-azalea-log {
    width: 50%;
    margin-bottom: 0;
  }
  footer .footer-main .footer-content .footer-info .footer-log .footer-azalea-log img {
    width: 100%;
  }
  footer .footer-main .footer-content .footer-info .footer-log .footer-company-logo {
    width: 45%;
    padding-bottom: 5%;
  }
  footer .footer-main .footer-content .footer-info .footer-log .footer-company-logo img {
    width: 80%;
  }
  footer .footer-main .footer-content .footer-info .footer-details {
    width: 60%;
  }
  footer .footer-main .footer-content .footer-info .footer-details .footer-address {
    -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;
    font-weight: 300;
  }
  footer .footer-main .footer-content .footer-info .footer-details .footer-address h3 {
    line-height: 2.5rem;
    font-size: 1.2rem;
  }
  footer .footer-main .footer-content .footer-info .footer-details .footer-address .tel {
    font-size: 1.9rem;
  }
  footer .footer-main .footer-content .footer-info .footer-details .footer-address .tel span {
    margin: 0px;
  }
  footer .footer-main .footer-content .footer-info .footer-details .footer-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .footer-main .footer-content .footer-info .footer-details .footer-menu ul li {
    width: 50%;
  }
  footer .footer-main .footer-content .footer-info .footer-details .footer-menu ul li .footer-link .footer-item p {
    font-size: 1.2rem;
  }
  footer .footer-main .footer-content .footer-info .footer-details .footer-menu ul li .footer-link .footer-item span {
    font-size: 0.7rem;
    padding-left: 2%;
  }
  footer .footer-main .footer-content .footer-sp-menu {
    width: 100%;
    margin: auto;
  }
  footer .footer-main .footer-content .footer-sp-menu nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-column-gap: 5%;
       -moz-column-gap: 5%;
            column-gap: 5%;
  }
  footer .footer-main .footer-content .footer-sp-menu nav ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 15px;
    width: 30%;
  }
  footer .footer-main .footer-content .footer-sp-menu nav ul li .icon-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
  }
  footer .footer-main .footer-content .footer-sp-menu nav ul li .icon-link .icon-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    white-space: nowrap;
    gap: 5%;
  }
  footer .footer-main .footer-content .footer-sp-menu nav ul li .icon-link .icon-item p {
    font-size: 1.2rem;
  }
  footer .footer-main .footer-content .footer-sp-menu nav ul li .icon-link .icon-item span {
    font-size: 0.8rem;
    color: #C6C6C6;
    font-family: "Myriad Pro";
    padding-left: 2%;
  }
  footer .footer-main .footer-content .footer-partner-logo {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  footer .footer-main .footer-content .footer-partner-logo a {
    width: 25%;
    margin: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  footer .footer-main .footer-content .footer-partner-logo a .cfg {
    width: 100%;
  }
  footer .footer-main .footer-content .footer-partner-logo a .intl {
    width: 90%;
  }
  footer .footer-main .footer-content .footer-partner-logo a .mk {
    width: 95%;
  }
  footer .footer-main .footer-map {
    width: 100%;
    aspect-ratio: 4/3;
  }
  footer .footer-main .footer-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  footer .copyright {
    background-color: #FFCFDB;
    text-align: center;
    padding: 10px 0;
  }
  footer .copyright small {
    font-size: 0.8rem;
    color: #FFFFFF;
    font-family: "Myriad Pro";
  }
}
html {
  font-family: "Zen Maru Gothic", serif;
  color: #022542;
  /* メイン */
}
html ._pc {
  display: block;
}
html ._sp {
  display: none;
}
html main {
  background-color: rgba(255, 207, 219, 0.1490196078);
  padding-bottom: 250px;
  /* お知らせ */
  /* アゼリア館について */
  /* サービス */
  /* 栄養と愛の食卓 */
  /* 施設案内 */
}
html main section {
  padding: 200px 0;
}
html main .title {
  width: 100%;
  margin-bottom: 3%;
  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;
}
html main .title img {
  width: 2%;
  margin-bottom: 10px;
}
html main .title h3 {
  font-size: 4rem;
  color: #E69460;
  margin-bottom: 5px;
  font-weight: 600;
}
html main .title p {
  font-size: 1.6rem;
  color: #7E5A62;
  letter-spacing: 0.1rem;
  font-family: "Myriad Pro";
}
html main .first-view {
  width: 100%;
  height: 100vh;
  margin: auto;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: url(../img/fv/background-img.png) no-repeat left bottom, url(../img/fv/background-img.png) no-repeat right top;
  background-position: 0% 105%, 95% -15%;
}
html main .first-view .fv-content {
  width: 20%;
  min-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 2% auto;
  z-index: 1;
}
html main .first-view .fv-content .fv-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
html main .first-view .fv-content .fv-logo p {
  font-family: "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 3%;
}
html main .first-view .fv-content .fv-menu {
  margin-bottom: 15%;
}
html main .first-view .fv-content .fv-menu nav ul li {
  margin-bottom: 50px;
}
html main .first-view .fv-content .fv-menu nav ul li .icon-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
html main .first-view .fv-content .fv-menu nav ul li .icon-link .icon-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  white-space: nowrap;
  gap: 7.5px;
}
html main .first-view .fv-content .fv-menu nav ul li .icon-link .icon-item p {
  font-size: 1.9rem;
}
html main .first-view .fv-content .fv-menu nav ul li .icon-link .icon-item span {
  font-size: 1rem;
  color: #C6C6C6;
  font-family: "Myriad Pro";
  padding-left: 4%;
}
html main .first-view .fv-content .fv-menu nav ul li .icon-link img {
  width: 30px;
}
html main .first-view .fv-content .fv-menu nav ul li .icon-link:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
html main .first-view .fv-content .fv-menu nav ul li:last-child {
  margin-bottom: 0;
}
html main .first-view .fv-content .fv-address {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 1.8rem;
  position: relative;
}
html main .first-view .fv-content .fv-address h3 {
  line-height: 3rem;
}
html main .first-view .fv-content .fv-address .tel p {
  font-size: 2rem;
  line-height: 4rem;
}
html main .first-view .fv-content .fv-address .tel h3 {
  font-size: 2.5rem;
  color: #DC5096;
  line-height: 3rem;
}
html main .first-view .fv-content .fv-address::after {
  content: "";
  background: url(../img/fv/background-address-img.png);
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  padding: 10px 18%;
  bottom: -22%;
  right: 47%;
  -webkit-transform: scale(2.3);
          transform: scale(2.3);
  z-index: -1;
}
html main .first-view .fv-main {
  width: 70%;
  margin-top: 5%;
}
html main .first-view .fv-main .fv-slider {
  position: relative;
  width: 100%;
}
html main .first-view .fv-main .items {
  position: relative;
  overflow: hidden;
  width: 83%;
  padding-bottom: 85vh;
  border-radius: 30px;
  background-color: #fff;
}
html main .first-view .fv-main .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 3s ease-out, -webkit-transform 10s ease-out;
  transition: opacity 3s ease-out, -webkit-transform 10s ease-out;
  transition: opacity 3s ease-out, transform 10s ease-out;
  transition: opacity 3s ease-out, transform 10s ease-out, -webkit-transform 10s ease-out;
}
html main .first-view .fv-main .item.next {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
html main .first-view .fv-main .item.current {
  opacity: 1;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: opacity 1s ease-in, -webkit-transform 10s ease-in;
  transition: opacity 1s ease-in, -webkit-transform 10s ease-in;
  transition: opacity 1s ease-in, transform 10s ease-in;
  transition: opacity 1s ease-in, transform 10s ease-in, -webkit-transform 10s ease-in;
}
html main .first-view .fv-main .item.fade-out {
  opacity: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 3s ease-out, -webkit-transform 10s ease-out;
  transition: opacity 3s ease-out, -webkit-transform 10s ease-out;
  transition: opacity 3s ease-out, transform 10s ease-out;
  transition: opacity 3s ease-out, transform 10s ease-out, -webkit-transform 10s ease-out;
}
html main .first-view .fv-main .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html main .first-view .fv-main .buttons {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
}
html main .first-view .fv-main .button {
  width: 32px;
  height: 32px;
  border: none;
  outline: none;
  padding: 0;
  background: transparent center no-repeat;
  cursor: pointer;
  opacity: 0.4;
}
html main .first-view .fv-main .dots {
  position: absolute;
  bottom: 1%;
  right: 10%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  margin-top: 10px;
}
html main .first-view .fv-main .dot {
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 0;
  background: #c6c6c6;
  cursor: pointer;
  -webkit-transition: background 0.4s ease-in-out, opacity 0.4s ease-in-out;
  transition: background 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
html main .first-view .fv-main .dot:nth-child(n+2) {
  margin-left: 10px;
}
html main .first-view .fv-main .dot.current {
  background: #DC5096;
}
html main .first-view .fv-main .texts {
  position: absolute;
  z-index: 10;
  width: 95%;
  height: 100%;
  margin-top: -5%;
}
html main .first-view .fv-main .texts .text {
  width: 100%;
  position: absolute;
  -webkit-transition: opacity 2s ease-in-out, -webkit-transform 10s ease-in-out;
  transition: opacity 2s ease-in-out, -webkit-transform 10s ease-in-out;
  transition: opacity 2s ease-in-out, transform 10s ease-in-out;
  transition: opacity 2s ease-in-out, transform 10s ease-in-out, -webkit-transform 10s ease-in-out;
  opacity: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
html main .first-view .fv-main .texts .text.current {
  opacity: 1;
}
html main .first-view .fv-main .texts .text h3 {
  font-size: 4.8rem;
  line-height: 9rem;
  color: #DC5096;
  margin-left: 1.5%;
}
html main .first-view .fv-main .texts .text p {
  font-size: 2.4rem;
  line-height: 7rem;
  color: #022542;
}
html main .first-view .fv-main .sunlight-box {
  position: absolute;
  top: 0;
  top: -80%;
  left: -58%;
  mix-blend-mode: screen;
}
html main .first-view .fv-main .sunlight-box .sunlight {
  display: none;
  position: absolute;
  mix-blend-mode: screen;
}
html main .first-view .fv-main .sunlight-box .sunlight img {
  -webkit-transform: rotate(356deg);
          transform: rotate(356deg);
  opacity: 1;
}
html main .first-view .fv-main .tests {
  position: absolute;
  top: 0;
  top: -80%;
  opacity: 1;
  right: -45%;
}
html main::before {
  content: "";
  position: absolute;
  top: -5%;
  left: -5%;
  width: 500px;
  height: 300px;
  background-color: #ECB7D2;
  -webkit-filter: blur(125px);
          filter: blur(125px);
  border-radius: 50%;
}
html main section.news {
  width: 100%;
  margin: auto;
}
html main section.news .news-list {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 3% auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
html main section.news .news-list .news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 45%;
  margin: 2% 0;
  background-color: #FCEBF6;
  border-radius: 13px;
  padding: 2%;
  -webkit-box-shadow: 0 4px 9px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 9px rgba(0, 0, 0, 0.2);
}
html main section.news .news-list .news-item .news-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2%;
}
html main section.news .news-list .news-item .news-info .news-date {
  font-family: "Myriad Pro";
  font-size: 1.6rem;
  color: #3983B5;
}
html main section.news .news-list .news-item .news-info .news-label {
  font-size: 1.6rem;
  padding: 0.75% 5%;
  background-color: #DC5096;
  border-radius: 13px;
  color: #FFFFFF;
}
html main section.news .news-list .news-item .news-info .news-label.meal {
  background-color: #E69460;
}
html main section.news .news-list .news-item .news-info .news-label.care {
  background-color: #B4C789;
}
html main section.news .news-list .news-item .news-info .news-label.blue {
  background-color: #D86682;
}
html main section.news .news-list .news-item .news-info .news-label.nursing {
  background-color: #9FA4E2;
}
html main section.news .news-list .news-item .news-info .news-label.general {
  background-color: #C6C6C6;
}
html main section.news .news-list .news-item .news-title {
  font-size: 1.9rem;
  color: #022542;
}
html main section.news .news-action {
  width: 100%;
  text-align: center;
}
html main section.news .news-action .news-button {
  display: inline-block;
  font-size: 1.6rem;
  padding: 15px 25px;
  background-color: #F96EAA;
  color: #fff;
  border-radius: 5px 25px 25px 5px;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
html main section.news .news-action .news-button:hover {
  background-color: #b6447a;
}
html main section.news .news-action .news-button .arrow {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 2px;
  margin: 5px 0 5px 15px;
  border-radius: 9999px;
  background-color: #ffffff;
}
html main section.news .news-action .news-button .arrow::before, html main section.news .news-action .news-button .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 9px;
  height: 2px;
  border-radius: 9999px;
  background-color: #ffffff;
  -webkit-transform-origin: calc(100% - 1px) 50%;
          transform-origin: calc(100% - 1px) 50%;
}
html main section.news .news-action .news-button .arrow::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
html main section.news .news-action .news-button .arrow::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
html main section.azalea-about {
  width: 100%;
  margin: auto;
  background-color: #FCEBF6;
}
html main section.azalea-about .azalea-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  margin: auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
html main section.azalea-about .azalea-feature .feature-wrapper {
  position: relative;
  display: inline-block;
  margin-top: -3%;
}
html main section.azalea-about .azalea-feature .feature-wrapper .circle-blur {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ECB7D2;
  -webkit-filter: blur(60px);
          filter: blur(60px);
  z-index: 0;
}
html main section.azalea-about .azalea-feature .feature-wrapper .feature {
  position: relative;
  z-index: 1;
}
html main section.azalea-about .azalea-feature .azalea-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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 55%;
  margin-left: 5%;
}
html main section.azalea-about .azalea-feature .azalea-content .azalea-text {
  font-size: 1.8rem;
  line-height: 4rem;
}
html main section.azalea-about .azalea-feature .azalea-content .azalea-action {
  width: 100%;
}
html main section.azalea-about .azalea-feature .azalea-content .azalea-action .azalea-button {
  display: inline-block;
  font-size: 1.6rem;
  padding: 15px 25px;
  background-color: #F96EAA;
  color: #fff;
  border-radius: 5px 25px 25px 5px;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
html main section.azalea-about .azalea-feature .azalea-content .azalea-action .azalea-button:hover {
  background-color: #b6447a;
}
html main section.azalea-about .azalea-feature .azalea-content .azalea-action .azalea-button .arrow {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 2px;
  margin: 5px 0 5px 15px;
  border-radius: 9999px;
  background-color: #ffffff;
}
html main section.azalea-about .azalea-feature .azalea-content .azalea-action .azalea-button .arrow::before, html main section.azalea-about .azalea-feature .azalea-content .azalea-action .azalea-button .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 9px;
  height: 2px;
  border-radius: 9999px;
  background-color: #ffffff;
  -webkit-transform-origin: calc(100% - 1px) 50%;
          transform-origin: calc(100% - 1px) 50%;
}
html main section.azalea-about .azalea-feature .azalea-content .azalea-action .azalea-button .arrow::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
html main section.azalea-about .azalea-feature .azalea-content .azalea-action .azalea-button .arrow::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
html main section.service {
  width: 100%;
  background-color: #FCEBF6;
}
html main section.service .service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 70%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: auto;
}
html main section.service .service-list .service-item {
  width: 14%;
  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;
  border-radius: 150px;
  -webkit-transition: background-color 1s ease;
  transition: background-color 1s ease;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
html main section.service .service-list .service-item .service-number {
  font-size: 3.6rem;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
  margin: 5px 0;
}
html main section.service .service-list .service-item .service-line {
  margin: 25px 0;
}
html main section.service .service-list .service-item .service-title {
  font-size: 1.8rem;
  margin: 25px 0;
}
html main section.service .service-list .service-item .service-image {
  margin: 5px 0;
  width: 95%;
}
html main section.service .service-list .service-item:hover {
  background-color: #ffffff;
}
html main section.meal {
  width: 80%;
  margin: auto;
}
html main section.meal .meal-text {
  width: 80%;
  margin: auto;
  text-align: center;
  font-size: 1.8rem;
  line-height: 4rem;
}
html main section.meal .meal-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 5% auto;
}
html main section.meal .meal-list .meal-item {
  width: 25%;
  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;
  background-color: #FCEBF6;
  border-radius: 300px 300px 10px 10px;
  padding: 2.5% 0;
}
html main section.meal .meal-list .meal-item .meal-title {
  margin: 10% 0;
  font-size: 1.8rem;
}
html main section.meal .meal-list .meal-item .circle-divider {
  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;
  gap: 5px;
  /* 丸同士の間隔を調整 */
  margin-bottom: 10%;
}
html main section.meal .meal-list .meal-item .circle-divider .circle {
  width: 7.5px;
  height: 7.5px;
  border-radius: 50%;
  background-color: #DC5096;
}
html main section.meal .meal-list .meal-item .meal-image {
  width: 80%;
}
html main section.meal .meal-action {
  width: 100%;
  text-align: center;
}
html main section.meal .meal-action .meal-button {
  display: inline-block;
  font-size: 1.6rem;
  padding: 15px 25px;
  background-color: #F96EAA;
  color: #fff;
  border-radius: 5px 25px 25px 5px;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
html main section.meal .meal-action .meal-button:hover {
  background-color: #b6447a;
}
html main section.meal .meal-action .meal-button .arrow {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 2px;
  margin: 5px 0 5px 15px;
  border-radius: 9999px;
  background-color: #ffffff;
}
html main section.meal .meal-action .meal-button .arrow::before, html main section.meal .meal-action .meal-button .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 9px;
  height: 2px;
  border-radius: 9999px;
  background-color: #ffffff;
  -webkit-transform-origin: calc(100% - 1px) 50%;
          transform-origin: calc(100% - 1px) 50%;
}
html main section.meal .meal-action .meal-button .arrow::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
html main section.meal .meal-action .meal-button .arrow::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
html main section.facility-guide {
  width: 80%;
  margin: auto;
  background-color: white;
  border-radius: 50px;
}
html main section.facility-guide .facility-text {
  width: 70%;
  margin: auto;
  text-align: center;
  font-size: 1.8rem;
  line-height: 4rem;
}
html main section.facility-guide .custom-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5%;
  margin: 4% 0;
}
html main section.facility-guide .custom-dots .dashed-circle {
  width: 125px;
  height: 125px;
  border: 2px dashed #DC5096;
  background-color: #ECB7D2;
  border-radius: 50%;
  text-align: center;
  line-height: 125px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 1.6rem;
}
@media (hover: hover) {
  html main section.facility-guide .custom-dots .dashed-circle:hover {
    background-color: #F96EAA;
    border: 2px dashed #DC5096;
    color: #fff;
  }
}
html main section.facility-guide .slider {
  width: 100%;
  margin: auto;
}
html main section.facility-guide .facility-action {
  width: 100%;
  text-align: center;
  margin: 7.5% 0 0;
}
html main section.facility-guide .facility-action .facility-button {
  display: inline-block;
  font-size: 1.6rem;
  padding: 15px 25px;
  background-color: #E69460;
  color: #fff;
  border-radius: 5px 25px 25px 5px;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
html main section.facility-guide .facility-action .facility-button:hover {
  background-color: #c27545;
}
html main section.facility-guide .facility-action .facility-button .arrow {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 2px;
  margin: 5px 0 5px 15px;
  border-radius: 9999px;
  background-color: #ffffff;
}
html main section.facility-guide .facility-action .facility-button .arrow::before, html main section.facility-guide .facility-action .facility-button .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 9px;
  height: 2px;
  border-radius: 9999px;
  background-color: #ffffff;
  -webkit-transform-origin: calc(100% - 1px) 50%;
          transform-origin: calc(100% - 1px) 50%;
}
html main section.facility-guide .facility-action .facility-button .arrow::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
html main section.facility-guide .facility-action .facility-button .arrow::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 768px) and (max-width: 1100px) {
  html ._pc {
    display: none;
  }
  html ._sp {
    display: none;
  }
  html ._tab {
    display: block;
  }
  html .fade-header {
    top: 0;
  }
  html main {
    padding-bottom: 100px;
    /* お知らせ */
    /* アゼリア館について */
    /* サービス */
    /* 栄養と愛の食卓 */
    /* 施設案内 */
  }
  html main section {
    padding: 60px 0;
  }
  html main::before {
    top: 0%;
    left: 0%;
    width: 500px;
    height: 300px;
    -webkit-filter: blur(125px);
            filter: blur(125px);
  }
  html main .title {
    margin-bottom: 10%;
  }
  html main .title img {
    width: 5%;
  }
  html main .title h3 {
    font-size: 5rem;
  }
  html main .title p {
    font-size: 2rem;
  }
  html main .first-view .fv-content {
    width: 20%;
  }
  html main .first-view .fv-content .fv-address {
    font-size: 1.5vw;
  }
  html main .first-view .fv-content .fv-menu nav ul li .icon-link .icon-item p {
    font-size: 2vw;
  }
  html main .first-view .fv-main {
    width: 70%;
    margin: 10% auto 0;
  }
  html main .first-view .fv-main .items {
    width: 100%;
  }
  html main .first-view .fv-main .dots {
    bottom: 3%;
    right: 5%;
  }
  html main .first-view .fv-main .dot {
    width: 10px;
    height: 10px;
  }
  html main .first-view .fv-main .dot:nth-child(n+2) {
    margin-left: 7.5px;
  }
  html main .first-view .fv-main .texts {
    width: 100%;
    margin-top: -7.5%;
  }
  html main .first-view .fv-main .texts .text {
    right: 5%;
  }
  html main .first-view .fv-main .texts .text h3 {
    font-size: 4rem;
    line-height: 6rem;
    margin-left: 7.5%;
  }
  html main .first-view .fv-main .texts .text p {
    font-size: 2.4rem;
    line-height: 5rem;
  }
  html main .first-view .fv-main .tests {
    top: -50%;
    right: -50%;
    left: 25%;
  }
  html main .first-view .fv-main .tests img {
    width: 100%;
  }
  html main section.news .news-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  html main section.news .news-list .news-item {
    width: 100%;
    margin: 5% auto;
    padding: 5%;
    border-radius: 5px;
  }
  html main section.news .news-list .news-item .news-info .news-label {
    font-size: 2rem;
  }
  html main section.news .news-list .news-item .news-title {
    font-size: 2.5rem;
  }
  html main section.news .news-action {
    padding-top: 6%;
  }
  html main section.news .news-action .news-button {
    font-size: 2.5rem;
  }
  html main section.azalea-about .azalea-feature {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 85%;
  }
  html main section.azalea-about .azalea-feature .azalea-action {
    width: 100%;
    text-align: center;
    margin-top: 21%;
  }
  html main section.azalea-about .azalea-feature .azalea-action .azalea-button {
    display: inline-block;
    font-size: 2.5rem;
    padding: 15px 25px;
    background-color: #F96EAA;
    color: #fff;
    border-radius: 5px 25px 25px 5px;
    text-decoration: none;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  html main section.azalea-about .azalea-feature .azalea-action .azalea-button .arrow {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 2px;
    margin: 5px 0 5px 15px;
    border-radius: 9999px;
    background-color: #ffffff;
  }
  html main section.azalea-about .azalea-feature .azalea-action .azalea-button .arrow::before, html main section.azalea-about .azalea-feature .azalea-action .azalea-button .arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 9px;
    height: 2px;
    border-radius: 9999px;
    background-color: #ffffff;
    -webkit-transform-origin: calc(100% - 1px) 50%;
            transform-origin: calc(100% - 1px) 50%;
  }
  html main section.azalea-about .azalea-feature .azalea-action .azalea-button .arrow::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  html main section.azalea-about .azalea-feature .azalea-action .azalea-button .arrow::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  html main section.azalea-about .azalea-feature .feature-wrapper {
    margin-top: 15%;
  }
  html main section.azalea-about .azalea-feature .feature-wrapper .circle-blur {
    width: 100%;
    height: 100%;
  }
  html main section.azalea-about .azalea-feature .feature-wrapper .feature {
    width: 100%;
  }
  html main section.azalea-about .azalea-feature .azalea-content {
    width: 100%;
    margin: 0;
  }
  html main section.azalea-about .azalea-feature .azalea-content .azalea-text {
    font-size: 2.5rem;
    line-height: 5rem;
    text-align: justify;
  }
  html main section.service .service-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 90%;
  }
  html main section.service .service-list .service-item {
    width: 40%;
    margin-bottom: 7.5%;
    border-radius: 70px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  html main section.service .service-list .service-item .service-number {
    font-size: 2.4rem;
  }
  html main section.service .service-list .service-item .service-line {
    margin: 5px 0;
    height: 12%;
  }
  html main section.service .service-list .service-item .service-title {
    font-size: 2.5rem;
    text-align: center;
    margin: 10px 0;
  }
  html main section.service .service-list .service-item .service-image {
    width: 80%;
  }
  html main section.meal {
    width: 100%;
    margin: auto;
  }
  html main section.meal .meal-text {
    width: 80%;
    margin: auto;
    text-align: left;
    font-size: 2.5rem;
    line-height: 5rem;
  }
  html main section.meal .meal-list {
    width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin: 5% auto;
  }
  html main section.meal .meal-list .meal-item {
    width: 30%;
    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;
    background-color: #FCEBF6;
    border-radius: 150px 150px 10px 10px;
    padding: 2.5% 0;
  }
  html main section.meal .meal-list .meal-item .meal-title {
    margin: 10% 0;
    font-size: 1.8rem;
  }
  html main section.meal .meal-list .meal-item .circle-divider {
    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;
    gap: 5px;
    /* 丸同士の間隔を調整 */
    margin-bottom: 10%;
  }
  html main section.meal .meal-list .meal-item .circle-divider .circle {
    width: 7.5px;
    height: 7.5px;
    border-radius: 50%;
    background-color: #DC5096;
  }
  html main section.meal .meal-list .meal-item .meal-image {
    width: 75%;
  }
  html main section.meal .meal-action {
    padding-top: 30px;
  }
  html main section.meal .meal-action .meal-button {
    font-size: 2.5rem;
  }
  html main section.facility-guide {
    width: 100%;
    margin: auto;
    overflow: hidden;
  }
  html main section.facility-guide .facility-text {
    width: 85%;
    text-align: left;
    font-size: 2.5rem;
    line-height: 5rem;
    text-align: justify;
    margin-bottom: 40px;
  }
  html main section.facility-guide .custom-dots {
    gap: 3%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  html main section.facility-guide .custom-dots .dashed-circle {
    width: 100px;
    height: 100px;
    line-height: inherit;
    border: 2px dashed #DC5096;
    margin-bottom: 3%;
    font-size: 1.6rem;
    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;
  }
  html main section.facility-guide .slider {
    width: 100%;
    margin: auto;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    margin-top: 65px;
  }
  html main section.facility-guide .slider img {
    width: 97.5%;
  }
  html main section.facility-guide .facility-action {
    width: 100%;
    text-align: center;
    margin-top: 21%;
  }
  html main section.facility-guide .facility-action .facility-button {
    display: inline-block;
    font-size: 2.5rem;
    padding: 15px 25px;
    background-color: #E69460;
    color: #fff;
    border-radius: 5px 25px 25px 5px;
    text-decoration: none;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  html main section.facility-guide .facility-action .facility-button:hover {
    background-color: #c27545;
  }
  html main section.facility-guide .facility-action .facility-button .arrow {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 2px;
    margin: 5px 0 5px 15px;
    border-radius: 9999px;
    background-color: #ffffff;
  }
  html main section.facility-guide .facility-action .facility-button .arrow::before, html main section.facility-guide .facility-action .facility-button .arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 9px;
    height: 2px;
    border-radius: 9999px;
    background-color: #ffffff;
    -webkit-transform-origin: calc(100% - 1px) 50%;
            transform-origin: calc(100% - 1px) 50%;
  }
  html main section.facility-guide .facility-action .facility-button .arrow::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  html main section.facility-guide .facility-action .facility-button .arrow::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
@media (max-width: 767px) {
  html ._pc {
    display: none;
  }
  html ._sp {
    display: block;
  }
  html .fade-header {
    top: 0;
  }
  html main {
    padding-bottom: 100px;
    /* お知らせ */
    /* アゼリア館について */
    /* サービス */
    /* 栄養と愛の食卓 */
    /* 施設案内 */
  }
  html main section {
    padding: 60px 0;
  }
  html main::before {
    top: 0%;
    left: 0%;
    width: 300px;
    height: 150px;
    -webkit-filter: blur(70px);
            filter: blur(70px);
  }
  html main .title {
    margin-bottom: 10%;
  }
  html main .title img {
    width: 10%;
  }
  html main .title h3 {
    font-size: 3.2rem;
  }
  html main .title p {
    font-size: 1.2rem;
  }
  html main .first-view {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
  }
  html main .first-view .fv-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 89%;
    height: 20vh;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0 auto 4%;
  }
  html main .first-view .fv-content .fv-logo {
    margin-bottom: 0;
    width: 46%;
  }
  html main .first-view .fv-content .fv-logo img {
    width: 50%;
  }
  html main .first-view .fv-content .fv-logo p {
    width: 50%;
  }
  html main .first-view .fv-content .fv-address {
    font-size: 1.2rem;
    margin: 0 0 0 3%;
    width: 60%;
  }
  html main .first-view .fv-content .fv-address h3 {
    line-height: 2rem;
  }
  html main .first-view .fv-content .fv-address .tel p {
    font-size: 1.3rem;
    line-height: 2.25rem;
  }
  html main .first-view .fv-content .fv-address .tel h3 {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }
  html main .first-view .fv-content .fv-address::after {
    padding: 19px 24%;
    bottom: 0%;
    right: 28%;
  }
  html main .first-view .fv-main {
    width: 90%;
    margin: 10% auto 0;
    height: 50vh;
  }
  html main .first-view .fv-main .items {
    width: 100%;
    padding-bottom: 100%;
    height: 50vh;
  }
  html main .first-view .fv-main .dots {
    bottom: 3%;
    right: 5%;
  }
  html main .first-view .fv-main .dot {
    width: 10px;
    height: 10px;
  }
  html main .first-view .fv-main .dot:nth-child(n+2) {
    margin-left: 7.5px;
  }
  html main .first-view .fv-main .texts {
    width: 100%;
    margin-top: -7.5%;
  }
  html main .first-view .fv-main .texts .text h3 {
    font-size: 2.1rem;
    line-height: 1.8;
  }
  html main .first-view .fv-main .texts .text p {
    font-size: 1.6rem;
    line-height: 2;
  }
  html main .first-view .fv-main .tests {
    top: -50%;
    right: -50%;
    left: 25%;
  }
  html main .first-view .fv-main .tests img {
    width: 100%;
  }
  html main .first-view .fv-menu {
    width: 90%;
    margin: auto;
    height: 15vh;
  }
  html main .first-view .fv-menu nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  html main .first-view .fv-menu nav ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 15px;
    width: 30%;
  }
  html main .first-view .fv-menu nav ul li .icon-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
  }
  html main .first-view .fv-menu nav ul li .icon-link .icon-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    white-space: nowrap;
    gap: 5%;
  }
  html main .first-view .fv-menu nav ul li .icon-link .icon-item p {
    font-size: 1.3rem;
  }
  html main .first-view .fv-menu nav ul li .icon-link .icon-item span {
    display: none;
  }
  html main section.news {
    padding-top: 0;
  }
  html main section.news .news-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  html main section.news .news-list .news-item {
    width: 100%;
    margin: 5% auto;
    padding: 5%;
    border-radius: 5px;
  }
  html main section.news .news-list .news-item .news-info .news-label {
    font-size: 1.4rem;
  }
  html main section.news .news-list .news-item .news-title {
    font-size: 1.6rem;
  }
  html main section.news .news-action {
    padding-top: 6%;
  }
  html main section.news .news-action .news-button {
    font-size: 1.6rem;
  }
  html main section.azalea-about .azalea-feature {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 85%;
  }
  html main section.azalea-about .azalea-feature .azalea-action {
    width: 100%;
    text-align: center;
    margin-top: 21%;
  }
  html main section.azalea-about .azalea-feature .azalea-action .azalea-button {
    display: inline-block;
    font-size: 1.6rem;
    padding: 15px 25px;
    background-color: #F96EAA;
    color: #fff;
    border-radius: 5px 25px 25px 5px;
    text-decoration: none;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  html main section.azalea-about .azalea-feature .azalea-action .azalea-button .arrow {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 2px;
    margin: 5px 0 5px 15px;
    border-radius: 9999px;
    background-color: #ffffff;
  }
  html main section.azalea-about .azalea-feature .azalea-action .azalea-button .arrow::before, html main section.azalea-about .azalea-feature .azalea-action .azalea-button .arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 9px;
    height: 2px;
    border-radius: 9999px;
    background-color: #ffffff;
    -webkit-transform-origin: calc(100% - 1px) 50%;
            transform-origin: calc(100% - 1px) 50%;
  }
  html main section.azalea-about .azalea-feature .azalea-action .azalea-button .arrow::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  html main section.azalea-about .azalea-feature .azalea-action .azalea-button .arrow::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  html main section.azalea-about .azalea-feature .feature-wrapper {
    margin-top: 15%;
  }
  html main section.azalea-about .azalea-feature .feature-wrapper .circle-blur {
    width: 100%;
    height: 100%;
  }
  html main section.azalea-about .azalea-feature .feature-wrapper .feature {
    width: 100%;
  }
  html main section.azalea-about .azalea-feature .azalea-content {
    width: 100%;
    margin: 0;
  }
  html main section.azalea-about .azalea-feature .azalea-content .azalea-text {
    font-size: 1.6rem;
    line-height: 3rem;
    text-align: justify;
  }
  html main section.service .service-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 90%;
  }
  html main section.service .service-list .service-item {
    width: 40%;
    margin-bottom: 7.5%;
    border-radius: 70px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  html main section.service .service-list .service-item .service-number {
    font-size: 2.4rem;
  }
  html main section.service .service-list .service-item .service-line {
    margin: 5px 0;
    height: 12%;
  }
  html main section.service .service-list .service-item .service-title {
    font-size: 1.6rem;
    text-align: center;
    margin: 10px 0;
  }
  html main section.service .service-list .service-item .service-image {
    width: 80%;
  }
  html main section.meal {
    width: 85%;
  }
  html main section.meal .meal-text {
    width: 100%;
    text-align: left;
    font-size: 1.6rem;
    line-height: 3rem;
    text-align: justify;
    margin-bottom: 10%;
  }
  html main section.meal .meal-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 85%;
  }
  html main section.meal .meal-list .meal-item {
    margin: 0 15px;
  }
  html main section.meal .meal-list .meal-item .meal-title {
    font-size: 2rem;
  }
  html main section.meal .meal-list .slick-prev::before,
  html main section.meal .meal-list .slick-next::before {
    opacity: 1;
    color: #DC5096;
  }
  html main section.meal .meal-action {
    padding-top: 50px;
  }
  html main section.meal .meal-action .meal-button {
    font-size: 1.6rem;
  }
  html main section.facility-guide {
    width: 100%;
    margin: auto;
    overflow: hidden;
  }
  html main section.facility-guide .facility-text {
    width: 85%;
    text-align: left;
    font-size: 1.6rem;
    line-height: 3rem;
    text-align: justify;
    margin-bottom: 40px;
  }
  html main section.facility-guide .custom-dots {
    gap: 3%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  html main section.facility-guide .custom-dots .dashed-circle {
    width: 100px;
    height: 100px;
    line-height: inherit;
    border: 2px dashed #DC5096;
    margin-bottom: 3%;
    font-size: 1.6rem;
    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;
  }
  html main section.facility-guide .slider {
    width: 100%;
    margin: auto;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    margin-top: 65px;
  }
  html main section.facility-guide .slider img {
    width: 97.5%;
  }
  html main section.facility-guide .facility-action {
    width: 100%;
    text-align: center;
    margin-top: 21%;
  }
  html main section.facility-guide .facility-action .facility-button {
    display: inline-block;
    font-size: 1.6rem;
    padding: 15px 25px;
    background-color: #E69460;
    color: #fff;
    border-radius: 5px 25px 25px 5px;
    text-decoration: none;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  html main section.facility-guide .facility-action .facility-button:hover {
    background-color: #c27545;
  }
  html main section.facility-guide .facility-action .facility-button .arrow {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 2px;
    margin: 5px 0 5px 15px;
    border-radius: 9999px;
    background-color: #ffffff;
  }
  html main section.facility-guide .facility-action .facility-button .arrow::before, html main section.facility-guide .facility-action .facility-button .arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 9px;
    height: 2px;
    border-radius: 9999px;
    background-color: #ffffff;
    -webkit-transform-origin: calc(100% - 1px) 50%;
            transform-origin: calc(100% - 1px) 50%;
  }
  html main section.facility-guide .facility-action .facility-button .arrow::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  html main section.facility-guide .facility-action .facility-button .arrow::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}/*# sourceMappingURL=style.css.map */