@charset "utf-8";
/* CSS Document */
body {
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
}
/* ページ自体をふわっと表示 */
body {
  animation: fadein 1s forwards;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.pc_none {
  display: none;
}
/* レイアウト
------------------------------------------------- */

.bg {
  background-color: #78b3ce;
  background-image: url(../../images/lastnote/main_bg.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  text-align: center;
  padding: 70px 0 100px;
  text-shadow: 1px 1px 2px rgba(95, 153, 180, 1);
  position: relative;
  z-index: -10;
  overflow: hidden;
}
/* ロゴ
------------------------------------------------- */
h1.ttl {
  margin: 0 4% 100px;
  span {
    display: inline-block;
    background-color: #9bbad5;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 300;
    padding: 0 20px;
    margin-bottom: 20px;
    border: solid 1px #fff;
  }
}
h1.ttl_border {
  margin: 0 auto 70px;
  padding: 0 4%;
  position: relative;
  max-width: 800px;
  box-sizing: content-box;
  z-index: 10;
  span {
    display: inline-block;
    background-color: #9bbad5;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 300;
    padding: 0 20px;
    margin-bottom: 20px;
    border: solid 1px #fff;
  }
  img {
    border: solid 5px #fff;
    transition: 0.3s;
  }
  a img:hover {
    filter: saturate(150%);
  }
  i {
    font-style: normal;
    font-size: 1.4rem;
    font-weight: 400;
    display: block;
    margin-top: 10px;
  }
}

/* コンセプト
------------------------------------------------- */

section.concept {
  padding: 0 4%;
}

h1.ttl_collab {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 100;
  font-size: 56px;
  max-width: 800px;
  margin: 0 auto 100px;
  span {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    margin: 0 30px;
    font-weight: 400;
  }
  i {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 50px;
    font-weight: 400;
  }
  strong {
    display: inline-block;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-size: 60px;
    line-height: 1.4;
    border: solid 1px #fff;
    border-radius: 100px;
    padding: 0 40px 3px;
    margin-top: 30px;
    background: linear-gradient(150deg, #d8c5ca 0%, #92a6d6 100%);
    animation: Grad 4s infinite alternate;
  }
}
.txt_mgn {
  line-height: 2.5;
  margin-bottom: 40px;
  font-size: 2.2rem;
}
@keyframes Grad {
  0% {
    -webkit-filter: hue-rotate(0deg);
    filter: hue-rotate(0deg);
  }

  100% {
    -webkit-filter: hue-rotate(360deg);
    filter: hue-rotate(360deg);
  }
}
/* 商品紹介
------------------------------------------------- */
article.item_flex {
  max-width: 1200px;
  margin: 150px auto;
  padding: 0 4%;
  display: flex;
  justify-content: space-between;
  box-sizing: content-box;
  align-items: center;
  figure {
    max-width: 500px;
    width: 45%;
  }
  .txt_block {
    width: 45%;
    text-align: left;
  }
}
figure.frame {
  position: relative;
  z-index: 10;
  &::before {
    display: block;
    content: "";
    border: solid 1px #fff;
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  img {
    max-width: 100%;
    height: auto;
    border: solid 5px #fff;
    box-sizing: content-box;
  }
}
h2.product_name {
  font-size: 3rem;
  line-height: 1.4;
  margin-bottom: 50px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  strong {
    display: block;
    font-size: 70px;
    font-size: clamp(3rem, 5vw, 7rem);
    margin-top: 15px;
    font-weight: 300;
  }
  span {
    font-size: 2.4rem;
    font-family: "Shippori Mincho", serif;
  }
  rt {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 5px;
  }
}
.price {
  font-size: 2.4rem;
  margin-bottom: 30px;
}
.btn a {
  padding: 15px 100px;
  border: solid 2px #fff;
  color: #fff;
  font-size: 2.4rem;
  display: inline-block;
  position: relative;
  background: linear-gradient(90deg, #d8c4ca 0%, #ee95b0 50%, #d8c4ca 100%);
  background-size: 200% 100%;
  transition: all 0.7s ease;
  text-decoration: none;
}
.btn a:hover {
  background-position: 100% 0;
}
.btn a::after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-bottom: 15px solid #fff;
  border-top: 0;
  transform: rotate(135deg);
}
h3.border {
  border: solid 1px #fff;
  padding: 1px 20px;
  border-radius: 100px;
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 5px;
  background-color: #9bbad5;
  font-weight: 400;
}
.att {
  text-indent: -1em;
  margin-left: 1em;
  margin-top: 5px;
}
/* 製品情報
------------------------------------------------- */

section.spec {
  padding: 0 4%;
  h2 {
    margin-bottom: 10px;
    font-weight: 600;
  }
}
.spec_flex {
  border: solid 1px #fff;
  max-width: 1000px;
  margin: 0 auto 50px;
  padding: 40px 4%;
  background-color: #6a9eb6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.6rem;
  .txt_block {
    width: 50%;
  }
  dl {
    font-size: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    line-height: 1.5;
  }
  dt {
    width: 80px;
    margin: 3px 0;
  }
  dd {
    width: calc(100% - 80px);
    margin: 3px 0;
  }
}

h1.line {
  position: relative;
  display: inline-block;
  padding: 0 150px;
  font-size: 4rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  margin-bottom: 30px;
}

h1.line::before,
h1.line::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 110px;
  height: 1px;
  background-color: #fff;
}

h1.line::before {
  left: 0;
}
h1.line::after {
  right: 0;
}
.attention_box {
  font-size: 1.6rem;
  text-align: left;
  max-width: 900px;
  margin: auto;
}
ul.list {
  margin-left: 1.5em;
  margin-bottom: 50px;
  li {
    margin-bottom: 5px;
  }
}
.made {
  font-size: 3rem;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 100px 0 200px;
}
/* movie
------------------------------------------------- */
aside {
  padding: 0 4%;
}
.movie {
  max-width: 800px;
  aspect-ratio: 1.6 / 1;
  background-color: #fff;
  color: #92c1d7;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  font-size: 7rem;
  margin-bottom: 200px;
}
/* 最下部商品紹介
------------------------------------------------- */
.item {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 4%;
  figure {
    margin-bottom: 50px;
  }
}

/* 装飾
------------------------------------------------- */
ul.cloud {
  list-style: none;
  img {
    mix-blend-mode: screen;
    max-width: 100%;
    height: auto;
  }
  li {
    position: absolute;
    z-index: -5;
  }
  li:first-child {
    top: 5%;
    right: 0;
    text-align: right;
    width: 40%;
  }
  li:nth-child(2) {
    top: 20%;
    left: 0;
    text-align: left;
    width: 40%;
  }
  li:nth-child(3) {
    bottom: 48%;
    right: 0;
    text-align: right;
  }
  li:nth-child(4) {
    bottom: 20%;
    left: 0;
    text-align: left;
  }
}

ul.bubbles {
  list-style: none;
  img {
    mix-blend-mode: screen;
    max-width: 100%;
    height: auto;
  }
  li {
    position: absolute;
  }
  li:first-child {
    top: 6%;
    right: 0;
    width: 20%;
    text-align: right;
  }
  li:nth-child(2) {
    bottom: 2%;
    left: 0;
    width: 20%;
    text-align: left;
  }
  li:nth-child(3) {
    bottom: 10%;
    right: 0;
    width: 20%;
    text-align: right;
  }
}
