@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap");

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

.sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}
a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.mt10 {
  margin-top: 10px;
}

.site-main {
  font-family: "Zen Maru Gothic", serif;
  font-weight: bold;
  font-feature-settings: "palt";
  overflow: hidden;
}

.site-main .headline {
  text-align: center;
  width: fit-content;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 2px;
}

@media only screen and (min-width: 768px) {
  .row {
    max-width: 1140px;
  }
}

.row {
  width: 100%;
  margin: auto;
}

.site-main .section-hero,
.site-main .section-voice {
  max-width: initial;
  background-color: #fffad9;
  position: relative;
  z-index: 1;
}

.section-hero .headline {
  padding-top: 100px;
  position: relative;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 767px) {
  .section-hero .headline {
    padding-top: 65px;
  }
  .section-hero .headline img {
    max-width: 375px;
  }
}

.section-hero .figure.photo {
  position: absolute;
  z-index: 2;
  width: max-content;
}

.section-hero .figure.photo:nth-of-type(1):not(.scatter-img) {
  top: 40px;
  right: calc(50% + 310px);
  animation: updown-s 1.4s infinite alternate ease-in-out;
  width: 196px;
}

.section-hero .figure.photo:nth-of-type(2) {
  top: 20px;
  left: calc(50% + 390px);
  animation: updown-l 1.8s infinite alternate ease-in-out;
  width: 390px;
}

.section-hero .figure.photo:nth-of-type(3) {
  top: 40%;
  right: calc(50% + 415px);
  animation: updown-l 1.5s infinite alternate ease-in-out;
  width: 378px;
}

.section-hero .figure.photo:nth-of-type(4) {
  top: 63%;
  left: calc(50% + 260px);
  animation: updown-s 2s infinite alternate ease-in-out;
  width: 181px;
}

.section-hero .figure.photo:nth-of-type(5) {
  bottom: -15%;
  right: calc(50% + 240px);
  animation: updown-s 1.2s infinite alternate ease-in-out;
  width: 215px;
}

.section-hero .figure.photo:nth-of-type(6) {
  left: calc(50% + 450px);
  bottom: -70px;
  animation: updown-s 1s infinite alternate ease-in-out;
  width: 240px;
}

@keyframes updown-l {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(20px);
  }
}

@keyframes updown-s {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(10px);
  }
}

.section-hero .figure.photo.scatter-img {
  top: 15px;
  z-index: 1;
  left: calc(50% - 65px);
  transform: translateX(-50%);
}

.section-hero .figure.photo:nth-of-type(7) {
  bottom: -90px;
  right: calc(50% + 510px);
}

.section-hero .figure.photo:nth-of-type(8) {
  bottom: -60px;
  left: calc(50% + 160px);
}

.section-hero .figure.photo:nth-of-type(9) {
  bottom: -140px;
  left: calc(50% + 416px);
  width: 102px;
}

@media only screen and (max-width: 767px) {
  .section-hero .figure.photo:nth-of-type(1):not(.scatter-img) {
    top: 40px;
    right: calc(50% + 70px);
    width: 80px;
  }

  .section-hero .figure.photo:nth-of-type(2) {
    width: 140px;
    left: calc(50% + 70px);
    top: 10px;
  }

  .section-hero .figure.photo:nth-of-type(3) {
    width: 140px;
    right: calc(50% + 70px);
    bottom: -50px;
    top: initial;
  }

  .section-hero .figure.photo:nth-of-type(4) {
    width: 65px;
    left: calc(50% + -40px);
    top: 80px;
    z-index: 11;
  }

  .section-hero .figure.photo:nth-of-type(5) {
    width: 80px;
    right: calc(50% + -40px);
    bottom: -50px;
    top: initial;
  }

  .section-hero .figure.photo:nth-of-type(6) {
    width: 80px;
    bottom: -20px;
    top: initial;
    left: calc(50% + 90px);
  }

  .section-hero .figure.photo.scatter-img {
    top: 10px;
    left: calc(50% - 220px);
    z-index: 0;
    transform: none;
    width: 398px;
  }
  .section-hero .figure.photo.scatter-img img {
    height: 100%;
  }

  .section-hero .figure.photo:nth-of-type(7),
  .section-hero .figure.photo:nth-of-type(8),
  .section-hero .figure.photo:nth-of-type(9) {
    display: none;
  }
}

.section-about {
  position: relative;
  z-index: 0;
  background-color: #93c69c;
}

.filter-img {
  background-image: url("../img/bk-filter.png");
  background-size: 1440px;
  width: 100%;
  height: 100%;
  position: absolute;
  mix-blend-mode: overlay;
  top: 0;
  left: 0;
}

.section-hero::after,
.section-voice::before,
.section-voice::after {
  content: "";
  display: block;
  height: 50px;
  background-position: calc(50% - 100px);
  background-repeat: repeat-x;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .section-hero::after,
  .section-voice::before,
  .section-voice::after {
    height: 14px;
  }
}

.section-voice::before {
  top: 0;
  bottom: initial;
  transform: translateY(-100%);
}

.section-hero::after {
  background-image: url("../img/wave-bottom.png");
  background-position: calc(50% - 100px) -1px;
}

.section-about::after {
  content: "";
  display: block;
  height: 50px;
  background-repeat: repeat-x;
  background-position: center;
}

@media only screen and (max-width: 767px) {
  .section-about::after {
    height: 14px;
  }
}

.section-about::after {
  background-image: url("../img/wave-middle.png");
  background-size: contain;
}

.section-voice::before {
  background-image: url("../img/wave-top.png");
  background-position: calc(50% - 230px) 1px;
}

.section-voice::after {
  background-image: url("../img/wave-bottom.png");
  background-position: calc(50% - 100px) -1px;
}

@media only screen and (max-width: 767px) {
  .section-hero::after,
  .section-voice::before,
  .section-voice::after {
    background-size: contain;
  }
}

.section-about .about-scatter-imgs .figure {
  position: absolute;
  width: max-content;
  z-index: 3;
}

.section-about .banner-imgs .figure {
  margin-left: 12px;
  margin-right: 12px;
}

@media only screen and (max-width: 767px) {
  .section-about .banner-imgs {
    margin-top: 60px;
    margin-bottom: 13px;
  }

  .section-about .banner-imgs .figure {
    margin-left: 12px;
    margin-right: 12px;
  }

  .section-about .banner-imgs .figure:first-of-type {
    margin-bottom: 20px;
  }
}

.section-content {
  position: relative;
  z-index: 2;
}

.section-about .section-content {
  padding-top: 160px;
  padding-bottom: 252px;
}

@media only screen and (max-width: 767px) {
  .section-about .section-content {
    padding-top: 50px;
    padding-bottom: 95px;
  }
}

.site-main .figure {
  width: fit-content;
  margin-inline: auto;
  display: block;
}

.site-main img {
  width: 100%;
}

.site-main .flex-area,
.footer .flex-area {
  display: flex;
  justify-content: center;
  margin-inline: auto;
}

@media only screen and (min-width: 768px) {
  .site-main .frame-wrap {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .section-lineup .section-content,
  .section-about .section-content {
    padding-left: 25px;
    padding-right: 25px;
    width: fit-content;
    max-width: -webkit-fill-available;
  }

  .site-main .flex-area,
  .footer .flex-area {
    flex-direction: column;
    align-items: center;
  }
}

.site-main .frame-wrap,
.section-lineup .lineup-item {
  padding: 15px;
  background-color: #fffad9;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.section-lineup .frame-box {
  padding: 35px 15px 30px 40px;
}

.section-lineup .frame-box:last-of-type {
  padding: 25px 25px 25px 40px;
}

.site-main .frame-box-outside {
  border: 4px solid #231815;
  border-radius: 2px;
}

.section-about .frame-box {
  border: none;
  border-bottom: 2px solid #231815;
}
.section-about .frame-box.box02 {
  border-top: 2px solid #231815;
  border-bottom: 2px solid #231815;
}

.section-about .frame-box:last-of-type {
  border-bottom: none;
}

@media only screen and (max-width: 767px) {
  .section-lineup .frame-box:last-of-type {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
  }

  .section-lineup .frame-box {
    padding: 30px;
  }
  .frame-box-outside,
  .section-about .frame-box {
    border-width: 2px !important;
  }
}

.frame-box-outside,
.section-about .frame-box {
  position: relative;
}

.section-about .leaf-illust01 {
  top: -110px;
  right: calc(50% + 580px);
}
.section-about .soy-illust01 {
  top: -20px;
  left: calc(50% + 290px);
}
.section-about .soy-illust02 {
  top: 220px;
  right: calc(50% + 530px);
}

.section-about .ice-illust {
  left: calc(50% + 420px);
  top: 120px;
}

.section-about .leaf-illust02 {
  top: -30px;
  right: calc(50% + 470px);
}
.section-about .soy-illust03 {
  top: 180px;
  left: calc(50% + 420px);
}

.section-about .leaf-illust03 {
  width: 140px !important;
  left: calc(50% + 500px);
  bottom: 50px;
}

.section-about .soy-illust04 {
  right: calc(50% + 400px);
  bottom: -70px;
}

.section-about .frame-box {
  padding: 50px 60px 60px;
  text-align: center;
}

.section-about .frame-box.box01 {
  margin-bottom: 7px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.frame-box.box02 {
  border-bottom: none;
}

.frame-box.box02 .headline,
.frame-box.box02 .notes {
  position: relative;
  z-index: 4;
}

.section-about .frame-box.box02 .h2 {
  margin-top: -15px;
  margin-bottom: 10px;
}
.section-about .frame-box.box02 .h2::before {
  bottom: -10px;
  position: relative;
  margin-right: 10px;
}
.about__txt p:not(.notes) {
  letter-spacing: -1px;
}
@media only screen and (max-width: 767px) {
  .about__txt p:not(.notes) {
    letter-spacing: initial;
  }
}

.notes {
  font-family: "Noto Sans CJK JP", sans-serif;
}
.about__txt .notes {
  font-size: 14px;
  letter-spacing: initial;
}
.section-about .frame-box.box03 {
  border-top-width: 1px;
}

.section-about .frame-box.box03 .h2 {
  margin-top: 30px;
  margin-bottom: 40px;
  line-height: calc(46 / 30);
}

.section-about .frame-box.box03 .h2::before {
  top: -35px;
  position: relative;
  margin-right: 15px;
}

@media only screen and (max-width: 767px) {
  .section-about .frame-box.box02 .h2::before {
    bottom: 0;
    margin-top: 45px;
  }
  .section-about .frame-box.box02 .h2,
  .section-about .frame-box.box03 .h2 {
    margin-bottom: 35px;
  }

  .section-about .leaf-illust01 {
    right: calc(50% + 100px);
    width: 120px !important;
    top: -35px;
  }
  .section-about .soy-illust01 {
    left: calc(50% + 70px);
    width: 60px !important;
    top: -14px;
  }
  .section-about .soy-illust02 {
    right: calc(50% + 115px);
    width: 40px !important;
    top: 290px;
  }

  .section-about .ice-illust {
    left: calc(50% + 60px);
    width: 165px !important;
    top: 270px;
  }

  .section-about .leaf-illust02 {
    right: calc(50% + 80px);
    width: 130px !important;
    top: -90px;
  }
  .section-about .soy-illust03 {
    left: calc(50% + 90px);
    top: -20px;
    width: 60px !important;
  }

  .section-about .leaf-illust03 {
    left: calc(50% + 100px);
    width: 100px !important;
    bottom: -20px;
  }

  .section-about .soy-illust04 {
    right: calc(50% + 80px);
    bottom: -50px;
    width: 70px !important;
  }

  .site-main .frame-wrap,
  .section-lineup .frame-box-outside {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  }

  .section-about .frame-box-outside .frame-box {
    padding: 50px 15px;
  }

  .section-about .frame-box.box02 {
    padding-top: 70px;
  }

  .section-about .frame-box.box01 {
    margin-bottom: 4px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .section-about .frame-box:last-of-type {
    padding-bottom: 30px;
  }
}

.frame-wrap .h2,
.section-lineup .h2,
.section-voice .h2 {
  margin-bottom: 15px;
  font-size: 40px;
}

@media only screen and (min-width: 768px) {
  .section-lineup .section-content {
    padding-top: 250px;
    padding-bottom: 160px;
  }

  .section-lineup .headline {
    margin-top: 100px;
  }
}

.section-lineup .section-content {
  padding-top: 80px;
}

.section-lineup .headline .flex-area {
  align-items: flex-end;
}

@media only screen and (min-width: 768px) {
  .site-main .h2::before {
    margin-right: 15px;
  }

  .site-main .h2 span {
    display: inline-block;
  }

  .section-about .frame-box p:not(.notes, .catch-txt, .about__catch) {
    font-size: 20px;
    line-height: calc(36 / 20);
  }
}

.section-about .box01 .catch-txt,
.section-about .h2 {
  font-size: 30px;
  line-height: calc(50 / 30);
}

@media only screen and (max-width: 767px) {
  .section-about .frame-box p {
    font-size: 12px;
    line-height: calc(24 / 12);
  }

  .section-lineup .section-content {
    padding-top: 10px;
  }
  .frame-wrap .h2,
  .section-lineup .h2,
  .section-voice .h2 {
    font-size: 24px;
  }

  .site-main .frame-box .catch-txt,
  .section-about .h2 {
    font-size: 16px;
    line-height: calc(28 / 16);
    letter-spacing: -1px;
  }
  .section-about .h2 {
    line-height: calc(24 / 16);
    letter-spacing: 0;
  }
  .site-main .frame-box .catch-txt:first-of-type {
    margin-bottom: 30px;
    letter-spacing: -1px;
  }
}

.site-main .frame-wrap .h2,
.section-voice .h2 {
  color: #873f00;
}

.section-about .frame-box .about__catch {
  background-image: url("../img/headline-bk.jpg");
  color: #fffad9;
  border-radius: 50px;
  width: fit-content;
  margin-inline: auto;
  padding: 12px 35px;
  line-height: 1;
  font-size: 26px;
  letter-spacing: 2px;
  font-weight: 500;
}
.frame-box.box03 .about__catch {
  padding-left: 50px;
  padding-right: 50px;
}

.site-main .h2::before {
  background-image: url("../img/icon.svg");
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: 51px;
  height: 80px;
}

@media only screen and (max-width: 767px) {
  .site-main .h2::before {
    width: 30px;
    height: 50px;
    display: block;
    margin-top: 32px;
    margin-inline: auto !important;
    margin-bottom: 15px;
    top: initial !important;
  }
  .section-voice .h2::before {
    display: inline-block;
    margin-bottom: -14px;
    padding-right: 10px;
    margin-top: 0;
  }

  .section-about .frame-box .about__catch {
    font-size: 16px;
    padding: 7px 12px 9px;
    letter-spacing: -1px;
  }
  .frame-box.box03 .about__catch {
    padding-left: 35px;
    padding-right: 35px;
  }
}

.section-lineup .h2::before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 72px;
  background-image: url("../img/icon-w.svg");
  background-repeat: no-repeat;
  position: relative;
  bottom: -15px;
}

@media only screen and (max-width: 767px) {
  .section-lineup .h2 {
    margin-top: 50px;
    display: flex;
    align-items: flex-end;
    line-height: 1;
  }

  .section-lineup .h2::before {
    width: 30px;
    height: 50px;
    position: relative;
    bottom: -28px;
    padding-right: 8px;
  }
}

.section-about .frame-box p span {
  color: #de5416;
  margin-top: 20px;
}

.section-about .frame-box.box01 .notes {
  font-size: 14px;
  margin-top: 7px;
}
.section-about .frame-box.box02 .notes {
  margin-top: 30px;
  line-height: 1.5;
}

.section-about .about__title {
  margin-inline: auto;
}
.section-about .about-cell {
  background-color: #eae6c3;
  border-radius: 30px;
  padding: 30px;
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .section-about .about-cell {
    padding: 20px 20px 25px;
    border-radius: 20px;
  }
  .notes {
    font-size: 10px !important;
  }

  .section-about .frame-box .notes {
    margin-top: 15px;
    line-height: calc(15 / 10);
  }

  .section-about .about__title {
    margin-top: 30px;
  }
}

.about-cell .notes {
  font-size: 14px;
  margin-top: 10px;
}
.site-main .h3 {
  font-size: 26px;
  color: #873f00;
}

.section-flow .h2 {
  margin-top: 15px !important;
}
.section-flow .h2::before {
  top: 17px !important;
}
.section-flow .flow__h3 {
  font-weight: bold;
  margin-bottom: 8px;
}

.section-flow .flex-area {
  position: relative;
  z-index: 4;
}
@media only screen and (max-width: 767px) {
  .section-flow .flow__h3 {
    margin-top: 8px;
  }

  .section-flow .flex-area {
    width: 262px;
  }
}

.section-flow .flow-cell:nth-of-type(1) .figure {
  max-width: 176px;
}
.section-flow .flow-cell:nth-of-type(2) .figure {
  max-width: 132px;
}
.section-flow .flow-cell:nth-of-type(3) .figure {
  max-width: 83px;
}
.section-flow .flow-cell:nth-of-type(4) .figure {
  max-width: 179px;
}

@media only screen and (min-width: 768px) {
  .section-flow .flow-cell:nth-of-type(4) .flow__txt {
    margin-left: 50px;
  }

  .section-flow .arrow {
    width: fit-content;
  }
  .section-flow .arrow img {
    width: 48px;
    min-width: 48px;
  }

  .section-flow .flex-area {
    max-width: 860px;
    letter-spacing: 2px;
  }

  .section-flow .flow-cell:nth-of-type(3) {
    margin-left: -35px;
  }

  .section-flow .flow-cell:nth-of-type(2) {
    margin-left: -20px;
  }
  .section-flow .arrow:nth-of-type(1) {
    margin-left: 20px;
  }

  .section-flow .arrow:nth-of-type(3) {
    margin-left: -35px;
    margin-right: 10px;
  }

  .section-flow .flow-cell {
    white-space: nowrap;
  }

  .flow-cell .figure {
    height: 130px;
  }

  .section-flow .flow__txt {
    height: 126px;
  }
  .section-flow .arrow {
    margin-top: -60px;
  }

  .section-flow .flow-cell:nth-of-type(1) img {
    min-width: 170px;
  }
  .section-flow .flow-cell:nth-of-type(4) img {
    min-width: 174px;
    padding-top: 15px;
  }
}
.section-flow .flex-area {
  align-items: center;
}
@media only screen and (max-width: 900px) {
  .section-flow .flex-area {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .section-flow .flow-cell:nth-of-type(4) .flow__txt {
    margin-left: 20px;
  }

  .site-main .about-cell {
    padding-left: 20px;
    padding-right: 20px;
  }
  .site-main .about-cell:first-of-type {
    margin-top: 35px;
  }
  .site-main .h3 {
    font-size: 16px;
  }
  .frame-box.box03 .about__title {
    margin-top: 0 !important;
    margin-bottom: 15px !important;
  }
  .section-flow .h2::before {
    margin-bottom: 30px;
    margin-top: 15px;
  }

  .section-flow .flex-area {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .section-flow .flow-cell:nth-of-type(1) {
    margin-left: 10px;
  }

  .section-flow .flow-cell:nth-of-type(1) .figure {
    width: 100px;
  }

  .section-flow .flow-cell:nth-of-type(2) .figure {
    width: 90px;
  }

  .section-flow .flow-cell:nth-of-type(3) .figure {
    width: 50px;
  }

  .section-flow .flow-cell:nth-of-type(4) .figure {
    width: 100px;
  }

  .section-flow .arrow {
    width: 30px;
    margin: 0;
    margin-top: -70px;
  }
  .section-flow .arrow:nth-of-type(1) {
    padding-left: 10px;
  }

  .section-flow .flow-cell:nth-of-type(3) {
    margin-left: -15px;
  }
  .section-flow .arrow:nth-of-type(3) {
    margin-left: -15px;
  }

  .section-flow .flow-cell:nth-of-type(3) p {
    white-space: nowrap;
  }
}

.section-flow .flow__txt {
  font-weight: normal;
  width: fit-content;
}

.section-flow .flow__txt p {
  line-height: 1.2;
  font-weight: 500;
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 18px !important;
  line-height: 1 !important;
}

@media only screen and (max-width: 767px) {
  .section-flow .flow__txt p {
    font-size: 12px !important;
  }

  .section-flow .flow01 .flow__txt {
    margin-top: 20px;
  }
}

.site-main .bk-ice-img {
  position: relative;
}

.site-main .bk-ice-img .figure {
  position: absolute;
}

.site-main .section-lineup {
  position: relative;
  background-color: #71b281;
}

.section-lineup .ice-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -170px;
  min-width: max-content;
}

.section-lineup .headline.flex-area {
  align-items: flex-end;
}

.section-lineup .headline svg {
  fill: #fffad9;
  width: 51px;
  height: 80px;
  margin-inline: auto;
}

@media only screen and (max-width: 767px) {
  .site-main .section-lineup {
    padding-bottom: 50px;
  }
  .section-lineup .ice-img {
    min-width: initial;
    width: 350px;
    top: -60px;
  }
}

.section-lineup .headline .h2 {
  color: #fffad9;
}

@media only screen and (min-width: 768px) {
  .section-lineup .frame-box:first-of-type {
    margin-right: 5px;
    border-bottom: none;
  }
}

.section-lineup .frame-box:nth-of-type(2) {
  border-top: none;
  border-right: none;
  border-bottom: none;
}

.section-lineup .frame-box:nth-of-type(3),
.section-lineup .frame-box:last-of-type {
  border-bottom: none;
  border-right: none;
}

.section-lineup .lineup-item:nth-of-type(1) {
  margin-top: 50px;
}
.section-lineup .lineup-item {
  margin-top: 60px;
}
.section-lineup .lineup-item:last-child {
  margin-bottom: 150px;
}

@media only screen and (max-width: 767px) {
  .section-lineup .frame-box:first-of-type {
    margin-bottom: 3px;
    border-bottom: 1px solid;
  }
  .section-lineup .frame-box:first-of-type,
  .section-lineup .frame-box:nth-of-type(3),
  .section-lineup .frame-box:last-of-type {
    border-left: none;
    border-right: none;
  }
  .section-lineup .frame-box:nth-of-type(2) {
    border-left: none;
    border-top: 1px solid #231815;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-lineup .lineup-item:nth-of-type(1) {
    margin-top: 40px;
  }
  .section-lineup .lineup-item {
    margin-top: 25px;
  }
  .section-lineup .lineup-item:last-child {
    margin-bottom: 50px;
  }
}

.section-lineup .lineup-item.frame-box-outside {
  border: none;
}

.section-lineup .item-cel {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 4px solid #231815;
  border-radius: 2px;
}

@media only screen and (min-width: 768px) {
  .section-lineup .item-img {
    grid-area: 1 / 1 / 3 / 2;
  }

  .section-lineup .lineup-item-name {
    grid-area: 1 / 2 / 2 / 3;
  }

  .section-lineup .item-txt {
    grid-area: 2 / 2 / 3 / 3;
    font-size: 20px;
    line-height: calc(40 / 20);
  }

  .section-lineup .material {
    grid-area: 3 / 1 / 4 / 3;
  }
}

.section-lineup .item-txt {
  border-left: 2px solid #231815;
  border-top: 2px solid #231815;
}

.section-lineup .item-img {
  padding: 30px 20px 15px 60px;
  border-right: 2px solid #231815;
}
.section-lineup .item-img img {
  max-width: 360px;
}

@media only screen and (max-width: 767px) {
  .section-lineup .item-txt {
    border-top-width: 1px;
  }
  .section-lineup .item-cel {
    border-width: 2px;
  }
  .section-lineup .item-img {
    padding: 20px 15px 20px 40px;
  }
}

.section-lineup .material.flex-area {
  justify-content: space-between;
  border-top: 2px solid #231815;
}
@media only screen and (max-width: 767px) {
  .section-lineup .material.flex-area {
    border-top-width: 1px;
  }
}

.section-lineup .material {
  width: -moz-available;
  width: -webkit-fill-available;
}

.section-lineup .material p {
  font-size: 16px;
  line-height: calc(26 / 16);

  font-family: "Noto Sans CJK JP", sans-serif;
}

@media only screen and (min-width: 768px) {
  .section-lineup .material p {
    max-width: 674px;
    width: 100%;
  }

  .section-lineup .material a {
    margin-left: 20px;
  }
  .section-lineup .material a {
    width: 280px !important;
    white-space: nowrap;
  }
}

.more-btn a {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
}
.section-lineup .material a,
.footer .more-btn a {
  background-image: url("../img/btn-bk.png");
  background-repeat: repeat-x;
  border-radius: 50px;
  color: #fffad9;
  position: relative;
  width: fit-content;
  height: fit-content;
  display: inline-block;
  line-height: 1;
}
.section-lineup .material a {
  font-size: 18px;
  padding: 22px 30px;
  text-align: center;
}

.footer .more-btn a {
  margin-inline: auto;
  display: block;
  padding: 30px 60px;
}

.section-lineup .material a::after,
.footer .more-btn a::after {
  content: "▶︎";
  color: #fffad9;
  font-size: 12px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.footer .more-btn a::after {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .footer .more-btn a {
    padding: 21px 35px;
  }

  .section-lineup .material a::after,
  .footer .more-btn a::after {
    font-size: 10px;
  }
  .section-lineup .material a {
    padding: 16px 35px;
    font-size: 14px;
  }
}

.section-lineup p,
.section-lineup .item-name {
  text-align: left;
}

.section-lineup .item-name {
  color: #231815;
  font-size: 40px;
  line-height: 1;
}
.section-lineup .lineup-item-name {
  border-left: 2px solid #231815;
}
.section-lineup .lineup-item-name .sub-info {
  font-size: 25px;
  margin-top: 10px;
  line-height: 1;
}

.lineup-scatter-imgs .figure {
  position: absolute;
  width: max-content;
  z-index: 3;
}
.lineup-scatter-imgs .figure:nth-of-type(1) {
  top: 250px;
  left: calc(50% + 340px);
}
.lineup-scatter-imgs .figure:nth-of-type(2) {
  bottom: 835px;
  right: calc(50% + 540px);
}

@media only screen and (max-width: 767px) {
  .section-lineup .item-name {
    font-size: 24px;
  }

  .section-lineup .lineup-item-name .sub-info {
    font-size: 16px;
  }

  .section-lineup p {
    line-height: calc(24 / 14);
    font-size: 14px;
  }

  .section-lineup .more-btn {
    margin-top: 25px;
  }

  .lineup-scatter-imgs .figure {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .site-main .section-voice {
    margin-top: -100px;
  }
}

.site-main .section-voice {
  position: relative;
  padding-bottom: 100px;
  margin-bottom: 50px;
}

.section-voice .section-content {
  padding-top: 100px;
}

.section-voice .bk-img {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  width: max-content;
}

.section-voice .flex-area {
  margin-top: 65px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .section-voice .section-content {
    padding-top: 60px;
  }

  .section-voice .flex-area {
    margin-top: 100px;
    margin-bottom: 50px;
    padding-bottom: 50px;
  }

  .site-main .section-voice {
    padding-bottom: 0;
  }

  .section-voice .voice-cel.voice06 {
    margin-bottom: 80px;
  }

  .section-voice .bk-img {
    width: 423px;
    top: -50px;
  }
}

@media only screen and (min-width: 768px) {
  .section-voice .voice-cel {
    position: relative;
  }
  .swiper {
    margin-top: 50px;
    margin-bottom: 50px;
    overflow: initial;
  }
  .section-voice .voice-cel.voice01,
  .section-voice .voice-cel.voice03 {
  }

  .voice-cel {
    max-width: 450px;
  }
  .swiper-wrapper {
    padding-top: 40px;
  }
}

.section-voice .voice-cel {
  border: 3px solid #873f00;
  background-color: #fff;
  border-radius: 50%;
  padding: 115px 80px;
  position: relative;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .section-voice .swiper-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
  }
}
.voice-cel p {
  font-size: 20px;
  line-height: 2;
}

@media only screen and (min-width: 767px) and (max-width: 826px) {
  .section-voice .voice-cel {
    margin-bottom: 20px;
  }
  .section-voice .voice-cel.voice03 {
    margin-top: 130px;
  }
}

@media only screen and (max-width: 767px) {
  .swiper-wrapper {
    margin-top: 30px;
  }
  .section-voice .voice-cel {
    width: 200px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .voice-cel p {
    font-size: 14px;
  }
}

.section-voice .voice-cel::before {
  content: "";
  display: block;
  width: 180px;
  height: 118px;
  background-repeat: no-repeat;
  position: absolute;
  left: 55%;
  transform: translateX(-50%);
}

.section-voice .voice-cel.voice01::before {
  background-image: url("../img/customer01.png");
  top: 0;
  transform: translate(-50%, -85%);
}

.section-voice .voice-cel.voice02::before {
  background-image: url("../img/customer02.png");
  bottom: 0;
  transform: translate(-50%, 65%);
}

.section-voice .voice-cel.voice03::before {
  background-image: url("../img/customer03.png");
  top: 0;
  left: 48%;
  transform: translate(-50%, -65%);
}

.section-voice .voice-cel.voice04::before {
  background-image: url("../img/customer04.png");
  bottom: 0;
  transform: translate(-50%, 70%);
}

.section-voice .voice-cel.voice05::before {
  background-image: url("../img/customer05.png");
  top: 0;
  transform: translate(-50%, -85%);
}

.section-voice .voice-cel.voice06::before {
  background-image: url("../img/customer06.png");
  bottom: 0;
  transform: translate(-50%, 65%);
}

@media only screen and (max-width: 767px) {
  .section-voice .voice-cel.voice01 {
    left: -60px;
    margin-top: 70px;
  }

  .section-voice .voice-cel.voice02 {
    right: -60px;
    margin-top: 30px;
  }

  .section-voice .voice-cel.voice03 {
    left: -60px;
    margin-top: 50px;
  }

  .section-voice .voice-cel.voice04 {
    right: -60px;
    top: 30px;
  }
  .section-voice .voice-cel.voice05 {
    left: -60px;
    margin-top: 70px;
  }
  .section-voice .voice-cel.voice06 {
    right: -60px;
    margin-top: 30px;
  }

  .section-voice .voice-cel.voice02::before,
  .section-voice .voice-cel.voice04::before,
  .section-voice .voice-cel.voice06::before {
    bottom: initial;
    top: -15%;
  }

  .section-voice .voice-cel.voice01::before {
    background-size: 140px;
    left: 140px;
  }
  .section-voice .voice-cel.voice03::before {
    background-size: 145px;
    left: 140px;
  }
  .section-voice .voice-cel.voice05::before {
    background-size: 140px;
    left: 140px;
  }

  .section-voice .voice-cel.voice01::before {
    background-image: url("../img/customer01-sp.png");
    top: 50px;
  }
  .section-voice .voice-cel.voice02::before {
    background-image: url("../img/customer02-sp.png");
    top: -34%;
  }
  .section-voice .voice-cel.voice03::before {
    background-image: url("../img/customer03-sp.png");
    top: 20px;
  }
  .section-voice .voice-cel.voice04::before {
    background-image: url("../img/customer04-sp.png");
    top: -125px;
  }
  .section-voice .voice-cel.voice05::before {
    background-image: url("../img/customer05-sp.png");
    top: 14%;
  }
  .section-voice .voice-cel.voice06::before {
    background-image: url("../img/customer06-sp.png");
    top: -116px;
  }

  .section-voice .voice-cel.voice02::before,
  .section-voice .voice-cel.voice04::before,
  .section-voice .voice-cel.voice06::before {
    right: -75px;
    left: initial;
    background-size: 130px;
  }
}

.footer {
  position: relative;
  padding: 130px 0 100px;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .footer {
    padding-top: 30px;
    padding-bottom: 55px;
  }

  .footer .to-top a {
    border: 1px solid #231815;
    background-color: #fff;
    border-radius: 50%;
    padding: 8px 14px 13px 14px;
    position: fixed;
    right: 10px;
    bottom: 20px;
    z-index: 99;
  }
  .to-top a:hover {
    opacity: initial;
  }
  .footer .dli-chevron-up {
    display: inline-block;
    vertical-align: middle;
    color: #231815;
    line-height: 1;
    width: 0.75em;
    height: 0.75em;
    border: 0.2em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(25%) rotate(-45deg);
  }
}

@media only screen and (min-width: 768px) {
  .footer .sns-icons {
    margin-top: 1.5em;
  }
}

.footer .sns-icons {
  width: 300px;
  margin-inline: auto;
}

.footer .sns-icons p {
  font-size: 22px;
  color: #873f00;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
  font-family: "Zen Maru Gothic", serif;
}

.footer .flex-area {
  justify-content: space-between;
}

html {
  scroll-behavior: smooth;
}
@media only screen and (max-width: 767px) {
  .footer .sns-icons {
    margin-top: 30px;
    width: 265px;
  }
  .footer .sns-icons p {
    font-size: 20px;
  }
  .footer .flex-area {
    flex-direction: row;
  }
}

.footer .flex-area a {
  border: 2px solid #873f00;
  background-color: #fff;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: block;
}

.footer .flex-area div img {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.footer .flex-area div:nth-of-type(1) img {
  width: 15px;
}

.footer .flex-area div:nth-of-type(2) img {
  width: 30px;
}

.footer .flex-area div:nth-of-type(3) img {
  width: 40px;
}
@media only screen and (max-width: 767px) {
  .footer .flex-area div:nth-of-type(2) img {
    width: 25px;
  }
  .footer .flex-area div:nth-of-type(3) img {
    width: 32px;
  }
}

.footer .more-btn {
  font-size: 26px;
  margin-inline: auto;
  display: block;
  font-weight: bold;
  padding: 30px 60px;
}

@media only screen and (max-width: 767px) {
  .footer .more-btn {
    font-size: 18px;
    padding: 20px 40px;
  }
}

.brandSiteFooter {
  border-top-color: #fff !important;
}
.brandSiteFooter .link {
  background-color: #fff !important;
}
.brandSiteFooter .link li {
  border-right-color: #3e3a39 !important;
}
.brandSiteFooter .link a {
  color: #3e3a39 !important;
}
.brandSiteFooter .copyright {
  color: #3e3a39 !important;
}

@media only screen and (max-width: 767px) {
  .brandSiteFooter .copyright {
    color: #fff !important;
  }
}

.section-voice .h2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-main .section-voice .h2::before {
  width: 40px;
  height: 65px;
}

@media screen and (max-width: 768px) {
  .site-main .section-voice .h2::before {
    width: 30px;
    height: 65px;
    padding-right: 0;
    margin-inline: 0px 10px !important;
  }
}


.section-about .movie .movie__lead{
  text-align: center;
}

.section-about .movie .movie__link{
  position: relative;
  display: block;
  max-width: 840px;
  border: none;
}

.section-about .movie .movie__link:hover{
  opacity: 1;
}

.section-about .movie .movie__link .movie-btn{
    position: absolute;
    z-index: 1;
}

@media only screen and (min-width: 768px){
  .section-about .movie{
    margin-top: 145px;
  }

  .section-about .movie .movie__lead{
    font-size: 30px;
    line-height: 1.8;
    letter-spacing: 0.025em;
  }

  .section-about .movie .movie__link{
    margin: 70px auto 0;
  }

  .section-about .movie .movie__link .movie-btn{
      width: 65px;
      height: 65px;
      top: calc(50% - 27px);
      left: calc(50% - 27px);
  }
}

@media only screen and (max-width: 767px) {
  .section-about .movie{
    margin-top: 48px;
  }

  .section-about .movie .movie__lead{
    font-size: 16px;
    line-height: 1.625;
    letter-spacing: 0.05em;
  }

  .section-about .movie .movie__link{
    margin: 26px auto 0;
  }

  .section-about .movie .movie__link .movie-btn{
    width: 30px;
    height: 30px;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
  }
}

.iziModal {
    max-width: 960px !important;
    width: 90% !important;
}

.iziModal iframe {
    height: 56.17vw !important;
    max-height: 538px !important;
}


.iziModal .iziModal-content{
	font-size: 0;
}
.iziModal .modal-close{
	position: absolute;
	top: -40px;
	right: 0;
}
.iziModal .modal-close a{
	position: relative;
	cursor: pointer;
	display: block;
	width: 40px;
	height: 40px;
}
.iziModal .modal-close a:before,
.iziModal .modal-close a:after{
	content: "";
	display: block;
	position: absolute;
	width: 110%;
	height: 1px;
	background-color: #FFF;
	top: 50%;
	left: -3%;
}
.iziModal .modal-close a:before{
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.iziModal .modal-close a:after{
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.iziModal img{
	width: 100%;
}


