@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  word-wrap: break-word;
}

input, textarea {
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.8571428571;
  font-weight: 500;
  color: #333;
}
@media only screen and (min-width: 992px) {
  body {
    font-size: 16px;
    line-height: 1.875;
  }
}

main {
  margin-top: 60px;
}
@media only screen and (min-width: 992px) {
  main {
    margin-top: 100px;
  }
}

img {
  max-width: 100%;
  width: 100%;
  display: block;
}

.u-sp {
  display: block !important;
}
@media only screen and (min-width: 576px) {
  .u-sp {
    display: none !important;
  }
}

.u-tab {
  display: none !important;
}
@media only screen and (min-width: 576px) {
  .u-tab {
    display: block !important;
  }
}

.u-pc {
  display: none !important;
}
@media only screen and (min-width: 992px) {
  .u-pc {
    display: block !important;
  }
}

@media only screen and (min-width: 992px) {
  .sp {
    display: none !important;
  }
}

.c-txt-left {
  text-align: left;
}

.c-txt-center {
  text-align: center;
}

.c-txt-right {
  text-align: right;
}

/* ==================================
レイアウト
===================================== */
.l-container {
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}
@media only screen and (min-width: 576px) {
  .l-container {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media only screen and (min-width: 992px) {
  .l-container {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: content-box;
  }
}
@media only screen and (min-width: 992px) {
  .l-container--wide {
    max-width: 1295px;
  }
}

@media only screen and (min-width: 576px) {
  .l-column {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media only screen and (min-width: 576px) {
  .l-column.rev {
    flex-direction: row-reverse;
  }
}

.l-header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  transition: 0.3s ease-in-out;
  background-color: rgba(255, 255, 255, 0.95);
}
@media only screen and (min-width: 992px) {
  .l-header {
    height: 100px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
}
.l-header__inner {
  height: 100%;
  padding-left: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .l-header__inner {
    padding: 0 20px 0 30px;
    justify-content: space-between;
    align-items: center;
  }
}
.l-header__logo img {
  width: 165px;
}
@media only screen and (min-width: 992px) {
  .l-header__logo img {
    width: 250px;
  }
}
.l-header .c-button {
  position: relative;
  background-color: transparent;
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: #f8acbf;
  cursor: pointer;
}
@media only screen and (min-width: 992px) {
  .l-header .c-button {
    display: none;
  }
}
.l-header .p-hamburger {
  width: 60px;
  height: 60px;
  outline: none;
  transition: all 0.3s ease-in-out;
}
.l-header .p-hamburger__line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 1px;
  background-color: #fff;
  transition: inherit;
  z-index: 2;
}
.l-header .p-hamburger__line::before,
.l-header .p-hamburger__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  content: "";
  transition: inherit;
}
.l-header .p-hamburger__line::before {
  top: -10px;
}
.l-header .p-hamburger__line::after {
  top: 10px;
}
.l-header .p-hamburger[aria-expanded=true] .p-hamburger__line {
  background-color: transparent;
}
.l-header .p-hamburger[aria-expanded=true] .p-hamburger__line::before,
.l-header .p-hamburger[aria-expanded=true] .p-hamburger__line::after {
  top: 0;
  background-color: #244474;
}
.l-header .p-hamburger[aria-expanded=true] .p-hamburger__line::before {
  transform: rotate(45deg);
  background-color: #fff;
}
.l-header .p-hamburger[aria-expanded=true] .p-hamburger__line::after {
  transform: rotate(-45deg);
  background-color: #fff;
}
.l-header .u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}
@media only screen and (max-width: 991px) {
  .l-header__nav {
    max-width: 600px;
    width: 100%;
    padding: 10px 15px 20px;
    position: fixed;
    top: 60px;
    right: 0;
    background-color: #f7d1da;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    overflow-y: scroll;
  }
}
@media only screen and (min-width: 992px) {
  .l-header__nav {
    padding: 20px 30px 20px 55px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column-reverse;
    position: relative;
  }
}
@media only screen and (max-width: 991px) {
  .l-header__nav .l-header__list {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 992px) {
  .l-header__nav .l-header__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 35px;
  }
}
@media only screen and (min-width: 992px) {
  .l-header__nav .l-header__list li:not(:last-child) {
    position: relative;
  }
  .l-header__nav .l-header__list li:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(20deg);
    right: -18px;
    background-color: #000;
  }
}
@media only screen and (min-width: 992px) and (min-width: 992px) {
  .l-header__nav .l-header__list li:not(:last-child)::after {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .l-header__nav .l-header__list li:not(:last-child) a::after {
    content: "";
    width: 1px;
    height: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -18px;
    background-color: #f59d5e;
  }
}
.l-header__nav .l-header__list li a {
  padding: 16px 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
  text-align: center;
  color: #333;
  border-bottom: 1px solid #fff;
  display: block;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .l-header__nav .l-header__list li a {
    padding: 5px 0;
    font-size: 16px;
    line-height: 1.875;
    color: #333;
    border: none;
    position: relative;
    display: inline-block;
    transition: 0.3s ease-in-out;
  }
}
.l-header__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (min-width: 992px) {
  .l-header__links {
    margin-bottom: 5px;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }
}
@media only screen and (min-width: 992px) {
  .l-header .p-access__table {
    display: none;
  }
}

body.is-drawerActive {
  overflow: hidden;
}
body.is-drawerActive .l-header {
  background-color: #fff;
}
body.is-drawerActive .l-header__nav {
  opacity: 1;
  visibility: visible;
}

.l-footer {
  padding: 30px 0 10px;
  border-top: 3px solid #fcf4ef;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .l-footer {
    padding: 55px 0 25px;
  }
}
.l-footer .l-footer__logo {
  width: 225px;
  margin: 0 auto 25px;
  display: block;
}
@media only screen and (min-width: 992px) {
  .l-footer .l-footer__logo {
    width: 250px;
    margin-bottom: 30px;
  }
}
.l-footer .l-footer__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}
@media only screen and (min-width: 576px) {
  .l-footer .l-footer__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 35px;
  }
}
.l-footer .l-footer__list li {
  position: relative;
}
@media only screen and (min-width: 576px) {
  .l-footer .l-footer__list li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -18px;
    width: 1px;
    height: 15px;
    background-color: #333;
    transform: translateY(-50%);
  }
}
.l-footer .l-footer__list li a {
  color: #333;
}
@media only screen and (min-width: 992px) {
  .l-footer .l-footer__list li a {
    font-size: 16px;
    line-height: 1.875;
  }
}
.l-footer .l-footer__copyright {
  width: 100vw;
  margin: 20px calc(50% - 50vw) 0;
  font-size: 10px;
  letter-spacing: 0;
  line-height: 3;
  text-align: center;
  display: block;
}
@media only screen and (min-width: 992px) {
  .l-footer .l-footer__copyright {
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 2.5;
  }
}

.c-bg {
  background-color: #f4f8f8;
}

.c-btn__tel {
  padding: 7px 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  background-color: #ffb284;
  border-radius: 25px;
  display: block;
}
@media only screen and (min-width: 992px) {
  .c-btn__tel {
    padding: 4px 18px;
    font-size: 18px;
    line-height: 1.6666666667;
  }
}
.c-btn__tel span {
  font-size: 24px;
  line-height: 1.25;
}
@media only screen and (min-width: 992px) {
  .c-btn__tel span {
    font-size: 22px;
    line-height: 1.3636363636;
  }
}

.c-btn__link {
  padding: 10px 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3636363636;
  text-align: center;
  color: #fff;
  background-color: #ffb284;
  border-radius: 25px;
  display: block;
}
@media only screen and (min-width: 992px) {
  .c-btn__link {
    padding: 5px 28px;
    font-size: 20px;
    line-height: 1.5;
  }
}

.c-fw--lt {
  font-weight: 300;
}
.c-fw--rg {
  font-weight: 400;
}
.c-fw--m {
  font-weight: 500;
}
.c-fw--sbd {
  font-weight: 600;
}
.c-fw--b {
  font-weight: 700;
}
.c-fw--bk {
  font-weight: 900;
}

.c-al--l {
  text-align: left;
}
.c-al--c {
  text-align: center;
}
.c-al--r {
  text-align: right;
}

.c-ttlWrap {
  padding-bottom: 50px;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.c-ttl {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  text-align: center;
  display: inline-block;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .c-ttl {
    font-size: 30px;
    line-height: 1;
  }
}
.c-ttl::before {
  content: "";
  width: 100%;
  height: 12px;
  position: absolute;
  bottom: -3px;
  left: 0;
  background-color: #ffd5b7;
  z-index: -1;
}
@media only screen and (min-width: 992px) {
  .c-ttl::before {
    bottom: -8px;
  }
}
.c-ttl::after {
  content: attr(data-title-en);
  width: 200%;
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Abel", sans-serif;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.2em;
  line-height: 2.1428571429;
  text-align: center;
  color: #999;
  white-space: nowrap;
}
@media only screen and (min-width: 992px) {
  .c-ttl::after {
    font-size: 16px;
    bottom: -55px;
  }
}

.p-mv {
  position: relative;
  z-index: 2;
}
.p-mv .p-mv__wrap {
  width: 100%;
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 576px) {
  .p-mv .p-mv__wrap {
    top: 16%;
  }
}
.p-mv .p-mv__logo {
  width: 66.6666666667%;
  margin: 0 auto 10px;
}
@media only screen and (min-width: 576px) {
  .p-mv .p-mv__logo {
    width: 18.2291666667%;
    margin-bottom: 15px;
  }
}
.p-mv .p-mv__open {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1.6666666667;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .p-mv .p-mv__open {
    margin-bottom: 15px;
    font-size: 40px;
  }
}
.p-mv .p-mv__open span {
  display: inline-block;
  position: relative;
}
.p-mv .p-mv__open span::before {
  content: "";
  width: 100%;
  height: 15px;
  position: absolute;
  bottom: -3px;
  left: 0;
  transform: translateY(-50%);
  background-color: #fff;
  z-index: -1;
}
@media only screen and (min-width: 992px) {
  .p-mv .p-mv__open span::before {
    width: calc(100% + 10px);
    height: 20px;
  }
}
.p-mv .p-mv__date {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .p-mv .p-mv__date {
    font-size: 24px;
    line-height: 1.25;
  }
}
.p-mv .p-mv__date span {
  display: inline-block;
  position: relative;
}
.p-mv .p-mv__date span::before {
  content: "";
  width: 100%;
  height: 12px;
  position: absolute;
  bottom: -3px;
  left: 0;
  transform: translateY(-50%);
  background-color: #fff;
  z-index: -1;
}
@media only screen and (min-width: 992px) {
  .p-mv .p-mv__date span::before {
    width: calc(100% + 10px);
    height: 15px;
    bottom: -12px;
  }
}

.p-about {
  padding: 60px 0 30px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .p-about {
    padding: 85px 0 40px;
  }
}
.p-about .c-ttlWrap {
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) {
  .p-about .c-ttlWrap {
    margin-bottom: 30px;
  }
}
.p-about .p-about__wrap {
  position: relative;
}
.p-about .p-about__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media only screen and (min-width: 576px) {
  .p-about .p-about__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 992px) {
  .p-about .p-about__list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
}
.p-about .p-about__list li {
  position: relative;
}
.p-about .p-about__ttl {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .p-about .p-about__ttl {
    margin-bottom: 15px;
    gap: 20px;
  }
}
.p-about .p-about__num {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-family: "Abel", sans-serif;
  font-weight: normal;
  font-size: 30px;
  line-height: 1;
  color: #e87e99;
  border: 2px solid #f7d1da;
}
@media only screen and (min-width: 992px) {
  .p-about .p-about__num {
    width: 60px;
    height: 60px;
  }
}
.p-about .p-about__ttlTxt {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .p-about .p-about__ttlTxt {
    font-size: 24px;
    line-height: 1.25;
  }
}
.p-about .p-about__ttlTxt::before {
  content: "";
  width: 100%;
  height: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #f7d1da;
  z-index: -1;
}
.p-about .p-about__img {
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) {
  .p-about .p-about__img {
    margin-bottom: 20px;
  }
}

.p-medical {
  padding: 65px 0 60px;
  background: center/cover no-repeat url(../img/img_medical.jpg);
  position: relative;
}
@media only screen and (min-width: 992px) {
  .p-medical {
    padding: 85px 0 80px;
  }
}
.p-medical .c-ttlWrap {
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) {
  .p-medical .c-ttlWrap {
    margin-bottom: 30px;
  }
}
.p-medical .p-medical__wrap {
  padding: 20px 30px;
  background-color: #fff;
  border: 1px solid #f5d5be;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) {
  .p-medical .p-medical__wrap {
    padding: 35px 50px 30px;
  }
}
.p-medical .p-medical__wrap + .p-medical__wrap {
  margin-top: 20px;
}
@media only screen and (min-width: 992px) {
  .p-medical .p-medical__wrap + .p-medical__wrap {
    margin-top: 30px;
  }
}
.p-medical .p-medical__wrap--sec {
  background-color: #ffeff0;
}
.p-medical .p-medical__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
@media only screen and (min-width: 576px) {
  .p-medical .p-medical__list {
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px 20px;
  }
}
.p-medical .p-medical__list:not(:last-of-type) {
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) {
  .p-medical .p-medical__list:not(:last-of-type) {
    margin-bottom: 50px;
  }
}
.p-medical .p-medical__list li {
  width: 100%;
  padding-left: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 2.125;
  position: relative;
}
@media only screen and (min-width: 576px) {
  .p-medical .p-medical__list li {
    width: calc((100% - 20px) / 2);
  }
}
@media only screen and (min-width: 992px) {
  .p-medical .p-medical__list li {
    width: calc((100% - 40px) / 3);
  }
}
.p-medical .p-medical__list li::before {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  top: 11px;
  left: 0;
  background-color: #f59d5e;
  border-radius: 50%;
}
.p-medical .p-medical__other {
  margin-top: 20px;
  padding: 4px 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6666666667;
  text-align: center;
}
@media only screen and (min-width: 576px) {
  .p-medical .p-medical__other {
    font-size: 18px;
  }
}
@media only screen and (min-width: 992px) {
  .p-medical .p-medical__other {
    margin-top: 15px;
    padding: 6px 0;
    font-size: 20px;
    line-height: 1.7;
  }
}
.p-medical .p-medical__other span {
  position: relative;
  z-index: 2;
}
.p-medical .p-medical__other span::before {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #f7d1da;
  z-index: -1;
}

.p-message {
  padding: 25px 0 60px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .p-message {
    padding: 40px 0 80px;
  }
}
.p-message::after {
  content: "";
  width: 100%;
  aspect-ratio: 375/1094;
  position: absolute;
  bottom: 0;
  left: 0;
  background: center/cover no-repeat url(../img/img_message_sp.jpg);
  z-index: -1;
}
@media only screen and (min-width: 576px) {
  .p-message::after {
    aspect-ratio: 1536/643;
    background-image: url(../img/img_message.jpg);
  }
}
.p-message .c-ttlWrap {
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) {
  .p-message .c-ttlWrap {
    margin-bottom: 30px;
  }
}
.p-message .p-message__wrap {
  padding: 60px 20px 30px;
  border: 1px solid #ffd5b7;
  border-radius: 20px;
  background-color: #fff;
}
@media only screen and (min-width: 992px) {
  .p-message .p-message__wrap {
    padding: 55px 50px 20px;
  }
}
.p-message .p-message__txt {
  margin-bottom: 10px;
}
.p-message .p-message__nameWrap {
  text-align: center;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 576px) {
  .p-message .p-message__nameWrap {
    max-width: 186px;
    margin-left: auto;
    text-align: left;
  }
}
.p-message .p-message__position {
  font-weight: 500;
  font-size: 12px;
  line-height: 2.5;
}
@media only screen and (min-width: 992px) {
  .p-message .p-message__position {
    font-size: 14px;
    line-height: 2.1428571429;
  }
}
.p-message .p-message__name {
  margin-bottom: 50px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6666666667;
  display: inline-block;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .p-message .p-message__name {
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 1.5;
  }
}
.p-message .p-message__name::before {
  content: "";
  width: 100%;
  height: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #f7d1da;
  z-index: -1;
}
.p-message .p-message__name::after {
  content: attr(data-en);
  font-weight: bold;
  font-size: 10px;
  line-height: 3;
  text-align: left;
  color: #e87e99;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media only screen and (min-width: 576px) {
  .p-message .p-message__name::after {
    left: calc(100% + 10px);
    bottom: 0;
    transform: none;
    font-size: 12px;
    line-height: 2.5;
  }
}
.p-message .p-message__border {
  margin: 0;
  border-top: 1px solid #ffd5b7;
}
@media only screen and (min-width: 992px) {
  .p-message .p-message__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .p-message .p-message__list {
    gap: 60px;
  }
}
.p-message .p-message__item {
  padding: 30px 0 20px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .p-message .p-message__item {
    padding: 40px 0 20px;
  }
}
.p-message .p-message__item:not(:first-child) {
  border-top: 1px solid #ffd5b7;
}
@media only screen and (min-width: 992px) {
  .p-message .p-message__item:not(:first-child) {
    border-top: none;
  }
}
@media only screen and (min-width: 992px) {
  .p-message .p-message__item:not(:first-child)::before {
    content: "";
    width: 1px;
    height: calc(100% - 60px);
    position: absolute;
    top: calc(50% + 5px);
    left: -30px;
    transform: translateY(-50%);
    background-color: #ffd5b7;
  }
}
.p-message .p-message__label {
  margin-bottom: 10px;
  padding: 0 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 2.1428571429;
  color: #fff;
  background-color: #f5ada5;
  border-radius: 10px;
  display: inline-block;
}
@media only screen and (min-width: 992px) {
  .p-message .p-message__label {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) {
  .p-message .p-message__table {
    margin-top: -5px;
    border-collapse: separate;
    border-spacing: 0px 5px;
  }
}
.p-message .p-message__table th, .p-message .p-message__table td {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8571428571;
  text-align: left;
}
@media only screen and (max-width: 575px) {
  .p-message .p-message__table th, .p-message .p-message__table td {
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  .p-message .p-message__table th {
    min-width: 135px;
  }
}
@media only screen and (max-width: 575px) {
  .p-message .p-message__table td {
    padding-bottom: 5px;
  }
}
.p-message .p-message__list--sub li {
  margin-bottom: 4px;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.8571428571;
  position: relative;
}
.p-message .p-message__list--sub li::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 8px;
  left: 0;
  background-color: #ffd5b7;
  border-radius: 50%;
}

.p-access {
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .p-access {
    padding: 80px 0 70px;
  }
}
@media only screen and (min-width: 576px) {
  .p-access__container {
    max-width: 830px;
  }
}
.p-access__table {
  width: 100%;
  margin-top: 20px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .p-access__table {
    margin-top: 40px;
  }
}
.p-access__table tr:last-child td {
  border-bottom: none;
}
.p-access__table tr *:not(:first-child) {
  border-left: 1px solid #ebd6c7;
}
.p-access__table th,
.p-access__table td {
  text-align: center;
  vertical-align: middle;
}
.p-access__table th {
  width: 11.1666666667%;
  height: 40px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8571428571;
  background-color: #ffe3d0;
  white-space: nowrap;
}
@media only screen and (min-width: 992px) {
  .p-access__table th {
    width: 11.1666666667%;
    height: 50px;
    font-size: 16px;
    padding: 10px 0;
    line-height: 1.875;
  }
}
.p-access__table th:nth-child(1) {
  width: 33%;
}
@media only screen and (min-width: 992px) {
  .p-access__table th:nth-child(1) {
    width: 33%;
  }
}
.p-access__table td {
  height: 40px;
  font-weight: 500;
  font-size: 12px;
  line-height: 2.5;
  color: #f59d5e;
  background-color: #fbf6f0;
  border-bottom: 1px solid #ebd6c7;
}
@media only screen and (min-width: 992px) {
  .p-access__table td {
    height: 52px;
    font-size: 16px;
    letter-spacing: 0.1em;
  }
}
.p-access__table td:first-child {
  color: #333;
}
.p-access__table td span {
  font-size: 12px;
  line-height: 1.6666666667;
  display: inline-block;
  transform: translateY(-5px);
}
@media only screen and (min-width: 992px) {
  .p-access__table td span {
    font-size: 14px;
    transform: none;
  }
}
@media only screen and (max-width: 575px) {
  .p-access .p-access__logo {
    width: 70%;
    margin: 0 auto 20px;
  }
}
@media only screen and (min-width: 576px) {
  .p-access .p-access__logo {
    max-width: 250px;
    margin-bottom: 20px;
  }
}
.p-access .p-access__notice {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5714285714;
}
@media only screen and (min-width: 576px) {
  .p-access .p-access__links {
    display: flex;
    gap: 40px;
  }
}
.p-access .p-access__link {
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.25;
  color: #333;
}
@media only screen and (min-width: 992px) {
  .p-access .p-access__link {
    font-size: 30px;
    line-height: 1.0666666667;
  }
}
@media only screen and (max-width: 575px) {
  .p-access .p-access__link + .p-access__link {
    margin-top: 10px;
  }
}
.p-access .p-access__link span {
  color: #158d96;
}
@media only screen and (min-width: 576px) {
  .p-access .p-access__mapWrap {
    width: 57.5%;
  }
}
.p-access .p-access__map {
  width: 100%;
  height: 280px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .p-access .p-access__map {
    height: 370px;
  }
}
.p-access .p-access__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-access .p-access__border {
  margin: 0;
  border-top: 1px solid #ddd2cc;
  border-bottom: none;
}
@media only screen and (max-width: 575px) {
  .p-access .p-access__info {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) {
  .p-access .p-access__info {
    width: 37.5%;
  }
}
.p-access .p-access__txt {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.8571428571;
}
@media only screen and (min-width: 992px) {
  .p-access .p-access__txt {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.625;
  }
}
.p-access .p-access__label {
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8571428571;
  color: #e87e99;
}
@media only screen and (min-width: 992px) {
  .p-access .p-access__label {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.875;
  }
}
.p-access .p-access__list li {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8571428571;
  padding-left: 20px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .p-access .p-access__list li {
    font-size: 16px;
    line-height: 1.875;
  }
}
.p-access .p-access__list li::before {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  top: 8px;
  left: 0;
  background-color: #70b544;
  border-radius: 50%;
}
@media only screen and (min-width: 992px) {
  .p-access .p-access__list li::before {
    top: 10px;
  }
}
.p-access .p-access__note {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: normal;
  line-height: 2.8333333333;
}
@media only screen and (min-width: 992px) {
  .p-access .p-access__note {
    margin-top: 5px;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2.4285714286;
  }
}

.p-recruit {
  padding: 65px 0 60px;
  background-color: #fcf4ef;
}
@media only screen and (min-width: 992px) {
  .p-recruit {
    padding: 100px 0 80px;
  }
}
.p-recruit .c-ttlWrap {
  margin-bottom: 5px;
}
@media only screen and (min-width: 992px) {
  .p-recruit .c-ttlWrap {
    margin-bottom: 20px;
  }
}
.p-recruit .p-recruit__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px 10px;
}
@media only screen and (min-width: 576px) {
  .p-recruit .p-recruit__table {
    max-width: 830px;
    margin: 0 auto;
  }
}
.p-recruit .p-recruit__heading {
  padding: 5px 10px 0 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 2.1428571429;
  text-align: left;
  color: #f59d5e;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  white-space: nowrap;
}
@media only screen and (max-width: 575px) {
  .p-recruit .p-recruit__heading {
    display: block;
  }
}
@media only screen and (min-width: 576px) {
  .p-recruit .p-recruit__heading {
    padding: 12px 0 12px 30px;
  }
}
@media only screen and (min-width: 576px) {
  .p-recruit .p-recruit__heading {
    min-width: 130px;
    border-radius: 10px 0 0 10px;
  }
}
@media only screen and (min-width: 992px) {
  .p-recruit .p-recruit__heading {
    min-width: 150px;
    font-size: 16px;
    line-height: 1.875;
  }
}
.p-recruit .p-recruit__data {
  padding: 0 10px 5px 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8571428571;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}
@media only screen and (max-width: 575px) {
  .p-recruit .p-recruit__data {
    display: block;
  }
}
@media only screen and (min-width: 576px) {
  .p-recruit .p-recruit__data {
    padding: 12px 0 12px 30px;
  }
}
@media only screen and (min-width: 992px) {
  .p-recruit .p-recruit__data {
    font-size: 16px;
    line-height: 1.875;
  }
}
.p-recruit .p-recruit__entry {
  margin-top: 20px;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
}
@media only screen and (min-width: 576px) {
  .p-recruit .p-recruit__entry {
    max-width: 830px;
    margin: 0 auto;
    padding: 20px 30px;
  }
}
@media only screen and (min-width: 992px) {
  .p-recruit .p-recruit__entry {
    margin-top: 30px;
    padding: 35px 20px 30px;
  }
}
.p-recruit .p-recruit__label {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 992px) {
  .p-recruit .p-recruit__label {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.25;
  }
}
.p-recruit .p-recruit__label span {
  display: inline-block;
  position: relative;
}
.p-recruit .p-recruit__label span::before {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f7d1da;
  z-index: -1;
}
@media only screen and (min-width: 576px) {
  .p-recruit .p-recruit__txt {
    text-align: center;
  }
}
.p-recruit .p-recruit__txt a {
  color: #333;
}/*# sourceMappingURL=style.css.map */