@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Atma:wght@300;400;500;600;700&family=Noto+Sans+TC:wght@100..900&family=Oleo+Script+Swash+Caps:wght@400;700&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
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, img {
  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; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

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

a {
  text-decoration: none; }

.container {
  width: 95%;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 2;
  position: relative; }

.section {
  min-height: calc(100% - 261px); }
  @media screen and (max-width: 767px) {
    .section {
      min-height: calc(100% - 123px); } }

.textPurple {
  color: #8964ff;
  font-weight: bold; }

.textGreen {
  color: #CC9D9D; }

.textCenter {
  text-align: center; }

.textUnderline {
  text-decoration: underline; }

.positionR {
  position: relative; }

.dFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.dBlock {
  display: block; }

.flexColumn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.alignCenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.justifyCenter {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.justifyBetween {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.justifyStart {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }

.justifyEnd {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }

.textCenter {
  text-align: center; }

.marginX {
  margin: auto; }

.perspective {
  -webkit-perspective: 1000;
          perspective: 1000; }

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

body,
html {
  font-family: "Noto Sans TC", "Sono", sans-serif;
  width: 100%;
  height: 100%; }

img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  vertical-align: top; }

a {
  text-decoration: none; }

.header {
  background-color: #ddd; }

.footer {
  background-color: #CC9D9D; }

.notebookMenuBtn {
  position: absolute;
  right: 5%;
  top: 20px;
  z-index: 20;
  cursor: pointer;
  width: 146px;
  aspect-ratio: 146/27;
  background-image: url(../../assets/images/page/notebook/Menu.png); }
  .notebookMenuBtn:hover {
    -webkit-animation: MenustickerMove 0.1s 1 forwards;
            animation: MenustickerMove 0.1s 1 forwards;
    background-image: url(../../assets/images/page/notebook/MenuWhite.png); }
  @media screen and (max-width: 768px) {
    .notebookMenuBtn {
      right: 3%; } }

.notebookMenu.active {
  -webkit-animation: menuWrapMove 0.8s 1 forwards;
          animation: menuWrapMove 0.8s 1 forwards; }

.notebookMenu.hideMenu {
  -webkit-animation: menuWrapHide 0.8s 1 forwards;
          animation: menuWrapHide 0.8s 1 forwards; }

.notebookMenu {
  width: 28%;
  aspect-ratio: 540 / 832;
  background-size: contain;
  background-image: url(../../assets/images/page/notebook/MenuBg.png);
  background-repeat: no-repeat;
  background-position: center;
  z-index: 20;
  position: absolute;
  right: 0;
  top: -200%;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s; }
  @media screen and (max-width: 1024px) {
    .notebookMenu {
      width: 38%; } }
  @media screen and (max-width: 821px) {
    .notebookMenu {
      width: 60%; } }
  @media screen and (max-width: 767px) {
    .notebookMenu {
      width: 100%; } }
  .notebookMenu .notebookMenuWarp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px 10% 6%;
    width: 100%;
    height: 100%; }
  .notebookMenu ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(50px, 1fr));
    gap: 10px;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0; }
  .notebookMenu li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .notebookMenu li a {
      display: inline-block; }
      .notebookMenu li a:hover {
        -webkit-animation: MenustickerMove 0.1s steps(3) forwards;
                animation: MenustickerMove 0.1s steps(3) forwards; }
    .notebookMenu li a img {
      width: 100%;
      height: auto; }
  .notebookMenu li:nth-child(odd) {
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px); }
  .notebookMenu li:nth-child(even) {
    -webkit-transform: translateY(50%);
        -ms-transform: translateY(50%);
            transform: translateY(50%); }

@-webkit-keyframes MenustickerMove {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg); }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); } }

@keyframes MenustickerMove {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg); }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); } }

@-webkit-keyframes menuWrapMove {
  0% {
    top: -200%; }
  50% {
    top: 8%; }
  100% {
    top: 50px; } }

@keyframes menuWrapMove {
  0% {
    top: -200%; }
  50% {
    top: 8%; }
  100% {
    top: 50px; } }

@-webkit-keyframes menuWrapHide {
  0% {
    top: 50px; }
  50% {
    top: 8%; }
  100% {
    top: -200%; } }

@keyframes menuWrapHide {
  0% {
    top: 50px; }
  50% {
    top: 8%; }
  100% {
    top: -200%; } }

.closeLBbtn {
  position: absolute;
  cursor: pointer;
  right: 10px;
  top: 10px;
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #b77c7c;
  font-size: 1.125rem;
  z-index: 8; }
  .closeLBbtn::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #e0c1c1;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    z-index: -1; }
  .closeLBbtn:hover::after {
    width: 100%; }
  .closeLBbtn span {
    position: relative;
    width: 30px;
    height: 3px;
    background-color: transparent;
    margin-right: 12px; }
    .closeLBbtn span::before, .closeLBbtn span::after {
      position: absolute;
      content: "";
      width: 100%;
      height: 3px;
      background-color: #b77c7c; }
    .closeLBbtn span::before {
      top: 50%;
      left: 0;
      -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
              transform: rotate(45deg); }
    .closeLBbtn span::after {
      top: 50%;
      left: 0;
      -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
              transform: rotate(-45deg); }
  .closeLBbtn p {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    white-space: nowrap; }

.notebookLbBg {
  background-color: #eedddd;
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto; }

.notebookLbBg.active {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out; }

.closeNotebookBtn {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer; }
  .closeNotebookBtn:hover {
    opacity: 0.8; }

.notebookLbWrap {
  margin: 100px 0;
  position: relative;
  z-index: 1; }
  @media screen and (max-width: 767px) {
    .notebookLbWrap {
      margin: 80px 0; } }

.notebookLbContent {
  position: relative;
  width: 76%;
  max-width: 1104px;
  margin: 0 auto; }
  @media screen and (max-width: 1280px) {
    .notebookLbContent {
      width: 85%; } }
  @media screen and (max-width: 767px) {
    .notebookLbContent {
      width: 90%; } }
  .notebookLbContent::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-color: #fdf3f2;
    z-index: -1;
    -webkit-transform: rotate(1deg);
        -ms-transform: rotate(1deg);
            transform: rotate(1deg);
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    -webkit-box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.08);
            box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.08); }
    @media screen and (max-width: 821px) {
      .notebookLbContent::before {
        -webkit-transform: rotate(0.5deg);
            -ms-transform: rotate(0.5deg);
                transform: rotate(0.5deg); } }
    @media screen and (max-width: 767px) {
      .notebookLbContent::before {
        top: -5px;
        left: -15px;
        -webkit-transform: rotate(0.3deg);
            -ms-transform: rotate(0.3deg);
                transform: rotate(0.3deg); } }

.notebookLb {
  padding: 62px 95px;
  margin: 0 auto;
  position: relative;
  background-image: url(../../assets/images/page/notebook/notebookLbPapperBg.png);
  background-size: cover;
  background-position: center;
  -webkit-box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2; }
  @media screen and (max-width: 1280px) {
    .notebookLb {
      padding: 45px; } }
  @media screen and (max-width: 768px) {
    .notebookLb {
      padding: 50px 30px 30px; } }
  @media screen and (max-width: 767px) {
    .notebookLb {
      padding: 50px 20px 30px; } }
  @media screen and (max-width: 321px) {
    .notebookLb {
      padding: 50px 15px 20px; } }

/* 第一個效果的樣式 */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  z-index: 1;
  background: url("../../assets/images/page/index/pinkBg.png") no-repeat center center/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.cloud {
  position: absolute;
  aspect-ratio: 7/4;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1; }

.cloud1 {
  width: 60%;
  bottom: -5%;
  left: -30%;
  background-image: url(../../assets/images/page/index/cloud.png);
  -webkit-animation: float1 8s infinite ease-in-out;
          animation: float1 8s infinite ease-in-out; }
  @media screen and (max-width: 450px) {
    .cloud1 {
      width: 100%; } }

.cloud2 {
  width: 60%;
  top: -25%;
  right: -5%;
  background-image: url(../../assets/images/page/index/cloud.png);
  -webkit-animation: float2 8s infinite ease-in-out;
          animation: float2 8s infinite ease-in-out; }
  @media screen and (max-width: 450px) {
    .cloud2 {
      width: 100%;
      top: 0; } }

.cloud3 {
  width: 30%;
  bottom: 5%;
  right: 3%;
  background-image: url(../../assets/images/page/index/cloud-small.png);
  -webkit-animation: float3 6s infinite ease-in-out;
          animation: float3 6s infinite ease-in-out; }
  @media screen and (max-width: 450px) {
    .cloud3 {
      width: 100%;
      bottom: 16%; } }

@-webkit-keyframes float1 {
  0% {
    -webkit-transform: translateX(-10px) translateY(0);
            transform: translateX(-10px) translateY(0); }
  50% {
    -webkit-transform: translateX(20px) translateY(10px);
            transform: translateX(20px) translateY(10px); }
  100% {
    -webkit-transform: translateX(-10px) translateY(0px);
            transform: translateX(-10px) translateY(0px); } }

@keyframes float1 {
  0% {
    -webkit-transform: translateX(-10px) translateY(0);
            transform: translateX(-10px) translateY(0); }
  50% {
    -webkit-transform: translateX(20px) translateY(10px);
            transform: translateX(20px) translateY(10px); }
  100% {
    -webkit-transform: translateX(-10px) translateY(0px);
            transform: translateX(-10px) translateY(0px); } }

@-webkit-keyframes float2 {
  0% {
    -webkit-transform: translateX(10px) translateY(0);
            transform: translateX(10px) translateY(0); }
  50% {
    -webkit-transform: translateX(-20px) translateY(-10px);
            transform: translateX(-20px) translateY(-10px); }
  100% {
    -webkit-transform: translateX(10px) translateY(0px);
            transform: translateX(10px) translateY(0px); } }

@keyframes float2 {
  0% {
    -webkit-transform: translateX(10px) translateY(0);
            transform: translateX(10px) translateY(0); }
  50% {
    -webkit-transform: translateX(-20px) translateY(-10px);
            transform: translateX(-20px) translateY(-10px); }
  100% {
    -webkit-transform: translateX(10px) translateY(0px);
            transform: translateX(10px) translateY(0px); } }

@-webkit-keyframes float3 {
  0% {
    -webkit-transform: translateX(10px) translateY(20px);
            transform: translateX(10px) translateY(20px); }
  50% {
    -webkit-transform: translateX(-10px) translateY(-20px);
            transform: translateX(-10px) translateY(-20px); }
  100% {
    -webkit-transform: translateX(10px) translateY(20px);
            transform: translateX(10px) translateY(20px); } }

@keyframes float3 {
  0% {
    -webkit-transform: translateX(10px) translateY(20px);
            transform: translateX(10px) translateY(20px); }
  50% {
    -webkit-transform: translateX(-10px) translateY(-20px);
            transform: translateX(-10px) translateY(-20px); }
  100% {
    -webkit-transform: translateX(10px) translateY(20px);
            transform: translateX(10px) translateY(20px); } }

.mirrorWrap {
  position: relative;
  z-index: 2;
  width: 40%;
  margin: 0 auto; }
  @media screen and (max-width: 768px) {
    .mirrorWrap {
      width: 50%; } }
  @media screen and (max-width: 767px) {
    .mirrorWrap {
      width: 60%; } }
  @media screen and (max-width: 450px) {
    .mirrorWrap {
      width: 70%; } }

.mirrorInner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  position: relative;
  aspect-ratio: 3/2.1;
  margin-bottom: 20px; }

.mirror {
  width: 60%;
  -webkit-animation: miveMirror 1s infinite;
          animation: miveMirror 1s infinite;
  margin: auto; }
  .mirror img {
    margin: 0 auto; }

.heroBtnArea {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center; }
  @media screen and (max-width: 767px) {
    .heroBtnArea {
      font-size: 1rem; } }
  .heroBtnArea p {
    color: #d38f95;
    margin-bottom: 20px;
    line-height: 1.6; }
    @media screen and (max-width: 767px) {
      .heroBtnArea p {
        margin: 20px auto; } }
  .heroBtnArea .heroBtnAreaBtn {
    background-color: #faf6f6;
    color: #cc9d9d;
    display: inline-block;
    padding: 24px 32px;
    margin-bottom: 20px;
    border-radius: 100px;
    border: 2px solid transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden; }
    @media screen and (max-width: 767px) {
      .heroBtnArea .heroBtnAreaBtn {
        padding: 16px 24px; } }
    .heroBtnArea .heroBtnAreaBtn:hover {
      background-color: #d38f95;
      color: #f5ebeb;
      -webkit-transform: scale(1.05);
          -ms-transform: scale(1.05);
              transform: scale(1.05); }

@-webkit-keyframes miveMirror {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes miveMirror {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

/* 時間軸效果 */
.sceondArea {
  position: relative;
  background-color: #000000; }

.scrollContainer {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: 0; }

.backWrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  background-color: #000000; }

.backWrapContainer {
  width: 85vh;
  aspect-ratio: 1/1;
  position: relative;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d; }

.photo {
  position: absolute;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 3; }
  @media screen and (max-width: 768px) {
    .photo {
      width: 45%; } }
  @media screen and (max-width: 767px) {
    .photo {
      width: 80%; } }
  .photo img {
    width: 100%; }

.timeIntro {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 101; }
  .timeIntro p {
    font-size: 1.5rem;
    color: #e0c1c1;
    text-align: center;
    max-width: 600px;
    line-height: 2; }
    @media screen and (max-width: 450px) {
      .timeIntro p {
        font-size: 1.3rem; } }
    @media screen and (max-width: 321px) {
      .timeIntro p {
        font-size: 1rem; } }

.timeIntroWrap {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none; }

.timeIntroGuidMouseBox {
  position: fixed;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .timeIntroGuidMouseBox span {
    color: #e0c1c1;
    display: inline-block;
    margin-bottom: 20px; }
  .timeIntroGuidMouseBox .timeIntroGuidMouse {
    position: relative;
    width: 40px;
    height: 72px;
    border-radius: 30px;
    border: 2px solid #e0c1c1; }
    @media screen and (max-width: 450px) {
      .timeIntroGuidMouseBox .timeIntroGuidMouse {
        width: 30px;
        height: 50px; } }
    .timeIntroGuidMouseBox .timeIntroGuidMouse::before {
      position: absolute;
      content: "";
      width: 4px;
      height: 8px;
      background: #e0c1c1;
      left: 50%;
      top: 10%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      border-radius: 30px;
      -webkit-animation: timeIntroGuidMouse 2s infinite;
              animation: timeIntroGuidMouse 2s infinite; }

@-webkit-keyframes timeIntroGuidMouse {
  0% {
    top: 10%; }
  50% {
    top: 80%; }
  100% {
    top: 10%; } }

@keyframes timeIntroGuidMouse {
  0% {
    top: 10%; }
  50% {
    top: 80%; }
  100% {
    top: 10%; } }

.frontInfos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .frontInfos p {
    color: #faf6f6;
    line-height: 2; }

.introSection {
  position: relative;
  width: 100%;
  min-height: 100%;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media screen and (max-width: 767px) {
    .introSection {
      padding: 30px 0; } }

.toTheMirror {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px; }
  @media screen and (max-width: 767px) {
    .toTheMirror {
      width: 40px;
      left: 5px;
      top: 5px; } }

.introText {
  max-width: 645px;
  color: #E0C1C1;
  line-height: 1.8;
  font-size: 1.25rem;
  margin: 0 auto 60px;
  padding: 40px 20px 30px 20px;
  width: 90%;
  text-align: center; }
  @media screen and (max-width: 767px) {
    .introText {
      font-size: 1rem;
      padding: 30px 30px 25px 30px;
      margin: 0 auto 20px; } }
  @media screen and (max-width: 450px) {
    .introText {
      text-align: left; } }
  .introText > p {
    opacity: 0; }
  @media screen and (max-width: 450px) {
    .introText span {
      display: block; } }
  @media screen and (max-width: 450px) {
    .introText .introTextLine {
      display: none; } }

.introTextFirst {
  opacity: 0;
  margin-bottom: 2rem; }

.toNotebookBtn {
  display: inline-block;
  color: #FAF6F6;
  background-color: #D38F95;
  border-radius: 50px;
  padding: 20px 30px;
  font-size: 1.5rem;
  margin-bottom: 20px; }
  @media screen and (max-width: 767px) {
    .toNotebookBtn {
      padding: 15px 25px;
      font-size: 1.2rem; } }
  @media screen and (max-width: 450px) {
    .toNotebookBtn {
      padding: 15px 25px;
      font-size: 1.1rem; } }
  .toNotebookBtn:hover {
    background-color: #FAF6F6;
    color: #D38F95; }

.notebookWrap {
  position: relative;
  background-image: url(../../assets/images/page/notebook/bg-large.png);
  background-color: #d1a6a6;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: bottom;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden; }
  @media screen and (max-width: 1280px) {
    .notebookWrap {
      background-size: auto 100%;
      background-position: 0 bottom; } }
  @media screen and (max-width: 821px) {
    .notebookWrap {
      background-image: url(../../assets/images/page/notebook/bg-mobile.png);
      background-size: 100%;
      background-position: center top;
      min-height: 100%; } }
  @media screen and (max-width: 768px) {
    .notebookWrap {
      background-size: auto 100%;
      background-size: cover; } }
  @media screen and (max-width: 767px) {
    .notebookWrap {
      height: auto; } }

.notebookWrapBGD {
  position: absolute; }
  @media screen and (max-width: 768px) {
    .notebookWrapBGD {
      display: none; } }

.notebookWrapBGD1 {
  left: 0;
  top: 0;
  width: 74%; }

.notebookWrapBGD2 {
  top: 0;
  right: 0;
  width: 13%; }

.notebookWrapBGD3 {
  bottom: 0;
  right: 0;
  width: 16.7%; }

.notebookWrapBGD4 {
  bottom: 0;
  left: 0;
  width: 23%; }

.mobileD {
  position: absolute;
  display: none; }
  @media screen and (max-width: 821px) {
    .mobileD {
      display: block; } }

.mobileD1 {
  top: 5px;
  right: 0; }
  @media screen and (max-width: 767px) {
    .mobileD1 {
      top: 10%; } }

.mobileD2 {
  left: 0;
  top: 30%; }
  @media screen and (max-width: 767px) {
    .mobileD2 {
      top: 35%; } }

.mobileD3 {
  right: 0;
  top: 50%; }
  @media screen and (max-width: 767px) {
    .mobileD3 {
      top: auto;
      bottom: 35%; } }

.mobileD4 {
  left: 0;
  bottom: 20%; }
  @media screen and (max-width: 767px) {
    .mobileD4 {
      bottom: 30%; } }

.mobileD5 {
  right: 0;
  bottom: 3%; }
  @media screen and (max-width: 767px) {
    .mobileD5 {
      bottom: 5%; } }

.mobileD6 {
  bottom: 0;
  left: 0; }

.notebookOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 5;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  -o-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none; }

.notebookOverlay.show {
  opacity: 1;
  visibility: visible; }

.notebookOverlay2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 5;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  -o-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease; }

.notebookOverlay2.show {
  z-index: 10;
  opacity: 1;
  visibility: visible; }

.notebookContent {
  width: 1440px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  position: relative; }
  @media screen and (max-width: 1600px) {
    .notebookContent {
      width: 100%;
      height: auto;
      max-height: 100%; } }
  @media screen and (max-width: 821px) {
    .notebookContent {
      height: 100%; } }
  @media screen and (max-width: 767px) {
    .notebookContent {
      height: auto; } }

.notebookBOOK {
  position: relative;
  margin: 0 auto;
  width: 100%;
  margin: 0 4%;
  height: 100%;
  background-image: url(../../assets/images/page/notebook/book.png);
  aspect-ratio: 144/115;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden; }
  @media screen and (max-width: 1600px) {
    .notebookBOOK {
      width: 80%; } }
  @media screen and (max-width: 821px) {
    .notebookBOOK {
      background-image: none;
      min-height: 100%;
      aspect-ratio: unset;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding-top: calc(6% + 54px);
      width: 100%; } }

.notebookBtn1 {
  width: 28%;
  right: 8%;
  top: 37%; }
  @media screen and (max-width: 1280px) {
    .notebookBtn1 {
      width: 25%; } }
  @media screen and (max-width: 821px) {
    .notebookBtn1 {
      width: 40%;
      -webkit-box-ordinal-group: 5;
          -ms-flex-order: 4;
              order: 4;
      left: 0; } }
  @media screen and (max-width: 767px) {
    .notebookBtn1 {
      width: 80%;
      margin: auto; } }

.notebookBtn2 {
  width: 30%;
  left: 11%;
  top: 8%; }
  @media screen and (max-width: 1280px) {
    .notebookBtn2 {
      width: 27%; } }
  @media screen and (max-width: 821px) {
    .notebookBtn2 {
      width: 40%;
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; } }
  @media screen and (max-width: 767px) {
    .notebookBtn2 {
      width: 80%;
      margin-left: 5%;
      margin-bottom: 10%; } }

.notebookBtn3 {
  width: 19%;
  left: 43%;
  top: 9%; }
  @media screen and (max-width: 1280px) {
    .notebookBtn3 {
      width: 17%; } }
  @media screen and (max-width: 821px) {
    .notebookBtn3 {
      width: 30%;
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3;
      top: 30%; } }
  @media screen and (max-width: 767px) {
    .notebookBtn3 {
      width: 50%;
      margin-right: 3%;
      margin-left: auto; } }

.notebookBtn4 {
  width: 30%;
  right: 3%;
  top: 8%; }
  @media screen and (max-width: 1280px) {
    .notebookBtn4 {
      width: 25%;
      top: calc(5% + 47px); } }
  @media screen and (max-width: 821px) {
    .notebookBtn4 {
      width: 42%;
      -webkit-box-ordinal-group: 6;
          -ms-flex-order: 5;
              order: 5;
      top: 10%; } }
  @media screen and (max-width: 767px) {
    .notebookBtn4 {
      width: 90%;
      margin: auto; } }

.notebookBtn5 {
  width: 18.8%;
  left: 39%;
  bottom: 2%; }
  @media screen and (max-width: 1280px) {
    .notebookBtn5 {
      width: 18%; } }
  @media screen and (max-width: 821px) {
    .notebookBtn5 {
      width: 25%;
      -webkit-box-ordinal-group: 8;
          -ms-flex-order: 7;
              order: 7; } }
  @media screen and (max-width: 767px) {
    .notebookBtn5 {
      width: 45%; } }

.notebookBtn6 {
  width: 32%;
  left: 10%;
  bottom: 14%; }
  @media screen and (max-width: 1280px) {
    .notebookBtn6 {
      width: 27%; } }
  @media screen and (max-width: 821px) {
    .notebookBtn6 {
      width: 40%;
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
      left: 3%;
      bottom: 6%; } }
  @media screen and (max-width: 767px) {
    .notebookBtn6 {
      width: 80%; } }

.notebookBtn7 {
  width: 19%;
  right: 19%;
  bottom: 11%; }
  @media screen and (max-width: 1280px) {
    .notebookBtn7 {
      width: 16%; } }
  @media screen and (max-width: 821px) {
    .notebookBtn7 {
      width: 35%;
      -webkit-box-ordinal-group: 7;
          -ms-flex-order: 6;
              order: 6;
      right: 0;
      bottom: 20%; } }
  @media screen and (max-width: 767px) {
    .notebookBtn7 {
      width: 60%; } }

.notebookBtn {
  position: absolute;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease, -webkit-filter 0.3s ease;
  transition: opacity 0.3s ease, -webkit-filter 0.3s ease;
  -o-transition: filter 0.3s ease, opacity 0.3s ease;
  transition: filter 0.3s ease, opacity 0.3s ease;
  transition: filter 0.3s ease, opacity 0.3s ease, -webkit-filter 0.3s ease;
  z-index: 3;
  opacity: 0; }
  @media screen and (max-width: 767px) {
    .notebookBtn {
      position: relative;
      right: auto;
      top: auto;
      bottom: auto;
      left: auto; } }

.miniPodcastplayer {
  border: 5px solid #fff;
  background-color: #f5ebeb;
  position: absolute;
  left: 20px;
  bottom: 18px;
  border-radius: 8px;
  display: none;
  max-width: 320px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 3; }
  @media screen and (max-width: 767px) {
    .miniPodcastplayer {
      position: fixed; } }
  @media screen and (max-width: 450px) {
    .miniPodcastplayer {
      left: 50%;
      -webkit-transform: translateX(-50%) !important;
          -ms-transform: translateX(-50%) !important;
              transform: translateX(-50%) !important; } }

.miniPodcastplayerWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 8px 12px; }

.miniPodcastDisc {
  width: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 8px; }
  .miniPodcastDisc img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%; }
  .miniPodcastDisc img.rotate {
    -webkit-animation: rotateDisc 3s linear infinite;
            animation: rotateDisc 3s linear infinite; }

.miniPodcastTitle {
  font-size: 1.125rem;
  margin-right: 16px; }

.showPodcastLbBtn {
  color: #cc9d9d;
  font-size: 1.5rem;
  cursor: pointer; }
  .showPodcastLbBtn:hover {
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1); }

@-webkit-keyframes rotateDisc {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes rotateDisc {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.podcastBg {
  display: none; }

.podcastTitle {
  font-size: 2.5rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 3.5rem;
  position: relative; }
  @media screen and (max-width: 768px) {
    .podcastTitle {
      margin-bottom: 2rem;
      font-size: 2rem; } }
  .podcastTitle::before {
    content: url(../../assets/images/page/notebook/titlePic.png);
    position: absolute;
    left: -30px;
    top: -2.5rem; }
    @media screen and (max-width: 768px) {
      .podcastTitle::before {
        left: -20px; } }
    @media screen and (max-width: 767px) {
      .podcastTitle::before {
        left: -10px;
        top: -3rem;
        width: 120px; }
        .podcastTitle::before img {
          background-size: contain; } }

.podcastPlayerWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  border: 5px solid #fff;
  background-color: #f5ebeb;
  padding: 22px 25px;
  margin-bottom: 50px; }
  @media screen and (max-width: 768px) {
    .podcastPlayerWrap {
      padding: 18px 20px; } }
  @media screen and (max-width: 767px) {
    .podcastPlayerWrap {
      margin-bottom: 25px;
      padding: 15px 18px; } }

.playbtn {
  color: #cc9d9d;
  font-size: 1.75rem;
  margin-right: 16px;
  cursor: pointer; }
  .playbtn:hover {
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1); }

.playStartTimeLineWrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }

.playTimeline {
  position: relative;
  height: 6px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #8a857f5d; }

.playTimelineActive {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: #cc9d9d; }

.playTimelineActiveCursor {
  width: 4px;
  height: 12px;
  position: absolute;
  left: 0%;
  top: -50%;
  background-color: #cc9d9d;
  cursor: pointer; }

.playStartTime, .playEndTime {
  font-size: 1rem;
  color: #b77c7c;
  font-family: "Oleo Script Swash Caps", serif; }

.playStartTime {
  margin-right: 16px; }

.playEndTime {
  margin-left: 16px; }

.podcastTextIntroWrap p {
  font-size: 1.125rem;
  line-height: 2;
  color: #302E2E; }

.podcastIntroMemo {
  max-width: 375px;
  margin: 48px auto;
  background-image: url(../../assets/images/podcast/noteBg2.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  aspect-ratio: 373/406;
  position: relative;
  padding: 7% 4% 6%; }
  @media screen and (max-width: 821px) {
    .podcastIntroMemo {
      padding: 10% 8% 8%; } }
  .podcastIntroMemo h2 {
    color: #b77c7c;
    font-size: 1.25rem;
    text-align: center;
    -webkit-transform: rotate(3deg);
        -ms-transform: rotate(3deg);
            transform: rotate(3deg);
    margin-bottom: 10px; }
  .podcastIntroMemo p {
    -webkit-transform: rotate(3deg);
        -ms-transform: rotate(3deg);
            transform: rotate(3deg); }
    @media screen and (max-width: 767px) {
      .podcastIntroMemo p {
        line-height: 1.8; } }
    @media screen and (max-width: 321px) {
      .podcastIntroMemo p {
        line-height: 1.5; } }
  .podcastIntroMemo .podcastIntroMemoTape {
    position: absolute;
    width: 42%;
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%); }

.podcastIntroParagraph {
  margin-bottom: 48px; }
  .podcastIntroParagraph h2 {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 2; }

.craftsmanInterviewBg {
  display: none; }

.craftsmanInterviewContainer {
  max-width: 915px;
  margin: 0 auto; }
  .craftsmanInterviewContainer h2 {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 2;
    margin-bottom: 10px; }
  .craftsmanInterviewContainer p {
    line-height: 2;
    font-size: 1.125rem;
    margin-bottom: 40px;
    color: #302e2e; }
    @media screen and (max-width: 767px) {
      .craftsmanInterviewContainer p {
        margin-bottom: 30px; } }
  .craftsmanInterviewContainer figcaption {
    color: #8a857f;
    line-height: 2; }
  .craftsmanInterviewContainer img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%; }

.craftsmanInterview1stPic {
  text-align: center; }

.craftsmanInterview1stPic {
  margin-bottom: 48px; }
  @media screen and (max-width: 767px) {
    .craftsmanInterview1stPic {
      margin-bottom: 20px; } }
  .craftsmanInterview1stPic img {
    width: 100%; }

.craftsmanInterview2ndPic {
  margin-bottom: 48px; }
  @media screen and (max-width: 767px) {
    .craftsmanInterview2ndPic {
      margin-bottom: 20px; } }

.craftsmanInterview3rdPicRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 48px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  @media screen and (max-width: 767px) {
    .craftsmanInterview3rdPicRow {
      margin-bottom: 20px; } }
  .craftsmanInterview3rdPicRow figure {
    width: calc(33.33333% - 6px);
    margin-right: 8px; }
    .craftsmanInterview3rdPicRow figure:last-of-type {
      margin-right: 0; }
    @media screen and (max-width: 767px) {
      .craftsmanInterview3rdPicRow figure {
        width: 100%;
        margin: 0 auto 15px; } }
  .craftsmanInterview3rdPicRow img {
    max-height: 392px; }
    @media screen and (max-width: 767px) {
      .craftsmanInterview3rdPicRow img {
        max-height: none; } }

.craftsmanInterview4thPicRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 48px; }
  @media screen and (max-width: 767px) {
    .craftsmanInterview4thPicRow {
      margin-bottom: 20px; } }
  .craftsmanInterview4thPicRow figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: calc(50% - 8px);
    margin-right: 8px; }
    @media screen and (max-width: 767px) {
      .craftsmanInterview4thPicRow figure {
        width: 100%;
        margin: 0 auto 15px; } }
    .craftsmanInterview4thPicRow figure:last-of-type {
      margin-right: 0; }
    .craftsmanInterview4thPicRow figure img {
      width: 100%;
      aspect-ratio: 4/5.25;
      max-height: 596px; }
      @media screen and (max-width: 767px) {
        .craftsmanInterview4thPicRow figure img {
          max-height: none; } }

.craftsmanInterview5thPicRow {
  margin-bottom: 48px; }
  @media screen and (max-width: 767px) {
    .craftsmanInterview5thPicRow {
      margin-bottom: 20px; } }
  .craftsmanInterview5thPicRow figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .craftsmanInterview5thPicRow figure img {
      width: calc(50% - 8px);
      margin-right: 8px; }
      .craftsmanInterview5thPicRow figure img:last-of-type {
        margin-right: 0; }
      @media screen and (max-width: 767px) {
        .craftsmanInterview5thPicRow figure img {
          width: 100%;
          margin: 0 auto 8px; } }

.craftsmanInterview6thPicRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 48px; }
  @media screen and (max-width: 767px) {
    .craftsmanInterview6thPicRow {
      margin-bottom: 20px; } }
  .craftsmanInterview6thPicRow figure {
    margin-right: 8px;
    width: calc(50% - 8px); }
    .craftsmanInterview6thPicRow figure:last-of-type {
      margin-right: 0; }
    @media screen and (max-width: 767px) {
      .craftsmanInterview6thPicRow figure {
        width: 100%;
        margin: 0 auto 15px; } }
  .craftsmanInterview6thPicRow img {
    max-height: 596px; }

.craftsmanInterview7thPic {
  margin-bottom: 48px; }
  @media screen and (max-width: 767px) {
    .craftsmanInterview7thPic {
      margin-bottom: 20px; } }

.craftsmanInterview8thPic figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .craftsmanInterview8thPic figure img {
    width: calc(25% - 6px);
    margin-right: 8px; }
    .craftsmanInterview8thPic figure img:last-of-type {
      margin-right: 0; }
    @media screen and (max-width: 767px) {
      .craftsmanInterview8thPic figure img {
        width: 100%;
        margin: 0 auto 8px; } }

.craftsmanInterviewTitle {
  font-size: 2.5rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 2.5rem;
  position: relative;
  line-height: 1.4; }
  @media screen and (max-width: 821px) {
    .craftsmanInterviewTitle {
      font-size: 2rem;
      margin-bottom: 2rem; } }
  @media screen and (max-width: 450px) {
    .craftsmanInterviewTitle {
      font-size: 1.5rem; } }

.craftsmanInterviewPre {
  display: inline-block;
  padding: 8px;
  color: #59544e;
  background-color: #e0c1c1;
  font-size: 1.25rem;
  -webkit-transform: rotate(-6deg);
      -ms-transform: rotate(-6deg);
          transform: rotate(-6deg);
  margin-bottom: 5px; }
  @media screen and (max-width: 450px) {
    .craftsmanInterviewPre {
      font-size: 1rem; } }

.interviewNextBtnBox {
  position: absolute;
  bottom: -80px;
  right: 0;
  z-index: 2; }
  @media screen and (max-width: 767px) {
    .interviewNextBtnBox {
      bottom: -100px; } }

.interviewNextBtn {
  display: inline-block;
  padding: 10px;
  color: #b77c7c;
  font-size: 1.125rem; }
  .interviewNextBtn:hover {
    background-color: #e0c1c1; }
  @media screen and (max-width: 767px) {
    .interviewNextBtn {
      margin: 20px auto;
      line-height: 1.5; } }

.collectorInterviewBg {
  display: none; }

.collectorInterviewContainer p {
  line-height: 2;
  font-size: 1.125rem;
  margin-bottom: 40px;
  color: #302e2e; }
  @media screen and (max-width: 767px) {
    .collectorInterviewContainer p {
      margin-bottom: 30px; } }

.collectorInterviewContainer figcaption {
  color: #8a857f;
  line-height: 2; }

.collectorInterviewPicRow {
  margin-bottom: 48px; }
  @media screen and (max-width: 767px) {
    .collectorInterviewPicRow {
      margin-bottom: 30px; } }

.collectorInterview3rdPic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; }
  @media screen and (max-width: 767px) {
    .collectorInterview3rdPic {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .collectorInterview3rdPic img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%; }

.collectorInterview3rdPicLeft {
  width: calc(70% - 8px);
  margin-right: 8px; }
  @media screen and (max-width: 767px) {
    .collectorInterview3rdPicLeft {
      width: 100%;
      margin: auto; } }

.collectorInterview3rdPicRight {
  width: 30%; }
  @media screen and (max-width: 767px) {
    .collectorInterview3rdPicRight {
      width: 60%;
      margin: 20px auto; } }

.collectorInterview4thPicRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media screen and (max-width: 767px) {
    .collectorInterview4thPicRow {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }

.collectorInterview4thPic {
  margin: 0 4px; }
  @media screen and (max-width: 767px) {
    .collectorInterview4thPic {
      width: calc(50% - 16px);
      margin: 0 4px 8px; } }
  .collectorInterview4thPic:nth-of-type(2n) {
    -webkit-transform: translateY(15px);
        -ms-transform: translateY(15px);
            transform: translateY(15px); }

.collectorInterview5thPicRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media screen and (max-width: 767px) {
    .collectorInterview5thPicRow {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }

.collectorInterview5thPic {
  margin: 0 4px; }
  @media screen and (max-width: 767px) {
    .collectorInterview5thPic {
      width: calc(80% - 16px);
      margin: 0 4px 8px; } }

.collectorInterview6thPicRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media screen and (max-width: 767px) {
    .collectorInterview6thPicRow {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }

.collectorInterview6thPic {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0 4px; }
  @media screen and (max-width: 767px) {
    .collectorInterview6thPic {
      -webkit-box-flex: unset;
          -ms-flex-positive: unset;
              flex-grow: unset; }
      .collectorInterview6thPic:nth-of-type(1) {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        width: calc(50% - 4px);
        margin: 0 4px 0 0; }
      .collectorInterview6thPic:nth-of-type(2) {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
        margin: 10px auto;
        width: calc(100% - 16px); }
      .collectorInterview6thPic:nth-of-type(3) {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        width: 50%;
        width: calc(50% - 4px);
        margin: 0 0px 0 4px; } }
  .collectorInterview6thPic:nth-of-type(2) {
    -webkit-box-flex: 3;
        -ms-flex-positive: 3;
            flex-grow: 3; }
  .collectorInterview6thPic img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%; }

.collectInterviewFloatRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 48px; }
  @media screen and (max-width: 768px) {
    .collectInterviewFloatRow {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      margin-bottom: 30px; } }
  .collectInterviewFloatRow p {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-bottom: 0; }
  .collectInterviewFloatRow .collectInterviewFloatRowPic {
    width: 28%;
    margin-left: 24px; }
    @media screen and (max-width: 768px) {
      .collectInterviewFloatRow .collectInterviewFloatRowPic {
        width: 33%;
        margin: 20px auto; } }
    @media screen and (max-width: 767px) {
      .collectInterviewFloatRow .collectInterviewFloatRowPic {
        width: 80%; } }

.collectInterviewFloatRow2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse; }
  @media screen and (max-width: 768px) {
    .collectInterviewFloatRow2 {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse; } }
  .collectInterviewFloatRow2 .collectInterviewFloatRowPic {
    width: 28%;
    margin-left: 0px;
    margin-right: 24px; }
    @media screen and (max-width: 768px) {
      .collectInterviewFloatRow2 .collectInterviewFloatRowPic {
        width: 33%;
        margin: 20px auto; } }
    @media screen and (max-width: 767px) {
      .collectInterviewFloatRow2 .collectInterviewFloatRowPic {
        width: 80%; } }

.reportBg {
  display: none; }

.reportTitle {
  color: #a16262;
  line-height: 1.4;
  font-size: 2.5rem;
  padding: 20px 0;
  margin-bottom: 2.5rem;
  font-weight: bold;
  background-color: #eedddd;
  border-top: 4px solid #b77c7c;
  border-bottom: 4px solid #b77c7c;
  text-align: center;
  position: relative; }
  @media screen and (max-width: 821px) {
    .reportTitle {
      font-size: 2rem;
      margin-bottom: 2rem; } }
  @media screen and (max-width: 450px) {
    .reportTitle {
      font-size: 1.5rem; } }
  .reportTitle::before, .reportTitle::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #b77c7c;
    position: absolute;
    left: 0; }
  .reportTitle::before {
    top: 3px; }
  .reportTitle::after {
    bottom: 3px; }

.report1stRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.125rem;
  margin-bottom: 55px; }
  @media screen and (max-width: 767px) {
    .report1stRow {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .report1stRow p {
    line-height: 2;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    color: #302e2e; }

.report1stRowPic {
  width: 30%;
  max-width: 236px;
  margin-left: 40px; }
  @media screen and (max-width: 767px) {
    .report1stRowPic {
      width: 100%;
      margin: auto; } }

.reportRow {
  margin-bottom: 62px; }
  @media screen and (max-width: 767px) {
    .reportRow {
      margin-bottom: 20px; } }

.reportRowFloat .reportRowPic {
  float: left;
  width: 40%;
  max-width: 300px;
  margin-right: 20px;
  border-radius: 8px; }
  @media screen and (max-width: 767px) {
    .reportRowFloat .reportRowPic {
      float: none;
      width: 100%;
      margin: 20px auto; } }

.reportRowText {
  font-size: 1.125rem; }
  .reportRowText hr {
    background-color: #000;
    height: 2px;
    border: none; }
  .reportRowText h2 {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 2;
    color: #000; }
  .reportRowText p {
    line-height: 2;
    color: #302e2e; }

.diaryBg {
  display: none; }

.diaryLbContent {
  width: 90%;
  max-width: 1110px;
  margin: 0 auto; }

.diaryBookContainer {
  position: relative;
  -webkit-perspective: 2000px;
          perspective: 2000px; }

.diaryTabContent {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: center right;
      -ms-transform-origin: center right;
          transform-origin: center right;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3); }

.diaryTabContent.active {
  display: block;
  opacity: 1; }

.diaryBookTabBtn ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }

.diaryTabA {
  display: inline-block;
  padding: 6px 20px;
  color: #e0c1c1;
  background-color: #f5ebeb;
  margin-right: 4px;
  border-radius: 10px 10px 0 0; }
  .diaryTabA:hover {
    background-color: #cc9d9d;
    color: #faf6f6; }
  @media screen and (max-width: 450px) {
    .diaryTabA {
      padding: 6px 10px;
      font-size: 0.875rem; } }
  @media screen and (max-width: 1280px) {
    .diaryTabA span {
      display: none; } }

.diaryTabA.active {
  background-color: #cc9d9d;
  color: #faf6f6; }

.diaryBookWrap {
  z-index: 2;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-shadow: 2px 2px 10px #bbbbbb;
          box-shadow: 2px 2px 10px #bbbbbb;
  min-height: 720px;
  position: relative;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  -o-transition: transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  align-items: stretch; }
  @media screen and (max-width: 1024px) {
    .diaryBookWrap {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse; } }

.diaryBookLeft {
  width: 50%;
  min-height: 100%;
  padding: 40px 36px;
  background-image: url(../../assets/images/page/notebook/diary/diaryLeftBg.png);
  background-size: 100% auto;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .diaryBookLeft::before {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 10px;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.2)), to(transparent));
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0.2), transparent);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2), transparent); }
  @media screen and (max-width: 1024px) {
    .diaryBookLeft {
      width: 100%; } }

.diaryBookLeftTopText {
  background-image: url(../../assets/images/page/notebook/diary/diaryLeftText1Bg.png);
  background-size: cover;
  padding: 32px 36px 50px 36px;
  position: relative;
  -webkit-transform: rotate(-2deg);
      -ms-transform: rotate(-2deg);
          transform: rotate(-2deg); }
  @media screen and (max-width: 450px) {
    .diaryBookLeftTopText {
      padding: 25px 28px 50px 28px; } }
  .diaryBookLeftTopText .diaryBookLeftTopTape {
    position: absolute;
    left: -30px;
    top: -30px;
    width: 120px;
    opacity: 0.7; }
    @media screen and (max-width: 450px) {
      .diaryBookLeftTopText .diaryBookLeftTopTape {
        width: 90px; } }
  .diaryBookLeftTopText p {
    font-size: 1rem;
    line-height: 1.8;
    color: #302e2e; }

.diaryBookLeftBottomText {
  background-image: url(../../assets/images/page/notebook/diary/diaryLeftTextDownBg.png);
  background-size: 100% 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transform: translateY(-20px) rotate(5deg);
      -ms-transform: translateY(-20px) rotate(5deg);
          transform: translateY(-20px) rotate(5deg);
  width: 95%;
  margin: 0px 0 0 auto;
  padding: 20px 25px; }
  @media screen and (max-width: 1024px) {
    .diaryBookLeftBottomText {
      -webkit-transform: translateY(-10px) rotate(3deg);
          -ms-transform: translateY(-10px) rotate(3deg);
              transform: translateY(-10px) rotate(3deg); } }
  @media screen and (max-width: 450px) {
    .diaryBookLeftBottomText {
      padding: 18px 20px; } }
  .diaryBookLeftBottomText p {
    font-size: 0.875rem;
    line-height: 1.8;
    color: #302e2e; }
  .diaryBookLeftBottomText .diaryBookLeftBottomHeart {
    position: absolute;
    top: -5px;
    right: 16%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }

.diaryBookRight {
  width: 50%;
  min-height: 100%;
  background-image: url(../../assets/images/page/notebook/diary/diaryRightBg.png);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media screen and (max-width: 1024px) {
    .diaryBookRight {
      width: 100%; } }

.carouselWrap {
  max-width: 446px;
  width: 80%;
  min-height: 80%;
  padding: 20px 0;
  position: relative;
  margin: auto; }

.carouselWrapFlower {
  position: absolute;
  z-index: 7;
  -webkit-animation: flowerRotate 3s steps(4) infinite forwards;
          animation: flowerRotate 3s steps(4) infinite forwards; }

.carouselWrapFlower1 {
  width: 15%;
  left: 5%;
  top: -1%; }
  @media screen and (max-width: 1024px) {
    .carouselWrapFlower1 {
      top: 0; } }
  @media screen and (max-width: 767px) {
    .carouselWrapFlower1 {
      top: 3%; } }

.carouselWrapFlower2 {
  right: -10%;
  top: 26%;
  width: 30%; }
  @media screen and (max-width: 767px) {
    .carouselWrapFlower2 {
      width: 20%; } }

.carouselWrapFlower3 {
  width: 22%;
  left: -0%;
  bottom: 20%; }

@-webkit-keyframes flowerRotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  25% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  75% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes flowerRotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  25% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  75% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto 20px; }
  @media screen and (max-width: 1024px) {
    .carousel {
      min-height: 600px; } }
  @media screen and (max-width: 767px) {
    .carousel {
      min-height: 450px; } }
  @media screen and (max-width: 450px) {
    .carousel {
      min-height: 400px; } }

.card {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.5s ease-out;
  transition: -webkit-transform 0.5s ease-out;
  -o-transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
  overflow: hidden; }
  .card img {
    width: auto;
    height: auto;
    border: 5px solid #fff;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
    border-radius: 10px; }
    .card img.portraitImg {
      height: 75%;
      width: auto;
      max-height: 100%;
      max-width: 90%; }
    .card img.landscapeImg {
      width: 100%;
      height: auto;
      max-width: 100%;
      max-height: 90%; }

.carouselNum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 5; }
  @media screen and (max-width: 1024px) {
    .carouselNum {
      bottom: 3%; } }
  @media screen and (max-width: 450px) {
    .carouselNum {
      bottom: 5%; } }

.carouselNumWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 10px;
  font-size: 1.5rem;
  color: #8a857f; }

.carouselNumNow,
.carouselNumEnd {
  padding: 0 5px;
  font-family: "Atma", serif; }

.carouselNumNow {
  font-size: 3rem;
  color: #302e2e; }

.carouselNumPrev,
.carouselNumNext {
  display: inline-block;
  padding: 0 5px;
  cursor: pointer;
  width: 60px; }
  .carouselNumPrev:hover,
  .carouselNumNext:hover {
    -webkit-transform: scale(1.05) translateY(3px);
        -ms-transform: scale(1.05) translateY(3px);
            transform: scale(1.05) translateY(3px); }

.videoBg {
  background-color: #000;
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background-image: url(../../assets/images/page/notebook/video/bg.gif); }

.videoLbWrap {
  width: 100%;
  height: 100%;
  margin: 0px 0; }

.videoLbContent {
  background-image: none;
  width: 100%;
  height: 100%; }
  .videoLbContent::before {
    display: none; }

.videoLb {
  position: relative;
  padding: 0;
  background-image: none;
  width: 100%;
  height: 100%; }

.videoLbCover, .videoIframe {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60%; }
  @media screen and (max-width: 821px) {
    .videoLbCover, .videoIframe {
      width: 80%; } }
  @media screen and (max-width: 767px) {
    .videoLbCover, .videoIframe {
      width: 95%; } }

.videoLbCover {
  z-index: 2;
  cursor: pointer; }

.videoIframe {
  z-index: 1;
  display: none; }

.videoIframeContainer {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  width: 100%; }
  .videoIframeContainer iframe,
  .videoIframeContainer object,
  .videoIframeContainer embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.thanksBg {
  display: none; }

.thanksTitle {
  text-align: center;
  margin-bottom: 70px; }

.thanksNameListContainer {
  text-align: center; }

.thanksNameListEach {
  margin-bottom: 72px; }

.thanksNameListTitle {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
  color: #181717; }
  .thanksNameListTitle::after {
    content: "";
    width: 50%;
    aspect-ratio: 9/1;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -10px;
    background-image: url(../../assets/images/page/notebook/thanksLine.png);
    background-repeat: no-repeat; }

.thanksNameList {
  color: #302e2e; }
  .thanksNameList span {
    display: inline-block;
    font-size: 1.125rem;
    margin-bottom: 24px; }
  .thanksNameList .jobTitle {
    margin-right: 24px; }

/*# sourceMappingURL=all.css.map */
