@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Libre+Caslon+Display&family=Shippori+Mincho+B1&family=Zen+Old+Mincho&display=swap");
/* setting //////////////////////////////////////////////////*/
/*color*/
/*font-family*/
/*filler color*/
/*text-shadow*/
/*media query break point*/
/*mainBP*/
/*gHeader用*/
/*// mixin //////////////////////////////////////////////////*/
/* media query */
/* hover */
main {
  background-color: #00996a;
  padding-bottom: 5rem;
}

.p-mv {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 767px) {
  .p-mv {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-mv__img {
  position: relative;
}
.p-mv__cap {
  position: absolute;
  bottom: 5px;
  left: 5px;
  width: 2rem;
  height: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #333;
  color: #fff;
}

.p-intro {
  margin-top: 5rem;
}

.p-local-nav {
  display: grid;
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 1.5rem;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  margin: 10rem auto;
}
@media only screen and (max-width: 767px) {
  .p-local-nav {
    padding: 0;
    gap: 0.5rem;
    margin: 5rem auto;
  }
}
.p-local-nav__item {
  padding: 1rem;
  text-align: center;
  background-color: #000;
  color: #fff;
  font-family: "Libre Caslon Display", serif;
  line-height: 1.2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-local-nav__item.active {
  background-color: #fff;
  color: #00996a;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-local-nav__item:hover {
    background-color: #dfeae2;
  }
}

.p-lifestyle {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.p-lifestyle__intro {
  width: 100%;
  max-width: 950px;
  margin: 5rem auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-lifestyle__intro {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2rem;
    margin: 3rem auto;
  }
}
.p-lifestyle__intro__txt {
  color: #fff;
}
.p-lifestyle__intro__ttl {
  font-size: 2rem;
  line-height: 1;
  font-family: "Libre Caslon Display", serif;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
}
.p-lifestyle__intro__ttl em {
  margin-top: 1rem;
  font-size: 5em;
  line-height: 0.8;
  display: block;
}
.p-lifestyle__intro__sub {
  font-size: 1.5em;
}
.p-lifestyle__intro__lead {
  font-size: 0.9em;
  margin-top: 2rem;
}
.p-lifestyle__intro__img--single {
  width: 60%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .p-lifestyle__intro__img--single {
    width: 40% !important;
  }
}
@media only screen and (max-width: 767px) {
  .p-lifestyle__intro__img {
    width: 60%;
    margin: 0 auto;
  }
}
.p-lifestyle__content {
  position: relative;
  margin-top: 5rem;
  background-color: #fff;
  padding: 5rem 10rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-lifestyle__content {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.p-lifestyle__content.-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-lifestyle__content__detail {
  font-size: 2rem;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-lifestyle__content__detail {
    width: 100%;
  }
}
.p-lifestyle__content__img {
  position: absolute;
  top: 2rem;
  right: 10rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 30%;
  max-height: 17rem;
}
.p-lifestyle__content__img img {
  height: 100%;
  width: auto;
}
@media only screen and (max-width: 767px) {
  .p-lifestyle__content__img {
    width: 100%;
    position: static;
    height: auto;
    max-height: unset;
    width: 70%;
    margin-inline: auto;
  }
  .p-lifestyle__content__img img {
    height: auto;
    width: 100%;
  }
}
.p-lifestyle__content__ttl {
  color: #00996a;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #00996a;
}
@media only screen and (max-width: 767px) {
  .p-lifestyle__content__ttl {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.p-lifestyle__content__num {
  font-family: "Libre Caslon Display", serif;
  line-height: 1;
  text-align: center;
}
.p-lifestyle__content__num em {
  font-size: 4em;
}
@media only screen and (max-width: 767px) {
  .p-lifestyle__content__num {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-lifestyle__content__catch {
  font-size: 1.2em;
  line-height: 1.4;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .p-lifestyle__content__catch {
    font-size: 1.1em;
  }
}
.p-lifestyle__content__lead {
  font-size: 0.8em;
}
.p-lifestyle__content__imglist {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-size: 1.2rem;
}
.p-lifestyle__content__imglist--flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .p-lifestyle__content__imglist {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.p-lifestyle__content__imglist.sm {
  max-width: 700px;
  margin-inline: auto;
}
.p-lifestyle__content__security {
  margin-top: 2rem;
  background-color: #e9e7e7;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
}
@media only screen and (max-width: 1080px) {
  .p-lifestyle__content__security {
    grid-template-columns: 1fr;
  }
}
.p-lifestyle__content__security img {
  width: 100%;
}
.p-lifestyle__content .p-securityitem {
  line-height: 1.4;
}
.p-lifestyle__content .p-securityitem__hd {
  font-size: 18px;
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .p-lifestyle__content .p-securityitem__hd {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .p-lifestyle__content .p-securityitem__hd {
    font-size: 1.6rem;
  }
}
.p-lifestyle__content .p-securityitem__hd span {
  display: inline-block;
}
.p-lifestyle__content .p-securityitem__lead {
  margin-top: 1rem;
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .p-lifestyle__content .p-securityitem__lead {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .p-lifestyle__content .p-securityitem__lead {
    font-size: 1.4rem;
  }
}
.p-lifestyle__content .p-securityitem__cap {
  font-size: 11px;
  font-size: 1.1rem;
}
@media only screen and (max-width: 767px) {
  .p-lifestyle__content .p-securityitem__cap {
    font-size: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .p-lifestyle__content .p-securityitem__cap {
    font-size: 1rem;
  }
}
.p-lifestyle__content__imgItem {
  width: calc(50% - 0.5rem);
}
@media only screen and (max-width: 767px) {
  .p-lifestyle__content__imgItem {
    width: 100%;
  }
}
.p-lifestyle__content__imgTxt {
  width: 100%;
  text-align: center;
}
/*# sourceMappingURL=../../map/special/lifestyle.css.map */