@charset "utf-8";

@media only screen and (max-width: 1280px) {
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 480px) {
}

#freeContentsArea {
  background-color: #fff;
}

.main_contents {
  /* -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings : "palt"; */
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 0px;
}

figure {
  position: relative;
}

.row-reverse {
  flex-direction: row-reverse;
}

.cap {
  position: absolute;
  bottom: 0;
  right: 0;
  padding:4px;
  color: #fff;
  font-size: 10px;
  line-height: 1.5;
  text-align: right;
  text-shadow: 0 0 3px #000, 0 0 3px #000, 0 0 3px #000, 0 0 3px #000,
    0 0 3px #000, 0 0 3px #000;
  z-index: 3;
}
.cap.cap_black {
  color: #000;
  text-shadow: none;
}
.cap.cap_white {
  color: #fff;
  text-shadow: none;
}
@media only screen and (max-width: 768px) {
  .cap {
    padding: 2px 4px;
    font-size: 10px;
  }
  .cap.sp_left {
    right: auto;
    left: 0;
  }
}

/*--------------------------------------
fade animation
--------------------------------------*/
/* fadeIn_up_mv */
.fadeIn_up_mv {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(5px);
  transition: 1.6s cubic-bezier(0.4, 1.09, 1, 1) 0.3s;
}
.fadeIn_up_mv.is-js {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}

/* fadeIn_up_mv_title */
.fadeIn_up_mv_title {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(5px);
  transition: 2.6s cubic-bezier(0.4, 1.09, 1, 1) 2.6s;
}
.fadeIn_up_mv_title.is-js {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}

/* fadeIn_up */
.fadeIn_up {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(5px);
  transition: 0.5s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0.3s;
}
.fadeIn_up.is-js {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}

/* mainvisual
========================== */
.mainvisual {
  position: relative;
}
.mainvisual img {
  width: 100%;
}
.mv_cap {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  text-align: right;
  text-shadow: 0px 0px 1px #000, 0 0 5px #000, 0 0 10px #000, 0 0 15px #000,
    0 0 20px #000, 0 0 30px #000, 0 0 40px #000;
  z-index: 3;
}
.mv_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  font-family: "EB Garamond", serif;
  text-align: center;
  font-size: 80px;
  letter-spacing: 0.3em;
  line-height: 1.5;
  color: #fff;
  text-shadow: 0px 0px 1px #000, 0 0 5px #000, 0 0 10px #000, 0 0 15px #000,
    0 0 20px #000, 0 0 30px #000, 0 0 40px #000;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
}

.inner {
  position: relative;
  width: calc(100% - 40px);
  max-width: 1350px;
  margin-inline: auto;
}

@media only screen and (max-width: 768px) {
  .mv_title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    font-size: 30px;
    letter-spacing: 0.3em;
  }
}

/* mv_cap_area
============================== */
.mv_cap_area {
  padding-top: 10px;
  background-color: #84959e;
}
.mv_cap_area p {
  font-size: 10px;
  letter-spacing: normal;
  line-height: 1.6;
  color: #fff;
}

/* link_area
=============================== */
.link_area {
  padding-block: 90px;
  background-color: #84959e;
}
.link_wrap {
  width: calc(100% - 40px);
  max-width: 1350px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 44px;
}
.link_item {
  display: block;
  text-decoration: none;
  transition: 0.4s;
}
.link_item_body {
  box-sizing: border-box;
  position: relative;
  background-color: #fff;
  padding: 30px 10px 50px;
  color: #040000;
  text-align: center;
}
.link_item_body::before {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 15px;
  background: url(../images/lifestyle/link_item_arrow.png) no-repeat center
    center / contain;
  transition: 0.4s;
}
.link_item_en {
  font-size: 18px;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.link_item_lead {
  font-size: 18px;
  font-size: clamp(1.2rem, -0.282rem + 1.446vw, 1.8rem);
  letter-spacing: 0.08em;
}
.link_item:hover {
  opacity: 0.8;
}
.link_item:hover .link_item_body::before {
  bottom: 10px;
}

@media only screen and (max-width: 768px) {
  .link_area {
    padding-block: 40px;
  }
  .link_wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .link_item_body {
    padding: 15px 4px 26px;
  }
  .link_item_body::before {
    bottom: 5px;
    width: 20px;
    height: 15px;
  }
  .link_item_en {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .link_item_lead {
    font-size: 10px;
    letter-spacing: 0.04em;
  }
}

/* contents_area
================================= */
.contents_head {
  position: relative;
  padding-block: 170px;
}
.contents_head_title {
  font-size: 60px;
  letter-spacing: 0.12em;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}
.contents_head_lead {
  font-size: 36px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.contents01 .contents_head {
  background: url(../images/lifestyle/contents_head01.jpg) no-repeat center
    center / cover;
}
.contents02 .contents_head {
  background: url(../images/lifestyle/contents_head02.jpg) no-repeat center
    center / cover;
}
.contents03 .contents_head {
  background: url(../images/lifestyle/contents_head03.jpg) no-repeat center
    center / cover;
}
.contents04 .contents_head {
  background: url(../images/lifestyle/contents_head04.jpg) no-repeat center
    center / cover;
}

.contents_item.col {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.contents_body {
  padding-block: 80px;
}
.contents_lead {
  text-align: center;
  font-size: 21px;
  letter-spacing: 0.08em;
  line-height: 2.2;
  padding-bottom: 80px;
  font-weight: 500;
}
.contents_area + .contents_area {
  margin-top: 100px;
}
.contents_item_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 80px;
}
.contents_item_wrap {
  display: flex;
  column-gap: 10px;
}

.contents_item_img_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 10px;
}
.contents_item_img {
  position: relative;
}
.contents_item_img .cap {
  right: 10px;
}
.contents_item_img_title {
  font-family: "EB Garamond", serif;
  position: absolute;
  width: 100%;
  top: -42px;
  left: 10px;
  font-size: 48px;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #3e3a39;
  z-index: 1;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
}
.contents_item_img_title span {
  font-size: 72px;
  line-height: 1;
}
.contents_item_large .contents_item_img {
  width: 100%;
  max-width: 640px;
}
.contents_item_large .contents_item_img_wrap {
  width: 100%;
  max-width: 240px;
}
.contents_item_large .contents_item_body {
  padding-left: 20px;
}
.contents_item_body {
  flex: 1;
}
.contents_item_title {
  font-size: 22px;
  font-size: clamp(1.6rem, 0.118rem + 1.446vw, 2.2rem);
  letter-spacing: 0.09em;
  line-height: 1.5;
  margin-bottom: 16px;
  font-weight: 500;
  color: #231815;
}
.contents_item_text {
  font-size: 16px;
  font-size: clamp(1.2rem, 0.212rem + 0.964vw, 1.6rem);
  letter-spacing: 0.1em;
  line-height: 2;
  margin-bottom: 12px;
  color: #666464;
}
.contents_item_cap {
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: #666464;
}

@media only screen and (max-width: 1024px) {
  .contents_area {
    max-width: 600px;
    margin-inline: auto;
  }
  .contents_head {
    padding-block: 70px;
  }
  .contents_head_title {
    font-size: 30px;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
  }
  .contents_head_lead {
    font-size: 18px;
    letter-spacing: 0.04em;
  }
  .contents01 .contents_head {
    background: url(../images/lifestyle/contents_head01_sp.jpg) no-repeat center
      center / cover;
  }
  .contents02 .contents_head {
    background: url(../images/lifestyle/contents_head02_sp.jpg) no-repeat center
      center / cover;
  }
  .contents03 .contents_head {
    background: url(../images/lifestyle/contents_head03_sp.jpg) no-repeat center
      center / cover;
  }
  .contents04 .contents_head {
    background: url(../images/lifestyle/contents_head04_sp.jpg) no-repeat center
      center / cover;
  }
  .contents_item.col {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .contents_body {
    padding-block: 30px;
  }
  .contents_lead {
    font-size: 11px;
    letter-spacing: -0.01em;
    line-height: 2;
    padding-bottom: 46px;
  }
  .contents_area + .contents_area {
    margin-top: 50px;
  }
  .contents_item_grid {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 60px;
  }
  .contents_item_large.contents_item_wrap {
    flex-direction: column;
    row-gap: 14px;
  }

  .contents_item_large .contents_item_img_wrap {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  .contents_item_img_title {
    width: 100%;
    top: -24px;
    left: 5px;
    font-size: 26px;
  }
  .contents_item_img_title span {
    font-size: 36px;
  }
  .contents_item_large .contents_item_img {
    max-width: 100%;
  }
  .contents_item_large .contents_item_img_wrap {
    width: 100%;
    max-width: 100%;
  }
  .contents_item_large .contents_item_body {
    padding-left: 0px;
  }
  .contents_item_title {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .contents_item_text {
    font-size: 11px;
    letter-spacing: 0.05em;
    line-height: 1.8;
    margin-bottom: 10px;
  }
  .contents_item_cap {
    font-size: 10px;
  }
}

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

.contents_item_wrap2 {
  display: flex;
  justify-content: space-between;
  column-gap: 40px;
}
.contents_item_img2 {
  position: relative;
  padding-left: 30px;
  width: 100%;
  max-width: 675px;
}
.contents_item_img2 .cap {
  right: 10px;
}
.row-reverse .contents_item_img2 {
  padding-left: 0;
  padding-right: 30px;
}
.row-reverse .contents_item_img_title {
  text-align: right;
}
.contents_item_body2 {
  position: relative;
  width: 100%;
  max-width: 605px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  justify-content: space-between;
}
.contents_item_img_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 10px;
}
.icon03_1 {
  position: absolute;
  right: 0;
  top: -100px;
  width: 165px;
  width: clamp(13.4rem, 5.743rem + 7.47vw, 16.5rem);
}
.icon03_2 {
  position: absolute;
  right: 0;
  top: -90px;
  width: 173px;
  width: clamp(13.4rem, 3.767rem + 9.398vw, 17.3rem);
}
.icon03_3 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 288px;
  width: clamp(17rem, -12.145rem + 28.434vw, 28.8rem);
}
.icon04_1 {
  position: absolute;
  right: 0;
  top: -10px;
  width: 177px;
  width: clamp(13.4rem, 2.78rem + 10.361vw, 17.7rem);
}
.icon04_2 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 296px;
  width: clamp(21.8rem, 2.535rem + 18.795vw, 29.6rem);
}
.icon04_3 {
  position: absolute;
  right: 0;
  top: -10px;
  width: 164px;
  width: clamp(14rem, 8.072rem + 5.783vw, 16.4rem);
}

@media only screen and (max-width: 1024px) {
  .contents_item_wrap2 {
    flex-direction: column;
    row-gap: 20px;
  }
  .contents_item_img2 {
    position: relative;
    padding-left: 0px;
    width: 100%;
    max-width: 675px;
  }
  .row-reverse .contents_item_img2 {
    padding-left: 0;
    padding-right: 0px;
  }
  .row-reverse .contents_item_img_title {
    text-align: right;
  }
  .contents_item_body2 {
    width: 100%;
    max-width: 605px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    justify-content: space-between;
  }
  .contents_item_img_row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
  }
  .icon03_1 {
    right: -8px;
    top: -47px;
    width: 90px;
  }
  .icon03_2 {
    right: -10px;
    top: -30px;
    width: 100px;
  }
  .icon03_3 {
    right: 0;
    bottom: -10px;
    width: 140px;
  }
  .icon04_1 {
    top: -6px;
    width: 105px;
  }
  .icon04_2 {
    bottom: 0;
    width: 168px;
  }
  .icon04_3 {
    position: absolute;
    right: 0;
    top: 16px;
    width: 78px;
  }
}
