/* layout */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #333;
  font-size: 1.6rem;
  line-height: 200%;
  background-color: #F3F3F3;
}
@media screen and (max-width: 850px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  display: inline-block;
}

img {
  width: 100%;
}

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

@media screen and (max-width: 850px) {
  .is-pc {
    display: none !important;
  }
}

.l-wrapper {
  padding: 0 50px;
  max-width: 1180px;
  margin: 0 auto;
}
@media screen and (max-width: 850px) {
  .l-wrapper {
    padding: 0 30px;
  }
}

.c-h2Ttl {
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
}
.c-h2Ttl h2 {
  font-size: 4rem;
  line-height: 120%;
  letter-spacing: 4px;
  padding-top: 8px;
}
@media screen and (max-width: 850px) {
  .c-h2Ttl h2 {
    font-size: 2.8rem;
    padding-top: 10px;
  }
}
.c-h2Ttl .en {
  font-size: 1.4rem;
  line-height: 150%;
  letter-spacing: 1.4px;
  padding-top: 8px;
}
@media screen and (max-width: 850px) {
  .c-h2Ttl .en {
    font-size: 1.2rem;
  }
}

.c-h3Ttl {
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 850px) {
  .c-h3Ttl {
    text-align: left;
  }
}
.c-h3Ttl h3 {
  font-size: 2.6rem;
  line-height: 140%;
  letter-spacing: 1.3px;
}
@media screen and (max-width: 850px) {
  .c-h3Ttl h3 {
    font-size: 2rem;
  }
}
.c-h3Ttl .en {
  font-size: 1.4rem;
  line-height: 150%;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 850px) {
  .c-h3Ttl .en {
    font-size: 1.2rem;
  }
}

a.c-btn {
  font-size: 1.8rem;
  line-height: 150%;
  font-weight: 700;
  background-color: #94562A;
  color: #fff;
  padding: 5px 38px 9px 30px;
  border-radius: 50px;
  border: 1px solid #94562A;
  transition: 0.3s all;
  position: relative;
}
@media screen and (max-width: 850px) {
  a.c-btn {
    font-size: 1.4rem;
  }
}
a.c-btn:after {
  content: "";
  position: absolute;
  background: url("../image/ic-arrow.svg") no-repeat;
  width: 10px;
  height: 10px;
  filter: brightness(0) invert(1);
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
a.c-btn:hover {
  background-color: #fff;
  color: #94562A;
}
a.c-btn:hover:after {
  filter: brightness(0) saturate(100%) invert(36%) sepia(33%) saturate(977%) hue-rotate(342deg) brightness(94%) contrast(87%);
}
a.c-btn.window:after {
  background: url("../image/ic-link.svg") no-repeat;
}

.fadeInUp {
  opacity: 0;
  transform: translateY(20px);
  transition: 1s;
}

.header {
  background-color: #fff;
  padding: 10px 50px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 850px) {
  .header {
    padding: 10px 30px;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 850px) {
  .header__inner img {
    height: 40px;
  }
}
.header__logo a {
  display: flex;
  align-items: center;
}
.header__logo a img {
  width: 140px;
}
@media screen and (max-width: 850px) {
  .header__logo a img {
    width: 120px;
  }
}
.header__menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
  margin-left: 30px;
}
.header__menu ul a {
  font-size: 1.4rem;
}
.header__navBtn {
  position: relative;
  cursor: pointer;
  width: 20px;
  height: 20px;
}
.header__navBtn span {
  display: inline-block;
  position: absolute;
  left: 0;
  height: 2px;
  width: 20px;
  border-radius: 4px;
  background-color: #555;
  transition: all 0.3s;
}
.header__navBtn span:nth-of-type(1) {
  top: 2px;
}
.header__navBtn span:nth-of-type(2) {
  top: 10px;
}
.header__navBtn span:nth-of-type(3) {
  top: 18px;
}
.header__navBtn.active span:nth-of-type(1) {
  top: 3px;
  left: 1px;
  transform: translateY(6px) rotate(-45deg);
}
.header__navBtn.active span:nth-of-type(2) {
  opacity: 0;
}
.header__navBtn.active span:nth-of-type(3) {
  top: 15px;
  left: 1px;
  transform: translateY(-6px) rotate(45deg);
}
.header__navInner {
  position: absolute;
  top: 60px;
  right: 0;
  width: 100%;
  background-color: #fff;
  opacity: 0;
  transform: translateY(-20px);
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}
.header__navInner.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.header__navInner ul {
  padding: 50px 0 80px;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
.header__navInner ul li {
  text-align: center;
}
.header__navInner ul li a {
  display: block;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
  line-height: 150%;
  font-size: 1.6rem;
}
.header__navDrwOverlay {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  width: 100%;
  height: 100vh;
  z-index: 8;
}
.header__navDrwOverlay.active {
  opacity: 0.7;
  visibility: visible;
}

.footer {
  padding: 0 50px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
  margin-top: 200px;
}
@media screen and (max-width: 850px) {
  .footer {
    padding: 0 30px;
    margin-top: 120px;
  }
}
.footer__inner {
  border-top: 1px solid #555;
  padding: 80px 140px 50px;
}
@media screen and (max-width: 850px) {
  .footer__inner {
    padding: 80px 0 50px;
  }
}
.footer__info {
  display: flex;
  justify-content: space-between;
  gap: 30px 20px;
}
@media screen and (max-width: 850px) {
  .footer__info {
    flex-direction: column-reverse;
  }
}
.footer__info .left ul {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.footer__info .left ul a {
  font-size: 1.4rem;
  line-height: 150%;
}
.footer__info .right ul {
  display: flex;
  align-items: center;
  gap: 30px 50px;
}
@media screen and (max-width: 850px) {
  .footer__info .right ul {
    flex-direction: column;
    align-items: baseline;
  }
}
.footer__info .right ul img {
  height: 29px;
  object-fit: contain;
}
.footer__copy {
  font-size: 1rem;
  font-weight: 400;
  padding-top: 80px;
  line-height: 150%;
  letter-spacing: 0.5px;
}

/* top */
.main__mv {
  position: relative;
  height: calc(100vh - 60px);
}
.main__mv .mv {
  background-image: url("../image/mv-pc.jpg");
  height: 100%;
  background-size: cover;
  background-position: center bottom;
  opacity: 0;
  animation: fadeIn 4s forwards;
}
@media screen and (max-width: 850px) {
  .main__mv .mv {
    background-image: url("../image/mv-sp.jpg");
    background-position: center top;
  }
}
.main__mv .ttlArea {
  position: absolute;
  bottom: 115px;
  right: 80px;
}
@media screen and (max-width: 850px) {
  .main__mv .ttlArea {
    right: 30px;
    bottom: 85px;
  }
}
.main__mv .ttl {
  margin-left: auto;
  color: #fff;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3rem;
  line-height: 150%;
  letter-spacing: 3px;
}
@media screen and (max-width: 850px) {
  .main__mv .ttl {
    font-size: 3.4rem;
  }
}
.main__mv .scrolldown {
  position: absolute;
  bottom: -50px;
  left: 50%;
}
.main__mv .scrolldown:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 12px;
  border-radius: 3px;
  background: #fff;
  z-index: 1;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
.main__mv .scrolldown:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 40px;
  background: #fff;
  opacity: 0.5;
  border-radius: 10px;
  z-index: 0;
}
.main__mv .scrolldown span {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1px;
  position: absolute;
  top: -30px;
  left: 25px;
}
.main__message {
  padding: 80px 0 30px;
  background-color: #fff;
}
@media screen and (max-width: 850px) {
  .main__message {
    padding: 80px 0 60px;
  }
}
.main__message p {
  font-size: 1.8rem;
  line-height: 250%;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 850px) {
  .main__message p {
    font-size: 1.6rem;
    line-height: 200%;
    text-align: left;
  }
}

@keyframes circlemove {
  0% {
    bottom: 28px;
  }
  100% {
    bottom: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.clinic {
  padding-top: 270px;
  position: relative;
}
.clinic:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 640px;
}
@media screen and (max-width: 850px) {
  .clinic:before {
    height: 94px;
  }
}
@media screen and (max-width: 850px) {
  .clinic {
    padding-top: 135px;
  }
}
.clinic:before {
  background: url("../image/deco-white.png") no-repeat;
  background-size: contain;
}
.clinic__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 60px;
}
@media screen and (max-width: 850px) {
  .clinic__inner {
    padding-top: 40px;
  }
}
.clinic__inner .lead {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1px;
}
@media screen and (max-width: 850px) {
  .clinic__inner .lead {
    font-size: 1.6rem;
  }
}
.clinic__info {
  padding-top: 30px;
}
.clinic__info figure img {
  height: 220px;
  object-fit: contain;
}
@media screen and (max-width: 850px) {
  .clinic__info figure img {
    height: auto;
  }
}
.clinic__info .table {
  max-width: 354px;
  margin: 40px auto 0;
  padding: 20px;
  border-top: 1px solid #777;
  border-bottom: 1px solid #777;
}
@media screen and (max-width: 850px) {
  .clinic__info .table {
    padding: 30px 20px;
  }
}
.clinic__info .table tbody {
  display: flex;
  flex-direction: column;
  gap: 13px 0;
}
@media screen and (max-width: 850px) {
  .clinic__info .table tbody {
    gap: 20px 0;
  }
}
.clinic__info .table tr {
  line-height: 150%;
}
@media screen and (max-width: 850px) {
  .clinic__info .table tr {
    display: flex;
    flex-direction: column;
  }
}
.clinic__info .table th {
  font-weight: 700;
  text-align: left;
  width: 120px;
}
@media screen and (max-width: 850px) {
  .clinic__info .table th {
    font-size: 1.5rem;
  }
}
.clinic__info .table td {
  padding-left: 20px;
}
@media screen and (max-width: 850px) {
  .clinic__info .table td {
    padding-left: 0;
    font-size: 1.2rem;
    padding-top: 8px;
    line-height: 150%;
  }
}
.clinic__info .table td a {
  font-size: 2.4rem;
  font-weight: 700;
}
.clinic__flow {
  padding-top: 60px;
}
.clinic__flow ul {
  display: flex;
  gap: 50px 70px;
}
@media screen and (max-width: 850px) {
  .clinic__flow ul {
    flex-direction: column;
  }
}
.clinic__flow ul li {
  width: calc(25% - 50px);
}
@media screen and (max-width: 850px) {
  .clinic__flow ul li {
    width: 100%;
  }
}
.clinic__flow ul li:nth-child(4) .flowImg p {
  color: #E66B00;
}
.clinic__flow ul li .flowImg {
  position: relative;
  display: flex;
}
.clinic__flow ul li .flowImg img {
  height: 140px;
  object-fit: contain;
}
.clinic__flow ul li .flowImg p {
  color: #94562A;
  font-weight: 700;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 851px) {
  .clinic__flow ul li .flowImg p {
    font-size: clamp(1.1rem, 1.25vw, 1.6rem);
  }
}
.clinic__flow ul li .txt {
  font-size: 1.4rem;
  line-height: 200%;
  padding-top: 20px;
}
.clinic__overview {
  padding-top: 80px;
}
.clinic__overview .overview {
  padding: 50px 40px 0;
  display: flex;
  gap: 30px 50px;
}
@media screen and (max-width: 850px) {
  .clinic__overview .overview {
    flex-direction: column;
    padding: 30px 0 0;
  }
}
.clinic__overview .overview figure {
  flex: 0 0 37%;
}
.clinic__overview .overview table {
  width: 100%;
  border-top: 0.75px solid #333;
}
.clinic__overview .overview table tr {
  border-bottom: 0.75px solid #333;
  padding: 10px 50px;
  display: block;
  font-size: 1.4rem;
  line-height: 150%;
}
@media screen and (max-width: 850px) {
  .clinic__overview .overview table tr {
    padding: 20px 10px 10px;
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
  }
}
.clinic__overview .overview table tr th {
  width: 100px;
  font-weight: 700;
  text-align: left;
}
.clinic__overview .overview table tr td {
  padding-left: 15px;
}
@media screen and (max-width: 850px) {
  .clinic__overview .overview table tr td {
    padding-left: 0;
    padding-top: 6px;
  }
}
.clinic__overview .overview table tr td a {
  text-decoration: underline;
}

.member {
  padding-top: 120px;
  padding-bottom: 30px;
}
@media screen and (max-width: 850px) {
  .member {
    padding-top: 100px;
    padding-bottom: 65px;
  }
}
.member__inner {
  padding-top: 80px;
}
@media screen and (max-width: 850px) {
  .member__inner {
    padding-top: 40px;
  }
}
.member__inner ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px 70px;
}
@media screen and (max-width: 850px) {
  .member__inner ul {
    margin: 0 -30px;
  }
}
.member__inner ul li {
  width: calc(25% - 55px);
}
.member__inner ul li:nth-child(even) {
  padding-top: 50px;
}
@media screen and (max-width: 850px) {
  .member__inner ul li:nth-child(even) {
    padding-top: 0;
  }
}
@media screen and (min-width: 851px) {
  .member__inner ul li:nth-child(4n-2) {
    transition-delay: 0.4s;
  }
  .member__inner ul li:nth-child(4n-1) {
    transition-delay: 0.8s;
  }
  .member__inner ul li:nth-child(4n) {
    transition-delay: 1.2s;
  }
}
.member .profile {
  padding-top: 30px;
  text-align: center;
}
@media screen and (max-width: 850px) {
  .member .profile {
    padding-top: 20px;
  }
}
.member .profile__info {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  line-height: 150%;
}
.member .profile__info p:first-child {
  padding-right: 10px;
  border-right: 1px solid #555;
}
.member .profile__info p:last-child {
  padding-left: 10px;
}
.member .profile .name {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 150%;
  padding-top: 10px;
}
@media screen and (max-width: 850px) {
  .member .profile .name {
    font-size: 2.2rem;
    padding-top: 8px;
  }
}
.member .profile .enName {
  font-size: 1rem;
  line-height: 150%;
  letter-spacing: 2px;
}
@media screen and (max-width: 850px) {
  .member .profile .enName {
    padding-top: 8px;
  }
}
.member .profile .btn {
  padding-top: 20px;
}
@media screen and (max-width: 850px) {
  .member .slick-slide {
    margin: 0 25px;
    width: 200px;
  }
  .member .slick-arrow {
    z-index: 2;
    top: 30%;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
  }
  .member .slick-arrow::before {
    content: "";
  }
  .member .slick-prev {
    left: 50px;
    transform: rotate(-135deg);
  }
  .member .slick-next {
    right: 50px;
    transform: rotate(45deg);
  }
}

.facility {
  padding-top: 270px;
  background-color: #fff;
  padding-bottom: 150px;
  position: relative;
}
@media screen and (max-width: 850px) {
  .facility {
    padding-top: 135px;
    padding-bottom: 100px;
  }
}
.facility:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 640px;
}
@media screen and (max-width: 850px) {
  .facility:before {
    height: 94px;
  }
}
.facility:before {
  background: url("../image/deco-gray.png") no-repeat;
  background-size: contain;
}
.facility__inner {
  padding-top: 80px;
}
@media screen and (max-width: 850px) {
  .facility__inner {
    display: flex;
    gap: 36px 0;
    flex-direction: column;
    padding-top: 34px;
  }
}
.facility__inner figure {
  flex: 0 0 44%;
}
.facility__info {
  display: flex;
  flex-direction: column;
  gap: 50px 0;
}
@media screen and (max-width: 850px) {
  .facility__info {
    gap: 70px 0;
  }
}
.facility__info li {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 850px) {
  .facility__info li {
    flex-direction: column;
    padding-top: 80px;
    margin-top: -80px;
  }
}
.facility__info li figure {
  flex: 0 0 48%;
  display: flex;
}
.facility__info li figure img {
  object-fit: contain;
}
.facility__info li .info .ttl {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.facility__info li .info .ttl span {
  background-color: #94562A;
  color: #fff;
  font-size: 1.6rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.facility__info li .info .txt {
  font-size: 1.4rem;
  line-height: 200%;
  padding-top: 10px;
  color: #787C7B;
}
@media screen and (max-width: 850px) {
  .facility__info li .info .txt {
    font-size: 1.2rem;
    line-height: 150%;
  }
}
.facility__info li .info .txt small {
  font-size: 1.2rem;
  padding-top: 5px;
  display: inline-block;
}
@media screen and (max-width: 850px) {
  .facility__info li .info .txt small {
    font-size: 1rem;
  }
}

.news {
  padding-top: 70px;
  padding-bottom: 180px;
}
@media screen and (max-width: 850px) {
  .news {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.news__inner {
  padding-top: 80px;
}
@media screen and (max-width: 850px) {
  .news__inner {
    padding-top: 40px;
  }
}
.news__more {
  padding-top: 60px;
  text-align: center;
}
@media screen and (max-width: 850px) {
  .news__more {
    padding-top: 50px;
  }
}
.news__more .ttl {
  font-weight: 500;
}
.news__more .ttl span {
  position: relative;
}
@media screen and (max-width: 850px) {
  .news__more .ttl span {
    font-size: 1.2rem;
  }
}
.news__more .ttl span:before, .news__more .ttl span:after {
  content: "";
  position: absolute;
  background-color: #333;
  width: 1px;
  height: 20px;
  bottom: 0;
}
@media screen and (max-width: 850px) {
  .news__more .ttl span:before, .news__more .ttl span:after {
    height: 15px;
  }
}
.news__more .ttl span:before {
  left: -15px;
  transform: rotate(-25deg);
}
.news__more .ttl span:after {
  right: -15px;
  transform: rotate(25deg);
}
.news__more .btn {
  padding-top: 14px;
}
@media screen and (max-width: 850px) {
  .news__more .btn {
    padding-top: 10px;
  }
}
.news__more .btn a {
  background-color: #fff;
  padding: 5px 42px;
  border: 1px solid #333;
  border-radius: 50px;
  transition: 0.3s all;
}
@media screen and (max-width: 850px) {
  .news__more .btn a {
    padding: 4px 32px;
  }
}
.news__more .btn a img {
  height: 35px;
  object-fit: contain;
  display: flex;
  filter: brightness(0);
}
@media screen and (max-width: 850px) {
  .news__more .btn a img {
    height: 26px;
  }
}
.news__more .btn a:hover {
  background-color: #333;
}
.news__more .btn a:hover img {
  filter: brightness(0) invert(1);
}

.note {
  display: flex;
  gap: 70px;
  padding: 0 90px;
}
@media screen and (max-width: 850px) {
  .note {
    flex-direction: column;
    padding: 0;
  }
}
.note__inner {
  width: calc(25% - 52px);
}
@media screen and (max-width: 850px) {
  .note__inner {
    width: 100%;
  }
}
.note__inner img {
  border-radius: 8px;
  display: flex;
}
.note__inner .ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  padding-top: 20px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 150%;
}
.note__inner .date {
  font-size: 1rem;
  line-height: 150%;
  padding-top: 10px;
  color: #787C7B;
}
.note__inner .txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: #787C7B;
  font-size: 1.2rem;
  line-height: 200%;
  padding-top: 4px;
}

.access {
  padding-top: 150px;
  background-color: #fff;
  padding-bottom: 400px;
}
@media screen and (max-width: 850px) {
  .access {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.access__inner {
  padding-top: 80px;
  display: flex;
  align-items: center;
  gap: 85px 100px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 850px) {
  .access__inner {
    padding-top: 40px;
    flex-direction: column-reverse;
  }
}
.access__inner iframe {
  width: 480px;
  height: 360px;
  border-radius: 15px;
  box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.05);
  z-index: 1;
}
@media screen and (max-width: 850px) {
  .access__inner iframe {
    width: 100%;
    height: 235px;
    border-radius: 8px;
  }
}
.access__inner .addressArea {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 850px) {
  .access__inner .addressArea {
    padding-top: 60px;
  }
}
.access__inner .addressArea .address {
  color: #94562A;
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (max-width: 850px) {
  .access__inner .addressArea .address {
    font-size: 1.8rem;
  }
}
.access__inner .addressArea .address span {
  font-size: 1.6rem;
}
.access__inner .addressArea .comment {
  font-size: 1.4rem;
  padding-top: 20px;
}
.access__inner .addressArea .backMap {
  position: absolute;
  width: 600px;
  height: 690px;
  top: 50%;
  right: 0;
  transform: translateY(-40%);
  z-index: -1;
}
@media screen and (max-width: 850px) {
  .access__inner .addressArea .backMap {
    width: 313px;
    height: 360px;
    top: 0;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
  }
}

.contact {
  padding-top: 150px;
}
@media screen and (max-width: 850px) {
  .contact {
    padding-top: 100px;
  }
}
.contact__inner {
  padding-top: 80px;
}
@media screen and (max-width: 850px) {
  .contact__inner {
    padding-top: 40px;
  }
}
.contact__inner .comment {
  padding-top: 50px;
  text-align: center;
}
@media screen and (max-width: 850px) {
  .contact__inner .comment {
    padding-top: 20px;
  }
}
.contact__inner .btn {
  padding-top: 80px;
  text-align: center;
}
@media screen and (max-width: 850px) {
  .contact__inner .btn {
    padding-top: 50px;
  }
}
.contact__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
@media screen and (max-width: 850px) {
  .contact__tel {
    flex-direction: column;
  }
}
.contact__tel .number {
  display: flex;
  align-items: center;
}
.contact__tel .number:first-child {
  padding-right: 50px;
  border-right: 1px solid #555;
}
@media screen and (max-width: 850px) {
  .contact__tel .number:first-child {
    padding-right: 0;
    border-right: none;
  }
}
.contact__tel .number:last-child {
  padding-left: 50px;
}
@media screen and (max-width: 850px) {
  .contact__tel .number:last-child {
    padding-left: 0;
    padding-top: 10px;
  }
}
.contact__tel .number span {
  padding-right: 34px;
  font-size: 2rem;
  position: relative;
}
@media screen and (max-width: 850px) {
  .contact__tel .number span {
    padding-right: 26px;
    font-size: 1.6rem;
  }
}
.contact__tel .number span:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 850px) {
  .contact__tel .number span:after {
    width: 20px;
    height: 20px;
  }
}
.contact__tel .number span.tel:after {
  background: url("../image/ic-tel.svg") no-repeat;
  background-size: contain;
}
.contact__tel .number span.fax:after {
  background: url("../image/ic-fax.svg") no-repeat;
  background-size: contain;
}
.contact__tel .number p {
  padding-left: 20px;
  font-size: 3rem;
}
@media screen and (max-width: 850px) {
  .contact__tel .number p {
    font-size: 2.6rem;
  }
}

.privacy {
  padding-top: 80px;
}
@media screen and (max-width: 850px) {
  .privacy {
    padding-top: 50px;
  }
  .privacy .c-h2Ttl {
    margin: 0 -30px;
  }
}
.privacy__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 100px;
}
@media screen and (max-width: 850px) {
  .privacy__inner {
    padding-top: 30px;
  }
}
.privacy__inner .inner {
  padding-top: 50px;
}
.privacy__inner .inner .ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1px;
}
@media screen and (max-width: 850px) {
  .privacy__inner .inner .ttl {
    font-size: 1.6rem;
  }
}
.privacy__inner .inner .txt {
  font-size: 1.4rem;
  line-height: 200%;
  padding-top: 10px;
}
.privacy__inner .inner ul {
  padding-top: 20px;
  padding-bottom: 10px;
}
.privacy__inner .inner ul li {
  font-size: 1.4rem;
  line-height: 200%;
  position: relative;
  padding-left: 16px;
}
.privacy__inner .inner ul li:not(:first-child) {
  margin-top: 4px;
}
.privacy__inner .inner ul li:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 10px;
  height: 2px;
  background-color: #555;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.privacy__inner .inner a {
  color: #94562A;
  font-weight: 700;
  text-decoration: underline;
  display: inline;
}

.error {
  margin-bottom: -110px;
  text-align: center;
  padding-top: 90px;
}
@media screen and (max-width: 850px) {
  .error {
    margin-bottom: -70px;
    padding-top: 50px;
  }
}
.error__ttl {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
}
.error__ttl .num {
  color: #94562A;
  font-size: 6.4rem;
  line-height: 100%;
  letter-spacing: 6.4px;
}
@media screen and (max-width: 850px) {
  .error__ttl .num {
    font-size: 4.8rem;
  }
}
.error__ttl .en {
  font-size: 3rem;
  line-height: 100%;
  letter-spacing: 3px;
  padding-top: 8px;
}
@media screen and (max-width: 850px) {
  .error__ttl .en {
    font-size: 2.4rem;
  }
}
.error__txt {
  padding-top: 50px;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 850px) {
  .error__txt {
    padding-top: 40px;
  }
}
.error__btn {
  padding-top: 50px;
}
@media screen and (max-width: 850px) {
  .error__btn {
    padding-top: 40px;
  }
}/*# sourceMappingURL=style.css.map */