@charset "UTF-8";
/* -------------------------------------------

service

------------------------------------------- */
.service article > p {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.service .ttl-wrap {
  display: flex;
  justify-content: center;
}
.service .ttl-wrap .en {
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .service article > p {
    margin-bottom: 4rem;
    padding: 0 3rem;
  }
}
.service-general {
  background: #e9e2da;
  padding: 10rem 0;
}

@media screen and (max-width: 768px) {
  .service-general {
    padding: 8rem 3rem;
  }
}
.service-general .wrap,
.service-plastic .wrap {
  display: flex;
  justify-content: space-between;
}
.service-general .wrap > figure,
.service-plastic .wrap > figure {
  width: 35%;
}
.service-general .wrap > figure img,
.service-plastic .wrap > figure img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.service-general .wrap > div,
.service-plastic .wrap > div {
  width: 63%;
  background: rgba(255, 255, 255, 0.65);
  padding: 2.5rem;
  border-top: solid 0.35rem #988A79;
}
.service-general .wrap > div p,
.service-plastic .wrap > div p {
  margin-bottom: 1.5rem;
}
.service-general .wrap > div ul,
.service-plastic .wrap > div ul {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.service-general .wrap > div ul li,
.service-plastic .wrap > div ul li {
  width: calc((100% - 1.5rem) / 2);
  background: url(../img/dot.png) repeat-x left bottom;
  background-size: auto 0.1rem;
  padding: 0.8rem 0.5rem;
}
.service-general .wrap > div ul li span,
.service-plastic .wrap > div ul li span {
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.service-general .wrap > div ul li span::before,
.service-plastic .wrap > div ul li span::before {
  content: "";
  width: 1.3rem;
  height: 1.3rem;
  background: url(../img/ico-service.png) no-repeat center/contain;
  margin-right: 1rem;
}
.service-general .wrap > div ul li span:hover,
.service-plastic .wrap > div ul li span:hover {
  opacity: 0.5;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .service-general .wrap,
  .service-plastic .wrap {
    flex-direction: column;
  }
  .service-general .wrap > figure,
  .service-plastic .wrap > figure {
    width: 100%;
    margin-bottom: 2rem;
  }
  .service-general .wrap > figure img,
  .service-plastic .wrap > figure img {
    aspect-ratio: 4/3;
    height: auto;
  }
  .service-general .wrap > div,
  .service-plastic .wrap > div {
    width: 100%;
  }
  .service-general .wrap > div ul,
  .service-plastic .wrap > div ul {
    flex-direction: column;
  }
  .service-general .wrap > div ul li,
  .service-plastic .wrap > div ul li {
    width: 100%;
    padding: 1.2rem 0.5rem;
  }
}
.service-plastic {
  padding: 10rem 0;
}
.service-plastic .wrap {
  flex-direction: row-reverse;
}
.service-plastic .wrap > div ul li span::before {
  background: url(../img/ico-plastic.png) no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .service-plastic {
    padding: 8rem 3rem;
  }
  .service-plastic .wrap {
    flex-direction: column;
  }
}
.service-aesthetic {
  padding: 10rem 0;
  background: #e9e2da;
}
.service-aesthetic .wrap {
  display: flex;
  gap: 2rem;
}
.service-aesthetic .wrap > * {
  flex: 1;
}
.service-aesthetic .wrap > * > div a {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0.4rem;
  border: solid 0.3rem #988A79;
  background: #fff;
  padding: 2rem 0;
  position: relative;
}
.service-aesthetic .wrap > * > div a::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-top: 1rem solid #988A79;
  position: absolute;
  left: calc(50% - 1rem);
  bottom: -1rem;
}
.service-aesthetic .wrap > * > div a .jp {
  font-weight: 500;
  font-size: 1.6rem;
}
.service-aesthetic .wrap > * > div a .en {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #988A79;
}
.service-aesthetic .wrap > * > div a:hover {
  opacity: 1;
  background: #988A79;
  color: #fff;
}
.service-aesthetic .wrap > * > div a:hover .en {
  color: #fff;
}

.service-list {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.service-list li {
  width: calc((100% - 1rem) / 3);
}
.service-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 0.4rem;
  height: 5.6rem;
  font-size: 1rem;
  text-align: center;
  line-height: 1.4;
  border: solid 0.2rem #D3C9C2;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.service-list a::before {
  content: "";
  width: 2rem;
  height: 2rem;
  background: #D3C9C2;
  position: absolute;
  right: -1.3rem;
  bottom: -1.3rem;
  transform: rotate(45deg);
}
.service-list a:hover {
  opacity: 1;
  background: #D3C9C2;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .service-aesthetic {
    padding: 8rem 3rem;
  }
  .service-aesthetic .wrap {
    flex-direction: column;
    gap: 4rem;
  }
  .service-aesthetic .wrap > * {
    flex: none;
    width: 100%;
  }
  .service-list {
    margin-top: 2rem;
    gap: 0.5rem;
  }
  .service-list li {
    width: calc((100% - 0.5rem) / 2);
  }
  .service-list a {
    height: 6.4rem;
    font-size: 1.2rem;
  }
}
/* -------------------------------------------

service　下層

------------------------------------------- */
.service-low .service-list {
  margin-bottom: 6rem;
}
.service-low .service-list li {
  width: calc((100% - 1.5rem) / 4);
}
.service-low .service-list li a {
  font-size: 1.2rem;
}
.service-low .container > section:not(:last-of-type) {
  margin-bottom: 8rem;
}
.service-low .container > p.note {
  margin-top: 6rem;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .service-low .service-list li {
    width: calc((100% - 0.5rem) / 2);
  }
}
.service-descrition {
  margin-bottom: 2.5rem;
}

.service-img {
  margin-bottom: 2.5rem;
  display: flex;
  gap: 2rem;
}
.service-img li {
  flex: 1;
}

@media screen and (max-width: 768px) {
  .service-img {
    gap: 0.5rem;
  }
}
.service-point {
  background: #e9e2da;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
}
.service-point ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.service-point ul li {
  display: flex;
  align-items: flex-start;
}
.service-point ul li img {
  width: 1.8rem;
  margin-top: 0.23rem;
}
.service-point ul li span {
  width: calc(100% - 2.5rem);
  padding-left: 1rem;
}

.service-price {
  margin-bottom: 2.5rem;
  background: #fff;
  padding: 2.5rem;
}
.service-price ul li {
  padding: 1.4rem 0.5rem;
}
.service-price ul li:not(:last-child) {
  background: url(../img/dot.png) repeat-x left bottom;
  background-size: auto 0.1rem;
}
.service-price ul dl {
  display: flex;
}
.service-price ul dl > * {
  width: 50%;
}
.service-price ul dl dd {
  text-align: right;
}
.service-price ul dl dd a {
  color: #988A79;
  font-weight: 500;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.service-price ul dl dd a i {
  font-size: 1rem;
  margin-left: 1rem;
  margin-top: 0.13rem;
}

@media screen and (max-width: 768px) {
  .service-price ul dl {
    flex-direction: column;
  }
  .service-price ul dl > * {
    width: 100%;
  }
}
.service-note h4 {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
}
.service-note h4 i {
  margin-right: 0.5rem;
}
.service-note ul {
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-left: 1.6rem;
}
.service-note ul li {
  list-style: disc;
}

@media screen and (max-width: 768px) {
  .service-note ul {
    gap: 1rem;
  }
}
.service-kinds {
  display: flex;
  gap: 2rem;
}
.service-kinds > li {
  flex: 1;
}
.service-kinds > li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0.4rem;
  border: solid 0.3rem #988A79;
  background: #fff;
  padding: 2rem 0;
  position: relative;
}
.service-kinds > li a .jp {
  font-weight: 500;
  font-size: 1.6rem;
}
.service-kinds > li a .en {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #988A79;
}
.service-kinds > li a:hover {
  opacity: 1;
  background: #988A79;
  color: #fff;
}
.service-kinds > li a:hover .en {
  color: #fff;
}
.service-kinds > li.current a {
  color: #fff;
  background: #988A79;
}
.service-kinds > li.current a .en {
  color: #fff;
}
.service-kinds > li.current a::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-top: 1rem solid #988A79;
  position: absolute;
  left: calc(50% - 1rem);
  bottom: -1rem;
}

@media screen and (max-width: 768px) {
  .service-kinds {
    gap: 0.5rem;
  }
  .service-kinds > li {
    flex: 1;
  }
  .service-kinds > li a {
    padding: 1.5rem 0 1.6rem 0;
  }
  .service-kinds > li a .jp {
    font-size: 1.4rem;
  }
  .service-kinds > li a .en {
    font-size: 0.8rem;
  }
}
/* -------------------------------------------

modal

------------------------------------------- */
.modal {
  background: rgba(0, 0, 0, 0.7);
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 9999999999;
}

.modal-content {
  position: relative;
  animation-name: modalopen;
  animation-duration: 0.3s;
  width: 60%;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.modal-content dt {
  border-bottom: solid 0.12rem #000;
  padding: 3rem;
  font-size: 2rem;
  font-weight: bold;
}
.modal-content dd {
  padding: 3rem;
}

.modal-body {
  background: #fff;
}

@media screen and (max-width: 768px) {
  .modal-content {
    width: calc(100% - 6rem);
    height: auto;
    display: block;
  }
}
@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 2rem;
  display: block;
  transition: all 0.3s;
  background: var(--prime);
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s;
}
.close:hover {
  opacity: 0.5;
}

.close i::before,
.close i::after {
  content: "";
  background: #988A79;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: 0.2rem;
}

.close i::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close i::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.close:hover {
  cursor: pointer;
}

/* -------------------------------------------

first

------------------------------------------- */
.first .container > p {
  margin-bottom: 6rem;
}
.first .ttl-wrap {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .first .container > p {
    margin-bottom: 3rem;
  }
}
.first-flow h3 {
  margin-bottom: 4rem;
}
.first-flow > ul {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.first-flow > ul li {
  width: 100%;
  background: #fff;
  border: solid 0.12rem #988A79;
  box-shadow: 0.4rem 0.4rem 0 rgba(0, 0, 0, 0.08);
  display: flex;
  padding: 1.5rem;
  position: relative;
}
.first-flow > ul li span {
  width: 5rem;
  background: #988A79;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  padding-left: 0.1rem;
}
.first-flow > ul li dl {
  width: calc(100% - 5rem);
  padding-left: 1.8rem;
}
.first-flow > ul li dt {
  color: #988A79;
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.first-flow > ul li dd {
  font-size: 1.3rem;
  line-height: 1.6;
}
.first-flow > ul li:not(:last-child):after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: solid 0.2rem #988A79;
  border-right: solid 0.2rem #988A79;
  box-sizing: border-box;
  position: absolute;
  left: calc(50% - 0.4rem);
  bottom: -1.8rem;
  transform: rotate(45deg);
}
.first-flow > section:not(:last-of-type) {
  margin-bottom: 6rem;
}
.first-flow > section ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-left: 1.6rem;
}
.first-flow > section ul li {
  list-style: disc;
}
.first-flow > section ul ::marker {
  color: #506D2C;
}

@media screen and (max-width: 768px) {
  .first-flow > ul li {
    flex-direction: column;
  }
  .first-flow > ul li span {
    width: 100%;
    height: 3.2rem;
    font-size: 1.6rem;
    padding-left: 0;
    margin-bottom: 1.5rem;
  }
  .first-flow > ul li dl {
    width: 100%;
    padding-left: 0;
  }
  .first-flow > ul li dt {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
  }
}
.first-msg h3 {
  margin-bottom: 4rem;
}

.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.tab-label {
  background: #fff;
  order: -1;
  width: calc((100% - 1rem) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6.8rem;
  transition: all 0.3s;
  border: solid 0.2rem #988A79;
  font-weight: 500;
  font-size: 1.6rem;
  padding-bottom: 0.15rem;
  border-radius: 0.4rem;
  color: #988A79;
}

.tab-label:hover {
  cursor: pointer;
  background: #988A79;
  color: #fff;
}

.tab-content {
  width: 100%;
  display: none;
  margin-top: 6rem;
}
.tab-content > section:not(:last-of-type) {
  margin-bottom: 10rem;
}

.tab-switch:checked + .tab-label {
  background: #988A79;
  color: #fff;
}

.tab-switch:checked + .tab-label + .tab-content {
  display: block;
}

.tab-switch {
  display: none;
}

/* -------------------------------------------

fee

------------------------------------------- */
.price .container > section {
  margin-bottom: 8rem;
}
.price .container > section > section:not(:last-of-type) {
  margin-bottom: 4rem;
}
.price .container table {
  width: 100%;
  border: solid 0.25rem #D3C9C2;
  border-collapse: collapse;
}
.price .container table thead th {
  font-weight: 500;
  background: #e9e2da;
  font-size: 1.2rem;
  text-align: left;
}
.price .container table th, .price .container table td {
  border: solid 0.12rem #D3C9C2;
  padding: 1rem 1.5rem;
  vertical-align: middle;
}
.price .container table td {
  background: #fff;
  width: 33.3333333333%;
}

@media screen and (max-width: 768px) {
  .price .container table thead th {
    text-align: center;
  }
  .price .container table th, .price .container table td {
    padding: 1rem;
  }
  .price .container table td {
    font-size: 1.2rem;
  }
}
/* -------------------------------------------

facility

------------------------------------------- */
.facility .container > section {
  margin-bottom: 8rem;
}
.facility .container > p {
  margin-bottom: 1.5rem;
}
.facility .ttl i {
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  margin-left: 0.5rem;
  bottom: 0.1rem;
  position: relative;
}

.facility-list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  row-gap: 4rem;
}
.facility-list li {
  width: calc((100% - 5rem) / 3);
}
.facility-list li figure {
  margin-bottom: 1rem;
}
.facility-list li dl dt {
  font-weight: 500;
  font-size: 1.5rem;
  background: url(../img/dot.png) repeat-x left bottom;
  background-size: auto 0.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}
.facility-list li dl dd {
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  .facility-list li {
    width: 100%;
  }
  .facility-list li dl dt {
    font-size: 1.8rem;
  }
  .facility-list li dl dd {
    font-size: 1.4rem;
  }
}
/* -------------------------------------------

msg

------------------------------------------- */
.msg-philosophy {
  padding: 4rem 0 10rem 0;
  margin-top: 4rem;
}
.msg-philosophy h3 {
  margin-bottom: 2rem;
  text-align: center;
}
.msg-philosophy p {
  text-align: center;
  margin-bottom: 5rem;
}
.msg-philosophy ul {
  display: flex;
  gap: 2rem;
}
.msg-philosophy ul li {
  width: calc((100% - 4rem) / 3);
  background: #fff;
  border: solid 0.12rem #988A79;
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  position: relative;
  box-shadow: 0.4rem 0.4rem 0 rgba(0, 0, 0, 0.08);
}
.msg-philosophy ul li dl dt {
  text-align: center;
  font-weight: 500;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.msg-philosophy ul li::before {
  width: 4rem;
  height: 4rem;
  background: #988A79;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  position: absolute;
  left: calc(50% - 2rem);
  top: -2rem;
  padding-top: 0.1rem;
}
.msg-philosophy ul li:nth-child(1)::before {
  content: "01";
}
.msg-philosophy ul li:nth-child(2)::before {
  content: "02";
}
.msg-philosophy ul li:nth-child(3)::before {
  content: "03";
}

.msg-director {
  background: #e9e2da;
  padding: 10rem 0;
}
.msg-director .wrap {
  display: flex;
}
.msg-director .wrap > figure {
  width: 30%;
}
.msg-director .wrap > figure figcaption {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: 1.8rem;
}
.msg-director .wrap > figure figcaption span {
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  color: #666;
}
.msg-director .wrap > div {
  width: 70%;
  padding-left: 5rem;
}
.msg-director .wrap > div h3 {
  font-size: 2rem;
  line-height: 1.6;
}
.msg-director .wrap > div p {
  margin: 3rem 0;
  padding-bottom: 3rem;
  background: url(../img/dot.png) repeat-x left bottom;
  background-size: auto 0.1rem;
}
.msg-director .wrap > div > div {
  display: flex;
  gap: 3rem;
}
.msg-director .wrap > div > div > * {
  flex: 1;
}
.msg-director .wrap > div > div > dl > dt {
  color: #988A79;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 500;
}
.msg-director .wrap > div > div > dl > dt::before {
  content: "";
  width: 3rem;
  height: 0.1rem;
  background: #988A79;
  margin-right: 0.8rem;
  margin-top: 0.15rem;
}
.msg-director .wrap > div > div > dl:nth-of-type(1) ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.msg-director .wrap > div > div > dl:nth-of-type(1) ul li {
  display: flex;
  align-items: center;
}
.msg-director .wrap > div > div > dl:nth-of-type(1) ul li img {
  width: 1.5rem;
}
.msg-director .wrap > div > div > dl:nth-of-type(1) ul li span {
  width: calc(100% - 1.5rem);
  padding-left: 0.6rem;
}
.msg-director .wrap > div > div > dl:nth-of-type(2) dl {
  display: flex;
  flex-wrap: wrap;
}
.msg-director .wrap > div > div > dl:nth-of-type(2) dl dt {
  width: 6rem;
}
.msg-director .wrap > div > div > dl:nth-of-type(2) dl dd {
  width: calc(100% - 6rem);
}
.msg-director .wrap > div > div > dl:nth-of-type(2) dl dd:not(:last-of-type) {
  margin-bottom: 0.8rem;
}

.msg-media {
  padding: 10rem 0;
}
.msg-media .ttl-wrap {
  display: flex;
  justify-content: center;
}
.msg-media .media-ttl {
  background: #988A79;
  color: #fff;
  position: relative;
  padding: 1.2rem 2rem 1.3rem 2rem;
  font-weight: 500;
  font-size: 1.7rem;
  transition: all 0.3s;
}
.msg-media .media-ttl i {
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 1.2rem;
  color: #fff;
  transition: all 0.3s;
  margin-top: 0.35rem;
}
.msg-media .media-ttl:hover {
  cursor: pointer;
  opacity: 0.5;
}
.msg-media .media-ttl.open i {
  transform: translate(0, -50%) rotate(360deg);
}
.msg-media .media-content {
  background: #e9e2da;
  padding: 1.5rem;
}
.msg-media .media-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.msg-media .media-content ul li {
  width: calc((100% - 1rem) / 2);
  background: #fff;
  padding: 1.5rem;
  display: flex;
  border: solid 0.12rem #988A79;
}
.msg-media .media-content ul li > figure {
  width: 30%;
}
.msg-media .media-content ul li > dl {
  width: 70%;
  padding-left: 1.5rem;
}
.msg-media .media-content ul li > dl dt {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.4rem;
}
.msg-media .media-content ul li > dl dt span:nth-child(1) {
  font-size: 1rem;
  color: #988A79;
}
.msg-media .media-content ul li > dl dt span:nth-child(2) {
  font-weight: 500;
}
.msg-media .media-content ul li > dl dd {
  font-size: 1.1rem;
  color: #666;
}

.msg-note {
  background: #fff;
  padding: 6rem 0;
}
.msg-note h3 {
  margin-bottom: 2rem;
}

.msg-guide {
  padding: 10rem 0;
  background: #e9e2da;
}
.msg-guide .ttl-wrap {
  display: flex;
  justify-content: center;
}
.msg-guide ul {
  display: flex;
  gap: 1.5rem;
}
.msg-guide ul li {
  width: calc((100% - 4.5rem) / 4);
}
.msg-guide ul li a {
  position: relative;
}
.msg-guide ul li a > div {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 10;
  padding: 0 0 1.5rem 1.5rem;
}
.msg-guide ul li a > div > span:nth-child(1) {
  font-weight: 500;
  font-size: 1.8rem;
  color: #fff;
}
.msg-guide ul li a::before {
  content: "";
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, rgba(91, 75, 57, 0.8), transparent);
  position: absolute;
  left: 0;
  bottom: 0;
}
.msg-guide .more-2 {
  margin-left: 0.15rem;
  color: #fff;
}
.msg-guide .more-2::after {
  background: url(../img/dot-wh.png) repeat-x;
  background-size: auto 0.1rem;
}

@media screen and (max-width: 768px) {
  .msg-philosophy {
    padding: 4rem 3rem 8rem 3rem;
  }
  .msg-philosophy p {
    text-align: left;
    margin-bottom: 4rem;
  }
  .msg-philosophy ul {
    flex-direction: column;
    gap: 3.5rem;
  }
  .msg-philosophy ul li {
    width: 100%;
  }
  .msg-philosophy ul li dl dt {
    font-size: 2rem;
  }
  .msg-director {
    padding: 8rem 3rem;
  }
  .msg-director .wrap {
    flex-direction: column;
  }
  .msg-director .wrap > figure {
    width: 100%;
  }
  .msg-director .wrap > div {
    display: contents;
    width: 100%;
    padding-left: 0;
  }
  .msg-director .wrap > div h3 {
    order: -1;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }
  .msg-director .wrap > div p {
    margin: 3rem 0;
  }
  .msg-director .wrap > div > div {
    flex-direction: column;
    gap: 3rem;
  }
  .msg-director .wrap > div > div > * {
    flex: none;
    width: 100%;
  }
  .msg-media {
    padding: 8rem 3rem;
  }
  .msg-media .media-content ul {
    flex-direction: column;
  }
  .msg-media .media-content ul li {
    width: 100%;
  }
  .msg-note {
    padding: 6rem 3rem;
  }
  .msg-guide {
    padding: 8rem 3rem;
  }
  .msg-guide ul {
    flex-wrap: wrap;
  }
  .msg-guide ul li {
    width: calc((100% - 1.5rem) / 2);
  }
}
/* -------------------------------------------

faq

------------------------------------------- */
.faq p {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}
.faq .container > section {
  margin-bottom: 8rem;
}
.faq .container > section > dl:not(:last-of-type) {
  margin-bottom: 1.5rem;
}

.faq-ttl {
  display: flex;
  align-items: center;
  line-height: 1.4;
  padding: 0.8rem 4rem 0.8rem 0.8rem;
  position: relative;
  transition: all 0.3s;
  background: #fff;
  border: solid 0.12rem #988A79;
}
.faq-ttl i {
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 1.2rem;
  color: #988A79;
  transition: all 0.3s;
  margin-top: 0.35rem;
}
.faq-ttl:hover {
  cursor: pointer;
  opacity: 0.5;
}
.faq-ttl.open i {
  transform: translate(0, -50%) rotate(360deg);
}

.faq-ttl > span:nth-child(1),
.faq-content > span:nth-child(1) {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  padding-top: 0.1rem;
  padding-bottom: 0.3rem;
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #988A79;
  color: #fff;
}

.faq-ttl > span:nth-child(2) {
  font-size: 1.5rem;
  padding-left: 1.5rem;
  padding-bottom: 0.13rem;
  font-weight: 500;
  width: calc(100% - 3.6rem);
}

.faq-content {
  display: flex;
  padding: 1.2rem 1rem 1rem 0.8rem;
}
.faq-content > span:nth-child(1) {
  padding-left: 0.25rem;
  padding-top: 0.25rem;
}
.faq-content > span:nth-child(2) {
  padding-left: 1.5rem;
  padding-top: 0.5rem;
  width: calc(100% - 3.6rem);
}

@media screen and (max-width: 768px) {
  .faq p {
    font-size: 1.4rem;
  }
  .lcl-menu {
    flex-wrap: wrap;
  }
  .lcl-menu li {
    width: calc((100% - 1rem) / 2);
  }
  .lcl-menu li a {
    height: 4rem;
    font-size: 1.4rem;
  }
  .lcl-menu li a i {
    right: 1rem;
    font-size: 1rem;
  }
}
/* -------------------------------------------

access

------------------------------------------- */
.access .gmap {
  margin-bottom: 4rem;
}
.access .container > section {
  margin-bottom: 8rem;
}

.access-info address {
  margin-bottom: 2rem;
}
.access-info address a {
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 2.6rem;
  color: #988A79;
}
.access-info address a img {
  width: 1.8rem;
  margin-right: 0.5rem;
}
.access-info .wrap {
  display: flex;
  gap: 3rem;
}
.access-info .wrap > * {
  flex: 1;
}
.access-info .wrap dl dt {
  margin-bottom: 0.5rem;
  color: #988A79;
}
.access-info .wrap dl dd:not(:last-of-type) {
  margin-bottom: 2.5rem;
}
.access-info .wrap dl ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.access-info .wrap dl ul li {
  display: flex;
}
.access-info .wrap dl ul li i {
  margin-top: 0.5rem;
}
.access-info .wrap dl ul li span {
  margin-left: 0.8rem;
}

.access-time ul {
  margin-top: 1.5rem;
}
.access-time ul li::before {
  content: "※";
}

@media screen and (max-width: 768px) {
  .access-info address {
    margin-bottom: 2rem;
  }
  .access-info address a {
    display: flex;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 2.6rem;
    color: #988A79;
  }
  .access-info address a img {
    width: 1.8rem;
    margin-right: 0.5rem;
  }
  .access-info .wrap {
    flex-direction: column;
    gap: 1.5rem;
  }
  .access-info .wrap > * {
    flex: none;
    width: 100%;
  }
  .access-time ul {
    margin-top: 2rem;
  }
}
/* -------------------------------------------

local menu

------------------------------------------- */
.lcl-menu {
  display: flex;
  gap: 0.7rem;
}
.lcl-menu li a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 0.15rem #988A79;
  height: 4.4rem;
  padding-bottom: 0.11rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: #988A79;
  position: relative;
  background: #e9e2da;
  border-radius: 0.3rem;
}
.lcl-menu li a i {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 0.8rem;
  margin-top: 0.1rem;
}
.lcl-menu li a:hover {
  opacity: 1;
  background: #988A79;
  color: #fff;
}

.faq .lcl-menu {
  margin-bottom: 4rem;
}
.faq .lcl-menu li {
  width: calc((100% - 3.5rem) / 6);
}

.facility .lcl-menu {
  margin-bottom: 4rem;
}
.facility .lcl-menu li {
  width: calc((100% - 3.5rem) / 4);
}

.price .lcl-menu {
  margin-bottom: 4rem;
}
.price .lcl-menu li {
  width: calc((100% - 3.5rem) / 4);
}

@media screen and (max-width: 768px) {
  .lcl-menu {
    flex-wrap: wrap;
  }
  .lcl-menu li a {
    height: 4rem;
    font-size: 1.4rem;
  }
  .lcl-menu li a i {
    right: 1rem;
    font-size: 1rem;
  }
  .faq .lcl-menu li,
  .facility .lcl-menu li,
  .price .lcl-menu li {
    width: calc((100% - 1rem) / 2);
  }
}/*# sourceMappingURL=low.css.map */