@charset "UTF-8";
/*------------------------------------------
reset.scss
-----------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*------------------------------------------
base.scss
-----------------------------------------*/
html {
  font-size: 62.5%;
  /* 16px x 0.625 = 10px(=1rem) */
}

body {
  margin: 0;
  padding: 0;
  color: #000;
  font-family: "Noto Serif JP", serif;
  font-feature-settings: "palt";
  letter-spacing: 1px;
  font-size: 1.4rem; /* 16px */
  font-weight: 400;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-ideograph;
  background-color: #e8e8e8;
}
@media screen and (min-width: 1280px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #333;
  text-decoration: none;
}
a:hover {
  opacity: 0.6;
}

.bgblack a,
.bgblack02 a {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
}
.bgblack a:hover,
.bgblack02 a:hover {
  opacity: 0.6;
}

img {
  width: 100%;
  vertical-align: bottom;
}

/*----responsive---------*/
.pc {
  display: none !important;
}
@media screen and (min-width: 1280px) {
  .pc {
    display: block !important;
  }
}

.sp {
  display: block !important;
}
@media screen and (min-width: 1280px) {
  .sp {
    display: none !important;
  }
}

/*----------box---------*/
.container__full {
  width: 100%;
}
.container__l {
  max-width: 980px;
  margin: 0 auto;
  width: 92%;
}
.container__m {
  margin: 0 auto;
  max-width: 780px;
  width: 80%;
}
.container__s {
  margin: 0 auto;
  max-width: 580px;
  width: 65%;
}

/*----page top scrool--------*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 99;
}

#page-top a {
  background: #72c7ca;
  text-decoration: none;
  color: #fff;
  width: 60px;
  padding: 28px 5px;
  text-align: center;
  display: block;
  border-radius: 90px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

#page-top a:hover {
  text-decoration: none;
  opacity: 0.5;
}

/*----common------*/
.container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  width: 100%;
  max-width: 960px;
  margin: 80px auto 0;
}
@media screen and (min-width: 768px) {
  .container {
    margin: 160px auto 0;
  }
}

.container__02 {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  grid-template-rows: auto;
  width: 100%;
  max-width: 1200px;
  margin: 80px auto 0;
}
@media screen and (min-width: 768px) {
  .container__02 {
    margin: 160px auto 0;
  }
}

.credit {
  font-size: 1.2rem;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 768px) {
  .credit {
    font-size: 1.4rem;
  }
}
.credit li {
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  .credit li {
    margin-top: 4px;
  }
}

/*----mv------*/
.mv {
  background-image: url("../img/mv_sp.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100svh;
  position: relative;
}
@media screen and (min-width: 768px) {
  .mv {
    background-image: url("../img/mv_pc.jpg");
    height: 92vh;
    min-height: initial;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 0;
  }
}
.mv__logo {
  position: absolute;
  top: 10px;
  left: 5%;
  max-width: 120px;
  width: 25%;
}
@media screen and (min-width: 768px) {
  .mv__logo {
    top: 5%;
    left: 5%;
    max-width: 120px;
  }
}
.mv__wrap {
  position: absolute;
  bottom: calc(5% + env(safe-area-inset-bottom));
  left: 20%;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .mv__wrap {
    top: 38%;
    left: 5%;
    bottom: auto;
  }
}
.mv__title {
  font-size: 4rem;
  font-family: "DM Serif Text", serif;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .mv__title {
    font-size: 8rem;
  }
}
.mv__subtitle {
  font-size: 1rem;
  font-family: "DM Serif Text", serif;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv__subtitle {
    font-size: 1.6rem;
    text-align: left;
  }
}

/*----look01------*/
.look01__01 {
  grid-column: 3/11;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.look01__02 {
  grid-column: 2/6;
  max-width: 400px;
  width: 100%;
  transform: translateY(-90px);
  z-index: 10;
}
.look01__03 {
  grid-column: 7/13;
  margin-top: -40px;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .look01__03 {
    grid-column: 8/13;
  }
}

/*----look02------*/
.look02__01 {
  grid-column: 2/9;
  max-width: 720px;
  transform: translate(0, -16px);
}
@media screen and (min-width: 768px) {
  .look02__01 {
    transform: translate(0, -32px);
  }
}
.look02__02 {
  grid-column: 9/13;
  transform: translateX(-40px);
  margin-top: 40px;
}
.look02__02 div {
  border: solid 1px #000;
}
.look02__02 div + div {
  border: solid 1px #000;
  margin-top: 16px;
}
.look02__comment {
  grid-column: 1/12;
}
.look02__credit {
  grid-column: 2/7;
  transform: translateY(-80px);
}
@media screen and (min-width: 768px) {
  .look02__credit {
    transform: translateY(-160px);
  }
}

/*----look03------*/
.look03__01 {
  position: relative;
  grid-column: 3/13;
}
.look03__02 {
  grid-column: 3/13;
  display: flex;
  justify-content: space-between;
  margin-top: 2%;
}
.look03__02 div {
  width: 49%;
}
.look03__comment {
  grid-column: 1/3;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.look03__comment img {
  transform: rotate(90deg);
  height: 90px;
  width: auto;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .look03__comment img {
    height: 200px;
    margin-top: 320px;
    margin-right: -20px;
  }
}
.look03__credit {
  position: absolute;
  bottom: 5%;
  left: 5%;
  z-index: 10;
}
.look03__credit ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.look03__credit ul li + li {
  margin-top: 4px;
}
.look03__credit ul a {
  color: #fff;
  text-decoration: none;
}

/*----look04------*/
.look04__01 {
  grid-column: 1/5;
  transform: translate(40px, -80px);
  z-index: 10;
  max-width: 320px;
}
@media screen and (min-width: 768px) {
  .look04__01 {
    transform: translate(40px, -100px);
  }
}
.look04__01 div + div {
  margin-top: 24px;
}
.look04__comment {
  grid-column: 7/13;
  font-family: "Noto Serif JP", serif;
  font-size: 0.8rem;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .look04__comment {
    font-size: 1.4rem;
  }
}
.look04__comment span {
  font-size: 2rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .look04__comment span {
    font-size: 3.2rem;
  }
}
.look04__02 {
  grid-column: 5/12;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .look04__02 {
    grid-column: 5/12;
    margin-top: 120px;
  }
}
.look04__credit {
  grid-column: 1/8;
  transform: translate(40px, 0);
}

/*----look05------*/
.look05__01 {
  grid-column: 1/15;
  background-image: url("../img/doudou_look05_01.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
}
.look05__comment {
  font-family: "Noto Serif JP", serif;
  font-size: 0.8rem;
  text-align: center;
  color: #fff;
  padding: 240px 0;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .look05__comment {
    font-size: 1.4rem;
  }
}
.look05__comment span {
  font-size: 2rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .look05__comment span {
    font-size: 3.2rem;
  }
}
.look05__02 {
  grid-column: 2/14;
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
.look05__02 div {
  width: 49%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .look05__02 div {
    width: 32%;
    position: relative;
  }
}
.look05__02 img {
  width: 100%;
  display: block;
}
.look05__credit {
  position: absolute;
  bottom: 5%;
  left: 5%;
  color: #fff;
}
.look05__credit a {
  color: #fff;
}
.look05__title {
  grid-column: 1/15;
  font-size: clamp(58px, 13vw, 180px);
  letter-spacing: 4px;
  font-family: "DM Serif Text", serif;
  line-height: 1;
  text-align: center;
  margin-top: -16px;
}
@media screen and (min-width: 768px) {
  .look05__title {
    margin-top: -40px;
  }
}

/*----look06------*/
.look06__01 {
  grid-column: 3/11;
}
.look06__comment {
  grid-column: 1/8;
  transform: translate(0, -100px);
  z-index: 10;
}
.look06__credit {
  grid-column: 6/12;
  transform: translate(0, -70px);
  text-align: right;
}
@media screen and (min-width: 768px) {
  .look06__credit {
    grid-column: 9/12;
    transform: translate(0, 40px);
    text-align: left;
  }
}

/*----look07------*/
.look07 {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .look07 {
    margin-top: 120px;
  }
}
.look07__01 {
  grid-column: 2/12;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 8px;
  transform: translate(0, -32px);
  position: relative;
}
@media screen and (min-width: 768px) {
  .look07__01 {
    gap: 16px;
  }
}
.look07__01 img {
  width: 100%;
  height: auto;
  display: block;
}
.look07__comment {
  grid-column: 3/11;
  z-index: 10;
  text-align: center;
}
.look07__comment img {
  max-width: 100%;
  height: auto;
}
.look07__credit {
  position: absolute;
  bottom: 16px;
  right: 16px;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .look07__credit {
    bottom: 24px;
    right: 24px;
  }
}
.look07__credit ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.look07__credit a {
  color: #fff;
  text-decoration: none;
}

/*----look08------*/
.look08__01 {
  grid-column: 4/11;
  border: solid 1px #000;
}
.look08__02 {
  grid-column: 1/5;
  border: solid 1px #000;
  transform: translate(8px, -160px);
}
@media screen and (min-width: 768px) {
  .look08__02 {
    transform: translate(0, -240px);
  }
}
.look08__comment {
  grid-column: 6/13;
  transform: translate(0, -160px);
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .look08__comment {
    transform: translate(0, -450px);
  }
}
.look08__credit {
  grid-column: 1/6;
  transform: translate(8px, -120px);
}
@media screen and (min-width: 768px) {
  .look08__credit {
    transform: translate(0, -200px);
  }
}

/*----look09------*/
.look09 {
  margin-top: 0;
}
.look09__01 {
  grid-column: 1/7;
}
.look09__02 {
  grid-column: 7/13;
}
.look09__comment {
  grid-column: 1/8;
  transform: translate(0, -20px);
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .look09__comment {
    grid-column: 1/7;
    transform: translate(0, -100px);
  }
}
.look09__credit {
  grid-column: 9/13;
  transform: translate(0, 20px);
}
@media screen and (min-width: 768px) {
  .look09__credit {
    grid-column: 9/11;
    transform: translate(0, 50px);
  }
}

/*----look10------*/
.look10 {
  /* メイン画像 */
}
.look10__01 {
  grid-column: 3/11;
  position: relative;
  z-index: 2;
  transform: translate(0, 0);
  z-index: 10;
}
.look10__01 img {
  display: block;
  width: 100%;
  height: auto;
}
.look10__comment {
  grid-column: 11/13;
  display: flex;
  justify-content: center;
  align-items: end;
  z-index: 2;
  transform: translate(-10px, -20%);
}
.look10__comment img {
  transform: rotate(90deg);
  height: 80px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .look10__comment img {
    height: 240px;
  }
}
.look10__credit {
  grid-column: 4/9;
  margin-top: 16px;
  z-index: 2;
}
.look10__title {
  grid-column: 1/3;
  position: relative;
  align-self: stretch;
  z-index: 1;
}
.look10__title p {
  position: absolute;
  top: 50%;
  left: 0;
  transform-origin: center;
  transform: rotate(90deg) translateY(280%);
  margin: 0;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.06em;
  font-family: "DM Serif Text", serif;
  font-size: clamp(72px, 13vw, 180px);
}
@media screen and (min-width: 768px) {
  .look10__title p {
    transform: rotate(90deg) translateY(260%);
    left: -30px;
  }
}

/*----footer------*/
.footer {
  margin: 120px auto 0;
}
.footer__inner {
  padding: 40px 20px;
  text-align: center;
  background-color: #111;
  color: #fff;
}
.footer__btn {
  display: inline-block;
  width: 80%;
  max-width: 320px;
  padding: 12px 24px;
  background: #fff;
  color: #000;
  border: 1px solid #000;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: 0.3s;
  font-family: "Roboto", sans-serif;
}
.footer__btn:hover {
  opacity: 0.7;
}
.footer__copy {
  font-size: 0.75rem;
}

/*------------------------------------------
animation.scss
-----------------------------------------*/
.fadein {
  transition: 1s;
  opacity: 0;
}

.fadein.animated {
  opacity: 1;
}

.fadein--up {
  transform: translate3d(0, 24px, 0);
  transition: 1s;
  opacity: 0;
}

.fadein--up.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fadein--down {
  transform: translate3d(0, -24px, 0);
  transition: 1s;
  opacity: 0;
}

.fadein--down.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fadein--left {
  transform: translate3d(-24px, 0, 0);
  transition: 1s;
  opacity: 0;
}

.fadein--left.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fadein--right {
  transform: translate3d(24px, 0, 0);
  transition: 1s;
  opacity: 0;
}

.fadein--right.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/*----------page top icon---------*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

#page-top a {
  width: 18px;
  padding: 0;
  display: block;
}

#page-top a:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */