@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 1150px) {
  html {
    font-size: 1.3913043478vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", serif;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body.no-scroll {
  overflow: hidden;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover {
  opacity: 0.7;
  cursor: pointer;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
}
.l-access {
  margin-top: 4.75rem;
}
@media screen and (max-width: 767px) {
  .l-access {
    margin-top: 1.875rem;
  }
}

.l-fv {
  height: 37.1875rem;
}
@media screen and (max-width: 767px) {
  .l-fv {
    height: 18.75rem;
  }
}

.l-header {
  height: 6.375rem;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 4rem;
  }
}

.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1150px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .l-main {
    margin-top: 1.5625rem;
  }
}

.l-page-fv {
  height: 20.9375rem;
}
@media screen and (max-width: 767px) {
  .l-page-fv {
    height: 12.5rem;
  }
}

.l-recruit {
  height: 31.25rem;
  padding-top: 17.9375rem;
}
@media screen and (max-width: 767px) {
  .l-recruit {
    height: 14.0625rem;
    padding-top: 7.9375rem;
  }
}

.l-related {
  padding-top: 3.125rem;
  margin-bottom: 4.6875rem;
}

.l-top {
  padding: 4.375rem 0;
}
@media screen and (max-width: 767px) {
  .l-top {
    padding: 0;
  }
}

.l-type {
  padding: 4.375rem 0 3.75rem;
}
@media screen and (max-width: 767px) {
  .l-type {
    padding: 3.125rem 0 1.5625rem;
  }
}

.c-btn {
  width: 100%;
  height: 3.75rem;
  border: 1px solid #25aee7;
  border-radius: 1.875rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 0.875rem;
    height: 2.5rem;
  }
}

.c-btn::before {
  content: "";
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid #25aee7;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn::before {
    display: none;
  }
}

.c-btn::after {
  content: "";
  width: 0.375rem;
  height: 0.625rem;
  background: url(../images/arrow_blue.png) no-repeat center/cover;
  position: absolute;
  top: 50%;
  right: 2.1875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn::after {
    width: 0.9375rem;
    height: 0.9375rem;
    background: url(../images/arrow-sp.png) no-repeat center/cover;
    position: absolute;
    right: 0.75rem;
  }
}

.c-btn:hover {
  opacity: 1;
}

.c-btn:hover::before {
  border: none;
  background-color: #ecb01f;
}

.c-btn:hover::after {
  background: url(../images/arrow_white.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .c-btn:hover::after {
    display: none;
  }
}

.c-card-facility {
  padding-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .c-card-facility {
    padding-top: 2.5rem;
  }
}

.c-card-facility__body {
  position: relative;
  padding-left: 0.5625rem;
  border-left: 1px solid #f1f1f1;
}
@media screen and (max-width: 767px) {
  .c-card-facility__body {
    border-left: none;
    padding-left: 0;
  }
}

.c-card-facility__body::before {
  content: "";
  width: 1px;
  height: 1.3125rem;
  background-color: #25aee7;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-card-facility__body::before {
    width: 0.125rem;
    height: 0.9375rem;
  }
}

.c-card-facility__title {
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: #000;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-card-facility__title {
    font-size: 0.9375rem;
    letter-spacing: 3px;
    font-weight: bold;
    padding-left: 0.5rem;
  }
}

.c-card-facility__table {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-card-facility__table {
    margin-top: 1.25rem;
  }
}

.c-card-facility__table-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .c-card-facility__table-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 0.875rem;
  }
}

.c-card-facility__table-box:not(:last-child) {
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .c-card-facility__table-box:not(:last-child) {
    padding-bottom: 0;
  }
}

.c-card-facility__table-box:nth-child(n+2) {
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .c-card-facility__table-box:nth-child(n+2) {
    padding-top: 0;
  }
}

.c-card-facility__table-box:not(:first-child) {
  border-top: 1px solid #f1f1f1;
}
@media screen and (max-width: 767px) {
  .c-card-facility__table-box:not(:first-child) {
    border-top: none;
  }
}

.c-card-facility__table-box dt {
  width: 13.5371179039%;
  font-weight: 500;
  color: #000;
}
@media screen and (max-width: 767px) {
  .c-card-facility__table-box dt {
    width: 100%;
    padding: 0.25rem 0.5625rem;
    background: url(../images/table_bg.png) no-repeat center/cover;
  }
}

.c-card-facility__table-box dd {
  width: 81.9505094614%;
}
@media screen and (max-width: 767px) {
  .c-card-facility__table-box dd {
    width: 100%;
    padding: 1rem 0.5625rem;
  }
}

.c-card-facility__imgs {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-card-facility__imgs {
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.125rem;
  }
}

.c-card-offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.75rem;
  padding-bottom: 1.875rem;
  border-bottom: 1px solid #e5e5e5;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .c-card-offer {
    gap: 1.25rem;
    overflow: hidden;
  }
}

.c-card-offer__img {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .c-card-offer__img {
    width: 19.1044776119%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.c-card-offer__img img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-card-offer__body {
  width: 76%;
}
@media screen and (max-width: 767px) {
  .c-card-offer__body {
    width: 87.4626865672%;
  }
}

.c-card-offer__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .c-card-offer__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.5rem;
  }
}

.c-card-offer__time {
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 767px) {
  .c-card-offer__time {
    font-size: 0.75rem;
  }
}

.c-card-offer__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .c-card-offer__tags {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.c-card-offer__tag {
  padding: 0.3125rem 0.625rem;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.75rem;
  background-color: #fc9ccc;
  color: #fff;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .c-card-offer__tag {
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
  }
}

.c-card-offer__tag--regular {
  background-color: #25aee7;
}

.c-card-offer__tag--part {
  background-color: #f87b30;
}

.c-card-offer__title {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #000;
}
@media screen and (max-width: 767px) {
  .c-card-offer__title {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

.c-card-voice__title {
  height: 4.0625rem;
  padding: 0 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.375rem;
  font-weight: 500;
  color: #000;
  letter-spacing: 2.2px;
  gap: 1rem;
  background: url(../images/voice_bg.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .c-card-voice__title {
    height: 1.875rem;
    font-size: 0.875rem;
    letter-spacing: 1.4px;
    gap: 0.875rem;
    background: url(../images/voice_bg-sp.png) no-repeat center/cover;
    padding: 0 0.625rem;
  }
}

.c-card-voice__title--02 {
  background: url(../images/voice_bg02.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .c-card-voice__title--02 {
    background: url(../images/voice_bg02-sp.png) no-repeat center/cover;
  }
}

.c-card-voice__title--03 {
  background: url(../images/voice_bg03.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .c-card-voice__title--03 {
    background: url(../images/voice_bg03-sp.png) no-repeat center/cover;
  }
}

.c-card-voice__title--04 {
  background: url(../images/voice_bg04.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .c-card-voice__title--04 {
    background: url(../images/voice_bg04-sp.png) no-repeat center/cover;
  }
}

.c-card-voice__title--05 {
  background: url(../images/voice_bg05.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .c-card-voice__title--05 {
    background: url(../images/voice_bg05-sp.png) no-repeat center/cover;
  }
}

.c-card-voice__title--06 {
  background: url(../images/voice_bg06.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .c-card-voice__title--06 {
    background: url(../images/voice_bg06-sp.png) no-repeat center/cover;
  }
}

.c-card-voice__title--07 {
  background: url(../images/voice_bg07.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .c-card-voice__title--07 {
    background: url(../images/voice_bg07-sp.png) no-repeat center/cover;
  }
}

.c-card-voice__title--08 {
  background: url(../images/voice_bg08.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .c-card-voice__title--08 {
    background: url(../images/voice_bg08-sp.png) no-repeat center/cover;
  }
}

.c-card-voice__title span {
  font-size: 1rem;
  letter-spacing: 1.6px;
  padding-left: 0.8125rem;
  border-left: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .c-card-voice__title span {
    font-size: 0.875rem;
    padding-left: 0.5625rem;
  }
}

.c-card-voice__top-img {
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .c-card-voice__top-img {
    margin-top: 1rem;
  }
}

.c-card-voice__top-img img {
  aspect-ratio: 67/35;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.c-card-voice__lead {
  margin-top: 1.875rem;
  font-family: "a-otf-ryumin-pr6n", serif;
  font-size: 1.25rem;
  color: #000;
  letter-spacing: 2px;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 767px) {
  .c-card-voice__lead {
    margin-top: 1rem;
    font-size: 0.9375rem;
    letter-spacing: 1.5px;
    padding-bottom: 0.625rem;
  }
}

.c-card-voice__q {
  margin-top: 1.875rem;
  font-size: 1.125rem;
  font-weight: bold;
  color: #353c5d;
  letter-spacing: 1.8px;
}
@media screen and (max-width: 767px) {
  .c-card-voice__q {
    margin-top: 1rem;
    font-size: 1rem;
    letter-spacing: 1.6px;
    font-weight: 500;
  }
}

.c-card-voice__q span {
  display: block;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .c-card-voice__q span {
    font-size: 0.8125rem;
    font-weight: bold;
  }
}

.c-card-voice__a {
  margin-top: 1.25rem;
  line-height: 1.875;
  color: #666666;
  letter-spacing: 0.3px;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .c-card-voice__a {
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.625;
  }
}

.c-card-voice__interview-img {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-card-voice__interview-img {
    margin-top: 1.5rem;
  }
}

.c-item-news {
  padding: 1.25rem 1rem;
}
@media screen and (max-width: 767px) {
  .c-item-news {
    padding: 0.9375rem 0;
  }
}

.c-item-news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-item-news__head {
    gap: 1.125rem;
  }
}

.c-item-news__category span {
  width: 5.4375rem;
  height: 1.25rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid;
  background-color: #fff;
  font-size: 0.8125rem;
  color: #000;
  font-weight: 500;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-item-news__category span {
    height: 1rem;
  }
}

.c-item-news__category .c-item-news__category-news {
  border: 1px solid #ea5b2e;
}

.c-item-news__category .c-item-news__category-recruit-info {
  border: 1px solid #e767a3;
}

.c-item-news__category .c-item-news__category-kondate {
  border: 1px solid #3f96e3;
}

.c-item-news__time {
  font-size: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .c-item-news__time {
    font-weight: 500;
  }
}

.c-item-news__title {
  margin-top: 0.5rem;
  font-weight: 500;
  color: #000;
}

.c-page-section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}

.c-page-section-title__en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #666666;
  gap: 0.4375rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .c-page-section-title__en {
    font-size: 0.75rem;
  }
}

.c-page-section-title__en::before {
  content: "";
  width: 0.6875rem;
  height: 0.6875rem;
  background-color: #25aee7;
}
@media screen and (max-width: 767px) {
  .c-page-section-title__en::before {
    width: 0.5625rem;
    height: 0.5625rem;
  }
}

.c-page-section-title__jp {
  font-size: 1.625rem;
  font-weight: bold;
  letter-spacing: 5.2px;
  color: #000;
}
@media screen and (max-width: 767px) {
  .c-page-section-title__jp {
    font-size: 1rem;
  }
}

.c-section-title {
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 1.3px;
  color: #25aee7;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    font-size: 1.125rem;
    letter-spacing: 0.9px;
  }
}

.p-access__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.8125rem;
}
@media screen and (max-width: 767px) {
  .p-access__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}

.p-access__body {
  width: 28.9090909091%;
}
@media screen and (max-width: 767px) {
  .p-access__body {
    width: 100%;
  }
}

.p-access__title {
  font-size: 1.625rem;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.52px;
}
@media screen and (max-width: 767px) {
  .p-access__title {
    font-size: 1.125rem;
    text-align: center;
  }
}

.p-access__address {
  margin-top: 3rem;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 767px) {
  .p-access__address {
    margin-top: 0.625rem;
    font-size: 0.875rem;
  }
}

.p-access__btn {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-access__btn {
    margin-top: 1rem;
  }
}

.p-access__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 4.1px;
  width: 100%;
  height: 3.75rem;
  border-radius: 1.875rem;
  border: 1px solid #25aee7;
  color: #25aee7;
  gap: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .p-access__btn a {
    font-size: 1rem;
    height: 2.5rem;
    gap: 0.75rem;
  }
}

.p-access__btn a:hover {
  opacity: 1;
  background-color: rgba(37, 174, 231, .1);
}

.p-access__btn a::before {
  content: "";
  width: 1.5625rem;
  height: 1.5625rem;
  background: url(../images/icon_tel.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-access__btn a::before {
    width: 1.1875rem;
    height: 1.1875rem;
  }
}

.p-access__text {
  margin-top: 2.5rem;
  font-size: 1.125rem;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 767px) {
  .p-access__text {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
}

.p-access__map {
  width: 64.0909090909%;
}
@media screen and (max-width: 767px) {
  .p-access__map {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

.p-access__map iframe {
  aspect-ratio: 705/375;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-article__greetings {
  padding-top: 4.375rem;
  padding-bottom: 3.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-article__greetings {
    padding-top: 0;
    padding-bottom: 1.875rem;
  }
}

.p-article__greetings::after {
  content: "";
  width: 100%;
  height: 0.1875rem;
  background: url(../images/border.png) no-repeat center/cover;
  position: absolute;
  bottom: 0;
}

.p-article__philosophy {
  padding: 4.375rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-article__philosophy {
    padding: 1.875rem 0;
  }
}

.p-article__philosophy::after {
  content: "";
  width: 100%;
  height: 0.1875rem;
  background: url(../images/border.png) no-repeat center/cover;
  position: absolute;
  bottom: 0;
}

.p-article__outline {
  padding: 4.375rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-article__outline {
    padding: 1.875rem 0 0.625rem;
  }
}

.p-article__outline::after {
  content: "";
  width: 100%;
  height: 0.1875rem;
  background: url(../images/border.png) no-repeat center/cover;
  position: absolute;
  bottom: 0;
}

.p-article__equipment {
  padding: 4.375rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-article__equipment {
    padding: 1.875rem 0;
  }
}

.p-article__equipment::after {
  content: "";
  width: 100%;
  height: 0.1875rem;
  background: url(../images/border.png) no-repeat center/cover;
  position: absolute;
  bottom: 0;
}

.p-article__map {
  padding: 4.375rem 0 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-article__map {
    padding: 1.875rem 0;
  }
}

.p-article__map::after {
  content: "";
  width: 100%;
  height: 0.1875rem;
  background: url(../images/border.png) no-repeat center/cover;
  position: absolute;
  bottom: 0;
}

.p-article__facility {
  padding: 3.75rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .p-article__facility {
    padding: 1.875rem 0 0;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .p-article__facility::after {
    content: "";
    width: 100%;
    height: 0.1875rem;
    background: url(../images/border.png) no-repeat center/cover;
    position: absolute;
    bottom: 0;
  }
}

.p-article__strengths {
  padding: 4.375rem 0 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-article__strengths {
    padding: 1.875rem 0 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-article__strengths:first-child {
    padding: 0rem 0 2.5rem;
  }
}

.p-article__strengths:last-child {
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-article__strengths:last-child {
    padding: 1.875rem 0 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-article__strengths::after {
    content: "";
    width: 100%;
    height: 0.1875rem;
    background: url(../images/border.png) no-repeat center/cover;
    position: absolute;
    bottom: 0;
  }
}

.p-article__visit {
  position: relative;
  padding-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-article__visit {
    padding-top: 0;
  }
}

.p-article__visit:not(:first-child) {
  padding-top: 3.75rem;
  padding-bottom: 3.125rem;
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 767px) {
  .p-article__visit:not(:first-child) {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
    border-bottom: none;
  }
}

.p-article__visit:last-child {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-article__visit:last-child {
    margin-bottom: 0rem;
  }
}

@media screen and (max-width: 767px) {
  .p-article__visit:not(:first-child)::after {
    content: "";
    width: 100%;
    height: 0.1875rem;
    background: url(../images/border.png) no-repeat center/cover;
    position: absolute;
    bottom: 0;
  }
}

.p-article__stay {
  position: relative;
  padding-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-article__stay {
    padding-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-article__stay:first-child {
    padding-bottom: 1.875rem;
  }
}

.p-article__stay:not(:first-child) {
  padding-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-article__stay:not(:first-child) {
    padding-top: 1.5625rem;
    padding-bottom: 1.5625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-article__stay:first-child {
    padding-bottom: 1.5625rem;
  }
}

.p-article__stay:last-child {
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-article__stay:last-child {
    margin-bottom: 0rem;
  }
}

@media screen and (max-width: 767px) {
  .p-article__stay::after {
    content: "";
    width: 100%;
    height: 0.1875rem;
    background: url(../images/border.png) no-repeat center/cover;
    position: absolute;
    bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-article__stay.p-article__stay--border::after {
    display: none;
  }
}

.p-article__voice {
  padding-top: 4.375rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-article__voice {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.p-article__offer {
  padding-top: 4.375rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-article__offer {
    padding-top: 0;
  }
}

.p-article__content {
  padding-top: 4.375rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-article__content {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.p-article__tel {
  padding-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-article__tel {
    padding-top: 0;
  }
}

.p-article__mail {
  margin-top: 1.875rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-article__mail {
    padding-bottom: 2.5rem;
  }
}

.p-aside__box {
  position: sticky;
  top: 4.375rem;
  border-radius: 0.3125rem;
}

.p-aside__title {
  height: 4.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #25aee7;
  padding-left: 1.1875rem;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 3.6px;
  border-radius: 0.3125rem 0.3125rem 0 0;
}

.p-aside__title span {
  font-size: 0.9375rem;
  letter-spacing: 3px;
}

.p-aside__list {
  border: 1px solid #f1f1f1;
  border-radius: 0 0 0.3125rem 0.3125rem;
}

.p-aside__item a {
  width: 100%;
  height: 3.125rem;
  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;
  padding: 0 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.p-aside__item a::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1px solid #25aee7;
  border-bottom: 1px solid #25aee7;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.p-content__title {
  margin-top: 3rem;
  font-size: 1.375rem;
  font-weight: 500;
  color: #000;
  letter-spacing: 1.1px;
  line-height: 1.6363636364;
}
@media screen and (max-width: 767px) {
  .p-content__title {
    margin-top: 1.5rem;
    font-size: 1.125rem;
  }
}

.p-content__meta {
  margin-top: 2.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-content__meta {
    margin-top: 1.25rem;
  }
}

.p-content__box {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-content__box {
    margin-top: 1.25rem;
  }
}

.p-content__box img {
  margin-bottom: 1.25rem;
}

.p-content__box p {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-content__box p {
    font-size: 0.875rem;
  }
}

.p-content__box h3 {
  margin-top: 1.25rem;
  font-size: 1.375rem;
  font-weight: 500;
  color: #000;
  letter-spacing: 4.4px;
}
@media screen and (max-width: 767px) {
  .p-content__box h3 {
    font-size: 1.125rem;
  }
}

.p-content__box table {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-content__box table {
    margin-top: 1rem;
  }
}

.p-content__box table td {
  border: 1px solid #f1f1f1;
  font-size: 0.9375rem;
  padding: 0.75rem 0.625rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-content__box table td {
    font-size: 0.875rem;
  }
}

.p-content__box table td:first-child {
  background-color: #def4fc;
  width: 10.0625rem;
}
@media screen and (max-width: 767px) {
  .p-content__box table td:first-child {
    width: 30%;
  }
}

.p-content__pagination {
  margin-top: 3.125rem;
  position: relative;
}

.p-content__pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-content__pagination .nav-previous a,
.p-content__pagination .nav-next a,
.p-content__pagination-btn {
  width: 13.4375rem;
  height: 2.5625rem;
  border: 1px solid #f1f1f1;
  -webkit-box-shadow: 0 0.125rem 0 0 #f1f1f1;
          box-shadow: 0 0.125rem 0 0 #f1f1f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.875rem;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-content__pagination .nav-previous a,
  .p-content__pagination .nav-next a,
  .p-content__pagination-btn {
    width: 7.5rem;
    height: 1.875rem;
    font-size: 0.75rem;
  }
}

.p-content__pagination .nav-previous a:hover,
.p-content__pagination .nav-next a:hover,
.p-content__pagination-btn:hover {
  background-color: #f7ac00;
  color: #fff;
  opacity: 1;
}

.p-content__pagination .nav-previous a::before,
.p-content__pagination .nav-next a::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-content__pagination .nav-previous a::before {
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-content__pagination .nav-previous a:hover::before {
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.p-content__pagination .nav-next a::after {
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.p-content__pagination .nav-next a:hover::after {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.p-content__pagination-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-content__pagination-btn {
    position: static;
    margin-top: 2.5rem;
    margin-inline: auto;
    -webkit-transform: none;
            transform: none;
  }
}

.p-content__pagination-btn::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: url(../images/icon_return.svg) no-repeat center/contain;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-content__pagination-btn:hover::before {
  background: url(../images/icon_return-white.svg) no-repeat center/contain;
}

.p-equipment__cards {
  margin-top: 1.25rem;
}

.p-equipment__card:nth-child(n+2) {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-equipment__card:nth-child(n+2) {
    margin-top: 1rem;
  }
}

.p-equipment__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-equipment__imgs {
    gap: 0.3125rem;
  }
}

.p-equipment__name {
  margin-top: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #000;
}

.p-food__subTitle {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-food__subTitle {
    margin-top: 0.9375rem;
    font-size: 0.9375rem;
    line-height: 1.7333333333;
  }
}

.p-food__wrap {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-food__wrap {
    margin-top: 0.9375rem;
  }
}

.p-food__body:not(:first-child) {
  margin-top: 1.25rem;
}

.p-food__text--margin {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-food__text--margin {
    margin-top: 0.9375rem;
  }
}

.p-food__text {
  text-align: justify;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-food__text {
    font-size: 0.9375rem;
    line-height: 1.7333333333;
  }
}

.p-food__subTitle2 {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-top: 0.625rem;
  line-height: 2.625;
}
@media screen and (max-width: 767px) {
  .p-food__subTitle2 {
    margin-top: 0.9375rem;
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    line-height: 2;
  }
}

.p-food__img {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-food__img {
    margin-top: 0.9375rem;
  }
}

.p-food__disease {
  position: relative;
  border: 2px solid #22a7e4;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-food__disease {
    margin-top: 1.25rem;
  }
}

.p-food__disease-title {
  font-size: 1.25rem;
  position: absolute;
  top: -1.25rem;
  left: 0.625rem;
  text-align: center;
  width: 8.6875rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-food__disease-title {
    font-size: 1.125rem;
    top: -1rem;
    width: 7.5rem;
    left: 1rem;
  }
}

.p-food__disease-text {
  font-size: 1rem;
  line-height: 5.625;
  letter-spacing: 0.014em;
  padding-left: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .p-food__disease-text {
    font-size: 0.9375rem;
    line-height: 2;
    padding: 1.25rem;
  }
}

.p-footer__top {
  height: 7.875rem;
  background-color: #25aee7;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer__top {
    height: auto;
    padding: 1.25rem 0;
  }
}

.p-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-footer__logo {
  width: 14.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 10rem;
  }
}

.p-footer__nav {
  margin-left: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    display: none;
  }
}

.p-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.3125rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.p-footer__meta {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-footer__meta {
    display: block;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 2.2857142857;
    letter-spacing: 1px;
  }
}

.p-footer__btn {
  margin-left: 1.875rem;
  width: 13.4375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__btn {
    display: none;
  }
}

.p-footer__btn a {
  width: 100%;
  height: 2.8125rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  color: #25aee7;
  background-color: #fff;
  border-radius: 1.875rem;
}

.p-footer__btn a:hover {
  opacity: 1;
  color: #fff;
  background-color: #ecb01f;
}

.p-footer__copyright {
  padding: 1rem 0;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    padding: 0.625rem 0;
  }
}

.p-form__table {
  width: 100%;
}

.p-form__table-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-form__table-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
}

.p-form__table-box:nth-child(n+2) {
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-form__table-box:nth-child(n+2) {
    margin-top: 1.5625rem;
  }
}

.p-form__table-box dt {
  width: 27.8571428571%;
  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;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .p-form__table-box dt {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
  }
}

.p-form__table-box dt span {
  width: 3.125rem;
  height: 1.375rem;
  background-color: #25aee7;
  border-radius: 0.25rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-form__table-box dt span {
    height: 1.0625rem;
    font-size: 0.8125rem;
  }
}

.p-form__table-box dd {
  width: 69.2857142857%;
}
@media screen and (max-width: 767px) {
  .p-form__table-box dd {
    width: 100%;
  }
}

.p-form__table-box dd input {
  width: 100%;
  height: 4.6875rem;
  border: 1px solid #e1e1e1;
  background-color: #fbfbfb;
  padding: 0.5rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-form__table-box dd input {
    height: 4.0625rem;
  }
}

.p-form__table-box dd input[type=radio] {
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  border: 1px solid #e1e1e1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
}

.p-form__table-box dd input[type=radio]:checked::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #cc0000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-form__table-box dd textarea {
  width: 100%;
  height: 18.4375rem;
  border: 1px solid #e1e1e1;
  background-color: #fbfbfb;
}
@media screen and (max-width: 767px) {
  .p-form__table-box dd textarea {
    height: 14.0625rem;
  }
}

.p-form__table-box--post dd input {
  width: 11.375rem;
}
@media screen and (max-width: 767px) {
  .p-form__table-box--post dd input {
    width: 100%;
  }
}

.p-form__table-box--post dd .text {
  font-weight: 500;
  color: #000;
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-form__table-box--post dd .text {
    display: none;
  }
}

.wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.p-fv__swiper {
  height: 100%;
}

.p-fv__slide img {
  aspect-ratio: 1400/595;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-fv__slide img {
    aspect-ratio: 75/60;
  }
}

.swiper-button-prev,
.swiper-button-next {
  width: 1.3125rem;
  height: 2.25rem;
}

.swiper-button-prev {
  left: 10%;
}

.swiper-button-next {
  right: 10%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/fv-arrow.png) no-repeat center/cover;
}

.swiper-button-prev::after {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.p-greetings__wrap {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-greetings__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}

.p-greetings__img {
  width: 33.8571428571%;
}
@media screen and (max-width: 767px) {
  .p-greetings__img {
    width: 100%;
  }
}

.p-greetings__img img {
  aspect-ratio: 237/260;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-greetings__img img {
    aspect-ratio: 67/34;
  }
}

.p-greetings__body {
  width: 62.1428571429%;
}
@media screen and (max-width: 767px) {
  .p-greetings__body {
    width: 100%;
  }
}

.p-greetings__text {
  line-height: 2.1875;
  text-align: justify;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .p-greetings__text {
    font-size: 0.9375rem;
    line-height: 1.7333333333;
    letter-spacing: 0.1px;
  }
}

.p-greetings__sign {
  margin-top: 1.5rem;
}

.p-greetings__sign img {
  width: 23.125rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-greetings__sign img {
    width: 19.3125rem;
  }
}

.p-header {
  border-bottom: 3px solid #25aee7;
  position: relative;
  z-index: 500;
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-header__logo {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    padding-left: 1.25rem;
    position: relative;
    z-index: 500;
  }
}

.p-header__logo a {
  width: 14.625rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo a {
    width: 10rem;
  }
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
    position: fixed;
    top: 3.75rem;
    left: 0;
    right: 0;
    bottom: 0;
    -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: #25aee7;
    z-index: 200;
    overflow-y: auto;
    padding: 0 1.25rem;
  }
}

.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-header__list {
    -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;
  }
}

.p-header__item {
  width: 7.8125rem;
  height: 6.25rem;
  border-left: 1px solid #e5e5e5;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-header__item {
    height: auto;
    border-left: none;
    width: 100%;
  }
}

.p-header__item--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__item--sp {
    display: block;
  }
}

.p-header__link {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.25rem;
  font-weight: bold;
  color: #25aee7;
}
@media screen and (max-width: 767px) {
  .p-header__link {
    color: #fff;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 1.125rem;
    letter-spacing: 3.6px;
    border-bottom: 1px solid #fff;
    padding: 1.875rem 1.875rem 0.875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-header__link::after {
    content: "";
    width: 1.5625rem;
    height: 1.5625rem;
    background: url(../images/icon_arrow-sp.png) no-repeat center/cover;
  }
}

.p-header__link:hover {
  background-color: #25aee7;
  color: #fff;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-header__link:hover {
    background-color: transparent;
  }
}

.p-header__link::before {
  content: "";
  width: 2.375rem;
  height: 1.8125rem;
  background: url(../images/header-icon01.png) no-repeat center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-header__link::before {
    display: none;
  }
}

.p-header__link:hover::before {
  background: url(../images/header-icon01-white.png) no-repeat center/contain;
}

.p-header__item:nth-child(2) .p-header__link::before {
  background: url(../images/header-icon02.png) no-repeat center/contain;
}

.p-header__item:nth-child(2) .p-header__link:hover::before {
  background: url(../images/header-icon02-white.png) no-repeat center/contain;
}

.p-header__item:nth-child(3) .p-header__link::before {
  background: url(../images/header-icon03.png) no-repeat center/contain;
}

.p-header__item:nth-child(3) .p-header__link:hover::before {
  background: url(../images/header-icon03-white.png) no-repeat center/contain;
}

.p-header__item:nth-child(4) .p-header__link::before {
  background: url(../images/header-icon04.png) no-repeat center/contain;
}

.p-header__item:nth-child(4) .p-header__link:hover::before {
  background: url(../images/header-icon04-white.png) no-repeat center/contain;
}

.p-header__item:nth-child(5) .p-header__link::before {
  background: url(../images/header-icon05.png) no-repeat center/contain;
}

.p-header__item:nth-child(5) .p-header__link:hover::before {
  background: url(../images/header-icon05-white.png) no-repeat center/contain;
}

.p-header__item:nth-child(6) .p-header__link::before {
  background: url(../images/header-icon06.png) no-repeat center/contain;
}

.p-header__item:nth-child(6) .p-header__link:hover::before {
  background: url(../images/header-icon06-white.png) no-repeat center/contain;
}

.p-header__sub-box {
  width: 37.5rem;
  padding-top: 1.25rem;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-header__sub-box {
    width: auto;
    position: static;
    display: none;
    -webkit-transform: none;
            transform: none;
    padding-top: 0;
  }
}

.p-header__sub-box.is-active {
  opacity: 1;
  display: block;
}

.p-header__item--sub:hover .p-header__sub-box {
  opacity: 1;
  visibility: visible;
}

.p-header__sub-list {
  padding: 2.5rem 2.5rem 0.875rem;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header__sub-list {
    padding: 0;
    -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;
  }
}

.p-header__sub-list::before {
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 3.75rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-header__sub-list::before {
    display: none;
  }
}

.p-header__sub-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  font-weight: 500;
  color: #25aee7;
}

@media screen and (max-width: 767px) {
  .p-header__sub-item-img {
    display: none;
  }
}

.p-header__column-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1px;
}
@media screen and (max-width: 767px) {
  .p-header__column-list {
    margin-top: 1.25rem;
    gap: 1.25rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-header__column-item a {
  width: 7.8125rem;
  height: 3.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-header__column-item a {
    height: auto;
    color: #25aee7;
  }
}

.p-header__column-item:first-child a {
  background-color: #25aee7;
}
@media screen and (max-width: 767px) {
  .p-header__column-item:first-child a {
    background-color: transparent;
  }
}

.p-header__column-item:last-child a {
  background-color: #ecb01f;
}
@media screen and (max-width: 767px) {
  .p-header__column-item:last-child a {
    background-color: transparent;
  }
}

.p-header__toggle-box {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__toggle-box {
    width: 4rem;
    height: 4rem;
    background-color: #25aee7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    z-index: 500;
  }
}

.p-header__toggle {
  width: 1.375rem;
  height: 1.3125rem;
  position: relative;
}

.p-header__toggle span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-header__toggle span:nth-child(1) {
  top: 0;
}

.p-header__toggle-box.show .p-header__toggle span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-header__toggle span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-header__toggle span:nth-child(3) {
  bottom: 0;
}

.p-header__toggle-box.show .p-header__toggle span:nth-child(3) {
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-header__sp-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__sp-btn {
    display: block;
    margin-top: 1.875rem;
  }
}

.p-header__sp-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  padding: 0.9375rem 0.625rem 0.9375rem 0.9375rem;
  gap: 0.9375rem;
}

.p-header__sp-img {
  width: 46.7320261438%;
}

.p-header__sp-text {
  width: 48.3660130719%;
  font-size: 1.125rem;
  font-weight: 500;
  color: #25aee7;
  letter-spacing: 0.4px;
}

.p-info__time {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 767px) {
  .p-info__time {
    padding-bottom: 0;
    border-bottom: none;
  }
}

.p-info__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-info__table {
    font-size: 0.875rem;
    border-bottom: 1px solid #25aee7;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

.p-info__table thead th {
  background-color: #25aee7;
  color: #fff;
  height: 2.6875rem;
  font-weight: 500;
  padding: 0 0.875rem;
  border-bottom: 1px solid #cdd9dd;
}
@media screen and (max-width: 767px) {
  .p-info__table thead th {
    border-bottom: none;
    padding: 0 0.25rem;
  }
}

.p-info__table thead th:first-child {
  width: 8.125rem;
  text-align: left;
  padding-left: 0.6875rem;
  border-radius: 0.625rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-info__table thead th:first-child {
    padding-left: 1.25rem;
    border-radius: 0;
    width: 7.5rem;
  }
}

.p-info__table thead th:last-child {
  border-radius: 0 0.625rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-info__table thead th:last-child {
    border-radius: 0;
  }
}

.p-info__table thead th:not(:last-child) {
  border-right: 1px solid #cdd9dd;
}
@media screen and (max-width: 767px) {
  .p-info__table thead th:not(:last-child) {
    border-right: none;
  }
}

.p-info__table tbody td {
  color: #25aee7;
  font-weight: 500;
  height: 2.3125rem;
  text-align: center;
  border-bottom: 1px solid #cdd9dd;
  border-left: 1px solid #cdd9dd;
}
@media screen and (max-width: 767px) {
  .p-info__table tbody td {
    height: 2rem;
    border-bottom: none;
    border-left: none;
  }
}

.p-info__table tbody td:first-child {
  color: #333;
}

.p-info__table tbody td:last-child {
  border-right: 1px solid #cdd9dd;
}
@media screen and (max-width: 767px) {
  .p-info__table tbody td:last-child {
    border-right: none;
  }
}

.p-info__table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-info__table tbody tr:last-child td:first-child {
    border-radius: 0;
  }
}

.p-info__table tbody tr:last-child td:last-child {
  border-radius: 0 0 0.625rem 0;
}
@media screen and (max-width: 767px) {
  .p-info__table tbody tr:last-child td:last-child {
    border-radius: 0;
  }
}

.p-info__table-text {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 2.1428571429;
}
@media screen and (max-width: 767px) {
  .p-info__table-text {
    margin-top: 0;
    padding: 1.25rem;
    background-color: #fbfbfb;
    line-height: 2;
  }
}

.p-info__kamoku {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-info__kamoku {
    margin-top: 1rem;
  }
}

.p-kamoku__title {
  font-size: 1rem;
  font-weight: 500;
  color: #25aee7;
}
@media screen and (max-width: 767px) {
  .p-kamoku__title {
    font-size: 0.9375rem;
    font-weight: bold;
  }
}

.p-kamoku__label {
  margin-top: 0.625rem;
  width: 100%;
  height: 2.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #eef4f6;
  font-weight: 500;
  line-height: 1;
  color: #000;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 767px) {
  .p-kamoku__label {
    height: auto;
    padding: 0.625rem;
    font-size: 0.9375rem;
    letter-spacing: 0;
    line-height: 1.7333333333;
  }
}

.p-kamoku__address {
  margin-top: 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-kamoku__address {
    font-size: 0.875rem;
  }
}

.p-kamoku__tel {
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-kamoku__tel {
    font-size: 1.25rem;
  }
}

.p-kamoku__tel span {
  font-size: 0.9375rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-kamoku__tel span {
    font-size: 0.875rem;
  }
}

.p-link-list__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .p-link-list__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.125rem;
  }
}

.p-link-list__item {
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-link-list__img img {
    border-radius: 1.25rem 1.25rem 0 0;
    aspect-ratio: 75/45;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-link-list__btn {
  width: 80%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}

.p-mail__text {
  margin-top: 1.5rem;
  line-height: 1.875;
  color: #666666;
  letter-spacing: 1.34px;
}
@media screen and (max-width: 767px) {
  .p-mail__text {
    margin-top: 1rem;
    font-size: 0.9375rem;
  }
}

.p-mail__form {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-mail__form {
    margin-top: 1.875rem;
  }
}

.p-mail__privacy {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-mail__privacy {
    margin-top: 2.1875rem;
    margin-left: calc(50% - 49vw);
    margin-right: calc(50% - 49vw);
  }
}

.p-main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.p-main--thanks {
  padding-bottom: 6.25rem;
  padding-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-main--thanks {
    padding-top: 0;
    padding-bottom: 2.5rem;
  }
}

.p-main__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.6875rem;
}

.p-main__title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-main__title {
    font-size: 1.125rem;
  }
}

.p-main__thanks-text {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-main__thanks-text {
    font-size: 0.875rem;
  }
}

.p-main__article {
  width: 63.6363636364%;
}
@media screen and (max-width: 767px) {
  .p-main__article {
    width: 100%;
    padding-bottom: 2.5rem;
  }
}

.p-main__aside {
  width: 20.4545454545%;
  padding-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-main__aside {
    display: none;
  }
}

.p-main__tag-title {
  height: 3.4375rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #25aee7;
  color: #fff;
  font-size: 0.9375rem;
  letter-spacing: 3px;
}

.p-main__tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-main__tag-list .p-aside__item {
  border-bottom: 1px solid #e5e5e5;
  width: 50%;
}

.p-main__tag-list .p-aside__item:first-child {
  width: 100%;
}

.p-main__tag-list .p-aside__item:first-child a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.p-main__tag-list .p-aside__item:first-child a::after {
  position: absolute;
  top: 50%;
  right: 1.125rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.p-main__tag-list .p-aside__item a {
  font-size: 0.875rem;
  letter-spacing: 0px;
}

.p-main__tag-list .p-aside__item:nth-child(even) a {
  border-right: 1px solid #e5e5e5;
}

.p-map__img {
  margin-top: 1.5rem;
}

.p-medical-visit__head {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-medical-visit__head {
    padding-left: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-medical-visit__head::before {
    content: "";
    width: 100%;
    height: 1.875rem;
    background: url(../images/sec-bg.png) no-repeat center center/cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

.p-medical-visit__title {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #00b1ed;
}
@media screen and (max-width: 767px) {
  .p-medical-visit__title {
    color: #333;
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.p-medical-visit__text {
  font-size: 1rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  line-height: 1.875;
  text-indent: -1em;
  margin-top: 0.625rem;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .p-medical-visit__text {
    font-size: 0.9375rem;
    line-height: 1.8666666667;
    text-indent: -0.9375rem;
    margin-top: 1.25rem;
    padding-left: 0.9375rem;
    letter-spacing: 0;
    font-weight: 400;
  }
}

.p-medical-visit__text--nowrap {
  white-space: nowrap;
}

.p-medical-visit__text--nowrap2 {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-medical-visit__text--nowrap2 {
    white-space: normal;
    white-space: initial;
  }
}

@media screen and (max-width: 767px) {
  .p-medical-visit__text:not(:first-of-type) {
    margin-top: 0rem;
  }
}

.p-medical-visit__text span {
  color: #00b1ed;
  margin-right: 0.25rem;
}

@media screen and (max-width: 767px) {
  .p-news {
    background-color: #edf4f6;
  }
}

.p-news__head {
  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;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid #e5e5e5;
  position: relative;
}

.p-news__head::after {
  content: "";
  width: 6.4375rem;
  height: 2px;
  background-color: #25aee7;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.p-news__title {
  font-size: 1.375rem;
  font-weight: 500;
  color: #000;
  padding-left: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-news__title {
    font-size: 0.9375rem;
    font-weight: bold;
  }
}

.p-news__tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .p-news__tab-list--pc {
    display: none;
  }
}

.p-news__tab-list--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-news__tab-list--sp {
    margin-top: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e5e5;
  }
}

.p-news__tab {
  padding: 0 1.5625rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-news__tab {
    padding: 0;
    width: 6.25rem;
    height: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #fff;
    border-radius: 1rem;
    font-size: 0.8125rem;
  }
}

.p-news__tab--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-news__tab--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-news__tab:hover {
  color: #25aee7;
}
@media screen and (max-width: 767px) {
  .p-news__tab:hover {
    color: #fff;
    background-color: #25aee7;
  }
}

.p-news__tab:first-child {
  padding: 0 1.5625rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-news__tab:first-child {
    padding: 0;
  }
}

.p-news__tab:last-child {
  padding: 0 0 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-news__tab:last-child {
    padding: 0;
  }
}

.p-news__tab:not(:last-child) {
  border-right: 1px solid #333;
}
@media screen and (max-width: 767px) {
  .p-news__tab:not(:last-child) {
    border-right: none;
  }
}

.p-news__tab.active {
  color: #25aee7;
}
@media screen and (max-width: 767px) {
  .p-news__tab.active {
    color: #fff;
    background-color: #25aee7;
  }
}

.p-news__item {
  border-bottom: 1px solid #e5e5e5;
}

.p-news__btn {
  margin-top: 1.875rem;
}

.p-news__btn a {
  color: #000;
}

.p-offer__cards {
  margin-top: 1.5rem;
}

.p-offer__card:nth-child(n+2) {
  margin-top: 1.875rem;
}

.p-offer__pagination {
  margin-top: 4.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-offer__pagination {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-offer__pagination .page-numbers {
  padding: 0.8125rem 1.25rem;
  background-color: #fff;
  font-size: 0.875rem;
  letter-spacing: 1.4px;
  line-height: 1;
  color: #666666;
  -webkit-box-shadow: 0 0.125rem 0 #f1f1f1;
          box-shadow: 0 0.125rem 0 #f1f1f1;
}

.p-offer__pagination .page-numbers.current {
  background-color: #f7ac00;
  color: #fff;
}

.p-outline__table {
  margin-top: 1.25rem;
}

.p-outline__table-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .p-outline__table-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0;
  }
}

.p-outline__table-box:nth-child(n+2) {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-outline__table-box:nth-child(n+2) {
    margin-top: 0;
  }
}

.p-outline__table-box dt {
  width: 16.1428571429%;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #25aee7;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .p-outline__table-box dt {
    width: 100%;
    padding: 0.375rem 0.5625rem;
    border-bottom: none;
    background: url(../images/table_bg.png) no-repeat center/cover;
  }
}

.p-outline__table-box dd {
  width: 83.8571428571%;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e5e5e5;
  padding-left: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-outline__table-box dd {
    width: 100%;
    border-bottom: none;
    padding: 1.25rem 0 1.25rem 0.5625rem;
    color: #333;
  }
}

.p-page-fv {
  background: url(../images/fv-about.jpg) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-page-fv {
    background: url(../images/fv-about-sp.jpg) no-repeat center/cover;
  }
}

.p-page-fv--strengths {
  background: url(../images/fv-strengths.jpg) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-page-fv--strengths {
    background: url(../images/fv-strengths-sp.jpg) no-repeat center/cover;
  }
}

.p-page--visit {
  background: url(../images/fv-visit.jpg) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-page--visit {
    background: url(../images/fv-visit-sp.jpg) no-repeat center/cover;
  }
}

.p-page--stay {
  background: url(../images/fv-stay.jpg) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-page--stay {
    background: url(../images/fv-stay-sp.jpg) no-repeat center/cover;
  }
}

.p-page-fv--voice {
  background: url(../images/fv-voice.jpg) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-page-fv--voice {
    background: url(../images/fv-voice-sp.jpg) no-repeat center/cover;
  }
}

.p-page-fv--contact {
  background: url(../images/fv-contact.jpg) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-page-fv--contact {
    background: url(../images/fv-contact-sp.jpg) no-repeat center/cover;
  }
}

.p-page-fv__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-page-fv__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-page-fv__title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 5.6px;
  text-shadow: 0 1px 2px rgba(6, 0, 1, .3);
}
@media screen and (max-width: 767px) {
  .p-page-fv__title {
    font-size: 1.125rem;
    letter-spacing: 3.6px;
  }
}

.p-philosophy__text {
  margin-top: 1.25rem;
  padding: 1.875rem;
  background-color: rgba(37, 174, 231, .1);
  font-size: 1.25rem;
  font-weight: 500;
  color: #000;
  letter-spacing: 1.4px;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-philosophy__text {
    margin-top: 1rem;
    padding: 1rem 0.625rem;
    font-size: 1.125rem;
    letter-spacing: -0.023em;
    background: url(../images/philosophy_bg.png) no-repeat center/cover;
  }
}

.p-privacy {
  padding: 1.875rem;
  border: 3px solid #25aee7;
}
@media screen and (max-width: 767px) {
  .p-privacy {
    padding: 1.875rem 1.25rem;
  }
}

.p-privacy__title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-privacy__title {
    font-size: 1rem;
  }
}

.p-privacy__text {
  line-height: 1.875;
  color: #666666;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .p-privacy__text {
    font-size: 0.9375rem;
  }
}

.p-privacy__box {
  margin-top: 1.5rem;
  padding: 1.25rem 1.875rem 1.875rem;
  background-color: #fbfbfb;
  height: 22.6875rem;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .p-privacy__box {
    padding: 1.875rem 1.125rem;
    height: 16.8125rem;
  }
}

.p-privacy__box-title {
  color: #000;
  font-weight: 500;
  letter-spacing: 1.7px;
}
@media screen and (max-width: 767px) {
  .p-privacy__box-title {
    font-size: 0.9375rem;
  }
}

.p-privacy__box-text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 2.1428571429;
  letter-spacing: 0.7px;
}
@media screen and (max-width: 767px) {
  .p-privacy__box-text {
    font-size: 0.9375rem;
  }
}

.p-privacy__agree {
  margin-top: 1.875rem;
  height: 4.375rem;
  padding: 0 1.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5625rem;
  background-color: #fbfbfb;
}
@media screen and (max-width: 767px) {
  .p-privacy__agree {
    margin-top: 1.25rem;
    height: auto;
    padding: 0.625rem 2.5rem 0.625rem 1.25rem;
    font-size: 0.9375rem;
    color: #000;
    gap: 1rem;
  }
}

.p-privacy__agree input[type=checkbox] {
  width: 2.1875rem;
  height: 2.1875rem;
  border: 1px solid #e5e5e5;
  background-color: #fbfbfb;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-privacy__agree input[type=checkbox] {
    width: 1.25rem;
    height: 1.25rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.p-privacy__agree input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0.5rem;
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
  width: 0.875rem;
  height: 1.375rem;
  border-right: 0.5rem solid #cc0000;
  border-bottom: 0.5rem solid #cc0000;
}
@media screen and (max-width: 767px) {
  .p-privacy__agree input[type=checkbox]:checked::before {
    top: 0;
    left: 0.25rem;
    width: 0.625rem;
    height: 1.125rem;
    border-right: 0.375rem solid #cc0000;
    border-bottom: 0.375rem solid #cc0000;
  }
}

.p-privacy__submit {
  margin-top: 2.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__submit {
    margin-top: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-privacy__submit input {
  width: 100%;
  height: 4.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f7ac00;
  color: #fff;
  letter-spacing: 1.7px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-privacy__submit input {
    height: 3.125rem;
    font-size: 0.875rem;
  }
}

.p-recruit {
  background: url(../images/recruit_bg.jpg) no-repeat center/cover;
  border-radius: 1.875rem 1.875rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-recruit {
    background: url(../images/recruit_bg-sp.jpg) no-repeat center/cover;
    border-radius: 1.25rem 1.25rem 0 0;
  }
}

.p-recruit__title {
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 1.3px;
  color: #25aee7;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__title {
    font-size: 1rem;
    letter-spacing: 0.8px;
  }
}

.p-recruit__text {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.9px;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
@media screen and (max-width: 767px) {
  .p-recruit__text {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    letter-spacing: 0;
  }
}

.p-recruit__btns {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__btns {
    display: none;
  }
}

.p-recruit__btns--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-recruit__btns--sp {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-recruit__btn {
  width: 16.25rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__btn {
    width: 50%;
    height: 3.375rem;
    border-left: 1px solid #e5e5e5;
  }
}

@media screen and (max-width: 767px) {
  .p-recruit__btn a {
    border: none;
    height: 3.375rem;
    border-bottom: 1px solid #25aee7;
  }
}

.p-recruit__btn:nth-child(1) a {
  border-radius: 1.875rem 0 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__btn:nth-child(1) a {
    border-radius: 0;
  }
}

.p-recruit__btn:nth-child(2) a {
  border-radius: 0 1.875rem 1.875rem 0;
}
@media screen and (max-width: 767px) {
  .p-recruit__btn:nth-child(2) a {
    border-radius: 0;
  }
}

.p-recruit__btn:nth-child(1) a::before {
  right: auto;
  left: 1.25rem;
}

.p-recruit__btn:nth-child(1) a::after {
  right: auto;
  left: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__btn:nth-child(1) a::after {
    left: auto;
    right: 1.125rem;
  }
}

.p-rehabilitation__title .c-page-section-title__jp {
  letter-spacing: 0.1em;
}

.p-rehabilitation__subTitle {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-rehabilitation__subTitle {
    margin-top: 0.9375rem;
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.7333333333;
  }
}

.p-rehabilitation__wrap {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-rehabilitation__wrap {
    margin-top: 0.9375rem;
  }
}

.p-rehabilitation__text--margin {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-rehabilitation__text--margin {
    margin-top: 0.9375rem;
  }
}

.p-rehabilitation__text {
  text-align: justify;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-rehabilitation__text {
    font-size: 0.9375rem;
    line-height: 1.7333333333;
  }
}

.p-rehabilitation__subTitle2 {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-top: 0.625rem;
  line-height: 2.625;
}
@media screen and (max-width: 767px) {
  .p-rehabilitation__subTitle2 {
    margin-top: 0.9375rem;
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    line-height: 2;
  }
}

.p-rehabilitation__img {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-rehabilitation__img {
    margin-top: 0.9375rem;
  }
}

.p-rehabilitation__disease {
  position: relative;
  border: 2px solid #22a7e4;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-rehabilitation__disease {
    margin-top: 1.25rem;
  }
}

.p-rehabilitation__disease-title {
  font-size: 1.25rem;
  position: absolute;
  top: -1.25rem;
  left: 0.625rem;
  text-align: center;
  width: 8.6875rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-rehabilitation__disease-title {
    font-size: 1.125rem;
    top: -1rem;
    width: 7.5rem;
    left: 1rem;
  }
}

.p-rehabilitation__disease-text {
  font-size: 1rem;
  line-height: 5.625;
  letter-spacing: 0.014em;
  padding-left: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .p-rehabilitation__disease-text {
    font-size: 0.9375rem;
    line-height: 2;
    padding: 1.25rem;
  }
}

.p-related__title {
  text-align: center;
}

.p-related__list {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-related__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.p-related__item a {
  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;
  padding: 0.875rem 0.875rem 0;
  border-radius: 0.625rem;
  background-color: #e8f4f8;
}

.p-related__item a:hover {
  opacity: 1;
  background-color: #ecb01f;
}

.p-related__img img {
  aspect-ratio: 333/225;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-related__name {
  font-size: 1.125rem;
  font-weight: 500;
  height: 3.625rem;
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-related__name {
    height: 2.6875rem;
    font-size: 0.875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-related__name span {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-related__name span {
    font-size: 0.75rem;
  }
}

.p-related__item a:hover .p-related__name {
  color: #fff;
}

.p-stay-other {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-stay-other {
    margin-top: 0.625rem;
  }
}

.p-stay-other__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.75rem 0.625rem 0.75rem 1.5625rem;
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 767px) {
  .p-stay-other__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.1875rem 0.625rem 1.1875rem 0rem;
  }
}

.p-stay-other__item:first-child {
  padding-top: 0;
}

.p-stay-other__text {
  font-size: 1rem;
  letter-spacing: 0.05em;
  width: 7.5rem;
  line-height: 1.875;
  font-weight: 500;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-stay-other__text {
    font-size: 0.9375rem;
    width: 3.75rem;
    line-height: 1.7333333333;
  }
}

@media screen and (max-width: 767px) {
  .p-stay-other__text--wiz {
    width: auto;
    width: initial;
  }
}

.p-stay-other__text.p-stay-other__text--width {
  width: 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-stay-other__text.p-stay-other__text--width {
    width: auto;
    width: initial;
  }
}

.p-stay-other__text2 {
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-stay-other__text2 {
    margin-top: 0rem;
    font-size: 0.9375rem;
    line-height: 1.7333333333;
  }
}

.p-stay-other__text2.p-stay-other__text2--nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-stay-other__text2.p-stay-other__text2--nowrap {
    white-space: normal;
    white-space: initial;
  }
}

.p-stay-other__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-stay-other__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-stay-other__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-stay-other__box--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
}

.p-stay-other__item-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}

.p-stay__title {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.1538461538;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-stay__title {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}

.p-stay__body {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-stay__body {
    margin-top: 0.9375rem;
  }
}

.p-stay__body.p-stay__body--margin {
  margin-top: 8.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-stay__body.p-stay__body--margin {
    margin-top: 3.125rem;
  }
}

.p-stay__body.p-stay__body--border::before {
  content: "";
  width: 100%;
  height: 0.1875rem;
  background: url(../images/border.png) no-repeat center/cover;
  position: absolute;
  top: -4.375rem;
}
@media screen and (max-width: 767px) {
  .p-stay__body.p-stay__body--border::before {
    top: -1.5625rem;
  }
}

.p-stay__sub-title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3333333333;
  letter-spacing: 0.2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  gap: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-stay__sub-title {
    font-size: 0.9375rem;
    line-height: 1.7333333333;
    letter-spacing: 0.1em;
  }
}

.p-stay__sub-title--margin {
  margin-top: 1.25rem;
}

.p-stay__sub-title::before {
  content: "●";
  font-size: 1.125rem;
  font-weight: 500;
  color: #25aee7;
}
@media screen and (max-width: 767px) {
  .p-stay__sub-title::before {
    font-size: 0.9375rem;
  }
}

.p-stay__list {
  margin-top: 0.625rem;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .p-stay__list {
    padding-left: 0rem;
  }
}

.p-stay__item {
  font-size: 1rem;
  line-height: 1.875;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-stay__item {
    font-size: 0.9375rem;
    gap: 0.125rem;
    letter-spacing: 0.03em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}

.p-stay__item::before {
  content: "□";
  font-size: 1rem;
  font-weight: 500;
  color: #25aee7;
}
@media screen and (max-width: 767px) {
  .p-stay__item::before {
    font-size: 0.9375rem;
  }
}

.p-stay__list--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-stay__list--flex {
    gap: 0rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-stay__caution {
  font-size: 1rem;
  line-height: 1.875;
  text-indent: -1rem;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .p-stay__caution {
    font-size: 0.9375rem;
    text-indent: -0.9375rem;
    padding-left: 0.9375rem;
  }
}

.p-stay__caution--margin {
  margin-top: 0.9375rem;
  padding-left: 0.9375rem;
  text-indent: -0.9375rem;
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-stay__caution--margin {
    padding-left: 0.875rem;
    text-indent: -0.875rem;
    margin-top: 0.625rem;
    font-size: 0.875rem;
  }
}

.p-stay__sub-title2 {
  margin-top: 0.9375rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.3125rem;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-stay__sub-title2 {
    font-size: 0.9375rem;
    letter-spacing: 0.1em;
  }
}

@media screen and (max-width: 767px) {
  .p-stay__sub-title2.u-mobile {
    margin-top: 0.6875rem;
    padding-left: 1.375rem;
  }
}

.p-stay__sub-title2.u-mobile::before {
  display: none;
}

.p-stay__sub-title2.p-stay__sub-title2--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-stay__sub-title2.p-stay__sub-title2--margin {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-stay__sub-title2.p-stay__sub-title2--margin {
    margin-top: 1.5625rem;
  }
}

.p-stay__sub-title2::before {
  content: "○";
  font-size: 1.125rem;
  font-weight: 500;
  color: #25aee7;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-stay__sub-title2::before {
    font-size: 0.9375rem;
  }
}

.p-stay__list2 {
  margin-top: 0.9375rem;
}

.p-stay__item2 {
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.05em;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  background-color: #fbfbfb;
  padding: 0.9375rem 1.5rem;
  border-block: 1px solid #e5e5e5;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .p-stay__item2 {
    font-size: 0.9375rem;
    padding: 0.9375rem 0rem;
    letter-spacing: 0;
  }
}

.p-stay__item2:nth-child(even) {
  background-color: #fff;
}

.p-stay__item2:last-child {
  border-bottom: 1px solid #e5e5e5;
}

.p-stay__item2 span {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-stay__item2 span {
    font-size: 0.9375rem;
  }
}

.p-stay .p-stay__yen {
  font-size: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-stay .p-stay__yen {
    font-size: 0.9375rem;
  }
}

.p-stay__text2 {
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.05em;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.p-stay__text2.p-stay__text2--padding {
  padding-left: 5.5625rem;
}
@media screen and (max-width: 767px) {
  .p-stay__text2.p-stay__text2--padding {
    padding-left: 0rem;
  }
}

.p-stay .p-stay__caution2 {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-stay .p-stay__caution2 {
    font-size: 0.9375rem;
    text-indent: -0.9375rem;
    padding-left: 0.9375rem;
    display: inline-block;
  }
}

@media screen and (max-width: 767px) {
  .p-stay__caution2.p-stay__caution2--none {
    display: none;
  }
}

.p-stay__item2--padding {
  padding-left: 5.5625rem;
}

.p-stay__text2--padding2 {
  padding-left: 8.625rem;
}

.p-stay__text2--margin {
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-stay__text2--margin {
    margin-top: 0rem;
  }
}

.p-stay__sub-title2 span {
  color: #fff;
  background-color: #25aee7;
  padding-inline: 0.3125rem;
}

.p-stay__sub-title2 span:nth-child(2) {
  background-color: transparent;
  color: #333;
  padding-inline: 0rem;
}

.p-stay__sub-title2 .p-stay__sub-title2--green {
  background-color: #207e3a;
}

.p-stay__sub-title2 .p-stay__sub-title2--yellow {
  background-color: #e1c715;
}

.p-stay__sub-title2 .p-stay__sub-title2--red {
  background-color: #e12d15;
}

.p-stay__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9375rem 4.375rem;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-stay__grid {
    display: block;
    margin-top: 0.625rem;
  }
}

.p-stay__list3.p-stay__list3--column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-stay__list3.p-stay__list3--column {
    margin-top: 0.625rem;
    gap: 0;
  }
}

.p-stay__item3 {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-stay__item3 {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.p-stay__item3 span {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-stay__item3 span {
    font-size: 0.9375rem;
  }
}

.p-stay--border {
  position: relative;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-stay--border {
    margin-top: 0;
  }
}

.p-stay--border:not(:first-child)::after {
  content: "";
  width: 100%;
  height: 0.1875rem;
  background: url(../images/border.png) no-repeat center/cover;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-stay--border:not(:first-child)::after {
    display: none;
  }
}

.p-stay__text {
  font-size: 1rem;
  line-height: 1.875;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-stay__text {
    margin-top: 0.625rem;
    font-size: 0.9375rem;
  }
}

.p-stay__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-stay__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.25rem;
  }
}

.p-stay__img {
  margin-top: 1.25rem;
  max-width: 22.1875rem;
  width: 100%;
  aspect-ratio: 355/224;
}
@media screen and (max-width: 767px) {
  .p-stay__img {
    width: 100vw;
    max-width: none;
    max-width: initial;
    margin-top: 2.5rem;
    margin-inline: calc(50% - 50vw);
  }
}

.p-stay__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-stay__img2 {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-stay__img2 {
    margin-top: 1.25rem;
  }
}

.p-stay__img2 img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-stay__text4 {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.08em;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-stay__text4 {
    font-size: 0.9375rem;
  }
}

@media screen and (max-width: 767px) {
  .p-stay__item2--nowrap {
    white-space: nowrap;
  }
}

.p-stay__item3-inline {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-stay__item3-inline {
    display: inline-block;
    padding-left: 3.75rem;
  }
}

.p-stay__box {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-stay__box {
    position: relative;
    padding-bottom: 1.875rem;
    border-bottom: none;
  }
}

@media screen and (max-width: 767px) {
  .p-stay__box::after {
    content: "";
    width: 100%;
    height: 0.1875rem;
    background: url(../images/border.png) no-repeat center/cover;
    position: absolute;
    bottom: 0;
  }
}

.p-strengths__wrap {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-strengths__wrap {
    margin-top: 0.9375rem;
  }
}

.p-strengths__text {
  letter-spacing: 0.002em;
  line-height: 2;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-strengths__text {
    font-size: 0.9375rem;
    line-height: 1.7333333333;
  }
}

.p-strengths__img {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-strengths__img {
    margin-top: 1.5625rem;
  }
}

.p-strengths__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-strengths__img img {
    aspect-ratio: 335/335;
  }
}

.p-strengths__frame {
  position: relative;
  width: 100%;
  margin-top: 1.5625rem;
  padding: 1.25rem;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-strengths__frame {
    max-width: 20.875rem;
    margin-inline: auto;
    margin-top: 0.625rem;
    padding: 1.25rem 1.5625rem;
  }
}

.p-strengths__frame::before {
  content: "";
  width: 43.75rem;
  height: 15.0625rem;
  background: url(../images/strengths-frame.png) no-repeat center/cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-strengths__frame::before {
    background: url(../images/strengths-frame-sp.png) no-repeat center/contain;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}

.p-strengths__frame2::before {
  width: 43.75rem;
  height: 11.375rem;
  background: url(../images/strengths-frame2.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-strengths__frame2::before {
    background: url(../images/strengths-frame2-sp.png) no-repeat center/contain;
    width: 100%;
    height: 100%;
  }
}

.p-strengths__frame-text {
  font-size: 1rem;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .p-strengths__frame-text {
    font-size: 0.9375rem;
    line-height: 1.7333333333;
  }
}

.p-tel {
  padding-bottom: 1.875rem;
  border-bottom: 1px solid #e5e5e5;
}

.p-tel__box {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-tel__box {
    margin-top: 1rem;
  }
}

.p-tel__name {
  font-size: 1.125rem;
  font-weight: bold;
  color: #000;
  letter-spacing: 3.6px;
}
@media screen and (max-width: 767px) {
  .p-tel__name {
    font-size: 0.9375rem;
    letter-spacing: 0.7px;
    font-weight: 500;
  }
}

.p-tel__num {
  margin-top: 0.625rem;
  font-size: 1.125rem;
  font-weight: bold;
  color: #000;
  letter-spacing: 3.6px;
}
@media screen and (max-width: 767px) {
  .p-tel__num {
    font-size: 0.9375rem;
    letter-spacing: 0.7px;
  }
}

.p-tel__num span {
  font-size: 0.9375rem;
}

.p-tel__address {
  margin-top: 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.7px;
}

.p-top__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .p-top__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.5rem;
  }
}

.p-top__news {
  width: 47.6363636364%;
}
@media screen and (max-width: 767px) {
  .p-top__news {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 1.5625rem 1.25rem 2.1875rem;
  }
}

.p-top__info {
  width: 45.4545454545%;
}
@media screen and (max-width: 767px) {
  .p-top__info {
    width: 100%;
  }
}

.p-type__title {
  text-align: center;
}

.p-type__list {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-type__list {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-type__item {
  padding: 0 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-type__item {
    padding: 1.25rem 0;
  }
}

.p-type__item:nth-child(4) {
  padding: 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-type__item:nth-child(4) {
    padding: 1.25rem 0;
  }
}

.p-type__item:not(:last-child) {
  border-right: 1px solid #e5e5e5;
}
@media screen and (max-width: 767px) {
  .p-type__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
  }
}

@media screen and (max-width: 767px) {
  .p-type__item:nth-child(odd) {
    border-right: 1px solid #e5e5e5;
  }
}

.p-type__item:first-child {
  padding: 0 3.75rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-type__item:first-child {
    padding: 1.25rem 0;
  }
}

.p-type__item:last-child {
  padding: 0 0 0 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-type__item:last-child {
    padding: 1.25rem 0;
  }
}

.p-type__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-type__item a {
    gap: 0.625rem;
  }
}

.p-type__item a:hover {
  opacity: 1;
}

.p-type__item-img {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  border: 1px solid #25aee7;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-type__item-img {
    border: none;
    width: 3.75rem;
    height: 3.75rem;
  }
}

.p-type__item a:hover .p-type__item-img {
  background-color: #ecb01f;
  border: none;
}

.p-type__item-img::before {
  content: "";
  width: 3.625rem;
  height: 3.375rem;
  background: url(../images/type01.png) no-repeat center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-type__item a:hover .p-type__item-img::before {
  background: url(../images/type01-white.png) no-repeat center/contain;
}

.p-type__item:nth-child(2) .p-type__item-img::before {
  background: url(../images/type02.png) no-repeat center/contain;
}

.p-type__item:nth-child(2) a:hover .p-type__item-img::before {
  background: url(../images/type02-white.png) no-repeat center/contain;
}

.p-type__item:nth-child(3) .p-type__item-img::before {
  background: url(../images/type03.png) no-repeat center/contain;
}

.p-type__item:nth-child(3) a:hover .p-type__item-img::before {
  background: url(../images/type03-white.png) no-repeat center/contain;
}

.p-type__item:nth-child(4) .p-type__item-img::before {
  background: url(../images/type04.png) no-repeat center/contain;
}

.p-type__item:nth-child(4) a:hover .p-type__item-img::before {
  background: url(../images/type04-white.png) no-repeat center/contain;
}

.p-type__item:nth-child(5) .p-type__item-img::before {
  background: url(../images/type05.png) no-repeat center/contain;
}

.p-type__item:nth-child(5) a:hover .p-type__item-img::before {
  background: url(../images/type05-white.png) no-repeat center/contain;
}

.p-type__name {
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-type__name {
    font-size: 0.875rem;
  }
}

.p-visit__title {
  font-size: 1.625rem;
  letter-spacing: 0.2em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-visit__title {
    font-size: 1rem;
  }
}

.p-visit__body {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-visit__body {
    margin-top: 1.25rem;
  }
}

.p-visit__table {
  border: 1px solid #cad9de;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 7px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-visit__table {
    border-radius: 10px;
  }
}

.p-visit__table thead tr {
  color: #fff;
}

.p-visit__table th {
  border: 1px solid #cad9de;
  background-color: #00b1ed;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  width: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-visit__table th {
    border: none;
    font-size: 0.875rem;
    width: 1.5625rem;
  }
}

.p-visit__table th:first-child {
  padding: 0.5rem 0.9375rem 0.5rem 0.6875rem;
  text-align: left;
  border-radius: 7px 0 0 0;
  width: 8.25rem;
}
@media screen and (max-width: 767px) {
  .p-visit__table th:first-child {
    border-radius: 10px 0 0 0;
    padding: 1.0625rem 0.9375rem;
    width: 8.125rem;
  }
}

.p-visit__table th:last-child {
  padding: 0.5rem 0.9375rem 0.5rem 0.6875rem;
  border-radius: 0 7px 0 0;
  width: 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-visit__table th:last-child {
    border-radius: 0 10px 0 0;
    padding: 0;
    width: 4.4375rem;
  }
}

.p-visit__table tbody {
  border: 1px solid #cad9de;
}
@media screen and (max-width: 767px) {
  .p-visit__table tbody {
    border: none;
  }
}

.p-visit__table td {
  border: 1px solid #cad9de;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #00b1ed;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-visit__table td {
    border: none;
    font-size: 0.875rem;
    padding-block: 0.75rem 0.1875rem;
  }
}

.p-visit__table td:first-child {
  padding: 0.5rem 0.3125rem 0.5rem 0rem;
  text-align: right;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-visit__table td:first-child {
    padding: 0.75rem 0rem 0.1875rem 0.9375rem;
    text-align: left;
    white-space: nowrap;
  }
}

@media screen and (max-width: 767px) {
  .p-visit__table tr:last-child td {
    padding-block: 0.1875rem 0.75rem;
  }
}

@media screen and (max-width: 767px) {
  .p-visit__table tr:last-child td:first-child {
    padding: 0.1875rem 0 0.75rem 0.9375rem;
    white-space: nowrap;
  }
}

.p-visit__table tr:last-child td:first-child {
  border-radius: 0 0 0 7px;
}
@media screen and (max-width: 767px) {
  .p-visit__table tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
  }
}

.p-visit__table tr:last-child td:last-child {
  border-radius: 0 0 7px 0;
}
@media screen and (max-width: 767px) {
  .p-visit__table tr:last-child td:last-child {
    border-radius: 0 0 10px 0;
  }
}

.p-visit__caution {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-visit__caution {
    font-size: 0.9375rem;
    margin-top: 1.25rem;
    line-height: 1.6;
    text-indent: -0.9375rem;
    padding-left: 0.9375rem;
  }
}

.p-visit__medical-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8125rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-visit__medical-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-visit__medical-title {
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #00b1ed;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-visit__medical-title {
    font-size: 0.9375rem;
    border: 1px solid #e5e5e5;
    line-height: 2.6666666667;
    display: block;
    width: 100%;
    text-align: center;
  }
}

.p-visit__medical-text {
  font-size: 1rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-visit__medical-text {
    margin-top: 0.625rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    text-align: center;
  }
}

.p-visit__medical-rest {
  margin-top: 1.25rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 2.8125;
  background-color: #c7f0fb;
  text-align: center;
}

.p-visit__text {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .p-visit__text {
    font-size: 0.9375rem;
    line-height: 1.7333333333;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-top: 0.625rem;
  }
}

.p-voice__cards {
  margin-top: 1.5rem;
}

@media screen and (max-width: 767px) {
  .p-voice__card {
    padding-bottom: 1.875rem;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .p-voice__card::after {
    content: "";
    width: 100%;
    height: 0.1875rem;
    background: url(../images/border.png) no-repeat center/cover;
    position: absolute;
    bottom: 0;
  }
}

.p-voice__card:nth-child(n+2) {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-voice__card:nth-child(n+2) {
    margin-top: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */
