@charset "UTF-8";
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

::selection {
  background-color: pink;
}

html {
  font-size: 62.5%;
  overflow-x: auto;
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  object-fit: cover;
}

a:link,
a:visited {
  text-decoration: none;
  display: inline-block;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

textarea {
  resize: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2e2e2e;
  line-height: 2;
}

.heading-1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 2;
  color: #fff;
  font-family: "Noto Serif JP", sans-serif;
}
@media screen and (max-width: 500px) {
  .heading-1 {
    font-size: 2rem;
  }
}

.heading-2 {
  font-size: 3.2rem;
  line-height: 1.56;
  color: #D7A548;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 500px) {
  .heading-2 {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.heading-3 {
  font-size: 3.6rem;
  font-family: "LibreBaskerville", sans-serif;
  text-transform: capitalize;
  line-height: 1.4;
  color: #2e2e2e;
}

@font-face {
  font-family: "LibreBaskerville";
  src: url("../font/LibreBaskerville-Regular.ttf") format("ttf");
  font-weight: 400;
}
@font-face {
  font-family: "LibreBaskerville";
  src: url("../font/LibreBaskerville-Regular.woff") format("woff");
  font-weight: 400;
}
.heading-4 {
  font-family: "Noto Serif JP", sans-serif;
  position: relative;
  text-align: center;
  font-size: 2.6rem;
  padding-top: 2.2rem;
  font-weight: 700;
}
.heading-4::before {
  content: "";
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 5rem;
  background: url(../images/ico_title.png) no-repeat center center/contain;
}

.container {
  width: 100%;
  max-width: 112rem;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-right: auto;
  margin-left: auto;
}

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

.br__tab {
  display: none;
}
@media screen and (max-width: 1300px) {
  .br__tab {
    display: inherit;
  }
}

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

.br__mb2 {
  display: none;
}
@media screen and (max-width: 500px) {
  .br__mb2 {
    display: block;
  }
}

.br__mb1 {
  display: none;
}
@media screen and (max-width: 623px) {
  .br__mb1 {
    display: block;
  }
}

.mt100 {
  margin-top: 10rem;
}

.mt90 {
  margin-top: 9rem;
}

.mt80 {
  margin-top: 8rem;
}

.mt70 {
  margin-top: 7rem;
}

.mt60 {
  margin-top: 6rem;
}

.mt50 {
  margin-top: 5rem;
}

.mt40 {
  margin-top: 4rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt20 {
  margin-top: 2rem;
}

.c-title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-title-box__text {
  letter-spacing: 1px;
  color: #2e2e2e;
}
.c-title-box__text--contact {
  color: #fff;
}
.c-title-box__sub {
  font-size: 1.6rem;
  margin-top: 0.8rem;
  line-height: 1.4;
  color: #D7A548;
}
.c-title-box__sub--contact {
  color: #fff;
}

.c-btn__group {
  background-color: #fff;
  border: 1px solid #D7A548;
  display: inline-block;
  line-height: 1.5;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn__group {
    font-size: 1.4rem;
  }
}
.c-btn__group:hover {
  background-color: #D7A548;
  transition: all 0.3s;
}

.c-btn__btn {
  color: #D7A548;
  font-weight: 700;
  padding: 1.1rem 4.4rem 1.3rem;
  transition: all 0.3s;
}
@media screen and (max-width: 500px) {
  .c-btn__btn {
    padding: 1rem 3.8rem 1rem 4.4rem;
  }
}
.c-btn__btn--contact {
  padding: 1.1rem 5rem 1.3rem 5rem;
}
@media screen and (max-width: 767px) {
  .c-btn__btn--contact {
    padding: 1rem 4.7rem 0.8rem 3.3rem;
    width: 22rem;
  }
}
.c-btn__btn:hover {
  color: #fff;
  transition: all 0.3s;
}
.c-btn__btn:hover .c-btn__path {
  fill: transparent;
  stroke: white;
  transition: all 0.3s;
}

.c-btn__svg {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.7rem;
  z-index: 3;
  opacity: 1;
}

.c-btn__path {
  fill: transparent;
  stroke: #D7A548;
  stroke-width: 2;
  transition: all 0.3s;
}

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

path {
  pointer-events: all;
}

/* もしくは */
path {
  fill: rgba(0, 0, 0, 0); /* fill: none; の代わり */
}

/*===================
c-btn02
===================*/
.c-btn02 a {
  position: relative;
  display: inline-block;
  width: 400px;
  padding: 1.5rem 1rem;
  max-width: 100%;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #2e2e2e;
  border: 1px solid #2e2e2e;
  transition: color 0.3s, background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn02 a {
    font-size: 1.8rem;
  }
}
.c-btn02 a span {
  position: relative;
  z-index: 2;
}
.c-btn02 a::after {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  background-color: #2e2e2e;
  border: 1px solid #fff;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn02 a::after {
    content: "";
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    background-color: #2e2e2e;
    border: 1px solid #fff;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
  }
}
.c-btn02 a::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 2.5rem;
  transform: translateY(calc(-50% + 1px)) rotate(-45deg);
  width: 1rem;
  height: 1rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.c-btn02 a:hover {
  background-color: #fff;
}
.c-btn02 a:hover::after {
  background-color: #444;
}

.menu {
  position: fixed;
  background-color: #2e2e2e;
  color: #fff;
  width: 100%;
  height: 100%;
  z-index: 10;
  opacity: 0;
  top: -500rem;
  transition: all 0.7s;
}
@media screen and (max-width: 500px) {
  .menu {
    height: 41.2rem;
  }
}

.menu__ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media screen and (max-width: 500px) {
  .menu__ul {
    margin-top: 10.8rem;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%) translateY(0);
  }
}

.menu__li {
  line-height: 1.65;
  white-space: nowrap;
}
.menu__li:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 500px) {
  .menu__li:not(:last-child) {
    margin-bottom: 1.9rem;
  }
}

.menu__a {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1.3;
}
@media screen and (max-width: 500px) {
  .menu__a {
    font-size: 1.8rem;
  }
}

.button {
  display: none;
  cursor: pointer;
  width: 6rem;
  height: 6rem;
  background-color: #D7A548;
  border: none;
  position: absolute;
  right: 2%;
  top: 3rem;
  z-index: 13;
  transition: all 0.5s;
  transform: translateY(-2rem);
}
@media screen and (max-width: 767px) {
  .button {
    display: inline-block;
  }
}
@media screen and (max-width: 500px) {
  .button {
    width: 4rem;
    height: 4rem;
    right: 0.9rem;
  }
}

.hum {
  display: none;
  height: 2px;
  width: 3rem;
  background-color: #fff;
  position: relative;
  display: inline-block;
  text-align: center;
  margin-top: 1.5rem;
  z-index: 100;
}
.hum::before, .hum::after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 3rem;
  background-color: #fff;
  position: absolute;
  top: -0.8rem;
  left: 0;
  transition: all 0.25s;
}
.hum::after {
  top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .hum {
    display: inline-block;
  }
}

@media screen and (max-width: 767px) {
  .open .menu {
    top: 0;
    opacity: 1;
  }
}

.open .button {
  position: fixed;
}

.open .button span {
  background-color: transparent;
}

.open .button span::before {
  transform: translateY(0.8rem) rotate(-315deg);
}

.open .button span::after {
  transform: translateY(-0.8rem) rotate(315deg);
}

/* Loading背景画面設定　*/
.splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 3000;
  background: #f6f5f0;
  text-align: center;
  color: #2e2e2e;
}
.splash__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.splash__img {
  width: 36.8rem;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-service-grid {
  position: relative;
  display: flex;
  align-items: flex-start;
}
.c-service-grid.is--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .c-service-grid {
    display: block;
  }
}

.c-service-grid__image-wrap {
  width: calc(50% - 2rem + 50vw - 50%);
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 1024px) {
  .c-service-grid__image-wrap {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .c-service-grid__image-wrap {
    width: 100%;
  }
}

.c-service-grid.is--reverse .c-service-grid__image-wrap {
  margin-left: 0;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 1024px) {
  .c-service-grid.is--reverse .c-service-grid__image-wrap {
    margin-left: auto;
    margin-right: calc(50% - 50vw);
  }
}
@media screen and (max-width: 767px) {
  .c-service-grid.is--reverse .c-service-grid__image-wrap {
    margin-right: 0;
    margin-left: calc(50vw - 50%);
  }
}

.c-service-grid__image {
  position: relative;
  min-height: 56rem;
  padding-bottom: 82%;
}
@media screen and (max-width: 1024px) {
  .c-service-grid__image {
    min-height: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-service-grid__image {
    padding-bottom: 75%;
  }
}

.c-service-grid__image img {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-service-grid__content {
  position: relative;
  margin-top: 8rem;
  width: calc(50% + 8rem);
  margin-left: -8rem;
}
@media screen and (max-width: 1024px) {
  .c-service-grid__content {
    margin-top: -8rem;
    width: 80%;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .c-service-grid__content {
    width: 100%;
    margin-top: -4rem;
  }
}

.c-service-grid.is--reverse .c-service-grid__content {
  position: relative;
  margin-left: 0;
  margin-right: -8rem;
}
@media screen and (max-width: 1024px) {
  .c-service-grid.is--reverse .c-service-grid__content {
    left: 0;
    margin-right: calc(50% - 50vw);
  }
}

.c-service-grid__title--en {
  position: absolute;
  top: 0;
  left: 12rem;
  transform: translateY(-100%);
  white-space: nowrap;
  font-size: 2.2rem;
  font-weight: 700;
  color: #E4E4E4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: "Noto Serif JP", sans-serif;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .c-service-grid__title--en {
    font-size: 2.4rem;
    left: 6rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 767px) {
  .c-service-grid__title--en {
    font-size: 1.8rem;
    left: 2rem;
  }
}

.c-service-grid.is--reverse .c-service-grid__title--en {
  left: 6rem;
}
@media screen and (max-width: 1024px) {
  .c-service-grid.is--reverse .c-service-grid__title--en {
    left: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-service-grid.is--reverse .c-service-grid__title--en {
    left: 0;
  }
}

.c-service-grid__content-wrap {
  position: relative;
  padding: 4rem 5.5rem 4rem 11.5rem;
  min-height: 56rem;
  background-color: rgba(246, 245, 240, 0.9);
}
.c-service-grid__content-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 1px;
  width: calc(50vw - 50% + 1px);
  transform: translateX(100%);
  height: 100%;
  background-color: rgba(246, 245, 240, 0.9);
}
@media screen and (max-width: 1024px) {
  .c-service-grid__content-wrap {
    min-height: 0;
    padding: 4rem 4rem 4rem 6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-service-grid__content-wrap {
    padding: 4rem 3rem;
    padding-right: 1rem;
  }
}

.c-service-grid.is--reverse .c-service-grid__content-wrap {
  padding-left: 5.5rem;
  padding-right: 11.5rem;
}
.c-service-grid.is--reverse .c-service-grid__content-wrap::after {
  right: 100%;
  transform: translateX(0);
}
@media screen and (max-width: 1024px) {
  .c-service-grid.is--reverse .c-service-grid__content-wrap {
    padding-left: 4rem;
    padding-right: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-service-grid.is--reverse .c-service-grid__content-wrap {
    padding-right: 3rem;
    padding-left: 1rem;
  }
}

.c-service-grid__title {
  font-size: 2.6rem;
  line-height: 1.3;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-service-grid__title {
    font-size: 2rem;
  }
}

.c-service-grid__text {
  margin-top: 3rem;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .c-service-grid__text {
    font-size: 1.4rem;
  }
}

.p-about {
  padding-top: 14rem;
}
@media screen and (max-width: 900px) {
  .p-about {
    padding-top: 10rem;
  }
}
@media screen and (max-width: 500px) {
  .p-about {
    padding-top: 7rem;
  }
}

.p-about__title-box {
  margin-bottom: 7rem;
}
@media screen and (max-width: 500px) {
  .p-about__title-box {
    margin-bottom: 3rem;
  }
}

.p-about__container {
  width: 100%;
  max-width: 112rem;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-about__container {
    padding-right: 0;
    padding-left: 0;
  }
}

.p-about__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
}

.p-about__box {
  width: 48rem;
  height: 26.2rem;
  background-color: rgba(246, 245, 240, 0.9);
  position: absolute;
  top: 8rem;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .p-about__box {
    width: 49rem;
  }
}
@media screen and (max-width: 900px) {
  .p-about__box {
    width: 46rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about__box {
    top: 28rem;
  }
}
@media screen and (max-width: 500px) {
  .p-about__box {
    top: 19rem;
    width: 32.5rem;
    height: 29rem;
  }
}

.p-about__details {
  padding-left: 6rem;
  padding-top: 4rem;
  margin-bottom: 2.7rem;
}
@media screen and (max-width: 500px) {
  .p-about__details {
    padding-left: 3rem;
    padding-right: 5.4rem;
    padding-top: 3rem;
  }
}

.p-about__detail-parents {
  display: flex;
  flex-direction: row;
}
.p-about__detail-parents:not(:last-child) {
  margin-bottom: 1.7rem;
}

.p-about__title {
  font-size: 1.6rem;
}
@media screen and (max-width: 500px) {
  .p-about__title {
    flex-basis: 21%;
  }
}
.p-about__title--1 {
  margin-right: 4rem;
}
@media screen and (max-width: 500px) {
  .p-about__title--1 {
    margin-right: 2.4rem;
  }
}
.p-about__title--2 {
  margin-right: 2.4rem;
}

.p-about__detail {
  line-height: 1.775;
}
@media screen and (max-width: 500px) {
  .p-about__detail {
    flex-basis: 69%;
  }
}
.p-about__detail a {
  color: #2e2e2e;
  pointer-events: none;
}

.p-about__btn-parent {
  text-align: center;
}
@media screen and (max-width: 500px) {
  .p-about__btn-parent {
    text-align: left;
    margin-left: 3rem;
  }
}

.p-about__btn {
  display: inline-block;
}

.p-about__map {
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-about__map {
    padding-bottom: 23.4rem;
  }
}

.p-about__google-map {
  width: 64rem;
  height: 32rem;
}
@media screen and (max-width: 1024px) {
  .p-about__google-map {
    width: 50rem;
  }
}
@media screen and (max-width: 900px) {
  .p-about__google-map {
    width: 40rem;
  }
}
@media screen and (max-width: 500px) {
  .p-about__google-map {
    width: 32.5rem;
    height: 22rem;
  }
}

.p-contact {
  padding-top: 7rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-top: 5rem;
  }
}

.p-contact__container {
  width: 108rem;
  background: linear-gradient(rgba(46, 46, 46, 0.6), rgba(46, 46, 46, 0.6)), image-set(url(../images/top/bnr_contact.png) 1x, url(../images/top/bnr_contact@2x.png) 2x) no-repeat;
  background-size: cover;
  height: 22.2rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-contact__container {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__container {
    background-position: center;
  }
}
@media screen and (max-width: 500px) {
  .p-contact__container {
    background: linear-gradient(rgba(46, 46, 46, 0.6), rgba(46, 46, 46, 0.6)), image-set(url(../images/top/bnr_contact_sm.png) 1x, url(../images/top/bnr_contact_sm@2x.png) 2x) no-repeat;
    background-size: cover;
    height: 20.6rem;
  }
}

.p-contact__box {
  padding-top: 3rem;
  padding-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-contact__box {
    padding-bottom: 4.6rem;
  }
}

.p-contact__title-box {
  border: 1px solid rgba(255, 255, 255, 0.82);
  display: block;
  height: 13.2rem;
  margin: 0 auto;
  padding: 1.3rem 21.1rem 3.8rem;
  text-align: center;
  width: 56.6rem;
}
@media screen and (max-width: 767px) {
  .p-contact__title-box {
    padding: 1.3rem 2rem 3.7rem;
  }
}
@media screen and (max-width: 623px) {
  .p-contact__title-box {
    text-align: center;
    width: auto;
  }
}
@media screen and (max-width: 500px) {
  .p-contact__title-box {
    margin-right: 3.2rem;
    margin-left: 3.2rem;
  }
}

.p-contact__btn {
  left: 50%;
  position: absolute;
  top: 13.7rem;
  transform: translateX(-50%);
}

.p-hero {
  background: linear-gradient(rgba(41, 74, 41, 0.2), rgba(41, 74, 41, 0.2)), image-set(url(../images/top/bg_top.png) 1x, url(../images/top/bg_top@2x.png) 2x) no-repeat;
  background-position: center;
  background-size: cover;
  height: 64rem;
  position: relative;
  margin-bottom: 16rem;
}
@media screen and (max-width: 1024px) {
  .p-hero {
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 500px) {
  .p-hero {
    background: linear-gradient(rgba(41, 74, 41, 0.2), rgba(41, 74, 41, 0.2)), image-set(url(../images/top/bg_top_sm.png) 1x, url(../images/top/bg_top_sm@2x.png) 2x) no-repeat;
    background-position: center;
    background-size: cover;
    height: 40.4rem;
    margin-bottom: 3rem;
  }
}

.p-hero__box {
  align-items: center;
  background-color: rgba(215, 165, 72, 0.82);
  display: flex;
  flex-direction: row;
  height: 32rem;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 19rem;
  transform: translateX(-50%);
  width: 46rem;
}
@media screen and (max-width: 500px) {
  .p-hero__box {
    width: 28rem;
    height: 18.6rem;
    top: 13.7rem;
  }
}

.p-hero__h1 {
  text-align: center;
  margin: 0;
}

.p-hero__ico-scroll img {
  bottom: -4.7rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 3.5rem;
  transition: bottom 0.3s ease-out;
}
@media screen and (max-width: 500px) {
  .p-hero__ico-scroll img {
    display: none;
  }
}
.p-hero__ico-scroll img:hover {
  bottom: -5.2rem;
}

.p-main__content-box {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 900px) {
  .p-main__content-box {
    flex-direction: column;
  }
}
.p-main__content-box--1 {
  align-items: flex-start;
  justify-content: flex-start;
}
.p-main__content-box--2 {
  margin-top: 20px;
  justify-content: flex-end;
}
@media screen and (max-width: 900px) {
  .p-main__content-box--2 {
    align-items: flex-end;
  }
}

.p-main__img {
  width: 60rem;
  height: 36rem;
}
@media screen and (max-width: 1300px) {
  .p-main__img {
    width: 40rem;
    height: 30rem;
  }
}
@media screen and (max-width: 900px) {
  .p-main__img {
    width: 80%;
  }
}
@media screen and (max-width: 500px) {
  .p-main__img {
    width: 34rem;
    height: 22rem;
  }
}

.p-main__h2 {
  margin-bottom: 5rem;
}
@media screen and (max-width: 1024px) {
  .p-main__h2 {
    margin-bottom: 3.5rem;
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 500px) {
  .p-main__h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
}

.p-main__ul__wrap {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .p-main__ul__wrap {
    flex-direction: column;
  }
}

.p-main__ul_box {
  margin-right: 3rem;
  margin-bottom: 2rem;
}

.p-main__ul_title {
  font-size: 1.6rem;
}

.p-main__li {
  font-size: 1.6rem;
  line-height: 2;
  font-family: "Noto Serif JP", sans-serif;
}
@media screen and (max-width: 1024px) {
  .p-main__li {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 500px) {
  .p-main__li {
    font-size: 1.6rem;
  }
}

.p-main__content--1 {
  margin-left: 8rem;
}
@media screen and (max-width: 900px) {
  .p-main__content--1 {
    order: -1;
    margin: 0 auto;
  }
}

.p-main__content--2 {
  margin-right: 8rem;
  order: -1;
  align-self: center;
}
@media screen and (max-width: 900px) {
  .p-main__content--2 {
    margin-right: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .p-main__content--2 {
    margin: auto;
  }
}

.p-main__description {
  font-size: 1.8rem;
  line-height: 1.8;
  width: 45.7rem;
}
@media screen and (max-width: 1024px) {
  .p-main__description {
    font-size: 1.5rem;
    width: 35rem;
  }
}
@media screen and (max-width: 900px) {
  .p-main__description {
    margin-bottom: 5rem;
    margin-top: 5rem;
    font-size: 1.6rem;
    width: 45.7rem;
  }
}
@media screen and (max-width: 500px) {
  .p-main__description {
    margin-bottom: 3rem;
    margin-top: 3rem;
    width: 30rem;
  }
}

.p-main-visual {
  position: relative;
}

.p-main-visual__images {
  position: relative;
  padding-bottom: 23%;
  min-height: 300px;
}
.p-main-visual__images img {
  position: absolute;
  z-index: 0;
  display: inline-block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-main-visual__images::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(41, 74, 41, 0.2);
}

.recruit-page .p-main-visual__images::before {
  background-color: rgba(41, 74, 41, 0.6);
}

.p-main-visual__box {
  position: absolute;
  padding: 3.5rem 3.3rem 2.2rem;
  z-index: 2;
  top: calc(50% + 4.4rem);
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .p-main-visual__box {
    top: calc(50% + 3rem);
    padding: 3.8rem 2rem 2.2rem;
  }
}

.p-main-visual__title--en {
  color: #fff;
  line-height: 1;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  font-family: "Noto Serif JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-main-visual__title--en {
    font-size: 2.8rem;
    line-height: 1.2;
  }
}

.p-main-visual__title--ja {
  margin-top: 1.2rem;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  white-space: nowrap;
}

.p-recruit {
  padding-top: 15.2rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-recruit {
    padding-top: 10rem;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit {
    padding-top: 6.8rem;
  }
}

.p-recruit__title-box {
  margin-bottom: 4.6rem;
}
@media screen and (max-width: 500px) {
  .p-recruit__title-box {
    margin-bottom: 2rem;
  }
}

.p-recruit__description {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 2.7rem;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .p-recruit__description {
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
}

.p-recruit__background {
  background-color: rgba(246, 245, 240, 0.9);
  height: 22.8rem;
  position: absolute;
  width: 100%;
  z-index: -1;
  bottom: -4rem;
}
@media screen and (max-width: 500px) {
  .p-recruit__background {
    bottom: -3rem;
    height: 16.4rem;
  }
}

.p-recruit__img-group {
  display: flex;
  flex-direction: row;
}

.p-recruit__img {
  width: 50%;
}
.p-recruit__img--pc {
  display: block;
}
@media screen and (max-width: 623px) {
  .p-recruit__img--pc {
    display: none;
  }
}
.p-recruit__img--sm {
  display: none;
}
@media screen and (max-width: 623px) {
  .p-recruit__img--sm {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .p-recruit__img--sm {
    width: 31.5rem;
    margin: 0 auto;
  }
}

.p-recruit__btn-parent {
  margin-bottom: 4rem;
  margin-top: 4rem;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .p-recruit__btn-parent {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
}

.p-service {
  padding-top: 13rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-service {
    padding-top: 10rem;
  }
}
@media screen and (max-width: 500px) {
  .p-service {
    padding-top: 7rem;
  }
}

.p-service__title-box {
  margin-bottom: 7rem;
}
@media screen and (max-width: 500px) {
  .p-service__title-box {
    margin-bottom: 4rem;
  }
}

.p-service__mai-list {
  overflow: hidden;
}

.p-service__main {
  display: flex;
  align-items: stretch;
}
.p-service__main:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.p-service__main:not(:first-of-type) {
  margin-top: 80px;
}
@media screen and (max-width: 900px) {
  .p-service__main {
    display: block;
  }
}

.p-service__main-image {
  width: 480px;
}
.p-service__main-image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 900px) {
  .p-service__main-image {
    width: calc(100% + 20px - 50px);
  }
}

@media screen and (max-width: 900px) {
  .p-service__main:nth-of-type(2n + 1) .p-service__main-image {
    margin-left: auto;
    margin-right: -20px;
  }
  .p-service__main:nth-of-type(2n) .p-service__main-image {
    margin-right: auto;
    margin-left: -20px;
  }
}

.p-service__main-content {
  position: relative;
  z-index: 2;
  width: calc(100% - 480px + 50vw - 50% + 40px);
  margin-top: 80px;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: rgba(246, 245, 240, 0.9);
}
@media screen and (max-width: 900px) {
  .p-service__main-content {
    margin-top: -60px;
    width: calc(100% + 20px - 50px);
  }
}
@media screen and (max-width: 767px) {
  .p-service__main-content {
    margin-top: -30px;
    padding: 30px;
  }
}

.p-service__main:nth-of-type(2n + 1) .p-service__main-content {
  padding-left: 120px;
  padding-right: calc(50vw - 50% + 60px);
  margin-left: -40px;
  margin-right: calc(50% - 50vw);
}
.p-service__main:nth-of-type(2n) .p-service__main-content {
  padding-right: 120px;
  padding-left: calc(50vw - 50% + 60px);
  margin-right: -40px;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 1024px) {
  .p-service__main:nth-of-type(2n + 1) .p-service__main-content {
    padding-left: 80px;
    margin-left: -20px;
    margin-right: auto;
  }
  .p-service__main:nth-of-type(2n) .p-service__main-content {
    padding-right: 80px;
    margin-right: -20px;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-service__main:nth-of-type(2n + 1) .p-service__main-content {
    padding-left: 30px;
    padding-right: 30px;
  }
  .p-service__main:nth-of-type(2n) .p-service__main-content {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.p-service__main-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.36;
  font-family: "Noto Serif JP", sans-serif;
}
@media screen and (max-width: 623px) {
  .p-service__main-title {
    font-size: 18px;
    line-height: 1.66;
  }
}

.p-service__main-description {
  margin-top: 2.5rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 623px) {
  .p-service__main-description {
    margin-top: 1.3rem;
  }
}

.p-service__main-btn-group {
  margin-top: 3rem;
  text-align: right;
}
@media screen and (max-width: 623px) {
  .p-service__main-btn-group {
    margin-top: 2.5rem;
  }
}

/*===============================
service page
===============================*/
.p-service-section {
  margin-top: 10rem;
}

/* ======================
p-links
=======================*/
.p-service-links {
  margin-top: 8rem;
}

.p-service-links__row {
  display: flex;
  flex-wrap: wrap;
  max-width: 850px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .p-service-links__row {
    justify-content: space-between;
  }
}
@media screen and (max-width: 623px) {
  .p-service-links__row {
    max-width: 100vw;
    margin: 0 -2rem;
  }
}

.p-service-links__col {
  position: relative;
  width: calc((100% - 6rem) / 3);
}
.p-service-links__col:not(:nth-of-type(3n + 1)) {
  margin-left: 3rem;
}
.p-service-links__col:nth-of-type(n + 4) {
  margin-top: 2rem;
}
.p-service-links__col > a {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .p-service-links__col {
    width: calc((100% - 3rem) / 2);
  }
  .p-service-links__col:not(:nth-of-type(3n + 1)) {
    margin-left: 0;
  }
  .p-service-links__col:nth-of-type(n + 4) {
    margin-top: 0;
  }
  .p-service-links__col:nth-of-type(n + 3) {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 623px) {
  .p-service-links__col {
    width: calc((100% - 1rem) / 2);
  }
  .p-service-links__col:nth-of-type(n + 3) {
    margin-top: 1rem;
  }
}

.p-service-links__col:hover .p-service-links__title-wrap {
  background-color: rgba(46, 46, 46, 0.54);
}
.p-service-links__col:hover .p-service-links__title {
  color: #fff;
}
.p-service-links__col:hover .p-service-links__image img {
  transform: scale(1.1);
}

.p-service-links__title-wrap {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  height: calc(100% - 6rem);
  width: calc(100% - 3rem);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  padding: 2rem;
  background-color: rgba(247, 246, 241, 0.83);
  transition: background-color 0.3s;
}
@media screen and (max-width: 623px) {
  .p-service-links__title-wrap {
    left: 50%;
    transform: translate(-50%, -50%);
    height: calc(100% - 3rem);
    width: calc(100% - 2rem);
    padding: 1rem 0.8rem 1rem 1.2rem;
  }
}

.p-service-links__title {
  line-height: 1.5;
  font-size: 2rem;
  font-weight: 700;
  color: #D7A548;
  transition: color 0.3s;
}
.p-service-links__title.is--large {
  font-size: 2.2rem;
}
@media screen and (max-width: 623px) {
  .p-service-links__title {
    font-size: 1.4rem;
  }
  .p-service-links__title.is--large {
    font-size: 1.6rem;
  }
}

.p-service-links__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 95%;
}
.p-service-links__image img {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

/*===============================
p-service-flow
================================*/
.p-service-flow {
  margin-top: 8rem;
}

.p-service-flow__container {
  max-width: 1200px;
  margin: 0 auto;
}

.p-service-flow__wrap {
  padding: 0.5rem 4rem 4rem;
}
.p-service-flow__wrap.is--beige {
  background-color: rgba(246, 245, 240, 0.9);
}
.p-service-flow__wrap.is--green {
  background-color: rgba(56, 121, 72, 0.1);
}
.p-service-flow__wrap:not(:first-of-type) {
  margin-top: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .p-service-flow__wrap {
    padding: 0.5rem 0 4rem;
  }
}

.p-service-flow__title {
  position: relative;
  text-align: center;
  padding-top: 2.5rem;
}
.p-service-flow__title > span {
  display: inline-block;
  width: 500px;
  max-width: 100%;
  padding: 0.75rem 2rem;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #D7A548;
  background-color: #fff;
}
.p-service-flow__title > span > span {
  display: inline-block;
}
.p-service-flow__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2.6rem;
  height: 3.2rem;
  background: url(../images/ico_title.svg) no-repeat center center/contain;
}
@media screen and (max-width: 623px) {
  .p-service-flow__title span {
    font-size: 2rem;
  }
}

.p-service-flow__wrap.is--green .p-service-flow__image {
  margin-top: 2rem;
}

.p-service-flow__image {
  margin-top: 4rem;
  text-align: center;
}
.p-service-flow__image img {
  display: inline-block;
}

/*===============================
recruit page
===============================*/
.p-recruit-section__btn {
  margin-top: 7rem;
}

/*======================
p-recruit-message 
======================*/
.p-recruit-message {
  margin-top: 6rem;
}

.p-recruit__container {
  max-width: 96rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-recruit__container {
    margin: 0 -2rem;
  }
}

.p-recruit-message__wrap {
  position: relative;
  padding: 1.1rem 3rem 9rem;
  background-color: rgba(246, 245, 240, 0.9);
}
@media screen and (max-width: 767px) {
  .p-recruit-message__wrap {
    padding: 1.5rem 2rem 8rem;
  }
}

.p-recruit-message__title {
  position: relative;
  padding-top: 4rem;
  text-align: center;
  color: #D7A548;
  line-height: 1.6;
  font-size: 3.2rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 400;
}
.p-recruit-message__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(calc(-50% + 2rem));
  width: 2.6rem;
  height: 3.2rem;
  background: url(../images/ico_title.svg) no-repeat center center/contain;
}
.p-recruit-message__title span {
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .p-recruit-message__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-message__title {
    font-size: 2.2rem;
  }
}

.p-recruit-message__text {
  max-width: 72rem;
  margin: 3.5rem auto 0;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .p-recruit-message__text {
    margin-top: 3rem;
  }
}

.p-recruit-message__btn {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 50%);
  bottom: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit-message__btn a {
    max-width: calc(100% - 6rem);
  }
}

/*======================
p-recruit-info
======================*/
.p-recruit-info {
  margin-top: 12.5rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit-info {
    margin-top: 10rem;
  }
}

.p-recruit-grid:not(:first-of-type) {
  margin-top: 10rem;
}

.p-recruit-grid {
  display: flex;
  align-items: flex-start;
}
.p-recruit-grid.is--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .p-recruit-grid {
    display: block;
  }
}

.p-recruit-grid__image-wrap {
  width: calc(50% - 2rem + 50vw - 50%);
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 1024px) {
  .p-recruit-grid__image-wrap {
    width: 80%;
    margin-left: calc(50% - 50vw);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-grid__image-wrap {
    width: 100%;
  }
}

.p-recruit-grid.is--reverse .p-recruit-grid__image-wrap {
  margin-right: calc(50% - 50vw);
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .p-recruit-grid.is--reverse .p-recruit-grid__image-wrap {
    margin-left: auto;
    margin-right: calc(50% - 50vw);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-grid.is--reverse .p-recruit-grid__image-wrap {
    margin-right: 0;
    margin-left: calc(50vw - 50%);
  }
}

.p-recruit-grid__image {
  position: relative;
  min-height: 36rem;
  padding-bottom: 53%;
}
.p-recruit-grid__image.is--large {
  padding-bottom: 65%;
}
@media screen and (max-width: 767px) {
  .p-recruit-grid__image {
    min-height: 0;
    padding-bottom: 60%;
  }
}

.p-recruit-grid__image img {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-recruit-grid__content {
  position: relative;
  margin-top: 50px;
  width: calc(50% + 10rem);
  margin-left: -8rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit-grid__content {
    margin-top: -8rem;
    width: 80%;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-grid__content {
    width: 100%;
    margin-top: -4rem;
  }
}

.p-recruit-grid.is--reverse .p-recruit-grid__content {
  position: relative;
  margin-left: 0;
  margin-right: -8rem;
}
@media screen and (max-width: 1024px) {
  .p-recruit-grid.is--reverse .p-recruit-grid__content {
    left: 0;
    margin-right: calc(50% - 50vw);
  }
}

.p-recruit-grid__content-wrap {
  position: relative;
  padding: 4rem 6rem 5rem 16rem;
  min-height: 36rem;
  background-color: rgba(246, 245, 240, 0.9);
}
.p-recruit-grid__content-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 1px;
  width: calc(50vw - 50% + 1px);
  transform: translateX(100%);
  height: 100%;
  background-color: rgba(246, 245, 240, 0.9);
}
@media screen and (max-width: 1024px) {
  .p-recruit-grid__content-wrap {
    min-height: 0;
    padding: 4rem 4rem 4rem 6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-grid__content-wrap {
    padding: 4rem 3rem;
    padding-right: 1rem;
  }
}

.p-recruit-grid.is--reverse .p-recruit-grid__content-wrap {
  padding-left: 0;
  padding-right: 18rem;
}
.p-recruit-grid.is--reverse .p-recruit-grid__content-wrap::after {
  right: 100%;
  transform: translateX(0);
}
@media screen and (max-width: 1300px) {
  .p-recruit-grid.is--reverse .p-recruit-grid__content-wrap {
    padding-left: 5rem;
    padding-right: 16rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-recruit-grid.is--reverse .p-recruit-grid__content-wrap {
    padding-left: 4rem;
    padding-right: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-grid.is--reverse .p-recruit-grid__content-wrap {
    padding-right: 3rem;
    padding-left: 1rem;
  }
}

.p-recruit-grid__title {
  position: relative;
  font-size: 2.6rem;
  padding-left: 4rem;
  line-height: 1.3;
  font-weight: 700;
}
.p-recruit-grid__title::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 26px;
  height: 32px;
  background: url(../images/ico_title.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-recruit-grid__title {
    font-size: 2.2rem;
    padding-left: 3.5rem;
  }
  .p-recruit-grid__title::before {
    width: 23px;
    height: 28px;
  }
}

.p-recruit-grid__subtitle {
  font-size: 2rem;
  margin-top: 2rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-recruit-grid__subtitle {
    font-size: 1.8rem;
    margin-top: 1.6rem;
  }
}

.p-recruit-grid__list-wrap {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-grid__list-wrap {
    margin-top: 2rem;
  }
}

.p-recruit-grid__list {
  display: flex;
  justify-content: space-between;
}
.p-recruit-grid__list:not(:first-of-type) {
  margin-top: 1rem;
}
.p-recruit-grid__list dt {
  width: 12rem;
}
.p-recruit-grid__list dd {
  width: calc(100% - 12rem);
}
@media screen and (max-width: 767px) {
  .p-recruit-grid__list dt,
  .p-recruit-grid__list dd {
    line-height: 1.5;
  }
  .p-recruit-grid__list:not(:first-of-type) {
    margin-top: 2rem;
  }
}

.p-recruit-grid__text {
  margin-top: 2.5rem;
  line-height: 1.875;
}

/*===============================
entry page
===============================*/
.p-entry__container {
  max-width: 800px;
  margin: 0 auto;
}

.p-entry__group {
  margin-top: 10rem;
}

.p-entry__title {
  position: relative;
  font-size: 2.6rem;
  padding-left: 4rem;
  line-height: 1.3;
  font-weight: 700;
}
.p-entry__title::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 26px;
  height: 32px;
  background: url(../images/ico_title.svg) no-repeat center center/contain;
}

.p-entry__table-wrap {
  margin-top: 3rem;
}

.p-entry__table {
  width: 100%;
  border: 1px solid rgba(17, 123, 67, 0.9);
  border-collapse: collapse;
}
.p-entry__table tr:not(:first-of-type) th {
  border-top: 1px solid #fff;
}
.p-entry__table tr:not(:first-of-type) td {
  border-top: 1px solid rgba(17, 123, 67, 0.9);
}
.p-entry__table td,
.p-entry__table th {
  height: 65px;
  padding: 0.8rem 2rem;
  text-align: left;
  font-weight: 400;
  line-height: 1.5;
}
.p-entry__table th {
  color: #fff;
  width: 35%;
  background-color: rgba(17, 123, 67, 0.9);
  border-left: 1px solid rgba(17, 123, 67, 0.9);
}
.p-entry__table td {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .p-entry__table td,
  .p-entry__table th {
    padding: 1.2rem 1.5rem;
    display: block;
    height: auto;
    width: 100%;
    border-left: none;
  }
  .p-entry__table tr:not(:first-of-type) th {
    border-top: none;
  }
  .p-entry__table tr:not(:first-of-type) td {
    border-top: none;
  }
}

.p-entry__btn {
  margin-top: 4rem;
  text-align: center;
}
.p-entry__btn a {
  position: relative;
  display: inline-block;
  width: 38rem;
  max-width: 100%;
  padding: 1.3rem;
  color: #007b43;
  border: 1px solid #007b43;
  border-radius: 2rem;
  transition: background-color 0.3s, color 0.3s;
}
.p-entry__btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 2px solid #007b43;
  border-right: 2px solid #007b43;
  transform: translateY(calc(-50% + 1px)) rotate(-45deg);
  transition: border-color 0.3s, right 0.3s;
}
.p-entry__btn a:hover {
  background-color: #007b43;
  color: #fff;
}
.p-entry__btn a:hover::after {
  right: 1.5rem;
  border-color: #fff;
}

/*===============================
about page
===============================*/
.p-about-greeting {
  font-size: 1.3rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.p-about-greeting strong {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Noto Serif JP", sans-serif;
}

.p-about-greeting-text {
  margin-top: 40px;
  line-height: 2;
}
.p-about-greeting-text p:not(:first-of-type) {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-about-greeting-text {
    font-size: 14px;
  }
}

.p-about-table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #f3f2f1;
}
.p-about-table table td {
  padding: 0.8rem 2rem;
  height: 60px;
  text-align: left;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid #f3f2f1;
}
.p-about-table table td:first-of-type {
  background-color: rgba(247, 246, 241, 0.83);
  width: 35%;
}
.p-about-table table td:last-of-type {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .p-about-table table td {
    padding: 0.8rem 1.5rem;
  }
}
@media screen and (max-width: 623px) {
  .p-about-table table {
    border-bottom: none;
  }
  .p-about-table table tr {
    display: block;
  }
  .p-about-table table td {
    height: auto;
    padding: 1.2rem 2rem;
    border: none;
    border-bottom: 1px solid #f3f2f1;
  }
  .p-about-table table td:first-of-type, .p-about-table table td:last-of-type {
    width: 100%;
    display: block;
  }
  .p-about-table table td:last-of-type {
    border-top: none;
  }
}
.p-about-table table a {
  color: inherit;
  text-decoration: underline;
}
.p-about-table table a:hover {
  opacity: 0.8;
  text-decoration: none;
}

/*==========================
p-about-map
==========================*/
.p-about-map {
  padding-top: 7rem;
  position: relative;
}
@media screen and (max-width: 900px) {
  .p-about-map {
    padding-top: 12rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-map {
    padding-top: 25rem;
  }
}

.p-about-map__map {
  position: absolute;
  top: 0;
  right: 0;
  width: 53rem;
}
@media screen and (max-width: 767px) {
  .p-about-map__map {
    max-width: calc(90% + 2rem);
    right: -2rem;
  }
}

.p-about-map__map-wrap {
  position: relative;
  padding-bottom: 55%;
}
.p-about-map__map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .p-about-map__map-wrap {
    padding-bottom: 60%;
  }
}
@media screen and (max-width: 767px) {
  .p-about-map__map-wrap {
    min-height: 280px;
  }
}

.p-about-map__content {
  position: relative;
  z-index: 2;
  width: 47rem;
  padding: 4rem 6rem;
  background-color: rgba(246, 245, 240, 0.9);
}
@media screen and (max-width: 900px) {
  .p-about-map__content {
    width: 40rem;
    padding: 4rem;
    padding-right: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-map__content {
    padding: 4rem 3rem;
    margin-left: -2rem;
    max-width: calc(90% + 2rem);
  }
}

.p-about-map__list {
  display: flex;
  justify-content: space-between;
}
.p-about-map__list:not(:first-of-type) {
  margin-top: 1.8rem;
}
.p-about-map__list dd,
.p-about-map__list dt {
  line-height: 1.875;
}
.p-about-map__list dt {
  width: 7.2rem;
}
.p-about-map__list dd {
  width: calc(100% - 7.2rem);
}
.p-about-map__list dd.is--large {
  margin-top: -2px;
  font-size: 1.8rem;
  font-weight: 500;
}
.p-about-map__list dd span,
.p-about-map__list dd a {
  display: inline-block;
}
.p-about-map__list dd a {
  color: #2e2e2e;
  pointer-events: none;
}

.p-about-map__btn {
  margin-top: 3rem;
  text-align: center;
}

/*===============================
contact page
===============================*/
.p-contact-form__content {
  margin-top: 4rem;
  padding-bottom: 2rem;
}

.p-contact-form__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-contact-form__list:not(:first-of-type) {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__list {
    display: block;
  }
  .p-contact-form__list:not(:first-of-type) {
    margin-top: 4rem;
  }
}

.p-contact-form__title {
  position: relative;
  width: 280px;
  line-height: 1.2;
}
.p-contact-form__title .is--require::after {
  content: "※";
  color: #e85b5b;
}
.p-contact-form__title .p-contact-form__caution {
  font-size: 1.2rem;
}
@media screen and (max-width: 900px) {
  .p-contact-form__title {
    width: 260px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-form__title {
    width: 100%;
    padding-left: 0.3rem;
  }
  .p-contact-form__title .p-contact-form__caution {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}

.p-contact-form__input {
  position: relative;
  width: calc(100% - 280px);
}
.p-contact-form__input input,
.p-contact-form__input textarea {
  padding: 1.6rem 2rem 1.4rem;
  width: 100%;
  max-width: 600px;
  border: 1px solid #eaeaea;
  background-color: rgba(247, 246, 241, 0.5);
}
.p-contact-form__input textarea {
  height: 200px;
  resize: vertical;
}
@media screen and (max-width: 900px) {
  .p-contact-form__input {
    width: calc(100% - 260px);
  }
}
@media screen and (max-width: 767px) {
  .p-contact-form__input {
    margin-top: 1.5rem;
    width: 100%;
  }
  .p-contact-form__input input,
  .p-contact-form__input textarea {
    max-width: 100%;
  }
}

.p-contact-form__check {
  margin-top: 3rem;
}

.p-contact-form__check-text {
  text-align: center;
}
.p-contact-form__check-text a {
  color: #2e2e2e;
  transition: opacity 0.3s;
}
.p-contact-form__check-text a:hover {
  opacity: 0.7;
}

.p-contact-form__check-area {
  text-align: center;
}
.p-contact-form__check-area input {
  display: inline-block;
  margin-right: 0.5rem;
  width: 1.6rem;
  height: 1.6rem;
  transform: translateY(0.2rem);
}

.p-contact-form__submit {
  margin-top: 3rem;
}
.p-contact-form__submit input {
  display: block;
  margin: 0 auto;
  height: 60px;
  line-height: 57px;
  width: 500px;
  max-width: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  border: 2px solid #2e2e2e;
  background-color: #2e2e2e;
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
}
.p-contact-form__submit input:hover {
  background-color: #fff;
  color: #2e2e2e;
}
@media screen and (max-width: 767px) {
  .p-contact-form__submit input {
    border-radius: 0;
    height: 54px;
    line-height: 50px;
  }
}

.wpcf7-not-valid-tip {
  font-size: 1.4rem;
}

/*===============================
privacy-policy page
===============================*/
.privacy-policy__content h2 {
  font-weight: 500;
  font-size: 2.6rem;
  margin: 5rem 0 1rem;
}
.privacy-policy__content ul {
  margin-top: 1rem;
}
.privacy-policy__content ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.privacy-policy__content ul li::before {
  content: "・";
}
@media screen and (max-width: 767px) {
  .privacy-policy__content h2 {
    font-size: 2rem;
    line-height: 1.5;
    margin: 5rem 0 1.5rem;
  }
}

/*===============================
404 page
===============================*/
.p-404 {
  margin-top: 10rem;
}

.p-404__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 19rem - 30rem);
}

.p-404__content {
  padding: 6rem 2rem;
  background-color: rgba(247, 246, 241, 0.83);
}

.p-404__text {
  text-align: center;
}

.p-404__btn-wrap {
  text-align: center;
  margin-top: 4rem;
}

.l-footer1 {
  align-items: center;
  background-color: #2e2e2e;
  display: flex;
  flex-direction: column;
  height: 16rem;
  margin-top: 10rem;
  padding-bottom: 3.2rem;
  padding-top: 2rem;
  position: relative;
}
@media screen and (max-width: 500px) {
  .l-footer1 {
    align-items: flex-start;
    height: 38rem;
    margin-top: 7.4rem;
    padding-bottom: 2rem;
    padding-top: 3rem;
  }
}

.service-page .l-footer1 {
  margin-top: 14rem;
}

.l-footer1__img-top img {
  position: absolute;
  width: 4.1rem;
  left: 50%;
  transform: translateX(-50%);
  top: -4.4rem;
  transition: top 0.3s ease-in-out;
}
.l-footer1__img-top img:hover {
  top: -4.9rem;
}

.l-footer1__menu-group {
  margin-bottom: 4.47rem;
}
@media screen and (max-width: 500px) {
  .l-footer1__menu-group {
    margin-bottom: 4.8rem;
  }
}

.l-footer1__ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 500px) {
  .l-footer1__ul {
    flex-direction: column;
    align-items: flex-start;
    justify-content: initial;
    padding-left: 5.35rem;
  }
}

.l-footer1__li:not(:last-child) {
  margin-right: 3rem;
}
@media screen and (max-width: 767px) {
  .l-footer1__li:not(:last-child) {
    margin-right: 1.8rem;
  }
}
@media screen and (max-width: 500px) {
  .l-footer1__li {
    line-height: 1.5;
  }
  .l-footer1__li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

.l-footer1__a {
  text-transform: uppercase;
  font-weight: 500;
  color: transparent;
  background: linear-gradient(90deg, #D7A548 50%, #fff 50%);
  background-size: 200%;
  background-position: right;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .l-footer1__a {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 500px) {
  .l-footer1__a {
    font-size: 1.6rem;
  }
}
.l-footer1__a:hover {
  background-position: left;
}

.l-footer1__logo-group {
  align-self: center;
}
.l-footer1__logo-group a {
  display: inline-block;
  width: 185px;
  transition: opacity 0.3s;
}
.l-footer1__logo-group a:hover {
  opacity: 0.7;
}

.l-footer1__logo {
  width: 18.5rem;
}

.l-footer2 {
  align-items: center;
  background-color: #D7A548;
  display: flex;
  flex-direction: row;
  height: 3rem;
  justify-content: center;
}
.l-footer2__text {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
}

.l-header {
  position: absolute;
  top: 0;
  width: 100%;
}
.l-header.isActive {
  position: fixed;
  z-index: 12;
}

.l-header__container {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: row;
  height: 8rem;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  max-width: 108rem;
  padding-left: 2rem;
  padding-right: 1.6rem;
  position: relative;
  width: 100%;
  z-index: 12;
}
@media screen and (max-width: 500px) {
  .l-header__container {
    height: 6rem;
    padding-right: 0;
    padding-left: 0;
  }
}

.l-header__left {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-left: 0.5rem;
}
@media screen and (max-width: 500px) {
  .l-header__left {
    margin-left: 1.6rem;
  }
}

.l-header__logo {
  width: 30rem;
}
@media screen and (max-width: 500px) {
  .l-header__logo {
    width: 11.4rem;
  }
}

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

.l-header__ul {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.l-header__li:not(:last-child) {
  margin-right: 4rem;
}
@media screen and (max-width: 900px) {
  .l-header__li:not(:last-child) {
    margin-right: 2.8rem;
  }
}

.l-header__a {
  font-weight: 500;
  transition: all 0.3s;
  color: transparent;
  background: linear-gradient(90deg, #D7A548 50%, #2e2e2e 50%);
  background-size: 200%;
  background-position: right;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.3s all;
}
.l-header__a.is--contact {
  background: linear-gradient(90deg, #2e2e2e 50%, #D7A548 50%);
  background-size: 200%;
  background-clip: border-box;
  background-position: right;
  color: #fff;
  line-height: 1.5;
  padding: 1.2rem 2.55rem;
}
.l-header__a.is--current {
  background-position: left;
  border-bottom: 2px solid #D7A548;
  line-height: 1.3;
}
.l-header__a:hover {
  background-position: left;
}

.isActive .l-header__container {
  background-color: white;
}

.l-page__content {
  max-width: 96rem;
  margin: 8rem auto 0;
}
@media screen and (max-width: 767px) {
  .l-page__content {
    margin-top: 6rem;
  }
}/*# sourceMappingURL=style.css.map */