@charset "utf-8";

/* =============================================================

Mask

============================================================= */
[data-aos=fade-down]{transform:translateY(-50px)}

.mask {
  background: #ffd9db;
  overflow: hidden;
}

/*  br
---------------------------------------------*/

.pc_br{
  display:block;
}
.sp_br{
  display:none;
}
@media screen and (max-width: 768px) {
  .pc_br{
    display:none;
  }
  .sp_br{
    display:block;
  }
}

/*  fv
---------------------------------------------*/

.fv{
  position:relative;
  z-index:2;
  display:flex;
  flex-flow:row nowrap;
  justify-content:center;
  align-items:center;
  height:100vh;
  padding-right:15%;
}
.fv_image{
  order:1;
}
.fv_image > img{
  width:auto;
  max-width:100%;
  max-height:100vh;
}
.fv_text{
  position: relative;
  right: -80px;
  order:0;
}
.fv_text > h1{
  color:#3e9cab;
  font-size:40px;
  font-weight:500;
  letter-spacing:0.08em;
  margin-bottom:52px;
  line-height: 1.4;
}

.fv_text > h1 span {
  display: block;
  font-size: 24px;
  line-height: 1.8;
}

.fv_text > p:not(:last-child){
  margin-bottom:12px;
}
.fv_text > p > span{
  display:inline-block;
  color:#FFF;
  font-size:20px;
  font-weight:500;
  letter-spacing:0.1em;
  font-feature-settings: "palt";
  padding:3px 5px 4px;
  background-color:#3e9cab;
}

@media screen and (max-width: 768px) {
  .fv{
    flex-flow:column nowrap;
    padding-right:0;
    text-align:center;
  }
  .fv_image{
    order:0;
    margin-bottom:22px;
  }
  .fv_text{
    order:1;
    right: 0;
  }
  .fv_text > h1{
    font-size:23px;
    letter-spacing:0.1em;
    margin-bottom:36px;
  }

  .fv_text > h1 span {
    font-size: 16px;
  }

  .fv_text > p:not(:last-child){
    margin-bottom:10px;
  }
  .fv_text > p > span{
    font-size:16px;
    padding:3px 5px 4px;
  }
}



/*  balance
---------------------------------------------*/

.balance{
  position:relative;
}
.balance_flag_space1,
.balance_flag_space2,
.balance_flag_space3{
  height:100vh;
}
.balance_bg{
  position:fixed;
  z-index:1;
  top:0;
  left:0;
  bottom:auto;
  width:100%;
  height:100vh;
  background: linear-gradient(#ffedef, #ffd9db);
}
.balance_eye{
  position:absolute;
  z-index:2;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
}
.balance_eye_in{
  position:relative;
  width:854px;
  height:0;
  overflow:hidden;
}
.balance_eye_image{
  width:854px;
  height:260px;
  transform:translateY(-50%);
}
.balance_eye_image_sp{
  display:none;
}
.balance_eye_image.set_filter,
.balance_eye_image_sp.set_filter{
  /* iPhone で途中が謎に明るくなる現象が発生するので、アニメ無しで色変更だけ適用するように変更
  transition:filter 0.2s ease;
  filter: hue-rotate(330deg) brightness(150%);
  */
  filter: hue-rotate(330deg);
}
.balance_balance{
  position:absolute;
  z-index:3;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  padding-bottom:256px;
  opacity:0;
  transition:opacity 1s ease;
}
.balance_balance > img{
  width:458px;
}
.balance_text{
  position:relative;
  z-index:4;
  text-align:center;
  padding-bottom:200px;
}
.balance_text > div:nth-child(1){
  color:#8f9fa6;
  font-size:34px;
  font-weight:500;
  line-height:1.8;
  letter-spacing:0.1em;
  margin-bottom:70px;
}
.balance_text > div:nth-child(1) > span{
  display:inline-block;
  vertical-align:super;
  font-size:16px;
}
.balance_text > div:nth-child(1)::after{
  content:"";
  display:block;
  width:384px;
  border-bottom:4px solid #8f9fa6;
  padding-top:50px;
  margin:0 auto;
}
.balance_text > div:nth-child(2){
}
.balance_text > div:nth-child(2) > p{
  color:#3e9cab;
  font-size:18px;
  line-height:2;
  letter-spacing:0.04em;
  font-feature-settings: "palt";
  margin-bottom:32px;
}
.balance_text > div:nth-child(2) > p:last-child{
  font-size:18px;
  margin-bottom:0;
}
.balance_text > div:nth-child(2) > p > span{
  display:inline-block;
  vertical-align:super;
  font-size:12px;
}
.balance_text > div:nth-child(2) > p > small{
  font-size:12px;
}

@media screen and (max-width: 640px) {
  .balance_eye_in{
    width:100%;
    height:auto;
  }
  .balance_eye_image{
    display:none;
  }
  .balance_eye_image_sp{
    display:inline-block;
    width:100%;
    height:auto;
  }
  .balance_balance{
    padding-bottom:128px;
  }
  .balance_balance > img{
    width:310px;
  }
  .balance_text{
    padding-bottom:100px;
  }
  .balance_text > div:nth-child(1){
    font-size:24px;
    line-height:1.8;
    margin-bottom:70px;
  }
  .balance_text > div:nth-child(1) > span{
    font-size:12px;
  }
  .balance_text > div:nth-child(1)::after{
    width:280px;
    padding-top:50px;
  }
  .balance_text > div:nth-child(2){
    width:280px;
    margin:0 auto;
    text-align:left;
  }
  .balance_text > div:nth-child(2) > p{
    font-size:16px;
    line-height:2;
    letter-spacing:0.06em;
    margin-bottom:26px;
  }
  .balance_text > div:nth-child(2) > p:last-child{
    font-size:16px;
  }
  .balance_text > div:nth-child(2) > p > span{
    font-size:10px;
  }
  .balance_text > div:nth-child(2) > p > small{
    font-size:10px;
  }

  .balance_text p br {
    display: none;
  }
}

/*  focus
---------------------------------------------*/
.focus {
  position: relative;
  margin: 0 0 200px;
}

.focus__img {
  width: 50%;
  padding: 125px;
  background: #ffe3e6;
}

.focus__spTitle {
  display: none;
}

.focus__block {
  position: absolute;
  z-index: 4;
  top: 80px;
  left: 50%;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  width: 560px;
  margin-left: 230px;
}

.focus__pcTitle {
  position: relative;
  z-index: 5;
  margin: 0 0 120px auto;
  color: #8f9fa6;
}

.focus__pcTitleEn {
  margin: 0 0 60px;
  font-size: 8.8rem;
}

.focus__pcTitleJp {
  max-width: 100%;
  padding: 0 0 30px;
  border-bottom: 4px solid #8f9fa6;
  font-weight: 400;
  font-size: 3.4rem;
  line-height: 1.5;
}

.focus__pcTitle .notes {
  display: block;
  margin: 10px 0 0;
  font-size: 1.0rem;
  text-align: right;
}

.focus__text {
  width: 400px;
  margin: 0 0 0 auto;
  color: #3e9cab;
}

.focus__text p {
  margin: 0 0 30px;
  line-height: 2;
}

.focus__text .notes {
  font-size: 1.0rem;
}


@media screen and (max-width: 768px) {
  .focus {
    position: relative;
    z-index: 1;
    margin: 0 0 260px;
  }

  .focus::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 80%;
    height: 78%;
    background: #ffe5eb;
  }

  .focus__img {
    position: relative;
    z-index: 2;
    width: 60%;
    margin-left: 10%;
    padding: 0;
    background: none;
  }

  .focus__spTitle {
    position: relative;
    z-index: 2;
    top: -42px;
    display: block;
    margin: 0 0 60px auto;
    padding: 0 5% 0 10%;
    color: #8f9fa6;
    text-align: right;
  }

  .focus__spTitleEn {
    margin: 0 0 60px;
    font-size: 8.8rem;
  }

  .focus__spTitleJp {
    max-width: 100%;
    padding: 0 0 30px;
    border-bottom: 4px solid #8f9fa6;
    font-weight: 400;
    font-size: 3.4rem;
  }

  .focus__spTitle .notes {
    display: block;
    margin: 10px 0 0;
    font-size: 1.0rem;
    text-align: right;
  }

  .focus__block {
    position: relative;
    z-index: 4;
    top: inherit;
    left: inherit;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    width: 100%;
    margin: 90px auto 0;
  }

  .focus__pcTitle {
    display: none;
  }

  .focus__text {
    width: 80%;
    margin: 0 auto;
    color: #3e9cab;
  }

  .focus__text p {
    margin: 0 0 30px;
    line-height: 2;
  }

  .focus__text .notes {
    font-size: 1.0rem;
  }
}

@media screen and (max-width: 640px) {
  .focus {
    position: relative;
    z-index: 1;
    margin: 0 0 160px;
  }

  .focus::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 85%;
    height: 65%;
    background: #ffe5eb;
  }

  .focus__img {
    position: relative;
    z-index: 2;
    width: 65%;
    margin-left: 0;
    padding: 0;
    background: none;
  }

  .focus__spTitle {
    position: relative;
    z-index: 2;
    top: -36px;
    display: block;
    margin: 0 0 35px auto;
    padding: 0 0 0 5%;
    color: #8f9fa6;
    text-align: left;
    line-height: 1.5;
  }

  .focus__spTitleEn {
    margin: 0 0 30px;
    font-size: 5.0rem;
  }

  .focus__spTitleJp {
    max-width: 100%;
    padding: 0 0 20px;
    border-bottom: 3px solid #8f9fa6;
    font-weight: 400;
    font-size: 2.4rem;
  }

  .focus__spTitleJp sup {
    font-size: 1.0rem;
  }

  .focus__spTitle .notes {
    display: block;
    margin: 10px 3% 0 0;
    font-size: 1.0rem;
    text-align: right;
  }

  .focus__block {
    position: relative;
    z-index: 4;
    top: inherit;
    left: inherit;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    width: 100%;
    margin: 45px auto 0;
  }

  .focus__pcTitle {
    display: none;
  }

  .focus__text {
    width: 74%;
    margin: 0 auto;
    color: #3e9cab;
  }

  .focus__text p {
    margin: 0 0 30px;
    font-size: 1.4rem;
    line-height: 2;
  }

  .focus__text p sup {
    font-size: 1.0rem;
  }

  .focus__text .notes {
    font-size: 1.0rem;
  }
}

/*  ingredients
---------------------------------------------*/
.ingredients {
  position: relative;
  margin: 0 0 230px;
  background: linear-gradient(to right, #ffd9db 50%, #ffe3e6 50%);
}

.ingredients::before {
  position: absolute;
  top: -380px;
  right: 0;
  content: "";
  width: 590px;
  height: 399px;
  background-image: url(/images/lululun2/mask/img-m-01.png);
  background-size: cover;
}

.ingredients__inner {
  height: 100%;
  max-width: 1110px;
  margin: 0 auto;
  padding: 0 0 160px;
  background: linear-gradient(to right, #ffd9db 130px, #ffe3e6 130px);
}

.ingredients__title {
  position: relative;
  top: -40px;
  margin: 0 auto 100px;
  max-width: 1110px;
  color: #8f9fa6;
}

.ingredients__titleEn {
  margin: 0 0 65px;
  font-size: 8.8rem;
}

.ingredients__titleJp {
  max-width: 830px;
  margin: 0;
  padding: 0 0 30px;
  border-bottom: 4px solid #8f9fa6;
  font-weight: 400;
  font-size: 3.4rem;
}

.ingredients__list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-end;
}

.ingredients__item {
  position: relative;
  width: 240px;
  margin: 0 0 0 28px;
}

.ingredients__item:nth-child(2) {
  margin-top: 40px;
}

.ingredients__item:nth-child(3) {
  margin-top: 80px;
}

.ingredients__item:nth-child(4) {
  margin-top: 120px;
}

.ingredients__new {
  position: absolute;
  z-index: 5;
  top: -37px;
  left: 27px;
  width: 72px;
}

.ingredients__img {
  width: 224px;
  margin: 0 auto 40px 0;
}

.ingredients__point {
  display: inline-block;
  margin: 0 0 15px;
  padding: 4px 5px 6px;
  background: #3e9cab;
  color: #fff;
  font-weight: 500;
  font-size: 1.4rem;
}

.ingredients__point sup {
  font-size: 1.0rem;
}

.ingredients__headline {
  margin: 0 0 30px;
  font-weight: 500;
}

.ingredients__headline span {
  display: inline-block;
  margin: 0 0 10px;
  padding: 1px 5px 5px;
  background: #fff;
  color: #3e9cab;
  font-size: 2.2rem;
}

.ingredients__text {
  margin: 0 0 10px;
  color: #3e9cab;
  font-size: 1.4rem;
  line-height: 1.5;
}

.ingredients__text sup {
  font-size: 1.0rem;
}

.ingredients__notes {
  color: #3e9cab;
}

.ingredients__notes span {
  display: block;
  font-size: 1.0rem;
  transform: scale(0.8);
  transform-origin:0 0;
}

@media screen and (max-width: 768px) {
  .ingredients {
    position: relative;
    margin: 0 0 230px;
    background: linear-gradient(to right, #ffdbe1 18%, #ffe5eb 18%);
  }

  .ingredients::before {
    position: absolute;
    top: -352px;
    right: -10px;
    content: "";
    width: 590px;
    height: 399px;
    background-image: url(/images/lululun2/mask/img-m-01_tb.png);
    background-size: cover;
  }

  .ingredients__inner {
    height: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0 160px;
    background: none;
  }

  .ingredients__title {
    position: relative;
    top: -40px;
    max-width: 100%;
    margin: 0 auto 100px;
    padding: 0 10% 0 5%;
    color: #8f9fa6;
  }

  .ingredients__titleEn {
    margin: 0 0 65px;
    font-size: 8.8rem;
  }

  .ingredients__titleJp {
    max-width: 830px;
    margin: 0;
    padding: 0 0 30px;
    border-bottom: 4px solid #8f9fa6;
    font-weight: 400;
    font-size: 3.4rem;
  }

  .ingredients__list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content:flex-start;
    flex-wrap: wrap;
    padding: 0 5%;
  }

  .ingredients__item {
    position: relative;
    width: 260px;
    margin: 0 5%;
  }

  .ingredients__item:nth-child(2) {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .ingredients__item:nth-child(3) {
    margin-top: 0;
  }

  .ingredients__item:nth-child(4) {
    margin-top: 40px;
  }

  .ingredients__new {
    position: absolute;
    z-index: 5;
    top: -37px;
    left: 27px;
    width: 72px;
  }

  .ingredients__img {
    width: 100%;
    margin: 0 auto 40px;
  }

  .ingredients__point {
    display: inline-block;
    margin: 0 0 15px;
    padding: 4px 5px 6px;
    background: #3e9cab;
    color: #fff;
    font-weight: 500;
    font-size: 1.4rem;
  }

  .ingredients__point sup {
    font-size: 1.0rem;
  }

  .ingredients__headline {
    margin: 0 0 20px;
    font-weight: 500;
  }

  .ingredients__headline span {
    display: inline-block;
    margin: 0 0 10px;
    padding: 1px 5px 5px;
    background: #fff;
    color: #3e9cab;
    font-size: 2.2rem;
  }

  .ingredients__text sup {
    font-size: 1.0rem;
  }

  .ingredients__notes {
    color: #3e9cab;
  }

  .ingredients__notes span {
    display: block;
    font-size: 1.0rem;
    transform: scale(0.8);
    transform-origin:0 0;
  }
}

@media screen and (max-width: 640px) {
  .ingredients {
    position: relative;
    margin: 0 0 120px;
    background: linear-gradient(to right, #ffdbe1 12%, #ffe5eb 12%);
  }

  .ingredients::before {
    position: absolute;
    top: -262px;
    right: -10px;
    content: "";
    width: 295px;
    height: 250px;
    background-image: url(/images/lululun2/mask/img-m-01_tb.png);
    background-size: cover;
  }

  .ingredients__inner {
    height: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0 80px;
    background: none;
  }

  .ingredients__title {
    position: relative;
    top: -25px;
    max-width: 100%;
    margin: 0 auto 30px;
    padding: 0 0 0 5%;
    color: #8f9fa6;
  }

  .ingredients__titleEn {
    margin: 0 0 30px;
    font-size: 5.0rem;
  }

  .ingredients__titleJp {
    max-width: 830px;
    margin: 0;
    padding: 0 0 20px;
    border-bottom: 3px solid #8f9fa6;
    font-weight: 400;
    font-size: 2.4rem;
  }

  .ingredients__list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content:flex-start;
    flex-wrap: wrap;
    margin: 0 -3.5%;
    padding: 0 5%;
  }

  .ingredients__item {
    position: relative;
    width: 50%;
    margin: 0;
    padding: 0 3.5%;
  }

  .ingredients__item:nth-child(2) {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .ingredients__item:nth-child(3) {
    margin-top: 0;
  }

  .ingredients__item:nth-child(4) {
    margin-top: 40px;
  }

  .ingredients__new {
    position: absolute;
    z-index: 5;
    top: -27px;
    left: 27px;
    width: 54px;
  }

  .ingredients__img {
    width: 100%;
    margin: 0 auto 30px;
  }

  .ingredients__point {
    display: inline-block;
    margin: 0 0 15px;
    padding: 0px 2px 3px;
    background: #3e9cab;
    color: #fff;
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: -0.05em;
  }

  .ingredients__point sup {
    display: inline-block;
    transform: scale(0.7);
    font-size: 1.0rem;
  }

  .ingredients__headline {
    margin: 0 0 15px;
    font-weight: 500;
  }

  .ingredients__headline span {
    display: inline-block;
    margin: 0 0 5px;
    padding: 1px 2px 2px;
    background: #fff;
    color: #3e9cab;
    font-size: 1.8rem;
    letter-spacing: -0.07em;
  }

  .ingredients__text {
    margin: 0 0 10px;
    color: #3e9cab;
    font-size: 1.2rem;
    line-height: 1.8;
  }

  .ingredients__text sup {
    display: inline-block;
    transform: scale(0.7);
    font-size: 1.0rem;
  }

  .ingredients__notes {
    color: #3e9cab;
  }

  .ingredients__notes span {
    display: block;
    width: 110%;
    font-size: 1.0rem;
    transform: scale(0.8);
    transform-origin:0 0;
    line-height: 1.8;
  }
}

/*  everyday
---------------------------------------------*/
.everyday {
  position: relative;
  z-index: 1;
  margin: 0 0 -40px;
  padding: 0 0 180px;
  background: linear-gradient(to right, #ffe3e6 50%, #ffd9db 50%);
}

.everyday::before {
  position: absolute;
  top: -90px;
  left: -70px;
  content: "";
  width: 590px;
  height: 399px;
  background-image: url(/images/lululun2/mask/img-m-02.png);
  background-size: cover;
  margin: 0 auto;
}

.everyday__title {
  position: relative;
  top: -40px;
  margin: 0 auto 100px;
  max-width: 1110px;
  color: #8f9fa6;
  text-align: right;
}

.everyday__titleEn {
  margin: 0 0 65px;
  font-size: 8.8rem;
}

.everyday__titleJp {
  max-width: 620px;
  margin: 0 0 0 auto;
  padding: 0 0 30px;
  border-bottom: 4px solid #8f9fa6;
  font-weight: 400;
  font-size: 3.4rem;
}

.everyday__item {
  position: relative;
  z-index: 2;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 90px;
}

.everyday__item.-item01,.everyday__item.-item03 {
  flex-direction: row-reverse;
}

.everyday__img {
  position: relative;
  width: 54%;
  height: 442px;
}

.everyday__item.-item01 .everyday__img {
  background: #faf2f5;
}

.everyday__panel img {
  display: block;
  width: auto;
  height: 442px;
  margin: 0 auto;
}

.everyday__item.-item01 .everyday__subtitle {
  position: absolute;
  z-index: 2;
  top: -50px;
  left: -320px;
  width: 452px;
}


.everyday__detail {
  width: 45%;
  padding: 0 0 0 65px;
  line-height: 1.8;
}

.everyday__item.-item01 .everyday__detail{
  padding: 0 65px 0 0;
}

.everyday__block {
  width: 380px;
  color: #3e9cab;
}

.everyday__item.-item01 .everyday__block {
  margin: 0 0 0 auto;
}

.everyday__notes {
  display: block;
  margin: 10px 0 0;
  font-size: 1.0rem;
}

.everyday__read {
  display: inline-block;
  margin: 30px 0 0;
  padding: 0 0 5px;
  border-bottom: 1px solid #3e9cab;
}

.everyday__read:hover {
  border-color: transparent;
}

.everyday__read a {
  color: #3e9cab;
  font-weight: 500;
  font-size: 1.6rem;
}

.everyday__micro {
  max-width: 982px;
  margin: 0 auto;
}

.everyday__microTitle {
  position: relative;
  left: -4px;
  margin: 0 0 -11px;
  color: #fff7fa;
  font-size: 6.8rem;
  letter-spacing: 0.2em;
}

.everyday__microPanel {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  padding: 35px 65px;
  background: #fff7fa;
  color: #3e9cab;
}

.everyday__microBlock {
  width: 364px;
}

.everyday__microSubTitle {
  margin: 0 0 30px;
  padding: 0 0 15px;
  border-bottom: 2px solid #3e9cab;
  font-size: 2.6rem;
  line-height: 1.2;
}

.everyday__microSubTitle span {
  font-size: 1.5rem;
}

.everyday__microTxt {
  font-size: 1.4rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .everyday {
    position: relative;
    z-index: 1;
    margin: 0 0 -40px;
    padding: 0 0 180px;
    background: linear-gradient(to right, #ffe3e6 75%, #ffd9db 75%);
  }

  .everyday::before {
    position: absolute;
    top: -15px;
    left: 10px;
    content: "";
    width: 590px;
    height: 399px;
    background-image: url(/images/lululun2/mask/img-m-02_tb.png);
    background-size: cover;
  }

  .everyday__title {
    position: relative;
    top: -45px;
    margin: 0 auto 100px;
    max-width: 90%;
    color: #8f9fa6;
    text-align: right;
  }

  .everyday__titleEn {
    margin: 0 0 65px;
    font-size: 8.8rem;
    line-height: 1.1;
  }

  .everyday__titleJp {
    max-width: 90%;
    margin: 0 0 0 auto;
    padding: 0 0 30px;
    border-bottom: 4px solid #8f9fa6;
    font-weight: 400;
    font-size: 3.4rem;
  }

  .everyday__item {
    position: relative;
    z-index: 2;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 0 80px;
    padding: 0;
  }

  .everyday__item.-item01 {
    flex-direction: column;
    padding: 0;
  }

  .everyday__img {
    position: relative;
    width: 100%;
    height: inherit;
    margin: 0 0 60px;
  }

  .everyday__item.-item01 .everyday__img {
    background: none;
  }

  .everyday__panel img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .everyday__item.-item01 .everyday__panel {
    padding: 0 0 0 15%;
  }

  .everyday__item.-item01 .everyday__subtitle {
    position: absolute;
    z-index: 2;
    top: -50px;
    left: 10%;
    width: 452px;
  }

  .everyday__detail {
    width: 65%;
    margin: 0 auto;
    padding: 0;
    line-height: 1.8;
  }

  .everyday__item.-item01 .everyday__detail {
    padding: 0 ;
  }

  .everyday__block {
    width: 100%;
    margin: 0 auto;
    color: #3e9cab;
  }

  .everyday__item.-item01 .everyday__block {
    margin: 0 0 0 auto;
  }

  .everyday__notes {
    display: block;
    margin: 10px 0 0;
    font-size: 1.0rem;
  }

  .everyday__read {
    display: inline-block;
    margin: 30px 0 0;
    padding: 0 0 5px;
    border-bottom: 1px solid #3e9cab;
  }

  .everyday__read:hover {
    border-color: transparent;
  }

  .everyday__read a {
    color: #3e9cab;
    font-weight: 500;
    font-size: 1.6rem;
  }

  .everyday__micro {
    max-width: 84%;
    margin: 0 auto;
  }

  .everyday__microTitle {
    position: relative;
    left: -4px;
    margin: 0 0 -11px;
    color: #fff7fa;
    font-size: 6.8rem;
    letter-spacing: 0.2em;
  }

  .everyday__microPanel {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    padding: 45px 45px;
    background: #fff7fa;
    color: #3e9cab;
  }

  .everyday__microBlock {
    width: 49%;
    padding-top: 20px;
  }

  .everyday__microSubTitle {
    margin: 0 0 30px;
    padding: 0 0 15px;
    border-bottom: 2px solid #3e9cab;
    font-size: 2.6rem;
    line-height: 1.2;
  }

  .everyday__microSubTitle span {
    font-size: 1.5rem;
  }

  .everyday__microTxt {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .everyday__microImg {
    width: 42%;
  }
}

@media screen and (max-width: 640px) {
  .everyday {
    position: relative;
    z-index: 1;
    margin: 0 0 -25px;
    padding: 0 0 100px;
    background: linear-gradient(to right, #ffe3e6 75%, #ffd9db 75%);
  }

  .everyday::before {
    position: absolute;
    top: -15px;
    left: -35px;
    content: "";
    width: 295px;
    height: 200px;
    background-image: url(/images/lululun2/mask/img-m-02_tb.png);
    background-size: cover;
  }

  .everyday__title {
    position: relative;
    top: -20px;
    margin: 0 auto 120px;
    padding: 0 5% 0 0;
    max-width: 100%;
    color: #8f9fa6;
    text-align: right;
  }

  .everyday__titleEn {
    margin: 0 0 40px;
    font-size: 5.0rem;
    line-height: 1.1;
  }

  .everyday__titleJp {
    max-width: 100%;
    margin: 0 0 0 auto;
    padding: 0 0 20px;
    border-bottom: 3px solid #8f9fa6;
    font-weight: 400;
    font-size: 2.4rem;
  }

  .everyday__item {
    position: relative;
    z-index: 2;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 0 80px;
    padding: 0;
  }

  .everyday__item.-item01,.everyday__item.-item03 {
    flex-direction: column;
    padding: 0;
  }

  .everyday__img {
    position: relative;
    width: 100%;
    height: inherit;
    margin: 0 0 40px;
  }

  .everyday__item.-item01 .everyday__img {
    background: none;
  }

  .everyday__panel img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .everyday__item.-item01 .everyday__panel {
    padding: 0 0 0 13%;
  }

  .everyday__item.-item01 .everyday__subtitle {
    position: absolute;
    z-index: 2;
    top: -70px;
    left: 7%;
    width: 293px;
  }

  .everyday__detail {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    line-height: 1.8;
  }

  .everyday__item.-item01 .everyday__detail {
    padding: 0 10% 0 13%;
  }

  .everyday__block {
    width: 100%;
    margin: 0 auto;
    color: #3e9cab;
  }

  .everyday__item.-item01 .everyday__block {
    margin: 0 0 0 auto;
  }

  .everyday__text {
    font-size: 1.4rem;
  }

  .everyday__item.-item02 .everyday__text br {
    display: none;
  }

  .everyday__notes {
    display: block;
    margin: 10px 0 0;
    font-size: 1.0rem;
  }

  .everyday__read {
    display: inline-block;
    margin: 20px 0 0;
    padding: 0 0 5px;
    border-bottom: 1px solid #3e9cab;
  }

  .everyday__read:hover {
    border-color: transparent;
  }

  .everyday__read a {
    color: #3e9cab;
    font-weight: 500;
    font-size: 1.4rem;
  }

  .everyday__micro {
    max-width: 90%;
    margin: 0 auto;
  }

  .everyday__microTitle {
    position: relative;
    left: 0px;
    margin: 0 0 -7px;
    color: #fff7fa;
    font-size: 4.4rem;
    letter-spacing: 0.2em;
    text-align: center;
  }

  .everyday__microPanel {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 45px 8%;
    background: #fff7fa;
    color: #3e9cab;
  }

  .everyday__microBlock {
    width: 100%;
    margin: 0 0 30px;
    padding-top: 0;
  }

  .everyday__microSubTitle {
    margin: 0 0 30px;
    padding: 0 0 15px;
    border-bottom: 2px solid #3e9cab;
    font-size: 2.2rem;
    line-height: 1.2;
    text-align: center;
  }

  .everyday__microSubTitle span {
    font-size: 1.3rem;
  }

  .everyday__microTxt {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .everyday__microImg {
    width: 100%;
  }
}


/*  how to
---------------------------------------------*/
.howto {
  position: relative;
  z-index: 2;
  padding: 0 0 180px;
}

.howto__title {
  margin: 0 0 100px;
  color: #8f9fa6;
  text-align: center;
}

.howto__titleEn {
  margin: 0 0 65px;
  font-size: 8.8rem;
}

.howto__titleJp {
  max-width: 690px;
  margin: 0 auto;
  padding: 0 0 30px;
  border-bottom: 4px solid #8f9fa6;
  font-weight: 400;
  font-size: 3.4rem;
}

.howto__step {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  max-width: 955px;
  margin: 0 auto;
  color: #3e9cab;
}

.howto__pop {
  position: relative;
  width: 372px;
  padding: 40px 0 0;
}

.howto__item {
  position: relative;
  width: 218px;
}

.howto__item::after {
  position: absolute;
  top: 100px;
  right: -45px;
  content: "\0025b6";
  font-size: 15px;
  font-size: 1.5rem;
}

.howto__item:last-child::after {
  display: none;
}

.howto__item .img {
  margin: 0 0 20px;
}

.howto__item .text {
  padding: 0 6%;
  font-size: 1.4rem;
  line-height: 1.8;
}

@media screen and (max-width:768px){
  .howto {
    padding: 0 0 180px;
  }

  .howto__title {
    margin: 0 0 100px;
    color: #8f9fa6;
    text-align: center;
  }

  .howto__titleEn {
    margin: 0 0 65px;
    font-size: 8.8rem;
  }

  .howto__titleJp {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 0 30px;
    border-bottom: 4px solid #8f9fa6;
    font-weight: 400;
    font-size: 3.4rem;
  }

  .howto__step {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 65%;
    margin: 0 auto;
    color: #3e9cab;
  }


  .howto__pop {
    position: relative;
    width: 100%;
    padding: 0;
  }

  .howto__pop .pop {
    max-width: 358px;
    margin: 0 auto 45px;
  }

  .howto__item {
    position: relative;
    width: 218px;
  }

  .howto__item::after {
    position: absolute;
    top: 100px;
    right: -40px;
    content: "\0025b6";
    font-size: 14px;
    font-size: 1.4rem;
  }

  .howto__item:last-child::after {
    display: none;
  }

  .howto__item .img {
    margin: 0 0 20px;
  }

  .howto__item .text {
    padding: 0 6%;
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

@media screen and (max-width:640px){
  .howto {
    padding: 0 0 120px;
  }

  .howto__title {
    margin: 0 0 50px;
    color: #8f9fa6;
    text-align: center;
  }

  .howto__titleEn {
    margin: 0 0 40px;
    font-size: 5.0rem;
  }

  .howto__titleJp {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 0 15px;
    border-bottom: 3px solid #8f9fa6;
    font-weight: 400;
    font-size: 2.4rem;
    line-height: 1.5;
  }

  .howto__step {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    max-width: 84%;
    margin: 0 auto;
    color: #3e9cab;
  }

  .howto__pop {
    position: relative;
    width: 100%;
    padding: 0;
  }

  .howto__pop .pop {
    max-width: 266px;
    margin: 0 auto 15px;
  }

  .howto__item {
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 0 10px;
  }

  .howto__item:last-child {
    margin: 0;
  }

  .howto__item::after {
    position: absolute;
    top: inherit;
    bottom: 0;
    right: 0;
    left: 0;
    text-align: center;
    content: "\0025b6";
    font-size: 15px;
    font-size: 1.5rem;
    transform: rotate(90deg);
  }

  .howto__item:last-child::after {
    display: none;
  }

  .howto__item .img {
    width: 132px;
    margin: 0 0 20px;
  }

  .howto__item .text {
    width: 60%;
    margin-top: -20px;
    padding: 0 0 0 7%;
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .howto__item .text br {
    display: none;
  }
}

/*  Shop
---------------------------------------------*/
.shop {
  position: relative;
  z-index: 1;
  padding: 0 0 200px;
  background: #ffe5eb;
}

.shop::after {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  content: "";
  width: 50%;
  height: 100%;
  background: -moz-linear-gradient(top, #ffedef, #ffd9db);
  background: -webkit-linear-gradient(top, #ffedef, #ffd9db);
  background: linear-gradient(to bottom, #ffedef, #ffd9db);
}

.shop__title {
  position: relative;
  z-index: 5;
  top: -40px;
  width: 1140px;
  margin: 0 auto 60px;
  color: #8f9fa6;
}

.shop__titleEn {
  margin: 0 0 60px;
  font-size: 8.8rem;
}

.shop__titleJp {
  max-width: 620px;
  padding: 0 0 30px;
  border-bottom: 4px solid #8f9fa6;
  font-weight: 400;
  font-size: 3.4rem;
}

.shop__inner {
  position: relative;
  z-index: 5;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1170px;
  min-height: 400px;
  margin: 0 auto;
}

.shop__detail {
  width: 50%;
}

.shop__block {
  width: 320px;
  margin: 0 auto;
  color: #3e9cab;
  text-align: center;
}

.shop__img {
  position: relative;
  width: 45%;
}

.shop__name {
  margin: 0 0 40px;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.2;
}


.shop__name span {
  font-size: 2.2rem;
}

.shop__price {
  margin: 0 0 20px;
  font-size: 1.8rem;
}

.shop__price p {
  margin: 0 0 10px;
}

.shop__price span {
  font-size: 1.4rem;
}

.shop__img figure {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -55%);
  -webkit-transform: translate(-50%, -55%);
  -ms-transform: translate(-50%, -55%);
  width: 590px;
}

.shop__img .img {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-550%, -50%);
  width: 395px;
  margin-top: 40px;
}

.shop .txt-modal {
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}

.shop__link {
  margin: 50px 0 0;
}

.shop .txt-modal:hover {
  text-decoration: none;
}

.shop__btn {
  margin: 0 0 15px;
}

.shop__btn a {
  font-size: 1.5rem;
}

.shop__btn a::before {
  position: absolute;
  top: 32%;
  left: 15px;
  content: "";
  width: 17px;
  height: 17px;
}

.shop__btn.-online a::before {
  background-image: url(/images/lululun2/common/shop-icon-online01.png);
  background-size: cover;
}

.shop__btn.-shop a::before {
  background-image: url(/images/lululun2/common/shop-icon-search01.png);
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .shop {
    position: relative;
    z-index: 1;
    padding: 0 0 150px;
    background: -moz-linear-gradient(top, #ffedef,40%, #ffd9db);
    background: -webkit-linear-gradient(top, #ffedef,40%, #ffd9db);
    background: linear-gradient(to bottom, #ffedef,40%, #ffd9db);
  }

  .shop::after {
    display: none;
  }

  .shop__title {
    position: relative;
    z-index: 5;
    top: -40px;
    width: 90%;
    margin: 0 auto -20px;
    color: #8f9fa6;
  }

  .shop__titleEn {
    margin: 0 0 30px;
    font-size: 8.8rem;
  }

  .shop__titleJp {
    max-width: 100%;
    padding: 0 0 30px;
    border-bottom: 4px solid #8f9fa6;
    font-weight: 400;
    font-size: 3.4rem;
  }

  .shop__inner {
    position: relative;
    z-index: 5;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
    align-items: center;
    max-width: 1170px;
    min-height: 400px;
    margin: 0 auto;
  }

  .shop__detail {
    width: 100%;
  }

  .shop__block {
    width: 320px;
    margin: 0 auto;
    color: #3e9cab;
    text-align: center;
  }

  .shop__img {
    position: relative;
    width: 45%;
    margin: 0 0 30px;
  }

  .shop__name {
    margin: 0 0 40px;
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 1.4;
  }

  .shop__name span {
    font-size: 2.2rem;
  }

  .shop__price {
    margin: 0 0 20px;
    font-size: 1.8rem;
  }

  .shop__price p {
    margin: 0 0 10px;
  }

  .shop__price span {
    font-size: 1.4rem;
  }

  .shop__img {
    height: 466px;
  }

  .shop__img figure {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 590px;
  }

  .shop__img .img {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-550%, -50%);
    width: 395px;
    margin-top: 70px;
  }

  .shop .txt-modal {
    font-size: 1.4rem;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
  }

  .shop__link {
    margin: 50px 0 0;
  }

  .shop .txt-modal:hover {
    text-decoration: none;
  }

  .shop__btn {
    margin: 0 0 15px;
  }

  .shop__btn a {
    font-size: 1.5rem;
  }

  .shop__btn a::before {
    position: absolute;
    top: 32%;
    left: 15px;
    content: "";
    width: 17px;
    height: 17px;
  }

  .shop__btn.-online a::before {
    background-image: url(/images/lululun2/common/shop-icon-online01.png);
    background-size: cover;
  }

  .shop__btn.-shop a::before {
    background-image: url(/images/lululun2/common/shop-icon-search01.png);
    background-size: cover;
  }
}

@media screen and (max-width: 640px) {
  .shop {
    position: relative;
    z-index: 1;
    padding: 0 0 120px;
    background: -moz-linear-gradient(top, #ffedef,30%, #ffd9db);
    background: -webkit-linear-gradient(top, #ffedef,30%, #ffd9db);
    background: linear-gradient(to bottom, #ffedef,30%, #ffd9db);
  }

  .shop::after {
    display: none;
  }

  .shop__title {
    position: relative;
    z-index: 5;
    top: -25px;
    width: 100%;
    padding-left: 5%;
    margin: 0 auto 0px;
    color: #8f9fa6;
  }

  .shop__titleEn {
    margin: 0 0 30px;
    font-size: 5.0rem;
  }

  .shop__titleJp {
    max-width: 100%;
    padding: 0 0 15px;
    border-bottom: 3px solid #8f9fa6;
    font-weight: 400;
    font-size: 2.4rem;
  }

  .shop__inner {
    position: relative;
    z-index: 5;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
    align-items: center;
    max-width: 1170px;
    min-height: 520px;
    margin: 0 auto;
  }

  .shop__detail {
    width: 100%;
  }

  .shop__block {
    width: 320px;
    margin: 0 auto;
    color: #3e9cab;
    text-align: center;
  }

  .shop__img {
    position: relative;
    width: 100%;
    margin: 0 0 20px;
  }

  .shop__name {
    margin: 0 0 40px;
    font-size: 2.8rem;
    font-weight: 500;
  }

  .shop__name span {
    font-size: 1.8rem;
  }

  .shop__price {
    margin: 0 0 20px;
    font-size: 1.8rem;
  }

  .shop__price p {
    margin: 0 0 10px;
  }

  .shop__price span {
    font-size: 1.4rem;
  }

  .shop__img {
    height: 294px;
  }

  .shop__img figure {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 404px;
  }

  .shop__img .img {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-550%, -50%);
    width: 250px;
    margin-top: 40px;
  }

  .shop .txt-modal {
    font-size: 1.4rem;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
  }

  .shop__link {
    margin: 50px 0 0;
  }

  .shop .txt-modal:hover {
    text-decoration: none;
  }

  .shop__btn {
    margin: 0 0 15px;
  }

  .shop__btn a {
    font-size: 1.5rem;
  }

  .shop__btn a::before {
    position: absolute;
    top: 32%;
    left: 15px;
    content: "";
    width: 17px;
    height: 17px;
  }

  .shop__btn.-online a::before {
    background-image: url(/images/lululun2/common/shop-icon-online01.png);
    background-size: cover;
  }

  .shop__btn.-shop a::before {
    background-image: url(/images/lululun2/common/shop-icon-search01.png);
    background-size: cover;
  }
}

/*  In Detail
---------------------------------------------*/
.inDetail {
  position: relative;
  z-index: 2;
  padding: 0 0 180px;
}

.inDetail__title {
  position: relative;
  top: -50px;
  margin: 0 0 6  0px;
  color: #8f9fa6;
  text-align: center;
}

.inDetail__titleEn {
  margin: 0 0 65px;
  font-size: 8.8rem;
}

.inDetail__titleJp {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 0 30px;
  border-bottom: 4px solid #8f9fa6;
  font-weight: 400;
  font-size: 3.4rem;
}

.inDetail__slide {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.inDetail__slide a {
  padding: 0 20px;
}

.inDetail__panel {
  background: #fff;
  padding: 20px;
  border-radius: 0 0 8px 8px;
  color: #007387;
  line-height: 1.5;
}

.inDetail__panel .text {
  height: 4.8rem;
  margin: 0 0 10px;
  overflow: hidden;
}

.inDetail__panel .date {
  font-size: 1.2rem;
}

.inDetail__slide .slick-prev, .inDetail__slide .slick-next {
  position: absolute;
  top: 40%;
  z-index: 99;
  width: 65px;
  height: 67px;
  border: none;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.inDetail__slide button {
  cursor: pointer;
}

.inDetail__slide button:focus {
  outline: none;
}

.inDetail__slide .slick-prev {
  left: -2%;
  background: url(/images/lululun2/mask/slider-prev.png);
  background-size: cover;
}

.inDetail__slide .slick-next {
  right: -2%;
  background: url(/images/lululun2/mask/slider-next.png);
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .inDetail {
    position: relative;
    z-index: 2;
    padding: 0 0 180px;
  }

  .inDetail__title {
    position: relative;
    top: -50px;
    margin: 0 0 6  0px;
    color: #8f9fa6;
    text-align: center;
  }

  .inDetail__titleEn {
    margin: 0 0 65px;
    font-size: 8.8rem;
  }

  .inDetail__titleJp {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 0 30px;
    border-bottom: 4px solid #8f9fa6;
    font-weight: 400;
    font-size: 3.4rem;
    line-height: 1.4;
  }

  .inDetail__slide {
    position: relative;
    max-width: 90%;
    margin: 0 auto;
  }

  .inDetail__slide a {
    padding: 0 20px;
  }

  .inDetail__panel {
    background: #fff;
    padding: 10px;
    border-radius: 0 0 8px 8px;
    color: #007387;
    line-height: 1.5;
  }

  .inDetail__panel .text {
    height: 4.8rem;
    margin: 0 0 10px;
    overflow: hidden;
  }

  .inDetail__panel .date {
    font-size: 1.2rem;
  }

  .inDetail__slide .slick-prev, .inDetail__slide .slick-next {
    position: absolute;
    top: 40%;
    z-index: 99;
    width: 65px;
    height: 67px;
    border: none;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
  }

  .inDetail__slide button {
    cursor: pointer;
  }

  .inDetail__slide button:focus {
    outline: none;
  }

  .inDetail__slide .slick-prev {
    left: -2%;
    background: url(/images/lululun2/mask/slider-prev.png);
    background-size: cover;
  }

  .inDetail__slide .slick-next {
    right: -2%;
    background: url(/images/lululun2/mask/slider-next.png);
    background-size: cover;
  }
}


@media screen and (max-width: 640px) {
  .inDetail {
    position: relative;
    z-index: 2;
    padding: 0 0 100px;
  }

  .inDetail__title {
    position: relative;
    top: -50px;
    margin: 0 0 6  0px;
    color: #8f9fa6;
    text-align: center;
  }

  .inDetail__titleEn {
    margin: 0 0 35px;
    font-size: 5.0rem;
  }

  .inDetail__titleJp {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 0 30px;
    border-bottom: 4px solid #8f9fa6;
    font-weight: 400;
    font-size: 2.4rem;
    line-height: 1.4;
  }

  .inDetail__slide {
    position: relative;
    max-width: 90%;
    margin: 0 auto;
  }

  .inDetail__slide a {
    padding: 0 20px;
  }

  .inDetail__panel {
    background: #fff;
    padding: 10px;
    border-radius: 0 0 8px 8px;
    color: #007387;
    line-height: 1.5;
  }

  .inDetail__panel .text {
    height: 4.8rem;
    margin: 0 0 10px;
    overflow: hidden;
  }

  .inDetail__panel .date {
    font-size: 1.2rem;
  }

  .inDetail__slide .slick-prev, .inDetail__slide .slick-next {
    position: absolute;
    top: 40%;
    z-index: 99;
    width: 52px;
    height: 52px;
    border: none;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
  }

  .inDetail__slide button {
    cursor: pointer;
  }

  .inDetail__slide button:focus {
    outline: none;
  }

  .inDetail__slide .slick-prev {
    left: -2%;
    background: url(/images/lululun2/mask/slider-prev.png);
    background-size: cover;
  }

  .inDetail__slide .slick-next {
    right: -2%;
    background: url(/images/lululun2/mask/slider-next.png);
    background-size: cover;
  }
}
