html {
  font-size: 62.5%;
}

@font-face {
  font-family: "Advent Pro";
  src: url(../font/AdventPro-Bold.ttf);
}

@media screen and (min-width: 768px) and (max-width: 1400px) {
  html {
    font-size: calc(10 * (100vw / 1400));
  }
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
                                                                                SETTING
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.lilybrown_241025 picture {
  width: 100%;
  height: 100%;
}

.lilybrown_241025 img,
.lilybrown_241025 video,
.lilybrown_241025 svg {
  display: block;
  width: 100%;
  height: auto;
}

.lilybrown_241025 {
  --f_color-white: #fff;
  --f_color-black: #2d2d2d;
  --f_color-blue01: #88c4e5;
  --f_color-blue02: #063f72;
  --f_color-blue03: #457eab;

  --bg_color-01: #ffd7cc;
  --bg_color-02: #e4efea;
  --bg_color-03: #fff1e1;
  --bg_color-04: #caedec;
  --bg_color-05: #ffebdc;
  --bg_color-06: #ffeef2;
  --bg_color-07: #f9f6de;

  --font-gothic-txt: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Arial, "メイリオ", "Meiryo", sans-serif;
  --font-goldenbook-txt: "goldenbook", serif;
  --font_advent: "Advent Pro";

  overflow: hidden;
}

.lilybrown_241025 .fontJa {
  font-family: var(--font-gothic-txt);
  font-weight: 500;
  font-feature-settings: "palt";
}

.lilybrown_241025 .fontEn {
  font-family: var(--font_advent);
  font-weight: 400;
}

.lilybrown_241025 .bgWhite {
  position: relative;
  z-index: 2;
}

/* .lilybrown_241025 .bgWhite:hover {
  opacity: 0.5;
} */
.lilybrown_241025 .bgWhite::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--f_color-white);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-delay: 2s;
}

.lilybrown_241025 .bgWhite.bgWhite_active::before {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .lilybrown_241025 .spOnly {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .lilybrown_241025 .pcOnly {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .main-area .main-inner {
    width: 100%;
  }
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
                                                                                common model
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.lilybrown_241025 .model {
  position: relative;
}

.lilybrown_241025 .model__text__lead {
  margin-top: calc(99*(100vw / 750));
  text-align: center;
  font-size: calc(26*(100vw / 750));
  line-height: 2.5;
  letter-spacing: 0.06em;
}

@media screen and (min-width: 768px) {
  .lilybrown_241025 .model__text__title {
    width: 96rem;
    margin: 3.7rem auto 0;
  }

  .lilybrown_241025 .model__text__lead {
    font-size: 1.4rem;
    margin-top: 7.1rem;
  }
}








.wrap_ttl {
  width: calc(750* (100vw /750));
}

.content_detail {
  position: relative;
  z-index: 1;
}

.wrap_img {
  position: relative;
}

/* wrap-item___________________________*/
.wrap-item {
  position: relative;
  margin-top: calc(77*(100vw / 750));
}

.wrap-item::before {
  content: "";
  position: absolute;
  background: url(../img/svg/item_deco.svg) center/contain no-repeat;
  width: calc(40* (100vw /750));
  height: calc(40* (100vw /750));
}

.item-list {
  width: calc(190*(100vw / 750));
  display: block;
}

.item-sub {
  display: flex;
}

@media screen and (max-width: 767px) {

  /* column___________________________*/
  .wrap-item.column::before {
    top: calc(294*(100vw / 750));
    left: 50%;
    transform: translateX(-50%);
  }

  .wrap-item.column .item-main {
    width: fit-content;
    margin: auto;
  }

  .wrap-item.column .item-sub {
    margin-top: calc(120*(100vw / 750));
    gap: calc(50*(100vw / 750));
    justify-content: center;
  }

  /*tx___________________________*/
  .wrap-item.tx .item-main {
    padding-right: calc(350* (100vw /750));
  }

  .wrap-item.tx .content_ttl {
    top: calc(96* (100vw /750));
    right: calc(100* (100vw /750));
  }

  /*tx reverse___________________________*/
  .wrap-item.tx.reverse .item-main {
    padding-right: 0;
    padding-left: calc(350* (100vw /750));
  }

  .wrap-item.tx.reverse .content_ttl {
    top: calc(96* (100vw /750));
    right: initial;
    left: calc(100* (100vw /750));
  }
}

@media screen and (min-width: 768px) {
  .wrap_ttl {
    width: 70rem;
    margin: auto;
  }

  /* wrap-item___________________________*/
  .wrap-item {
    display: flex;
    justify-content: center;
    gap: 9rem;
    margin-top: 5.9rem;
  }

  .wrap-item::before {
    width: 3rem;
    height: 3rem;
    top: 7.7rem;
    left: 50%;
    transform: translateX(-550%);
  }

  .item-list {
    width: 14rem;
  }

  .item-sub {
    gap: 1rem;
  }

  /* pc_column___________________________*/
  .wrap-item.pc_column {
    display: block;
  }

  .wrap-item.pc_column::before {
    top: 21.6rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .wrap-item.pc_column .item-main {
    width: fit-content;
    margin: auto;
  }

  .wrap-item.pc_column .item-sub {
    margin-top: 9rem;
  }

  .wrap-item.pc_column .content_ttl {
    top: -5.9rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ===============================================
* section1 *
=============================================== */
#section1 {
  padding-top: calc(120* (100vw /750));
  padding-bottom: calc(160* (100vw /750));
}

/*  wrap_content1___________________________*/
.img01 {
  width: calc(600*(100vw / 750));
  margin: calc(89*(100vw / 750)) calc(40*(100vw / 750)) 0 auto;
}

.img01::before {
  content: "";
  position: absolute;
  background: url(../img/img01_bg.jpg) center/contain no-repeat;
  width: calc(150* (100vw /750));
  height: calc(423*(100vw / 750));
  top: calc(418*(100vw / 750));
  left: calc(-40*(100vw / 750));
  z-index: -1;
}

.img01 .content_ttl {
  top: calc(72*(100vw / 750));
  left: calc(-80*(100vw / 750));
}

.img02 {
  width: calc(670* (100vw /750));
  margin: calc(120* (100vw /750)) auto 0;
}

/* wrap_content2___________________________*/
.img03 {
  width: calc(680*(100vw / 750));
  margin: calc(239*(100vw / 750)) 0 0 0;
}

.border-image .wrap_img::before {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 100%;
  border: calc(2*(100vw / 750)) solid #000;
  z-index: 2;
}

@media screen and (max-width: 767px) {

  .img03 .wrap_img::before {
    top: calc(-31*(100vw / 750));
    left: calc(30*(100vw / 750));
  }

  .img03 .credit-container {
    text-align: right;
    margin-top: calc(32*(100vw / 750));
  }

  .img03 .credit-list {
    text-align: right;
    position: relative;
    left: calc(10* (100vw /750));
  }

  .img03 .content_ttl {
    top: calc(-90*(100vw / 750));
    right: calc(-30*(100vw / 750));
  }

  .img03 .creditBtn::after {
    right: calc(-7*(100vw / 750));
  }
}

@media screen and (min-width: 768px) {
  #section1 {
    padding-top: 8rem;
    padding-bottom: 10rem;
  }

  .model {
    display: flex;
    justify-content: center
  }

  /*  wrap_content1___________________________*/
  #section1 .wrap_content1 .model {
    gap: 6rem;
    padding-left: 5rem;
    margin-top: 4rem;
  }

  .img01 {
    width: 40rem;
    margin: 3.3rem 0 0 0;
  }

  .img01::before {
    width: 11.3rem;
    height: 31.9rem;
    top: 26.5rem;
    left: -5rem;
  }

  .img01 .content_ttl {
    top: 5.3rem;
    left: -9rem;
  }

  .img02 {
    width: 45rem;
    margin: 0;
  }

  .img02 .credit-container {
    text-align: right;
  }

  .img02 .credit-list {
    text-align: right;
    position: relative;
    left: 0.5rem;
  }

  /* wrap_content2___________________________*/
  .img03 {
    width: 51rem;
    margin: 14.8rem auto 0;
  }

  .border-image .wrap_img::before {
    border: 1px solid #000;
    box-sizing: border-box;
  }

  .img03 .wrap_img::before {
    width: 55rem;
    height: 72rem;
    top: -2rem;
    left: -2rem;
  }

  .img03 .credit-container {
    text-align: center;
    margin-top: 3rem;
  }

  .img03 .content_ttl {
    top: -4.8rem;
    left: 14.4rem;
  }
}

/* ===============================================
* sec2 *
=============================================== */
#section2 {
  padding-top: calc(120* (100vw /750));
  padding-bottom: calc(160* (100vw /750));
}

.img04 {
  width: calc(670* (100vw /750));
  margin: calc(93* (100vw /750)) auto 0;
}

.img05 {
  width: calc(540* (100vw /750));
  margin: calc(120* (100vw /750)) calc(85* (100vw /750)) 0 auto;
}

.img05 .wrap_img::before {
  content: "";
  position: absolute;
  background: url(../img/img05_bg.jpg) center/contain no-repeat;
  z-index: -1;
  width: calc(330* (100vw /750));
  height: calc(386* (100vw /750));
  top: calc(-40* (100vw /750));
  left: calc(-40* (100vw /750));
}

.img05 .credit-container {
  padding-right: calc(40*(100vw / 750));
}

@media screen and (max-width: 767px) {

  /* wrap_content2___________________________*/
  .img06 {
    width: calc(680* (100vw /750));
    margin: calc(237*(100vw / 750)) 0 0 auto;
  }

  .img06 .wrap_img::before {
    top: calc(-30* (100vw /750));
    left: calc(-30* (100vw /750));
  }

  .img06 .content_ttl {
    top: calc(-89*(100vw / 750));
    left: calc(-30* (100vw /750));
  }

  .img07 .wrap_img {
    width: calc(550* (100vw /750));
    margin: calc(80*(100vw / 750)) 0 0 0;
  }

  .img07 .credit-container {
    text-align: left;
    padding-left: calc(40* (100vw /750));
  }

  .img07 .credit-list {
    text-align: left;
    margin-left: calc(-10* (100vw /750));
  }
}

@media screen and (min-width: 768px) {
  #section2 {
    padding-top: 8rem;
    padding-bottom: 10rem;
  }

  #section2 .wrap_content1 {
    display: flex;
    margin-top: 9.1rem;
    justify-content: center;
    gap: 6rem;
  }

  .img04 {
    width: 42rem;
    margin: 4rem auto 0;
  }

  .img05 {
    width: 42rem;
    margin: 0;
  }

  .img05 .wrap_img::before {
    width: 24rem;
    height: 28.2rem;
    top: -3rem;
    left: -3rem;
  }

  .img05 .credit-container {
    padding-right: 0;
    text-align: left;
  }

  .img05 .credit-list {
    text-align: left;
    position: relative;
    left: -0.5rem;
  }

  .img05 .creditBtn::after {
    right: 0.2rem;
  }

  #section2 .wrap_content1 .wrap-item {
    margin-top: 8rem;
  }

  /* wrap_content2___________________________*/
  #section2 .wrap_content2 {
    display: grid;
    grid-template-rows: 20rem 34.8rem auto;
    grid-template-columns: 53rem auto;
    width: 118rem;
    margin: 14.8rem auto 0;
    padding-right: 2rem;
  }

  .img06 {
    width: 65rem;
    grid-area: 1/2/2/3;
  }

  .img06 .wrap_img::before {
    top: -2rem;
    left: 2rem;
  }

  .img06 .content_ttl {
    top: -4.8rem;
    right: -2rem;
  }

  .img07 {
    width: 38rem;
    grid-area: 2/1/3/2;
  }

  .img07 .creditBtn {
    width: 4rem;
  }

  .img07 .credit-container {
    text-align: left;
  }

  .img07 .credit-list {
    text-align: left;
    margin-left: -0.5rem;
  }

  #section2 .wrap_content2 .wrap-item {
    grid-area: 3 / 2 / 3 / 3;
    margin: 0;
  }
}



/* ===============================================
* sec3 *
=============================================== */
#section3 {
  padding-top: calc(120* (100vw /750));
  padding-bottom: calc(160* (100vw /750));
}

.img08 {
  margin-top: calc(73*(100vw / 750));
}

.img09 {
  width: calc(460*(100vw / 750));
  margin: calc(209*(100vw / 750)) auto 0;
}

.img09 .wrap_img::before {
  content: "";
  position: absolute;
  background: url(../img/img09_bg.jpg) center/contain no-repeat;
  width: calc(540* (100vw /750));
  height: calc(700* (100vw /750));
  top: calc(-44*(100vw / 750));
  left: calc(-40*(100vw / 750));
  z-index: -1;
}

@media screen and (max-width: 767px) {

  /* wrap_content2___________________________*/
  .img10 {
    width: calc(640* (100vw /750));
    margin: calc(277*(100vw / 750)) calc(40*(100vw / 750)) 0 auto;
  }

  .img10 .wrap_img::before {
    top: calc(-30*(100vw / 750));
    left: calc(-30*(100vw / 750));
  }

  .img10 .content_ttl {
    top: calc(-87*(100vw / 750));
    left: calc(-30*(100vw / 750));
  }

  .img11 .wrap_img {
    width: calc(580* (100vw /750));
    margin: calc(80*(100vw / 750)) 0 0 0;
  }

  .img11 .credit-container {
    text-align: left;
    padding-left: calc(40* (100vw /750));
  }

  .img11 .credit-list {
    text-align: left;
    margin-left: calc(-10* (100vw /750));
  }

  #section3 .wrap_content2 .wrap-item.column .item-sub {
    gap: calc(10* (100vw /750));
  }

  #section3 .wrap_content2 .wrap-item .item-sub .item-list {
    width: calc(160* (100vw /750));
  }
}

@media screen and (min-width: 768px) {
  #section3 {
    padding-top: 8rem;
    padding-bottom: 10rem;
  }

  .img08 {
    width: 48rem;
    margin: 4rem auto 0;
  }

  .img09 {
    width: 31rem;
    margin: 11.9rem auto 0;
  }

  .img09 .wrap_img::before {
    width: 35rem;
    height: 45.3rem;
    top: -2rem;
    left: -2rem;
  }

  #section3 .wrap_content1 .wrap-item {
    padding-left: 25rem;
  }

  #section3 .wrap_content1 .content_ttl {
    top: 7.8rem;
    left: 50%;
    transform: translateX(-204%);
  }

  #section3 .wrap_content1 .wrap-item::before {
    transform: translateX(109%);
  }

  #section3 .wrap_content2 .model {
    margin-top: 16.8rem;
    flex-direction: row-reverse;
    gap: 6rem;
  }

  .img10 {
    width: 45rem;
  }

  .img10 .wrap_img::before {
    top: -2rem;
    left: 2rem;
  }

  .img10 .content_ttl {
    top: -4.8rem;
    right: -2rem;
  }

  .img11 {
    width: 42rem;
    margin-top: 15rem;
  }

  .img11 .credit-container {
    text-align: left;
  }

  .img11 .creditBtn {
    width: 4rem;
  }

  .img11 .credit-list {
    text-align: left;
    margin-left: -0.4rem;
  }

  #section3 .wrap_content2 .wrap-item::before {
    transform: translateX(-800%);
  }
}


/* ===============================================
* sec4 *
=============================================== */
@media screen and (max-width: 767px) {

  #section4 {
    padding-top: calc(120* (100vw /750));
    padding-bottom: calc(160* (100vw /750));
  }

  .img12 {
    margin-top: calc(92*(100vw / 750));
  }

  .img13 .wrap_img {
    width: calc(640* (100vw /750));
    margin: calc(233*(100vw / 750)) calc(40*(100vw / 750)) 0 auto;
  }

  .img13 .wrap_img::before {
    top: calc(-30*(100vw / 750));
    left: calc(-30*(100vw / 750));
  }

  .img13 .content_ttl {
    top: calc(-89*(100vw / 750));
    left: calc(40*(100vw / 750));
  }
}

@media screen and (min-width: 768px) {
  #section4 {
    padding-top: 8rem;
    padding-bottom: 10rem;
  }

  #section4 .wrap_content1 {
    display: flex;
    justify-content: center;
    gap: 7rem;
    margin-top: 4.2rem;
  }

  .img12 {
    width: 45rem;
  }

  .img12 .credit-container {
    text-align: left;
  }

  .img12 .creditBtn {
    width: 4rem;
  }

  .img12 .credit-list {
    text-align: left;
    margin-left: -0.4rem;
  }

  #section4 .wrap_content1 .wrap-item {
    margin-top: 10rem;
  }

  .img13 .wrap_img {
    width: 50rem;
    margin: 14.9rem auto 0;
  }

  .img13 .wrap_img::before {
    width: 54rem;
    height: 70.6rem;
    top: -2rem;
    left: -2rem;
  }

  .img13 .content_ttl {
    top: -4.8rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .img13 .credit-container {
    margin-top: 2.8rem;
  }
}

/* ===============================================
* sec5 *
=============================================== */
@media screen and (max-width: 767px) {

  #section5 {
    padding-top: calc(120* (100vw /750));
    padding-bottom: calc(160* (100vw /750));
  }

  .img14 {
    width: calc(620* (100vw /750));
    margin: calc(90*(100vw / 750)) 0 0 auto;
  }

  .img14 .content_ttl {
    top: calc(91*(100vw / 750));
    left: calc(-100*(100vw / 750));
  }

  .img14 .credit-container {
    text-align: right;
    padding-right: calc(40* (100vw /750));
  }

  .img14 .creditBtn::after {
    right: calc(-6*(100vw / 750));
  }

  .img14 .credit-list {
    text-align: right;
    position: relative;
    left: calc(10* (100vw /750));
  }

  .img15-16 {
    display: flex;
    justify-content: center;
    gap: calc(20* (100vw /750));
    margin-top: calc(110*(100vw / 750));
    margin-bottom: calc(80*(100vw / 750));
  }

  .img15 {
    width: calc(326* (100vw /750));
  }

  .img15::before {
    content: "";
    position: absolute;
    background: url(../img/img15_bg.jpg) center/contain no-repeat;
    width: calc(100* (100vw /750));
    height: calc(320* (100vw /750));
    top: calc(-40*(100vw / 750));
    left: calc(-40*(100vw / 750));
    z-index: -1;
  }

  .img16 {
    width: calc(326* (100vw /750));
    margin-top: calc(82*(100vw / 750));
  }

  .img17 {
    width: calc(680* (100vw /750));
    margin: calc(236*(100vw / 750)) 0 0 auto;
  }

  .img17 .content_ttl {
    top: calc(-89*(100vw / 750));
    left: calc(-30* (100vw /750));
  }

  .img17 .wrap_img::before {
    top: calc(-30* (100vw /750));
    left: calc(-30* (100vw /750));
  }

  .img17 .credit-container {
    text-align: left;
  }

  .img17 .credit-list {
    text-align: left;
    position: relative;
    left: calc(-10* (100vw /750));
  }

  .img18 {
    width: calc(670* (100vw /750));
    margin: calc(162*(100vw / 750)) auto 0;
  }
}

@media screen and (min-width: 768px) {
  #section5 {
    padding-top: 8rem;
    padding-bottom: 10rem;
  }

  #section5 .wrap_content1 {
    display: flex;
    justify-content: center;
    gap: 15rem;
    margin-top: 4rem;
    flex-direction: row-reverse;
    padding-right: 2rem;
  }

  .img14 {
    width: 48rem;
  }

  .img14 .content_ttl {
    top: 7.4rem;
    right: -6rem;
  }

  .img14 .credit-container {
    text-align: right;
    position: relative;
    left: 0.5rem;
  }

  .img14 .credit-list {
    text-align: right;
  }

  .img15-16 {
    display: flex;
    justify-content: space-between;
    width: 55rem;
    margin-top: 24rem;
  }

  .img15 {
    width: 26rem;
    height: 34.7rem;
  }

  .img15::before {
    content: "";
    position: absolute;
    background: url(../img/img15_bg.jpg) center/contain no-repeat;
    width: 9rem;
    height: 29rem;
    top: -4rem;
    left: -4rem;
    z-index: -1;
  }

  .img16 {
    width: 26rem;
    margin-top: 8rem;
  }

  .img17 {
    width: 48rem;
    margin: 15rem auto 0;
  }

  .img17 .content_ttl {
    top: -4.8rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .img17 .wrap_img::before {
    width: 52rem;
    height: 68rem;
    top: -2rem;
    left: -2rem;
  }

  .img17 .credit-container {
    margin-top: 3rem;
  }

  .img18 {
    width: 40rem;
    margin: 10rem auto 0;
  }
}

/* ===============================================
* credit *
=============================================== */
.credit-container {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-family: "area-normal", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(24* (100vw /750));
  letter-spacing: 0.02em;
  margin-top: calc(34* (100vw /750));
}

.creditBtn {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: calc(130*(100vw / 750));
  padding-right: calc(50* (100vw /750));
}

/* アコーディオンボタン矢印___________________________*/
.creditBtn::after {
  content: "";
  position: absolute;
  right: calc(-5*(100vw / 750));
  transform: translateX(-50%) translateZ(0) rotate(0);
  width: calc(16* (100vw / 750));
  height: calc(16* (100vw / 750));
  border-top: calc(2* (100vw /750)) solid #000;
  border-right: calc(2* (100vw /750)) solid #000;
  transform: translateX(-50%) translateZ(0) rotate(-45deg) scale(1, 1);
  top: calc(8*(100vw / 750));
  transition: transform 0.5s;
}

.creditBtn.open::after {
  -webkit-transform: translateX(-50%) translateZ(0) rotate(-45deg) scale(-1, -1);
  transform: translateX(-50%) translateZ(0) rotate(-45deg) scale(-1, -1);
  top: calc(-1*(100vw / 750));
}

.credit-inner {
  display: none;
}

.credit-list {
  text-align: center;
  margin-top: calc(20* (100vw /750));
}

.credit-list-item {
  display: inline-block;
  padding: 0 calc(10*(100vw / 750));
  line-height: 2;
}


.block-bg {
  transition: all 1s ease;
  margin-top: calc(100* (100vw /750));
}

@media screen and (min-width: 768px) {
  .credit-container {
    font-size: 1.2rem;
    margin-top: 1rem;
  }

  .creditBtn {
    width: 3.8rem;
    padding-right: 2.8rem;
  }

  /* アコーディオンボタン矢印___________________________*/
  .creditBtn::after {
    right: 0.2rem;
    width: 0.7rem;
    height: 0.7rem;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    top: 0.4rem;
  }

  .creditBtn.open::after {
    top: -0.1rem;
  }

  .credit-list {
    margin-top: 1.1rem;
  }

  .credit-list-item {
    padding: 0 0.5rem;
  }

  .main-area .block-bg {
    padding: 0;
    margin-top: 6.8rem;
  }

  #section1 .wrap_img {
    background: #E4EAE8;
  }

  #section2 .wrap_img {
    background: #E2E2D5;
  }

  #section3 .wrap_img {
    background: #E5DBCF;
  }

  #section4 .wrap_img {
    background: #E8E6DD;
  }

  #section5 .wrap_img {
    background: #E2DFD9;
  }
}


/* ===============================================
* btn_wrap *
=============================================== */
.btn_wrap {
  width: calc(690*(100vw / 750));
  display: flex;
  flex-direction: column;
  padding: calc(159*(100vw / 750)) 0 calc(198*(100vw / 750));
  margin: auto;
}

@media screen and (min-width: 768px) {
  .btn_wrap {
    width: 42rem;
    padding: 9.8rem 0 15rem;
    margin: auto;
  }
}

/* ===============================================
* animation *
=============================================== */

/*** アニメーションさせる要素 ***/
.content_ttl {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.content_ttl.-a::before {
  content: "";
  position: absolute;
  background: #000;
  height: calc(2* (100vw /750));
  width: calc(272* (100vw /750));
  top: calc(54*(100vw / 750));
  left: 0;
}

.font-animation {
  display: flex;
  overflow: hidden;
  height: calc(52* (100vw /750));
}

.content_ttl.-b .font-animation {
  height: calc(62* (100vw /750));
}

.font-animation span {
  font-family: amandine, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(38* (100vw /750));
  letter-spacing: 0.02em;
  transform: translateY(110%);
  /*下（範囲外）に隠しておく*/
  display: block;
  /*ブロック要素に変更*/
}

@media screen and (min-width: 768px) {

  .content_ttl.-a::before {
    height: 1px;
    width: 18.8rem;
    top: 2.8rem;
  }

  .font-animation {
    height: 2.4rem;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
  }

  .content_ttl.-b .font-animation {
    height: 2.4rem;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
  }

  .font-animation span {
    font-size: 2.6rem;
  }
}

/*** スクロールで画面に入った場合 ***/
.font-animation.active span {
  animation: 0.35s font-animation linear forwards;
  /*一度だけのアニメーション（終了時点で固定）*/
}

/*** 各文字のアニメーション遅延時間 ***/
.font-animation span:nth-child(1) {
  animation-delay: 0s;
}

.font-animation span:nth-child(2) {
  animation-delay: 0.05s;
}

.font-animation span:nth-child(3) {
  animation-delay: 0.1s;
}

.font-animation span:nth-child(4) {
  animation-delay: 0.15s;
}

.font-animation span:nth-child(5) {
  animation-delay: 0.2s;
}

.font-animation span:nth-child(6) {
  animation-delay: 0.25s;
}

.font-animation span:nth-child(7) {
  animation-delay: 0.3s;
}

.font-animation span:nth-child(8) {
  animation-delay: 0.35s;
}

.font-animation span:nth-child(9) {
  animation-delay: 0.4s;
}

.font-animation span:nth-child(10) {
  animation-delay: 0.45s;
}

.font-animation span:nth-child(11) {
  animation-delay: 0.5s;
}

.font-animation span:nth-child(12) {
  animation-delay: 0.55s;
}

.font-animation span:nth-child(13) {
  animation-delay: 0.6s;
}

.font-animation span:nth-child(14) {
  animation-delay: 0.65s;
}

.font-animation span:nth-child(15) {
  animation-delay: 0.7s;
}

.font-animation span:nth-child(16) {
  animation-delay: 0.75s;
}

.font-animation span:nth-child(17) {
  animation-delay: 0.8s;
}

.font-animation span:nth-child(18) {
  animation-delay: 0.85s;
}

.font-animation span:nth-child(19) {
  animation-delay: 0.9s;
}

.font-animation span:nth-child(20) {
  animation-delay: 0.95s;
}

/*** 下から登場するアニメーション ***/
@keyframes font-animation {
  0% {
    transform: translateY(110%);
    /*表示範囲外から*/
  }

  100% {
    transform: translateY(0);
    /*通常の位置へ*/
  }
}



.modelImage-animation {
  opacity: 0;
  transition: ease-in, opacity 2000ms;
  -webkit-transition: ease-in, opacity 2000ms;
}

.modelImage-animation.active {
  opacity: 1;
}