@charset "UTF-8";
:root {
  --white: #fff;
  --black: #000;
  --text-main: #231816;
  --bg-main: #F8F8F8;
  --line-color: #000;
  --font: 游ゴシック体, 游ゴシック Medium, Yu Gothic Medium, Yu Gothic, YuGothic, Hiragino Kaku Gothic ProN, Meiryo, sans-serif;
  --font-en: Vollkorn, serif;
  --pc-width: 1600;
  --tb-width: 750;
  --sp-width: 390;
}

/*----------共通設定 pc----------*/
* {
  font-feature-settings: normal;
}

* > .lp__contener {
  font-family: var(--font);
  font-weight: 300;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
}

ul, ol, li, p {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contents_inner {
  width: 100%;
}

/*----------共通設定 tablet----------*/
@media only screen and (min-width: 1600px) and (max-width: 769px) {
  html {
    font-size: 0.625vw;
  }
}
/*----------共通設定 sp----------*/
@media only screen and (max-width: 768px) {
  html {
    font-size: 2.5641025641vw;
  }
}
/*----------LP normalize SP----------*/
.lp__contener {
  width: 100%;
  font-family: var(--font);
}
.lp__contener * {
  box-sizing: border-box;
}
.lp__contener img {
  height: auto;
  opacity: 1;
  width: 100%;
}
.lp__contener a {
  text-decoration: none;
}
.lp__contener picture, .lp__contener a {
  display: block;
}
.lp__contener p, .lp__contener ul, .lp__contenerol, .lp__contenerdl {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 768px) {
  .lp__contener .section__inner {
    max-width: 100%;
  }
}

/*----------LP normalize PC----------*/
@media only screen and (min-width: 769px) {
  html {
    overflow-x: hidden;
  }
  #Wrap {
    width: 100% !important;
  }
  .wrapTop, .wrapBottom {
    width: 100% !important;
  }
  .contents {
    padding-bottom: 0;
  }
  .lp__contener .sp_only {
    display: none;
  }
  .lp__contener .pc_only {
    display: block;
  }
}
/*----------装飾----------*/
.line-marker {
  text-align: center;
}
.line-marker span {
  position: relative;
  z-index: 0;
}
.line-marker span::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 1.4rem;
  background: #D6A69E;
  bottom: 0.4rem;
  padding: 0 1rem;
  left: -1rem;
  z-index: -1;
}

/*----------アニメーション----------*/
.fadein {
  opacity: 0;
  transition: opacity, 1s;
}

.fadein.fade-active {
  opacity: 1;
}

.fadein-load {
  opacity: 0;
  transition: opacity, 1s;
}

.fadein-load.fade-active {
  opacity: 1;
  transition: opacity, 1s;
}

@keyframes imgMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*----------layout sp----------*/
.lp__contener {
  display: block;
  color: var(--text-main);
  position: relative;
  letter-spacing: 0.05em;
}
.lp__contener .sec__title {
  margin: 0;
  font-family: var(--font-en);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.3928571429;
  text-align: center;
}
.lp__contener .sec__title--sub {
  font-family: var(--font);
  display: block;
  margin: 0.6rem 0 0 0;
  font-size: 1.4rem;
  line-height: 1.2857142857;
  text-align: center;
}
.lp__contener .mv {
  background-color: var(--bg-main);
}
.lp__contener .mv .mv__img {
  width: 100%;
  margin: 0;
}
.lp__contener .artist {
  padding-block: 5rem 1rem;
  background-color: var(--bg-main);
}
.lp__contener .artist .artist__description {
  margin-top: 1rem;
  font-size: 1.2rem;
  letter-spacing: .04em;
  line-height: 2.5;
  text-align: center;
  width: 100%;
}
.lp__contener .artist .accordionBox {
  background-color: #fff;
  margin: 3.6rem 0 0 0;
}
.lp__contener .artist .accordionBox__title {
  cursor: pointer;
}
.lp__contener .artist .accordionBox .accordionBox__container {
  transition: all .8s ease;
  overflow: hidden;
  max-height: 60rem;
}
.lp__contener .artist .accordionBox.close .accordionBox__container {
  max-height: 0;
}
.lp__contener .artist .artist__subTitle {
  display: flex;
  align-items: baseline;
  justify-content: center;
  column-gap: 1.6rem;
  padding: 1.3rem 1rem .8rem 1.5rem;
  background-color: #e7e2db;
  font-family: var(--font-en);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
.lp__contener .artist .artist__subTitle span {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  z-index: 0;
}
.lp__contener .artist .artist__subTitle span::before,
.lp__contener .artist .artist__subTitle span::after {
  content: '';
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 1.5rem;
  height: 0px;
  border-bottom: 1px solid #000;
  z-index: 0;
}
.lp__contener .artist .artist__subTitle span::after {
  transition: all .6s ease;
  transform: rotate(-90deg);
}
.lp__contener .artist .open .artist__subTitle span::after {
  transform: rotate(0deg);
}
.lp__contener .artist .artist__list {
  margin: 0 auto;
  width: 100%;
}
.lp__contener .artist .artist__item {
  margin: 2.4rem 2.2rem 0;
}
.lp__contener .artist .artist__item:nth-child(2) {
  padding-bottom: 2.4rem;
}
.lp__contener .artist dd + dt {
  margin-top: 1.6rem;
}
.lp__contener .artist .artist__item:nth-of-type(n+2) {
  padding-top: 2.3rem;
  border-top: 1px solid #e3e3e3;
}
.lp__contener .artist .artist__profile {
  font-size: 1.2rem;
}
.lp__contener .artist .artist__profile.--cat {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .5rem;
  height: 1.8rem;
  padding: .3rem 1rem 0;
  border-radius: 2px;
  background-color: var(--text-main);
  color: #E2EAE5;
  font-family: var(--font-en);
  font-size: 1.2rem;
  width: 5rem;
}
.lp__contener .artist .artist__profile.--head {
  margin-bottom: .5rem;
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: bold;
}
.lp__contener .artist .artist__profile.--note {
  font-size: 1.2rem;
}
.lp__contener .artist .artist__profile--img {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: .6rem;
  float: right;
  margin-top: -4.6rem;
  margin-left: .6rem;
  margin-bottom: .6rem;
  width: 30%;
}
.lp__contener .intro {
  background-color: var(--bg-main);
  overflow: hidden;
}
.lp__contener .intro .section__inner {
  padding: 5.5rem 0 8rem;
}
.lp__contener .intro .intro__title {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 400;
}
.lp__contener .intro .intro__lead {
  width: 100%;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 2.5;
  text-align: center;
}
.lp__contener .intro .intro__lead p {
  margin: 2.2rem 0 0 0;
}
.lp__contener .intro .intro__lead p:first-of-type {
  margin: 2.6rem 0 0 0;
}
.lp__contener .intro .image__loop {
  margin: 6.9rem 0 0 0;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  width: 405rem;
}
.lp__contener .intro .image__loop .image__list {
  display: flex;
  flex-wrap: wrap;
  /* width: 135rem; */
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 45s;
  animation-name: imgMove;
}
.lp__contener .intro .image__loop .image__list.row--9 {
  width: 135rem;
}
.lp__contener .intro .image__loop .image__list.row--6 {
  width: 90rem;
}
.lp__contener .intro .image__loop .image__list .image__item {
  width: 12rem;
  margin: 0 3rem 0 0;
}
.lp__contener .philosophy__list {
  width: 100%;
  margin: 3.9rem 0 0 0;
  background-color: #EFF4F1;
  padding: 3.1rem 2rem 2.5rem 4.6rem;
}
.lp__contener .philosophy__list .philosophy__text {
  width: 100%;
  padding: 0 0 0 0;
  font-size: 1.3rem;
  line-height: 1.4807692308;
  position: relative;
}
.lp__contener .philosophy__list .philosophy__text:nth-of-type(n+2) {
  margin-top: 1.4rem;
}
.lp__contener .philosophy__list .philosophy__text::before {
  display: block;
  position: absolute;
  content: "";
  top: 0.2rem;
  left: -2.2rem;
  width: 0.8rem;
  height: 0.9rem;
  background-image: url(../img/check.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.lp__contener .additive__wrap .additive__title {
  margin: 4rem 0 0 0;
  text-align: center;
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
}
.lp__contener .additive__wrap .additive__list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 2rem);
  margin: 0.4rem 0 0 0;
}
.lp__contener .additive__wrap .additive__list .additive__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.8rem;
  margin: 0 1rem 0.7rem 0;
  padding: 0 1.4rem;
  border: 1px solid #CCCCCC;
  font-size: 1.4rem;
  text-align: center;
  line-height: 3.8rem;
  background: linear-gradient(to bottom right, transparent 0%, transparent 49%, rgba(112, 112, 112, 0.2) 49%, rgba(112, 112, 112, 0.2) 51%, transparent 51%, transparent 100%);
}
.lp__contener .additive__wrap .caution {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 1.2rem 0 0 0;
}
.lp__contener .additive__wrap .caution span {
  display: block;
  margin: 0 1rem 0 0;
  color: #969696;
  font-size: 1rem;
  line-height: 1.5;
}
.lp__contener .additive__wrap:nth-of-type(2) .additive__title {
  margin: 3.5rem 0 0 0;
}
.lp__contener .sec__choose .section__inner {
  padding: 8rem 2rem 7.7rem;
}
.lp__contener .sec__items {
  background-color: var(--bg-main);
}
.lp__contener .sec__items .section__inner {
  padding: 8rem 0 7.8rem;
}
.lp__contener .sec__items .items__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 3.9rem auto 0;
}
.lp__contener .sec__items .items__list .items__wrap {
  display: block;
  width: 100%;
  margin: 0 0 0 0;
}
.lp__contener .sec__items .items__list .items__wrap:nth-of-type(n+2) {
  margin: 5.5rem 0 0 0;
}
.lp__contener .sec__items .items__list .items__wrap:nth-of-type(n+3) .link__area {
  margin: 1.8rem 0 0 0;
}
.lp__contener .sec__items .items__list .items__wrap:nth-of-type(4) .link__area.pets_content {
  margin-top: 0;
}
.lp__contener .sec__items .items__list .items__title {
  margin: 2rem 0 0 0;
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}
.lp__contener .sec__items .items__list .items__description {
  margin: 0.8rem 0 0 0;
  padding: 0 2rem;
  font-size: 1.3rem;
  line-height: 2;
}
.lp__contener .sec__items .items__list .link__area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1rem 0 0 0;
  padding: 0 2rem;
}
.lp__contener .sec__items .items__list .link__area a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  padding: 0 1rem;
  border-radius: 1.8rem;
  background-color: #E2EAE5;
  color: var(--text-main);
  font-size: 1.1rem;
  line-height: 3rem;
  margin: 0 0.6rem 0.6rem 0;
  transition: background-color 0.3s;
}
.lp__contener .sec__items .items__list .link__area a:hover {
  background-color: #99C7AB;
}

/*----------layout pc----------*/
@media only screen and (min-width: 769px) {
  .lp__contener {
    display: block;
    margin: 0 auto;
  }
  .lp__contener .sec__title {
    font-family: var(--font-en);
    font-size: 3.6rem;
    line-height: 1.5555555556;
    text-align: center;
  }
  .lp__contener .sec__title--sub {
    font-family: var(--font);
    display: block;
    margin: 0.6rem 0 0 0;
    font-size: 2.1rem;
    line-height: 1.2857142857;
    text-align: center;
  }
  .lp__contener .mv {
    padding: 4rem 0 0 0;
  }
  .lp__contener .mv .mv__img {
    width: 92rem;
    max-width: 100%;
    margin: 0 auto;
  }
  .lp__contener .artist {
    padding-block: 7rem 3rem;
  }
  .lp__contener .artist .artist__description {
    font-size: 1.5rem;
  }
  .lp__contener .artist .accordionBox {
    margin: 5rem 00 0;
  }
  .lp__contener .artist .accordionBox__container {
    margin: 0 auto;
    max-width: 106rem;
  }
  .lp__contener .artist .artist__subTitle {
    font-size: 2.2rem;
  }
  .lp__contener .artist .artist__subTitle span {
    height: 1.7rem;
  }
  .lp__contener .artist .artist__item {
    margin: 0;
    padding: 2.8rem 2rem 2.2rem;
  }
  .lp__contener .artist .artist__item:nth-child(2) {
    padding-bottom: 7.8rem;
  }
  .lp__contener .artist dd + dt {
    margin-top: 2rem;
  }
  .lp__contener .artist .artist__item:nth-of-type(n+2) {
    padding-top: 2.6rem;
  }
  .lp__contener .artist .artist__profile {
    font-size: 1.4rem;
  }
  .lp__contener .artist .artist__profile.--head {
    margin-bottom: .4rem;
    font-size: 1.5rem;
  }
  .lp__contener .artist .artist__profile.--note {
    font-size: 1.2rem;
    width: 100%;
  }
  .lp__contener .artist .artist__profile--img {
    flex-direction: row;
    row-gap: 0;
    column-gap: 1rem;
    margin-top: -4.6rem;
    margin-left: 2rem;
    margin-bottom: 2rem;
    width: auto;
  }
  .lp__contener .artist .artist__profile--img img {
    max-width: 13rem;
  }
  .lp__contener .intro .section__inner {
    padding: 7.3rem 0 12rem;
  }
  .lp__contener .intro .intro__title {
    font-size: 2.8rem;
  }
  .lp__contener .intro .intro__lead {
    width: 100%;
    font-size: 1.5rem;
    line-height: 2.5;
    text-align: center;
  }
  .lp__contener .intro .intro__lead p {
    margin: 2.8rem 0 0 0;
  }
  .lp__contener .intro .intro__lead p:first-of-type {
    margin: 3.9rem 0 0 0;
  }
  .lp__contener .intro .image__loop {
    margin: 11rem auto 0;
    width: 918rem;
  }
  .lp__contener .intro .image__loop .image__list {
    display: flex;
    /* width: 306rem; */
    animation-duration: 60s;
  }
  .lp__contener .intro .image__loop .image__list.row--9 {
    width: 306rem;
  }
  .lp__contener .intro .image__loop .image__list.row--6 {
    width: 204rem;
  }
  .lp__contener .intro .image__loop .image__list .image__item {
    width: 30rem;
    margin: 0 0 0 4rem;
  }
  .lp__contener .philosophy__list {
    width: 60rem;
    margin: 4.7rem auto 0;
    padding: 3.8rem 7.2rem 3.7rem 7.8rem;
  }
  .lp__contener .philosophy__list .philosophy__text {
    width: 100%;
    padding: 0 0 0 3rem;
    font-size: 1.6rem;
    line-height: 1.3125;
    position: relative;
  }
  .lp__contener .philosophy__list .philosophy__text:nth-of-type(n+2) {
    margin-top: 1.9rem;
  }
  .lp__contener .philosophy__list .philosophy__text::before {
    display: block;
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 0.8rem;
    height: 0.9rem;
  }
  .lp__contener .additive__wrap .additive__title {
    margin: 5rem 0 0 0;
    text-align: center;
    font-size: 2.4rem;
  }
  .lp__contener .additive__wrap .additive__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 70rem;
    margin: 1.8rem auto 0;
  }
  .lp__contener .additive__wrap .additive__list .additive__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.8rem;
    margin: 0 1rem 0.7rem 0;
    padding: 0 1.5rem;
    font-size: 1.4rem;
    text-align: center;
    line-height: 3.8rem;
  }
  .lp__contener .additive__wrap .caution {
    display: flex;
    justify-content: center;
    margin: 1rem 0 0 0;
  }
  .lp__contener .additive__wrap .caution span {
    display: block;
    font-size: 1rem;
    margin: 0 1.2rem 0 0;
  }
  .lp__contener .additive__wrap:nth-of-type(2) .additive__title {
    margin: 5rem 0 0 0;
  }
  .lp__contener .sec__choose .section__inner {
    padding: 7.7rem 2rem 7.5rem;
  }
  .lp__contener .sec__items .section__inner {
    padding: 7.6rem 0 12rem;
  }
  .lp__contener .sec__items .items__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 106rem;
    margin: 4.8rem auto 0;
  }
  .lp__contener .sec__items .items__list .items__wrap {
    display: block;
    width: 50rem;
  }
  .lp__contener .sec__items .items__list .items__wrap:nth-of-type(2) {
    margin: 0 0 0 0;
  }
  .lp__contener .sec__items .items__list .items__wrap:nth-of-type(2) .link__area {
    width: 51.6rem;
  }
  .lp__contener .sec__items .items__list .items__wrap:nth-of-type(n+3) {
    margin: 5.5rem 0 0 0;
  }
  .lp__contener .sec__items .items__list .items__wrap:nth-of-type(n+3) .link__area {
    margin: 1.1rem 0 0 0;
  }
  .lp__contener .sec__items .items__list .items__wrap:nth-of-type(4) .link__area {
    margin: 1.1rem auto 0;
    width: 40rem;
  }
  .lp__contener .sec__items .items__list .items__wrap:nth-of-type(4) .link__area.pets_content {
    margin-top: 0;
  }
  .lp__contener .sec__items .items__list .items__title {
    margin: 2.5rem 0 0 0;
    font-family: var(--font-en);
    font-size: 2.4rem;
    text-align: center;
  }
  .lp__contener .sec__items .items__list .items__description {
    margin: 0.6rem 0 0 0;
    padding: 0;
    font-size: 1.4rem;
  }
  .lp__contener .sec__items .items__list .link__area {
    display: flex;
    justify-content: center;
    margin: 2rem 0 0 0;
    padding: 0;
  }
  .lp__contener .sec__items .items__list .link__area a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.6rem;
    padding: 0 1.5rem;
    border-radius: 1.8rem;
    font-size: 1.2rem;
    line-height: 3.6rem;
    margin: 0 0.6rem 0.6rem 0;
  }
}/*# sourceMappingURL=style.css.map */


.lp__contener .link_btn a {
    background: #9AC8AC;
    border: 1px solid #9AC8AC;
    color: #fff;
    text-align: center;
    width: 40rem;
    margin: 7rem auto 0;
    font-weight: bold;
    padding: 2rem 0;
    font-size: 1.8rem;
    border-radius: 10rem;
	position: relative;
}

.lp__contener .link_btn a:hover {
    background: #fff;
    color: #9AC8AC;
}

.lp__contener .link_btn a::before {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    translate: 0 -50%;
    width: 0.8rem;
    height: 0.8rem;
    margin-right: 1.5rem;
    border-top: solid .2rem #fff;
    border-right: solid .2rem #fff;
    box-sizing: border-box;
    rotate: 45deg;
    content: "";
    transition: border-color .3s;
}
.lp__contener .link_btn a:hover::before {
    border-top: solid .2rem #9AC8AC;
    border-right: solid .2rem #9AC8AC;
}

@media only screen and (max-width: 768px) {
.lp__contener .link_btn a {
    width: 30rem;
    padding: 1.2rem 0;
    font-size: 1.5rem;
    margin-top: 5rem;
}
.lp__contener .link_btn a::before {
    right: 1rem;
}
}