@charset "UTF-8";
body {
  font-family: "Noto Serif JP", serif;
  background-image: url(../images/bg.jpg);
  background-position: top;
  background-size: contain;
  background-repeat: repeat;
  -webkit-animation: fadeIn 1.8s ease 0s 1 normal;
  animation: fadeIn 1.8s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body.is-fixed {
  height: 100%;
  overflow: hidden;
}

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

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

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 1100px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.c-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-gallery {
    grid-template-columns: 1fr 1fr;
    row-gap: 0.625rem;
  }
}

.c-hamburger {
  width: 32px;
  width: 2rem;
  position: fixed;
  top: 40px;
  top: 2.5rem;
  right: 25px;
  right: 1.5625rem;
  z-index: 10;
  padding: 0 0;
}

.c-hamburger span {
  position: relative;
  display: block;
  height: 1px;
  height: 0.0625rem;
  width: 100%;
  background-color: #0F0F0F;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-box-shadow: 0.125rem 0.125rem 0.1875rem 0.0625rem rgba(255, 255, 255, .2);
          box-shadow: 0.125rem 0.125rem 0.1875rem 0.0625rem rgba(255, 255, 255, .2);
}

.c-hamburger.--white span {
  background-color: #fff;
  -webkit-box-shadow: 0.125rem 0.125rem 0.1875rem 0.0625rem rgba(0, 0, 0, .2);
          box-shadow: 0.125rem 0.125rem 0.1875rem 0.0625rem rgba(0, 0, 0, .2);
}

.c-hamburger span:nth-child(1) {
  top: 0;
}

.c-hamburger span:nth-child(2) {
  margin: 8px 0;
  margin: 0.5rem 0;
}

.c-hamburger span:nth-child(3) {
  top: 0;
}

.c-hamburger.open span {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.c-hamburger.open span:nth-child(1) {
  top: 9px;
  top: 0.5625rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #fff;
}

.c-hamburger.open span:nth-child(2) {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.c-hamburger.open span:nth-child(3) {
  top: -9px;
  top: -0.5625rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #fff;
}

.c-red {
  color: #d0483f;
}

.c-sectionTitle {
  font-family: "Noto Serif JP", serif;
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle {
    font-size: 1.625rem;
  }
}

.c-sectionTitle span {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 22px;
  font-size: 1.375rem;
  color: #788E6D;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle span {
    font-size: 1.125rem;
  }
}

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

.l-about {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.l-access {
  margin-top: 200px;
  margin-top: 12.5rem;
}
@media screen and (max-width: 767px) {
  .l-access {
    margin-top: 8.125rem;
  }
}

.l-access.--sub {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-access.--sub {
    margin-top: 5rem;
  }
}

.l-footer {
  margin-top: 100px;
  margin-top: 6.25rem;
}

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

.l-news {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-news {
    margin-top: 5rem;
  }
}

.l-serviceDescription {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-serviceDescription {
    margin-top: 3.75rem;
  }
}

.l-subMainvisual {
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .l-subMainvisual {
    margin-top: 0;
  }
}

.l-topService {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.l-topSns {
  margin-top: 120px;
  margin-top: 7.5rem;
}

.l-topStaff {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.l-voice {
  margin-top: 150px;
  margin-top: 9.375rem;
}
@media screen and (max-width: 767px) {
  .l-voice {
    margin-top: 5rem;
  }
}

.p-about {
  position: relative;
  padding: 103px 0;
  padding: 6.4375rem 0;
  background-image: url(../images/bg-about.jpg);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-about {
    background-position: 25% bottom;
  }
}

.p-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(59, 70, 56, .4);
}

.p-about__wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}

.p-about__title {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-about__title {
    font-size: 1.5rem;
  }
}

.p-about__text {
  margin-top: 50px;
  margin-top: 3.125rem;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-about__text {
    font-size: 1rem;
  }
}

.p-about__text span {
  display: block;
  margin-top: 20px;
  margin-top: 1.25rem;
}

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

.p-access__headImage {
  position: relative;
  width: 100%;
  max-width: 1150px;
  max-width: 71.875rem;
  margin: 0 auto;
}

.p-access__headImage:before {
  content: "";
  display: block;
  padding-top: 30%;
}

.p-access__headImage img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 40%;
     object-position: center 40%;
}

.p-access__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 3.125rem;
     -moz-column-gap: 3.125rem;
          column-gap: 3.125rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-access__wrap {
    display: block;
  }
}

.p-access__container {
  width: 45%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-access__container {
    width: 100%;
  }
}

.p-access__map {
  height: 0;
  width: 55%;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-access__map {
    width: 100%;
    margin-top: 1.5625rem;
  }
}

.p-access__map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.p-access__name {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
}
@media screen and (max-width: 767px) {
  .p-access__name {
    font-size: 1.3125rem;
  }
}

.p-access__meta {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-access__meta dl {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-access__meta dl:nth-of-type(2) {
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.p-access__meta dl dt {
  padding-left: 10px;
  padding-left: 0.625rem;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
  border-left: 4px solid #788E6D;
}

.p-access__meta dl dd {
  margin-top: 5px;
  margin-top: 0.3125rem;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
}

.p-access__sales {
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.p-access__salesDay {
  padding-left: 10px;
  padding-left: 0.625rem;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
  border-left: 4px solid #788E6D;
}

.p-access__table {
  margin-top: 10px;
  margin-top: 0.625rem;
  width: 80%;
  min-width: 200px;
  min-width: 12.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-collapse: collapse;
}

.p-access__table tr th {
  padding: 10px;
  padding: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
}

.p-access__table tr td {
  padding: 10px 0;
  padding: 0.625rem 0;
  text-align: center;
  border-top: 1px solid #aaaaaa;
}

.p-access__table-circle span {
  display: inline-block;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  border-radius: 50%;
  border: 2px solid #788E6D;
}

.p-access__table-line {
  position: relative;
}

.p-access__table-line span {
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  display: inline-block;
  width: 20px;
  width: 1.25rem;
  height: 2px;
  height: 0.125rem;
  background-color: #788E6D;
}

.p-access__tel {
  margin-top: 25px;
  margin-top: 1.5625rem;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #788E6D;
}
.p-access__tel span {
  font-size: 14px;
  font-size: 0.875rem;
}

.p-access__line {
  margin-top: 25px;
  margin-top: 1.5625rem;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
}
@media screen and (max-width: 767px) {
  .p-access__line {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.p-access__line:before {
  content: "";
  display: inline-block;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  margin-right: 10px;
  margin-right: 0.625rem;
  position: relative;
  top: 8px;
  top: 0.5rem;
  background-image: url(../images/common/icon-line.png);
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
}

.p-access__readMore {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-access__gallery {
  margin-top: 80px;
  margin-top: 5rem;
}

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

.p-button--right {
  text-align: right;
}

.p-button a,
.p-button p {
  position: relative;
  left: -10px;
  left: -0.625rem;
  display: inline-block;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
}

.p-button p {
  padding-bottom: 0;
}

.p-button a span:nth-child(1) {
  content: "";
  position: absolute;
  bottom: 0;
  left: -8%;
  width: 130%;
  height: 1px;
  height: 0.0625rem;
  background-color: #0F0F0F;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.p-button a:after,
.p-button p:after {
  content: "";
  position: absolute;
  top: 25%;
  right: -30px;
  right: -1.875rem;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  border-top: 1px solid #0F0F0F;
  border-right: 1px solid #0F0F0F;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.p-button a:hover:after {
  right: -40px;
  right: -2.5rem;
}

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

.p-colorButton a {
  position: relative;
  display: inline-block;
  padding: 20px 60px;
  padding: 1.25rem 3.75rem;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
  background-color: #8d9d85;
}

.p-colorButton a:after {
  content: "";
  position: absolute;
  top: 45%;
  right: 40px;
  right: 2.5rem;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.p-colorButton a:hover:after {
  right: 30px;
  right: 1.875rem;
}

.p-contact {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-contact__message {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.8;
  color: #0F0F0F;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__message {
    font-size: 1.125rem;
  }
}

.p-contact__wrap {
  max-width: 900px;
  max-width: 56.25rem;
  margin-top: 60px;
  margin-top: 3.75rem;
  margin-left: auto;
  margin-right: auto;
}

.p-contact__title {
  margin-top: 80px;
  margin-top: 5rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #0F0F0F;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
}

.p-contact__text {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-contact__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
}

.p-contact__text p a {
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  border-bottom: 1px solid #aaaaaa;
}

.p-contact__text.--tel p a {
  display: inline-block;
  margin-left: 10px;
  margin-left: 0.625rem;
  padding-bottom: 0;
  border-bottom: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 300;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
}

.p-contact__text span {
  display: block;
  margin-top: 10px;
  margin-top: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
  text-align: left;
}

.p-contact__text span:first-of-type {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-drawer {
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-image: url(../images/bg-drawer.jpg);
  background-position: 35% 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-drawer__wrap {
  padding: 90px 50px 100px;
  padding: 5.625rem 3.125rem 6.25rem;
}

.p-drawer__logo {
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
  z-index: 2;
}

.p-drawer__logo span {
  display: block;
  margin-top: 5px;
  margin-top: 0.3125rem;
  width: 100px;
  width: 6.25rem;
  height: 50px;
  height: 3.125rem;
  -webkit-mask: url(../images/common/logo.png) no-repeat center center/contain;
          mask: url(../images/common/logo.png) no-repeat center center/contain;
  background-color: #fff;
}

.p-drawer__navigation-items {
  margin-top: 30px;
  margin-top: 1.875rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  border-bottom: 1px solid #aaaaaa;
}

.p-drawer__navigation-item {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
}

.p-drawer__navigation-item + .p-drawer__navigation-item {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-drawer__serviceList {
  margin-top: 15px;
  margin-top: 0.9375rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
  border-left: 1px solid #aaaaaa;
}

.p-drawer__serviceList-item + .p-drawer__serviceList-item {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-drawer__navItem-sm {
  margin-top: 15px;
  margin-top: 0.9375rem;
  padding-left: 10px;
  padding-left: 0.625rem;
  margin-left: 5px;
  margin-left: 0.3125rem;
  border-left: 1px solid #bebdbd;
  border-left: 0.0625rem solid #bebdbd;
}

.p-drawer__navItem-sm span {
  display: block;
  padding: 5px 0;
  padding: 0.3125rem 0;
}

.p-drawer__meta {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-drawer__meta table {
  width: 100%;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.075em;
  line-height: 1.4;
  color: #fff;
}

.p-drawer__meta table tbody tr td {
  padding-top: 10px;
  padding-top: 0.625rem;
}

.p-drawer__meta table tbody tr td:not(:last-of-type) {
  padding-right: 15px;
  padding-right: 0.9375rem;
}

.p-drawer__privacy {
  margin-top: 50px;
  margin-top: 3.125rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.075em;
  line-height: 1.5;
  color: #fff;
}

.p-drawer.open {
  visibility: visible;
  opacity: 1;
}

.p-fixHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 90px;
  height: 5.625rem;
  padding-left: 25px;
  z-index: 10;
  background-color: rgba(255, 255, 255, .9);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-fixHeader {
    display: none;
  }
}

.p-fixHeader--sub {
  visibility: visible;
  opacity: 1;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-fixHeader--sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: inherit;
    padding-right: 25px;
  }
}

.js-fixHeader.active {
  visibility: visible;
  opacity: 1;
}

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

.p-fixHeader__logo a {
  max-width: 110px;
  max-width: 6.875rem;
  display: block;
  margin: 5px auto 0;
  margin: 0.3125rem auto 0;
}

@media screen and (max-width: 767px) {
  .p-fixHeader__logo a img {
    max-width: 5.625rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-fixHeader__logo a:before {
  content: "鍼灸整体サロン";
  display: inline-block;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
  text-align: center;
}

.p-fixHeader__navItems,
.p-fixHeader__navItems-right,
.p-fixHeader__navWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.p-fixHeader__navItems {
  margin-right: 20px;
  margin-right: 1.25rem;
}

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

.p-fixHeader__navItem + .p-fixHeader__navItem {
  margin-left: 25px;
  margin-left: 1.5625rem;
}

.p-fixHeader__navItems-right .p-fixHeader__navItem {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .p-fixHeader--sub .p-fixHeader__navItems-right {
    display: none;
  }
}

.p-fixHeader__navItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
}

.p-fixHeader__navItem a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-fixHeader__navItem--sns,
.p-fixHeader__navItem--line {
  font-family: "Marcellus", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
}

.p-fixHeader__navItem--tel {
  padding: 0 20px;
  padding: 0 1.25rem;
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
  background-color: #aaaaaa;
}

.p-fixHeader__navItem--tel span {
  font-size: 12px;
  font-size: 0.75rem;
  position: relative;
  top: 5px;
  top: 0.3125rem;
}

.p-fixHeader__navItem--line {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #8d9d85;
  padding: 5px 20px 0;
  padding: 0.3125rem 1.25rem 0;
  color: #fff;
}

.p-fixHeader__navItem--sns a:before {
  content: "";
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  margin-right: 10px;
  margin-right: 0.625rem;
  -webkit-mask: url(../images/common/icon-insta.png) no-repeat center center/contain;
          mask: url(../images/common/icon-insta.png) no-repeat center center/contain;
  background-color: #4f4f4f;
}

.p-fixHeader__navItem--line:before {
  content: "";
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  margin-right: 10px;
  margin-right: 0.625rem;
  background-image: url(../images/common/icon-lineWhite.png);
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
}

.p-fixMenu {
  padding: 10px;
  padding: 0.625rem;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgba(170, 170, 170, .9);
  z-index: 5;
}

.p-fixMenu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.9375rem;
     -moz-column-gap: 0.9375rem;
          column-gap: 0.9375rem;
}

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

.p-fixMenu__item span {
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
}

.p-fixMenu__item--map,
.p-fixMenu__item--tel {
  width: 20%;
}

.p-fixMenu__item--map img,
.p-fixMenu__item--tel img {
  width: 40px;
  width: 2.5rem;
  height: auto;
  margin: 0 auto;
}

.p-fixMenu__item--line {
  width: 60%;
}

.p-fixMenu__item--line a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  padding: 10px;
  padding: 0.625rem;
  background-color: #788E6D;
  border-radius: 10px;
}

.p-fixMenu__item--line a img {
  width: 40px;
  width: 2.5rem;
  height: auto;
}

.p-fixMenu__item--line a span {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
}

.p-footer {
  padding: 60px 0;
  padding: 3.75rem 0;
  background-color: rgba(120, 142, 109, .7);
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-bottom: 6.25rem;
  }
}

.p-footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__wrap {
    display: block;
  }
}

.p-footer__logo {
  max-width: 225px;
  max-width: 14.0625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 32%;
  }
}

.p-footer__logo:before {
  content: "鍼灸整体サロン";
  display: block;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__logo:before {
    font-size: 0.875rem;
  }
}

.p-footer__tel {
  margin-top: 25px;
  margin-top: 1.5625rem;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer__tel {
    margin-top: 1.875rem;
  }
}

.p-footer__tel span {
  font-size: 14px;
  font-size: 0.875rem;
}

.p-footer__line {
  position: relative;
  margin-top: 25px;
  margin-top: 1.5625rem;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer__line {
    width: 100%;
  }
}

.p-footer__line:before {
  content: "";
  display: inline-block;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  margin-right: 10px;
  margin-right: 0.625rem;
  position: relative;
  top: 8px;
  top: 0.5rem;
  background-image: url(../images/common/icon-lineWhite.png);
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
}

.p-footer__meta {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-footer__meta dl:nth-of-type(2) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-footer__meta dl dt {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
}

.p-footer__meta dl dd {
  margin-top: 5px;
  margin-top: 0.3125rem;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
}

.p-footer__salesDay {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
}

.p-footer__table {
  margin-top: 10px;
  margin-top: 0.625rem;
  width: 80%;
  min-width: 200px;
  min-width: 12.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-collapse: collapse;
}

.p-footer__table tr th {
  padding: 10px;
  padding: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
}

.p-footer__table tr td {
  padding: 10px 0;
  padding: 0.625rem 0;
  text-align: center;
  border-top: 1px solid #fff;
}

.p-footer__table-circle span {
  display: inline-block;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  border-radius: 50%;
  border: 2px solid #fff;
}

.p-footer__table-line {
  position: relative;
}

.p-footer__table-line span {
  position: absolute;
  top: 42%;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  display: inline-block;
  width: 20px;
  width: 1.25rem;
  height: 2px;
  height: 0.125rem;
  background-color: #fff;
}

.p-footer__navigatoinWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.125rem;
     -moz-column-gap: 3.125rem;
          column-gap: 3.125rem;
}

.p-footer__navigation {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
}

.p-footer__subNavigations {
  padding-left: 15px;
  padding-left: 0.9375rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  margin-left: 10px;
  margin-left: 0.625rem;
  border-left: 1px solid rgba(255, 255, 255, .5);
}

.p-footer__subNavigation {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
}

.p-footer__subNavigation + .p-footer__subNavigation {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-footer__navigation + .p-footer__navigation {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-footer__snsWrap {
  margin-top: 60px;
  margin-top: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
}

.p-footer__snsWrap span {
  margin-right: 20px;
  margin-right: 1.25rem;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
}

.p-footer__snsWrap span:before {
  content: "";
  display: inline-block;
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  margin-right: 10px;
  margin-right: 0.625rem;
  position: relative;
  top: 5px;
  top: 0.3125rem;
  -webkit-mask: url(../images/common/icon-insta.png) no-repeat center center/contain;
          mask: url(../images/common/icon-insta.png) no-repeat center center/contain;
  background-color: #fff;
}

.p-footer__sns {
  position: relative;
}

.p-footer__sns + .p-footer__sns {
  margin-left: 40px;
  margin-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__sns + .p-footer__sns {
    margin-left: 2.5rem;
  }
}

.p-footer__sns:after {
  content: "";
  position: absolute;
  top: 39%;
  right: -20px;
  right: -1.25rem;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

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

.p-footer__privacy {
  display: block;
  margin-top: 100px;
  margin-top: 6.25rem;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
}

.p-footer__copyright {
  display: block;
  margin-top: 10px;
  margin-top: 0.625rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    margin-top: 1.25rem;
  }
}

.p-header {
  position: relative;
  padding: 55px 42px 0;
  padding: 3.4375rem 2.625rem 0;
}

.p-header__logo {
  width: 80%;
  max-width: 180px;
  max-width: 11.25rem;
  margin: 0 auto;
}

.p-header__logo:before {
  content: "鍼灸整体サロン";
  display: block;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
  text-align: center;
}

.p-header__navItems {
  position: absolute;
  bottom: 50px;
  bottom: 3.125rem;
  left: 18%;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
}

.p-header__navItem + .p-header__navItem {
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.p-header__navItem--sns,
.p-header__navItem--line {
  font-family: "Marcellus", serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
}

.p-header__navItem--tel {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #788E6D;
}

.p-header__navItem--tel span {
  font-size: 12px;
  font-size: 0.75rem;
}

.p-header__navItem--sns:before {
  content: "";
  display: inline-block;
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  margin-right: 10px;
  margin-right: 0.625rem;
  position: relative;
  top: 2px;
  top: 0.125rem;
  -webkit-mask: url(../images/common/icon-insta.png) no-repeat center center/contain;
          mask: url(../images/common/icon-insta.png) no-repeat center center/contain;
  background-color: #4f4f4f;
}

.p-header__navItem--line:before {
  content: "";
  display: inline-block;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  margin-right: 10px;
  margin-right: 0.625rem;
  position: relative;
  top: 8px;
  top: 0.5rem;
  background-image: url(../images/common/icon-line.png);
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
}

.p-mainVisual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 800px;
  min-height: 50rem;
  height: min(1100px, 100vh);
}
@media screen and (max-width: 767px) {
  .p-mainVisual {
    position: relative;
    display: block;
    height: 80vh;
    min-height: auto;
  }
}

.p-mainVisual__header {
  width: 20%;
  max-width: 400px;
  max-width: 25rem;
  min-width: 290px;
  min-width: 18.125rem;
}

@media screen and (max-width: 767px) {
  .p-mainVisual__image {
    height: 80vh;
  }
}

@media screen and (max-width: 767px) {
  .p-mainVisual__image-logoWrap {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-mainVisual__image-logo {
    margin-top: 0.3125rem;
    width: 6.25rem;
    height: 3.125rem;
    -webkit-mask: url(../images/common/logo.png) no-repeat center center/contain;
            mask: url(../images/common/logo.png) no-repeat center center/contain;
    background-color: #fff;
  }
}

.p-mainVisual__logo--sp {
  position: absolute;
  top: 20px;
  top: 1.25rem;
  left: 20px;
  left: 1.25rem;
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  z-index: 2;
}

.p-mainVisual__logo--sp span {
  display: block;
  margin-top: 5px;
  margin-top: 0.3125rem;
  width: 100px;
  width: 6.25rem;
  height: 50px;
  height: 3.125rem;
  -webkit-mask: url(../images/common/logo.png) no-repeat center center/contain;
          mask: url(../images/common/logo.png) no-repeat center center/contain;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .p-mainVisual__image-caption {
    font-family: "Noto Serif JP", serif;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.075em;
    line-height: 1.6;
    color: #fff;
  }
}

.p-mainVisual__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 60%;
     object-position: center 60%;
}
@media screen and (max-width: 767px) {
  .p-mainVisual__image img {
    -o-object-position: 25% 90%;
       object-position: 25% 90%;
  }
}

@media screen and (max-width: 767px) {
  .p-mainVisual__image img:nth-child(1) {
    -o-object-position: 30% 90%;
       object-position: 30% 90%;
  }
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
}
@-webkit-keyframes zoomUp--sp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}
@keyframes zoomUp--sp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}
.swiper-slide-active img,
.swiper-slide-duplicate-active img,
.swiper-slide-prev img {
  -webkit-animation: zoomUp 5s linear 0s 1 normal both;
          animation: zoomUp 5s linear 0s 1 normal both;
}
@media screen and (max-width: 767px) {
  .swiper-slide-active img,
.swiper-slide-duplicate-active img,
.swiper-slide-prev img {
    -webkit-animation: zoomUp--sp 5s linear 0s 1 normal both;
            animation: zoomUp--sp 5s linear 0s 1 normal both;
  }
}

.swiper-slide img {
  display: block;
}

.p-news__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2.1875rem;
     -moz-column-gap: 2.1875rem;
          column-gap: 2.1875rem;
  max-width: 900px;
  max-width: 56.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-news__wrap {
    display: block;
  }
}

.p-news__wrap + .p-news__wrap {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-news__heading {
  position: relative;
  width: 25%;
  min-width: 260px;
  min-width: 16.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
}

.p-news__items {
  width: 100%;
}

.p-news__itemHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-news__itemHead {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

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

.p-news__itemTitle {
  padding-left: 20px;
  padding-left: 1.25rem;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
  border-left: 1px solid #788E6D;
}
@media screen and (max-width: 767px) {
  .p-news__itemTitle {
    margin-top: 0.625rem;
  }
}

.p-news__itemDate {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
}

.p-news__itemText {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
}
@media screen and (max-width: 767px) {
  .p-news__itemText {
    padding-left: 0;
  }
}

/* Privacy
------------------------------------------------ */
.p-privacy h3 {
  margin: 1.5em 0;
  font-size: 22.4px;
  font-size: 1.4rem;
  padding: 12px 0;
  border-bottom: 1px solid #ccc;
}

.p-privacy p {
  margin: 20px 0;
  line-height: 1.6;
}

.p-privacy ul {
  margin: 20px 0 0 30px;
}

.p-privacy ul li {
  list-style: outside decimal;
  line-height: 140%;
  margin: 10px 0 0 0;
}

.p-privacy ul li ul {
  margin: 15px 0 10px 10px;
}

.p-privacy ul li ul li {
  list-style: outside none;
  margin-left: 20px;
  text-indent: -1.5em;
}

.p-privacy ul.child {
  margin: 15px 0 0 10px;
}

.p-privacy ul.child li {
  list-style: outside none;
  margin-left: 45px;
  text-indent: -1.7em;
}

.p-privacy p.tR {
  margin: 30px 0 0 0;
  font-size: 0.95em;
  line-height: 140%;
  text-align: right;
}

.p-privacy ul li ul li ol li {
  list-style: outside lower-roman;
  margin-left: 20px;
  text-indent: -0.2em;
}

.p-privacy ol {
  margin: 20px 0 0 40px;
}

.p-privacy ol li {
  list-style: outside decimal;
  line-height: 140%;
  margin: 10px 0 0 0;
}

.p-privacy ol li ol {
  margin-bottom: 20px;
}

.p-privacy ol li ol li {
  font-size: 100%;
}

.p-service {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-service__message {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.8;
  color: #0F0F0F;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service__message {
    font-size: 1.125rem;
  }
}

.p-service__wrap {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-service__wrap {
    max-width: 31.25rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5rem;
  }
}

.p-service__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 7px 5px 18px -9px #777777;
          box-shadow: 7px 5px 18px -9px #777777;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-service__item a {
    display: block;
  }
}

.p-service__item:nth-child(even) a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.p-service__item + .p-service__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-service__image {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-service__image {
    width: 100%;
  }
}

.p-service__image:before {
  content: "";
  display: block;
  padding-top: 65%;
}

.p-service__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-service__itemBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
  padding: 30px 40px;
  padding: 1.875rem 2.5rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-service__itemBody {
    width: 100%;
    padding: 1.5625rem 1.5625rem;
  }
}

.p-service__name {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
}
@media screen and (max-width: 767px) {
  .p-service__name {
    font-size: 1.25rem;
  }
}

.p-service__description {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.075em;
  line-height: 1.8;
  color: #0F0F0F;
  text-align: left;
}

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

.p-serviceDescription__wrap {
  max-width: 900px;
  max-width: 56.25rem;
  margin-left: auto;
  margin-right: auto;
}

.p-serviceDescription__title {
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
  border-bottom: 1px solid #788E6D;
}

.p-serviceDescription__title:not(:first-of-type) {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-serviceDescription__title:not(:first-of-type) {
    margin-top: 3.75rem;
  }
}

.p-serviceDescription__md-title {
  margin-top: 30px;
  margin-top: 1.875rem;
  padding-left: 10px;
  padding-left: 0.625rem;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
  border-left: 2px solid #788E6D;
}

.p-serviceDescription__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.125em;
  line-height: 1.8;
  color: #0F0F0F;
}
@media screen and (max-width: 767px) {
  .p-serviceDescription__text {
    margin-top: 1.25rem;
  }
}

.p-serviceDescription__text--contact {
  display: block;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
}

.p-serviceDescription__text--contact a {
  display: inline-block;
  margin-left: 10px;
  margin-left: 0.625rem;
  padding-bottom: 0;
  border-bottom: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 300;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
}

.p-serviceDescription__text span:not(.p-serviceDescription__text--contact):not(.p-serviceDescription__small) {
  font-weight: 700;
}

.p-serviceDescription__small {
  display: block;
  margin-top: 10px;
  margin-top: 0.625rem;
  padding-top: 5px;
  padding-top: 0.3125rem;
  font-size: 14px;
  font-size: 0.875rem;
  border-top: 1px solid #aaaaaa;
}

.p-serviceDescription__imageWrap {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-serviceDescription__link {
  display: block;
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #3b7fc2;
}

.p-serviceItem a {
  display: block;
  position: relative;
  height: max(30vh, 300px);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-serviceItem a {
    height: max(20vh, 250px);
    background-position: center;
  }
}

.p-serviceItem--salon a {
  background-image: url(../images/service01.jpg);
}

.p-serviceItem--visit a {
  background-image: url(../images/service02.jpg);
}

.p-serviceItem--company a {
  background-image: url(../images/service03.jpg);
}

.p-serviceItem a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 15, 15, .6);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.p-serviceItem a:hover:before {
  background-color: rgba(15, 15, 15, .3);
}

.p-serviceLists__itemWrap {
  display: block;
  position: relative;
  height: max(30vh, 300px);
  background-image: url(../images/service04.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-serviceLists__itemWrap {
    height: max(20vh, 250px);
    background-position: center;
  }
}

.p-serviceLists__itemWrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 15, 15, .9);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.p-serviceItem__title {
  position: absolute;
  top: 10%;
  left: 10%;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-serviceItem__title {
    font-size: 1.375rem;
  }
}

.p-serviceItem__text {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 80%;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-serviceItem__text {
    font-size: 1rem;
  }
}

.p-serviceLink__wrap {
  margin-top: 150px;
  margin-top: 9.375rem;
  max-width: 900px;
  max-width: 56.25rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-serviceLink__wrap {
    display: block;
    max-width: 31.25rem;
    margin-top: 5.625rem;
  }
}

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

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

.p-serviceLink__itemBody {
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-serviceLink__itemBody {
    width: 55%;
  }
}

.p-serviceLink__name {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
}
@media screen and (max-width: 767px) {
  .p-serviceLink__name {
    font-size: 1rem;
  }
}

.p-serviceLink__image {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-serviceLink__image {
    width: 45%;
  }
}

.p-serviceLink__image:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.p-serviceLink__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 35%;
     object-position: center 35%;
}

.p-serviceLink__button {
  margin-top: 30px;
  margin-top: 1.875rem;
}

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

.p-serviceLists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 0.125rem;
     -moz-column-gap: 0.125rem;
          column-gap: 0.125rem;
  row-gap: 2px;
  row-gap: 0.125rem;
  width: 100%;
  max-width: 1500px;
  max-width: 93.75rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-serviceLists {
    grid-template-columns: 1fr;
  }
}

.p-serviceItem__button {
  margin-top: 105px;
  margin-top: 6.5625rem;
}

.p-spHeader {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-spHeader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 5.625rem;
    background-color: rgba(255, 255, 255, .9);
  }
}

.p-staff {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-staff__message {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.8;
  color: #0F0F0F;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-staff__message {
    font-size: 1.125rem;
  }
}

.p-staff__wrap {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-staff__wrap {
    max-width: 31.25rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5rem;
  }
}

.p-staff__item {
  padding: 30px;
  padding: 1.875rem;
  -webkit-box-shadow: 7px 5px 18px -9px #777777;
          box-shadow: 7px 5px 18px -9px #777777;
  border-radius: 30px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-staff__item {
    display: block;
  }
}

.p-staff__item + .p-staff__item {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-staff__item + .p-staff__item {
    margin-top: 2.5rem;
  }
}

.p-staff__itemHead {
  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-staff__itemHead {
    display: block;
  }
}

.p-staff__image {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-staff__image {
    width: 100%;
  }
}

.p-staff__image:before {
  content: "";
  display: block;
  padding-top: 65%;
}

.p-staff__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 1.875rem;
}

.p-staff__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  padding: 30px 40px;
  padding: 1.875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-staff__meta {
    width: 100%;
    padding: 1.5625rem 0;
  }
}

.p-staff__name {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid #aaaaaa;
}
@media screen and (max-width: 767px) {
  .p-staff__name {
    font-size: 1.25rem;
  }
}

.p-staff__metaTable {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-staff__metaTable tr th,
.p-staff__metaTable tr td {
  padding: 10px 0;
  padding: 0.625rem 0;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
}
@media screen and (max-width: 767px) {
  .p-staff__metaTable tr th,
.p-staff__metaTable tr td {
    font-size: 0.875rem;
  }
}

.p-staff__metaTable tr th {
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-staff__metaTable tr th {
    padding-right: 1.25rem;
  }
}

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

.p-staff__title {
  padding-left: 20px;
  padding-left: 1.25rem;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #5d6e55;
  border-left: 4px solid #5d6e55;
}
@media screen and (max-width: 767px) {
  .p-staff__title {
    padding-left: 0.625rem;
    font-size: 1rem;
  }
}

.p-staff__title:not(:first-of-type) {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-staff__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.8;
  color: #0F0F0F;
}
@media screen and (max-width: 767px) {
  .p-staff__text {
    font-size: 0.875rem;
  }
}

.p-subMainvisual {
  position: relative;
}

.p-subMainvisual__image {
  position: relative;
  width: 100%;
}

.p-subMainvisual__image:before {
  content: "";
  display: block;
  padding-top: 25%;
}
@media screen and (max-width: 767px) {
  .p-subMainvisual__image:before {
    padding-top: 45%;
  }
}

.p-subMainvisual__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 80%;
     object-position: center 80%;
}

.p-subMainvisual__image.--access img {
  -o-object-position: center 40%;
     object-position: center 40%;
}

.p-subMainvisual__image.--visit img,
.p-subMainvisual__image.--salon img {
  -o-object-position: center 60%;
     object-position: center 60%;
}

.p-subMainvisual__image.--staff img {
  -o-object-position: center 58%;
     object-position: center 58%;
}

.p-subMainvisual__image.--company img {
  -o-object-position: center 50%;
     object-position: center 50%;
}

.p-subMainvisual__image:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(15, 15, 15, .4);
}

.p-subMainvisual__title {
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
}

.p-topService__description {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topService__description {
    padding: 0 1.25rem;
    font-size: 1rem;
  }
}

.p-topService__lists {
  margin-top: 70px;
  margin-top: 4.375rem;
}

.p-topSns {
  padding: 100px 0;
  padding: 6.25rem 0;
  background-color: rgba(207, 211, 203, .4);
}

.p-topSns__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
  text-align: center;
}

.p-topSns__contents {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-topSns__contents ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px 20px;
  gap: 1.875rem 1.25rem;
}

.p-topSns__contents ul li {
  position: relative;
}

.p-topSns__contents ul li:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .25);
}

.p-topStaff {
  padding: 105px 0;
  padding: 6.5625rem 0;
  background-color: rgba(207, 211, 203, .4);
}
@media screen and (max-width: 767px) {
  .p-topStaff {
    padding: 3.75rem 0;
  }
}

.p-topStaff__description {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topStaff__description {
    font-size: 1rem;
  }
}

.p-topStaff__lists {
  margin-top: 70px;
  margin-top: 4.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 6.25rem;
     -moz-column-gap: 6.25rem;
          column-gap: 6.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-topStaff__lists {
    display: block;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .p-topStaff__list + .p-topStaff__list {
    margin-top: 3.75rem;
  }
}

.p-topStaff__list {
  max-width: 300px;
  max-width: 18.75rem;
  margin: 0 auto;
}

.p-topStaff__name {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
}
@media screen and (max-width: 767px) {
  .p-topStaff__name {
    margin-top: 0.9375rem;
    font-size: 1.125rem;
  }
}

.p-topStaff__text {
  margin-top: 15px;
  margin-top: 0.9375rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
}
@media screen and (max-width: 767px) {
  .p-topStaff__text {
    margin-top: 0.625rem;
    font-size: 1rem;
  }
}

.p-topStaff__button {
  margin-top: 120px;
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-topStaff__button {
    margin-top: 5rem;
  }
}

.p-topVoice__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.125rem;
     -moz-column-gap: 3.125rem;
          column-gap: 3.125rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-topVoice__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-topVoice__container {
  width: 55%;
  padding: 30px 0 0;
  padding: 1.875rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-topVoice__container {
    width: 100%;
    padding-top: 0;
    margin-top: 1.25rem;
  }
}

.p-topVoice__image {
  position: relative;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .p-topVoice__image {
    width: 100%;
  }
}

.p-topVoice__image:before {
  content: "";
  display: block;
  padding-top: 115%;
}
@media screen and (max-width: 767px) {
  .p-topVoice__image:before {
    padding-top: 75%;
  }
}

.p-topVoice__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 767px) {
  .p-topVoice__image img {
    -o-object-position: center 30%;
       object-position: center 30%;
  }
}

.p-topVoice__description {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
}
@media screen and (max-width: 767px) {
  .p-topVoice__description {
    font-size: 1.125rem;
    text-align: center;
    margin-top: 2.5rem;
  }
}

.p-topVoice__contents {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 40px;
  padding: 2.5rem;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #0F0F0F;
  background-color: rgba(255, 255, 255, .7);
  border-radius: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-topVoice__contents {
    padding: 1.875rem;
    font-size: 1rem;
    margin-top: 0;
  }
}

.p-topVoice__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.125em;
}

.p-topVoice__menu {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-topVoice__meta {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-topVoice__meta {
    font-size: 0.875rem;
  }
}

.p-topVoice__meta:before {
  content: "";
  position: relative;
  bottom: 5px;
  bottom: 0.3125rem;
  display: inline-block;
  width: 30px;
  width: 1.875rem;
  height: 1px;
  height: 0.0625rem;
  background-color: #0F0F0F;
  margin-right: 20px;
  margin-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-topVoice__meta:before {
    width: 1.25rem;
    margin-right: 0.625rem;
  }
}

.p-topVoice__menu span {
  margin-right: 25px;
  margin-right: 1.5625rem;
}

.p-topVoice__button {
  margin-top: 80px;
  margin-top: 5rem;
}
/*# sourceMappingURL=style.css.map */
