@charset "UTF-8";
@font-face {
  font-family: "Kiwi Maru";
  font-weight: 300;
  src: url("../../font/Kiwi_Maru/woff2/KiwiMaru-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Kiwi Maru";
  font-weight: 400;
  src: url("../../font/Kiwi_Maru/woff2/KiwiMaru-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Kiwi Maru";
  font-weight: 500;
  src: url("../../font/Kiwi_Maru/woff2/KiwiMaru-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Kosugi";
  font-weight: 400;
  src: url("../../font/Kosugi/woff2/Kosugi-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Kosugi Maru";
  font-weight: 400;
  src: url("../../font/Kosugi_Maru/woff2/KosugiMaru-Regular.woff2") format("woff2");
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 180px;
}
html body {
  font-family: "Kosugi Maru", serif;
  color: #0f1111;
  background: #fafafa;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "pkna" 1;
  font-size: clamp(0.9rem, 0.864rem + 0.18vw, 1rem);
  line-height: 1.5;
  letter-spacing: normal;
  position: relative;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.25em;
}

h5 {
  font-size: 1.15em;
}

.wrap-all {
  overflow: hidden;
  height: 100%;
  position: relative;
  width: 100%;
}

.wrap-all::-webkit-scrollbar {
  display: none;
}

th,
dt {
  font-weight: 400;
}

.coming-soon {
  font-size: 1.8em;
  text-align: center;
  font-family: "Kiwi Maru", serif;
  color: #0f1111;
}
.coming-soon .br {
  display: none;
}

* {
  min-width: 0;
  min-height: 0;
}

.header {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 70px;
  background: rgba(255, 255, 255, 0);
  transition: 1s all;
  text-shadow: rgba(74, 74, 79, 0.85) 0px 2px 7px;
}
.header.page-open {
  background: rgba(222, 55, 76, 0.85);
  text-shadow: none;
}
.header .menu-container {
  display: none;
}
.header__wrap {
  height: 100%;
  width: calc(100% - 30px);
  margin: 0 0 0 auto;
  display: flex;
  justify-content: space-between;
}
.header__logo a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-family: "Kiwi Maru", serif;
  color: #fff;
}
.header__logo img {
  width: 60px;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.header nav {
  display: flex;
  align-items: center;
}
.header nav ul {
  display: flex;
  gap: 15px;
  position: relative;
  z-index: 998;
  margin-right: 15px;
}
.header nav ul li a {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  display: flex;
  flex-direction: column;
  color: #fff;
  transition: 1s all;
}
.header__nav {
  display: flex;
  align-items: center;
}
.header__nav .link {
  height: 100%;
  aspect-ratio: 1/1;
}
.header__nav .link li {
  height: 100%;
  width: 100%;
}
.header__nav .link li a {
  transition: 1s all;
  color: #fff;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-size: 0.8em;
  display: flex;
  flex-direction: column;
  gap: 2.5px;
}
.header__nav .link li a img {
  width: 24px;
}
.header.page-open .header__nav .link li a {
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat; /*グラデーション①*/
}

.sp-fixed-link {
  display: none;
}

@media screen and (max-width: 1280px) {
  .header nav ul li a {
    font-size: 1em;
  }
  .header__logo a {
    font-size: 20px;
  }
  .header__logo a img {
    width: 50px;
  }
  .header__wrap {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 928px) {
  .header__nav .link {
    display: none;
  }
  .header {
    height: 60px;
    text-shadow: none !important;
  }
  .header__wrap {
    position: relative;
    width: calc(100% - 30px);
    margin: 0 auto;
  }
  .header .menu-container {
    display: flex;
    height: 100%;
    position: absolute;
    right: 0;
    z-index: 9999;
  }
  .header .menu-container .responsive_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.75s ease;
  }
  .header .menu-container .responsive_btn .menu_btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .menu-container .responsive_btn .menu_btn img {
    width: 30px;
  }
  .header .menu-container .responsive_btn span {
    color: #0f1111;
    font-size: 36px;
  }
  .header .menu-container .responsive_btn.menu_close {
    display: none;
  }
  .header .menu-container .responsive_btn.menu_close.active {
    display: flex;
  }
  .header .menu-container .responsive_btn.menu_open.active {
    display: none;
  }
  .header nav {
    position: fixed;
    top: 0%;
    transform: translateX(-50%);
    left: 160%;
    transition: 0.75s ease;
    width: 100vw;
    height: 102vh;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  .header nav ul {
    flex-direction: column;
    justify-content: center;
  }
  .header nav ul li a {
    color: #0f1111;
    font-size: 1.2em;
  }
  .header nav.active {
    left: 50%;
  }
  .sp-fixed-link {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    position: -webkit-fixed;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45px;
    z-index: 998;
    background: #f4f6f6;
    transition: all 1s;
    color: #fff;
  }
}
@media screen and (max-width: 480px) {
  .header__logo a {
    font-size: 16px;
    gap: 5px;
  }
  .header__logo a img {
    width: 42px;
  }
  .header__wrap {
    width: calc(100% - 20px);
  }
}
#heading {
  width: 100%;
  height: 480px;
  position: relative;
}
#heading .background {
  width: 100%;
  height: 100%;
  position: relative;
}
#heading .background__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}
#heading .background__image {
  position: fixed;
  transform: translate(-50%, -50%);
  top: 250px;
  left: 50%;
  width: 100%;
  height: 100vh;
  background-image: url("../../img/common/heading/heading.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
#heading .background__image--nh {
  background-image: url("../../img/common/heading/nh.jpg");
}
#heading .background__image--vn {
  background-image: url("../../img/common/heading/vn.jpg");
}
#heading .background__image--vnc {
  background-image: url("../../img/common/heading/vnc.jpg");
}
#heading .background__image--recruit {
  background-image: url("../../img/common/heading/recruit.jpg");
}
#heading .heading {
  width: 100%;
  height: 100%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: start;
  align-items: end;
  width: 80%;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 0 60px;
}
#heading .heading h1 {
  font-weight: bold;
  text-align: center;
  display: flex;
  color: #fff;
  line-height: 1;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-shadow: rgba(74, 74, 79, 0.25) 0px 2px 7px;
}
#heading .heading h1 span {
  font-size: 0.8em;
  color: #de374c;
  font-family: "Kiwi Maru", serif;
}

@media screen and (max-width: 928px) {
  #heading .heading h1 {
    flex-direction: column;
    gap: 5px;
    align-items: start;
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  #heading .heading {
    width: 90%;
  }
  #heading .heading__title {
    flex-direction: column;
    align-items: start !important;
    font-size: 2.8em;
  }
  #heading .background__image--vnc {
    background-position: 30% center;
  }
  #heading .background__image--vn {
    background-position: 30% center;
  }
  #heading .background__image--nh {
    background-position: 60% center;
  }
  #heading .background__image--recruit {
    background-position: 40% center;
  }
}
.sp-fixed-link {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr;
  row-gap: 5px;
  position: -webkit-fixed;
  position: fixed;
  right: -1px;
  transform: translateY(-50%);
  top: 50%;
  z-index: 998;
  color: #fff;
  transition: 0.75s ease-in-out;
}
.sp-fixed-link a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #de374c;
  border-right: 1px solid #fff;
  font-family: "Kiwi Maru", serif;
  width: 75px;
  height: 75px;
}
.sp-fixed-link a p {
  font-size: 12px;
}
.sp-fixed-link a img {
  width: 36px;
}
.sp-fixed-link a:nth-child(2) {
  display: none;
}
.sp-fixed-link a:nth-child(2) img {
  width: 21px;
}
.sp-fixed-link a:last-child {
  border: none;
}

@media screen and (max-width: 928px) {
  .sp-fixed-link {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    bottom: 0;
    left: 0;
    top: unset;
    right: unset;
    transform: unset;
    width: 100%;
    transition: all 1s;
    height: 55px;
  }
  .sp-fixed-link.scroll {
    bottom: -15px;
    opacity: 0;
  }
  .sp-fixed-link a {
    width: 100%;
    height: 55px;
    letter-spacing: 0.15em;
    display: flex !important;
  }
  .sp-fixed-link a p {
    font-size: 0.9em;
  }
  .sp-fixed-link a img {
    width: 24px;
  }
}
@media screen and (max-width: 480px) {
  .sp-fixed-link a {
    font-size: 0.8em;
  }
}
#about-vnc {
  padding: 180px 0;
  background-color: #f3ede3;
  position: relative;
}
#about-vnc .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1120px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  -moz-column-gap: 60px;
       column-gap: 60px;
  align-items: center;
}
@media screen and (max-width: 480px) {
  #about-vnc .section {
    width: 90%;
  }
}
#about-vnc .section__title {
  color: #595757;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
  grid-column: 1/3;
}
#about-vnc .section__title span {
  color: #ee836f;
  font-family: "Kiwi Maru", serif;
  font-size: 0.8em;
}
#about-vnc .section__image {
  width: 100%;
  margin: 0 auto;
}
#about-vnc .section__image img {
  width: 100%;
  aspect-ratio: 3/2;
}
#about-vnc .section__text {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
#about-vnc .section__text .name {
  text-align: right;
}
#about-vnc .section__text .name span {
  font-size: 1.2em;
}
#about-vnc .section__copy {
  font-size: 1.1em;
  color: #595757;
  font-weight: bold;
}
#about-vnc .section .wrap-insurance {
  grid-column: 1/3;
  padding: 30px;
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 60px;
}
#about-vnc .section .wrap-insurance h3 {
  text-align: center;
  border-bottom: #ee836f 2px solid;
  margin-bottom: 15px;
  padding-bottom: 5px;
}
#about-vnc .section .wrap-insurance .inner__list {
  padding-left: 20px;
}
#about-vnc .section .wrap-insurance .inner__list li {
  list-style-type: circle;
  list-style-position: outside;
}
#about-vnc .section .wrap-insurance .inner:last-child {
  margin-top: 15px;
}

@media screen and (max-width: 1280px) {
  #about-vnc .section {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 1024px) {
  #about-vnc .section {
    display: flex;
    flex-direction: column;
  }
  #about-vnc .section__title {
    order: 1;
  }
  #about-vnc .section__image {
    width: 80%;
    order: 3;
  }
  #about-vnc .section__text {
    margin-bottom: 30px;
    order: 2;
  }
  #about-vnc .section .wrap-insurance {
    order: 4;
  }
}
@media screen and (max-width: 928px) {
  #about-vnc.section__image {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  #about-vnc .section__image {
    width: 100%;
  }
  #about-vnc {
    padding: 120px 0;
  }
}
#visiting-nursing {
  padding: 90px 0;
  background-color: #ee836f;
  position: relative;
  color: #fff;
}
#visiting-nursing .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1120px;
  position: relative;
}
@media screen and (max-width: 480px) {
  #visiting-nursing .section {
    width: 90%;
  }
}
#visiting-nursing .section__title {
  margin-bottom: 30px;
  font-size: 1.75em;
}
#visiting-nursing .section__title span {
  display: inline-block;
}
#visiting-nursing .section__text {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
#visiting-nursing .section__text .name {
  text-align: right;
}
#visiting-nursing .section__text .name span {
  font-size: 1.2em;
}
#visiting-nursing .section__copy {
  font-size: 1.2em;
}

@media screen and (max-width: 480px) {
  #visiting-nursing {
    padding: 90px 0;
  }
}
#price {
  padding: 120px 0 180px 0;
  position: relative;
}
#price .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1120px;
  position: relative;
}
@media screen and (max-width: 480px) {
  #price .section {
    width: 90%;
  }
}
#price .section__note {
  border: 2px solid #ee836f;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 30px;
}
#price .section__note .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  -moz-column-gap: 5px;
       column-gap: 5px;
  margin-top: 15px;
}
#price .section__note .wrap a {
  background-color: #ee836f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  -moz-column-gap: 2px;
       column-gap: 2px;
  white-space: nowrap;
}
#price .section__note .wrap a img {
  width: 20px;
}
#price .section__btn {
  display: flex;
  -moz-column-gap: 5px;
       column-gap: 5px;
  justify-content: center;
  margin-bottom: 30px;
}
#price .section__btn button {
  padding: 15px;
  background-color: #de374c;
  color: #fff;
}
#price .section__btn button.hide {
  background-color: #989091;
}
#price .section #t-1,
#price .section #t-2 {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
#price .section #t-1 h3,
#price .section #t-2 h3 {
  text-align: center;
}
#price .section #t-1.hidden,
#price .section #t-2.hidden {
  display: none;
}
#price .section #t-3 {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
#price .section #t-3.hidden {
  display: none;
}
#price .section #t-3 h3 {
  text-align: center;
  margin-bottom: 30px;
}
#price .section #t-3 .note {
  text-align: right;
}
#price .section #t-3 .text {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  margin-bottom: 30px;
}
#price .section #t-3 .text h4 {
  text-align: center;
  color: #ee836f;
}
#price .section #t-3 .text ul {
  padding-left: 20px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
#price .section #t-3 .text ul li {
  list-style-type: circle;
  list-style-position: outside;
}
#price .section #t-3 table {
  width: 100%;
}
#price .section #t-3 table caption {
  width: 100%;
}
#price .section #t-3 table caption span {
  text-align: right;
}
#price .section #t-3 table td,
#price .section #t-3 table th {
  padding: 10px;
}
#price .section #t-3 table td span,
#price .section #t-3 table th span {
  display: inline-block;
}
#price .section #t-3 table thead tr {
  background-color: #ee836f;
  border-left: 1px solid #ee836f;
  border-right: 1px solid #ee836f;
  color: #fff;
}
#price .section #t-3 table thead tr th {
  border-right: 1px solid #fff;
}
#price .section #t-3 table thead tr th:last-child {
  border-right: none;
}
#price .section #t-3 table tbody tr {
  border-bottom: 1px solid #595757;
  border-left: 1px solid #595757;
  border-right: 1px solid #595757;
}
#price .section #t-3 table tbody tr th {
  border-right: 1px solid #595757;
  background-color: rgba(238, 131, 111, 0.25);
}
#price .section #t-3 table tbody tr td {
  border-right: 1px solid #595757;
}
#price .section #t-3 table tbody tr td:last-child {
  border-right: none;
}
#price .section__title {
  color: #595757;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}
#price .section__title span {
  color: #ee836f;
  font-family: "Kiwi Maru", serif;
  font-size: 0.8em;
}
#price .section .price {
  width: 100%;
  max-width: 800px;
  margin: 30px auto 60px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
#price .section .price--2 .section__table br {
  display: none;
}
#price .section__table {
  width: 100%;
  margin: 0 auto;
}
#price .section__table--sp {
  display: none;
}
#price .section__table:last-child {
  margin-bottom: 0;
}
#price .section__table caption {
  font-size: 1.2em;
  margin-bottom: 5px;
}
#price .section__table td,
#price .section__table th {
  padding: 10px;
  width: 50%;
}
#price .section__table th {
  white-space: nowrap;
}
#price .section__table thead tr {
  background-color: #ee836f;
  border-left: 1px solid #ee836f;
  border-right: 1px solid #ee836f;
  color: #fff;
}
#price .section__table thead tr th:first-child {
  border-right: 1px solid #fff;
}
#price .section__table tbody tr {
  border-bottom: 1px solid #595757;
  border-left: 1px solid #595757;
  border-right: 1px solid #595757;
}
#price .section__table tbody tr th {
  border-right: 1px solid #595757;
  background-color: rgba(238, 131, 111, 0.25);
}
#price .section__table tbody tr td span {
  font-size: 1.1em;
  display: inline-block;
}
#price .section .price--1 .wrap-sp {
  display: none;
}
#price .section .price--1 .section__table td,
#price .section .price--1 .section__table th {
  width: auto;
}
#price .section .price--1 .section__table th span {
  font-size: 0.8em;
}
#price .section .price--1 .section__table thead tr th {
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #fff;
}
#price .section .price--1 .section__table thead tr th:last-child {
  border: none;
}
#price .section .price--1 .section__table tbody tr {
  border-right: none;
}
#price .section .price--1 .section__table tbody tr td {
  border-right: 1px solid #595757;
}

@media screen and (max-width: 928px) {
  #price .section .price--2 .section__table br {
    display: inline;
  }
  #price .section .price--2 .section__table tbody tr th {
    white-space: unset;
    font-size: 0.9em;
  }
}
@media screen and (max-width: 768px) {
  #price .section .price--2 .section__table br {
    display: inline;
  }
  #price .section .price--2 .section__table tbody tr th {
    white-space: unset;
    font-size: 0.9em;
  }
  #price .section .price--1 .wrap-sp {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    margin-bottom: 45px;
  }
  #price .section .price--1 .wrap-sp h4 {
    text-align: center;
  }
  #price .section .price--1 .section__table {
    display: none;
  }
  #price .section .price--1 .section__table--sp {
    display: block;
    width: 100%;
  }
  #price .section .price--1 .section__table--sp caption {
    white-space: nowrap;
    font-size: 1.1em;
  }
  #price .section .price--1 .section__table--sp caption span {
    font-size: 0.8em;
  }
  #price .section .price--1 .section__table--sp tbody {
    display: block;
    width: 100%;
  }
  #price .section .price--1 .section__table--sp tbody tr {
    display: block;
    width: 100%;
  }
  #price .section .price--1 .section__table--sp tbody tr th,
  #price .section .price--1 .section__table--sp tbody tr td {
    display: block;
    width: 100%;
    padding: 10px;
  }
  #price .section .price--1 .section__table--sp tbody tr th {
    background-color: #ee836f;
    border: 1px solid #595757;
    color: #fff;
  }
  #price .section .price--1 .section__table--sp tbody tr td {
    border-top: none;
    border-left: 1px solid #595757;
    border-right: 1px solid #595757;
  }
  #price .section .price--1 .section__table--sp tbody tr:nth-child(2) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
  #price .section .price--1 .section__table--sp tbody tr:nth-child(2) th {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  #price .section .price--1 .section__table--sp tbody tr:nth-child(2) td {
    border-bottom: 1px solid #595757;
  }
  #price .section .price--1 .section__table--sp tbody tr:nth-child(2) td:nth-child(2n) {
    border-right: none;
    background-color: rgba(238, 131, 111, 0.25);
  }
}
@media screen and (max-width: 600px) {
  #price .section__note .wrap {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    row-gap: 5px;
  }
  #price .section #t-3 .note {
    text-align: left;
  }
  #price .section__btn {
    flex-wrap: wrap;
    row-gap: 5px;
  }
  #price .section__btn button {
    font-size: 0.9em;
    white-space: nowrap;
  }
}
@media screen and (max-width: 480px) {
  #price {
    padding: 90px 0 120px 0;
  }
}
#price .section #t-2 .price--1 .section__table--sp tbody tr:nth-child(2) {
  display: block;
}
#price .section #t-2 .price--1 .section__table--sp tbody tr:nth-child(2) td:nth-child(2n) {
  background-color: unset;
  border-bottom: none;
}
#price .section #t-2 .price--1 .section__table--sp tbody tr:nth-child(2) td {
  border-right: 1px solid #595757;
}
#price .section #t-2 .price--1 .section__table--sp tbody tr:last-child {
  border-bottom: 1px solid #595757;
}

#service-vnc {
  padding: 120px 0;
  position: relative;
  background-color: #f3ede3;
}
#service-vnc .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1120px;
  position: relative;
}
@media screen and (max-width: 480px) {
  #service-vnc .section {
    width: 90%;
  }
}
#service-vnc .section__title {
  color: #595757;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}
#service-vnc .section__title span {
  color: #ee836f;
  font-family: "Kiwi Maru", serif;
  font-size: 0.8em;
}
#service-vnc .section__copy {
  font-size: 1.2em;
  text-align: center;
}
#service-vnc .section__list {
  margin-top: 60px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 15px;
}
#service-vnc .section__list .inner {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 30px;
  row-gap: 15px;
}
#service-vnc .section__list .inner h3 {
  text-align: center;
  border-bottom: 2px solid #ee836f;
  padding-bottom: 5px;
}

@media screen and (max-width: 928px) {
  #service-vnc .section__list .inner:first-child, #service-vnc .section__list .inner:nth-child(2) {
    grid-column: 1/3;
  }
}
@media screen and (max-width: 768px) {
  #service-vnc .section__list {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  #service-vnc {
    padding: 90px 0;
  }
}
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #de374c;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 24px;
  transition: all 0.3s;
  position: relative;
  box-shadow: 0px 6px 10px -6px #74635d;
  overflow: hidden;
}
#page-top a img {
  width: 30px;
}

#page-top a:hover {
  opacity: 0.8;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 100;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(200px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(200px);
  }
}
@media screen and (max-width: 928px) {
  #page-top {
    bottom: 60px;
  }
}
.footer {
  background-color: #ee836f;
  color: #fff;
  position: relative;
}
.footer__wrap {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 15px;
  padding: 60px 0 30px;
  position: relative;
  z-index: 20;
}
.footer__logo {
  grid-row: 1/4;
  grid-column: 1/2;
  text-align: center;
}
.footer__logo img {
  width: 180px;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 5px;
}
.footer__logo p {
  color: #fff;
  font-size: 1.2em;
  font-family: "Kiwi Maru", serif;
  white-space: nowrap;
}
.footer__man img {
  width: 150px;
}
.footer__address {
  grid-row: 1/2;
  grid-column: 2/3;
}
.footer__address p {
  display: flex;
  flex-direction: column;
}
.footer__address p span span {
  display: inline-block;
}
.footer__tel {
  grid-row: 2/3;
  grid-column: 2/3;
}
.footer__tel a {
  display: flex;
  align-items: center;
  gap: 2.5px;
  white-space: nowrap;
  font-size: 1.2em;
}
.footer__tel a img {
  width: 24px;
}
.footer__nav {
  grid-row: 3/4;
  grid-column: 2/3;
}
.footer__nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.footer__nav ul li a {
  display: flex;
  align-items: center;
  position: relative;
}
.footer__nav ul li a::before {
  content: "";
  width: 20px;
  aspect-ratio: 1/1;
  background-image: url(../../img/common/chevron_right.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.footer__copy {
  grid-row: 3/4;
  grid-column: 3/4;
  display: flex;
  align-items: end;
  white-space: nowrap;
  font-size: 0.9em;
}

@media screen and (max-width: 1280px) {
  .footer__wrap {
    padding-bottom: 0;
  }
  .footer__man {
    display: none;
  }
  .footer__copy {
    grid-row: 4/5;
    grid-column: 1/3;
    padding: 15px 0;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 928px) {
  .footer {
    padding-bottom: 55px;
  }
  .footer::after {
    top: auto;
    bottom: -10px;
  }
}
@media screen and (max-width: 768px) {
  .footer__wrap {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .footer__logo img {
    width: 160px;
  }
}
@media screen and (max-width: 600px) {
  .footer__wrap {
    display: flex;
    flex-direction: column;
  }
  .footer__logo p {
    font-size: 1.5em;
  }
  .footer__tel a {
    justify-content: center;
  }
  .footer__address {
    text-align: center;
  }
  .footer__nav ul {
    display: grid;
    grid-template-columns: 1fr auto;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
  .footer__man {
    display: block;
    width: 150px;
    margin: 0 auto;
  }
  .footer::after {
    width: 45%;
    top: auto;
    bottom: -10px;
  }
}
@media screen and (max-width: 480px) {
  .footer::after {
    left: 50%;
    bottom: 20px;
  }
}/*# sourceMappingURL=style.css.map */