@charset "UTF-8";
.g-main {
    position: relative;
    overflow: hidden;
}

/* kv
//* -------------------------------------------------- */
.kv {
    background: #67c5e1 url(./img/pattern.png) repeat;
    background-size: 100% auto;
    height: 100vh;
    height: calc(1265vw /19.2);
    position: relative;
}
.kv-logo {
    position: absolute;
    width: calc(690vw /19.2);
    top: 30%;
    left: 6%;
}
.kv-img {
    position: absolute;
    width: calc(970vw /19.2);
    top: 15%;
    left: 45%;
    transform-origin: center bottom;
    animation: yurayura 3s ease-in-out infinite;
}
@keyframes yurayura {
    0% , 100% {
        transform: rotate(0deg);
    }
    50%{
        transform: rotate(-8deg);
    }
}
.kv-hanko {
    position: absolute;
    bottom: 5%;
    right: 0%;
    width: calc(190vw /19.2);
}
@media screen and (min-width: 1px) and (max-width: 767px) {
    .kv {
        background-size: 250% auto;
        height: 100svh;
        height: calc(1244vw /7.5);
    }
    .kv-logo {
        width: calc(474vw /7.5);
        top: 12%;
        left: inherit;
        right: 3%;
    }
    .kv-img {
        width: calc(640vw /7.5);
        top: 43%;
        left: 8%;
    }
    .kv-hanko {
        bottom: 3%;
        right: 0%;
        width: calc(140vw /7.5);
    }
}

/* news
//* -------------------------------------------------- */
.news {
    overflow: hidden;
}
.news-loopText {
    overflow: hidden;
    background-color: #e5540c;
    padding: calc(10vw /19.2) 0;
    display: flex;
    width: max-content;
    overflow: hidden;
    white-space: nowrap;
} 
.news-loopText {
    overflow: hidden;
}
.news-loopText-track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    animation: loopText 40s linear infinite;
    will-change: transform;
}
.news-loopText__reverse .news-loopText-track {
    animation-direction: reverse;
  }
.news-loopText-track p {
    flex-shrink: 0;
    padding-right: 2em;
}
@keyframes loopText {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}
.news-loopText p {
    font-size: calc(26vw /19.2);
    color: #fff;
    font-family: var(--font-Montserrat);
    font-weight: 300;
    letter-spacing: .1em;
    position: relative;
    line-height: 1;
    width: fit-content;
    padding: 0 calc(60vw /19.2) 0 calc(30vw /19.2);
}
.news-loopText p span {
    color: #fccc00;
}
.news-loopText p::after {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    width: calc(37vw /19.2);
    height: calc(33vw /19.2);
    background: url(./img/ico_suzu.png) no-repeat;
    background-size: calc(37vw / 19.2) calc(33vw / 19.2);
}

.news-wrap {
    background: #fff7d7;
}
.news-swiper-wrap {
    position: relative;
    width: calc(1080vw /19.2);
    padding: 0;
    margin: 0 auto;
    background: #fff;
}
.news-swiper {
    overflow: hidden;
    position: relative;
}
.news-swiper-prev,
.news-swiper-next {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: calc(40vw /19.2);
  height: calc(40vw /19.2);
  transform: translateY(-50%);
  cursor: pointer;
  transition: all .3s;
}
.news-swiper-prev {
  left: calc(-60vw /19.2);
}
.news-swiper-next {
  right: calc(-60vw /19.2);
}
.news-swiper-prev::before,
.news-swiper-next::before {
  content: "";
  display: block;
  width: calc(40vw /19.2);
  height: calc(40vw /19.2);
  background: url(./img/ico_arrow_red.svg) no-repeat;
  background-size: 100% auto;
}
.news-swiper-prev::before {
  transform: rotate(0deg);
}
.news-swiper-next::before {
  transform: rotate(180deg);
}
.swiper-pagination-bullet {
    width: calc(12vw /19.2);
    height: calc(12vw /19.2);
    background: #fff;
    border: 2px solid #e5540c;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #e5540c;
}
.news .swiper-pagination {
    bottom: calc(10vw /19.2);
}
.news-box {
    width: calc(960vw /19.2);
    padding: calc(40vw /19.2) calc(60vw /19.2) calc(80vw /19.2);
}
.news-box-inner {
    display: flex;
}
.news-box__date {
    font-size: calc(30vw/19.2);
    width: 30%;
    letter-spacing: .1em;
    line-height: calc(30vw/19.2);
}
.news-box__text {
    font-size: calc(22vw/19.2);
    width: 70%;
    transition: all .3s;
}

@media screen and (min-width: 1px) and (min-width: 768px) {
    .news-box__text a:hover {
        text-decoration: underline;
    }
    .news-swiper-prev:hover,
    .news-swiper-next:hover {
        transform: translateY(-50%)scale(1.1);
    }
}
@media screen and (min-width: 1px) and (max-width: 767px) {
    .news-loopText {
        padding: calc(10vw /7.5) 0;
    } 
    .news-loopText p {
        font-size: calc(26vw /7.5);
        padding: 0 calc(60vw /7.5) 0 calc(30vw /7.5);
    }
    .news-loopText p::after {
        width: calc(37vw /7.5);
        height: calc(33vw /7.5);
        background-size: calc(37vw / 7.5) calc(33vw / 7.5);
    }
    .news-swiper-wrap {
        width: 100%;
        background: #fffbeb;
    }
    .news-swiper-prev,
    .news-swiper-next {
      width: calc(40vw /7.5);
      height: calc(40vw /7.5);
    }
    .news-swiper-prev {
      left: calc(20vw /7.5);
    }
    .news-swiper-next {
      right: calc(20vw /7.5);
    }
    .news-swiper-prev::before,
    .news-swiper-next::before {
      width: calc(40vw /7.5);
      height: calc(40vw /7.5);
    }
    .swiper-pagination-bullet {
        width: calc(12vw /7.5);
        height: calc(12vw /7.5);
        border-width: 1px;
    }
    .news .swiper-pagination {
        bottom: calc(10vw /7.5);
    }
    .news-box {
        margin: 0 auto;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: calc(40vw /7.5) 13% calc(80vw /7.5);
    }
    .news-box-inner {
        display: block;
        width: fit-content;
    }
    .news-box__date {
        font-size: calc(30vw/7.5);
        line-height: calc(30vw/7.5);
        width: 100%;
    }
    .news-box__text {
        font-size: calc(22vw/7.5);
        margin-top: calc(10vw /7.5);
        width: 100%;
    }
}

/* about
//* -------------------------------------------------- */
.about {
    background-color: #d4f2f4;
}
.about .about-headeing {
    padding-top: calc(100vw /19.2);
}
.about-headeing__01 {
    width: calc(770vw /19.2);
    margin: 0 auto;
}
.is-state_scroll.about-headeing__01 img {   
    transform: scale(0.3);
    animation: zoomin 1s .5s ease-in-out forwards;
}
.about-headeing__02 {
    width: calc(907vw /19.2);
    margin: calc(80vw /19.2) auto 0;
}
.is-state_scroll.about-headeing__02 {
    animation: fadeUpAnime .5s 1s ease-in-out forwards;
}
.about-lead {
    margin: calc(160vw /19.2) auto 0;
    width: calc(1189vw /19.2);
    position: relative;
}
.about-lead img {
    transform: scale(0.3);
}
.is-state_scroll.about-lead img {
    animation: zoomin 1s .5s ease-in-out forwards;
}
@keyframes zoomin {
    0% {
        transform: scale(0.3);
    }
    80%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1.0);
    }
}
.about-lead__01 {
    width: calc(457vw /19.2);
    top: calc(678vw /19.2);
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    opacity: 0;
}
.is-state_scroll.about-lead .about-lead__01 {
    animation: fadeUpAnime 0.5s 1.3s ease-in-out forwards;
}
.about-lead__02 {
    width: calc(490vw /19.2);
    top: calc(1130vw /19.2);
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    opacity: 0;
}
.is-state_scroll.about-lead .about-lead__02 {
    animation: fadeUpAnime 0.5s 1.6s ease-in-out forwards;
}
.about-btn {
    margin: calc(80vw /19.2) auto 0;
}
.about-btn a {
    margin: 0 auto;
    width: calc(831vw /19.2);
    background-color: #fff1b8;
    font-size: calc(40vw /19.2);
    text-align: center;
    border-radius: 20px;
    box-shadow: 2px 2px 3px #ccc;
    padding: 1.2em 0;
    color: #0088db;
    position: relative;
    font-weight: 700;
}
.about-btn a::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 2.5em;
    margin: auto;
    background: url(./img/ico_loupe.svg) no-repeat;
    background-size: 100% auto;
    width: calc(65vw / 19.2);
    height: calc(103vw / 19.2);
}
.about-btn a .u-plus {
    background-color: #0088db;
    position: absolute;
    right: 1em;
    width: 0.9em;
    height: 0.9em;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    top: 2px;
    margin: auto;
    right: 3em;
}
.about-btn a .u-plus:before, .about-btn a .u-plus:after {
    background: #fff;
    height: .5em;
    width: 2px;
}



.about-taste {
    position: relative;
    margin: calc(200vw / 19.2) auto 0;
    padding-bottom: calc(50vw / 19.2);
}
.about-taste::after {
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: calc(1602vw / 19.2);
    height: calc(1300vw / 19.2);
    background: url(./img/about-taste_bg.png) center bottom no-repeat;
    background-size: 100% auto;
    z-index: 0;
    opacity: 0;
    transform: scale(0.3);
    transform-origin: center bottom;
}
  
.about-taste__img {
    position: relative;
    width: calc(1050vw / 19.2);
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
    opacity: 0;
    transform: scale(0.3);
    transform-origin: center center;
}
.about-taste__img img {
    width: calc(900vw / 19.2);
    position: relative;
    z-index: 2;
} 
.about-taste__img figcaption {
    position: absolute;
    top: calc(-66vw / 19.2);
    left: 0;
    width: calc(363vw / 19.2);
    height: calc(363vw / 19.2);
    border-radius: 50%;
    background-color: #b25d21;
    font-size: calc(63vw / 19.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
    z-index: 1;
}
.about-taste__text01,
.about-taste__text02 {
    position: absolute;
    z-index: 3;
    opacity: 1;
}
.about-taste__text01 {
    width: calc(367vw / 19.2);
    top: calc(-38vw / 19.2);
    right: calc(169vw / 19.2);
}
.about-taste__text02 {
    width: calc(585vw / 19.2);
    left: calc(212vw / 19.2);
    top: calc(630vw / 19.2);
}
.about-taste__text01 p,
.about-taste__text02 p {
    margin: 0;
    opacity: 0;
    transform: translateY(calc(12vw / 19.2)) scale(0.96);
}
  
.about-taste__text01 p img,
.about-taste__text02 p img,
.about-taste__text03 p img {
display: block;
width: 100%;
height: auto;
}
.about-taste__dot {
    position: absolute;
    width: calc(17vw / 19.2);
    height: calc(17vw / 19.2);
    background-color: #b25d21;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    z-index: 4;
}
.about-taste__text01 .about-taste__dot {
    bottom: calc(-40vw / 19.2);
    left: calc(-90vw / 19.2);
}
.about-taste__text02 .about-taste__dot {
    top: calc(-150vw / 19.2);
    right: calc(-140vw / 19.2);
}
  
.about-taste__line {
    position: absolute;
    pointer-events: none;
    z-index: 3;
}
.about-taste__line span {
    position: absolute;
    display: block;
    height: 2px;
    background: #b25d21;
    opacity: 0;
    transform: scaleX(0) rotate(var(--line-rotate));
}
.about-taste__text01 .about-taste__line {
    left: calc(-90vw / 19.2);
    bottom: calc(-40vw / 19.2);
    width: calc(190vw / 19.2);
    height: calc(95vw / 19.2);
}
  
.about-taste__text01 .about-taste__line span:nth-child(1) {
    --line-rotate: -90deg;
    width: calc(104vw / 19.2);
    left: calc(9vw / 19.2);
    bottom: 0;
    transform-origin: left center;
}
  
.about-taste__text01 .about-taste__line span:nth-child(2) {
    --line-rotate: 0deg;
    width: calc(67vw / 19.2);
    left: calc(8vw / 19.2);
    top: calc(-12vw / 19.2);
    transform-origin: left center;
} 
.about-taste__text02 .about-taste__line {
    right: calc(-140vw / 19.2);
    top: calc(-150vw / 19.2);
    width: calc(190vw / 19.2);
    height: calc(170vw / 19.2);
}
.about-taste__text02 .about-taste__line span:nth-child(1) {
    --line-rotate: 90deg;
    width: calc(200vw / 19.2);
    right: calc(8vw / 19.2);
    bottom: calc(-36vw / 19.2);
    transform-origin: right top;
}
.about-taste__text02 .about-taste__line span:nth-child(2) {
    --line-rotate: 0deg;
    width: calc(95vw / 19.2);
    right: calc(8vw / 19.2);
    top: calc(201vw / 19.2);
    transform-origin: right center;
}
  
.about-taste__text03 {
    width: calc(1104vw / 19.2);
    position: relative;
    margin: calc(220vw / 19.2) auto 0;
    z-index: 2;
    opacity: 0;
    transform: translateY(calc(20vw / 19.2)) scale(0.96);
}
.about-taste__text03 p {
    margin: 0;
}
.is-state_scroll.about-taste::after {
    animation: tasteZoomIn 0.8s 0s ease-out forwards;
}
.is-state_scroll .about-taste__img {
    animation: tasteZoomIn 0.8s 0.45s ease-out forwards;
}

.is-state_scroll .about-taste__dot {
    animation: tasteDotBlink 0.2s 1.25s ease-in-out 1 forwards;
}
.is-state_scroll .about-taste__line span:nth-child(1) {
    animation: tasteLineShow 0.32s 2.25s ease-out forwards;
}
.is-state_scroll .about-taste__line span:nth-child(2) {
    animation: tasteLineShow 0.32s 2.55s ease-out forwards;
}
.is-state_scroll .about-taste__text01 p,
.is-state_scroll .about-taste__text02 p {
    animation: tasteTextShow 0.45s 2.95s ease-out forwards;
}
.is-state_scroll .about-taste__text03 {
    animation: tasteTextShow 0.6s 3.35s ease-out forwards;
}
@keyframes tasteZoomIn {
    0% {
      opacity: 0;
      transform: scale(0.3);
    }
    70% {
      opacity: 1;
      transform: scale(1.06);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
}
@keyframes tasteDotBlink {
    0% {
      opacity: 0;
      transform: scale(0);
    }
    35% {
      opacity: 1;
      transform: scale(1.35);
    }
    65% {
      opacity: 0.25;
      transform: scale(0.75);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
}
@keyframes tasteLineShow {
    0% {
      opacity: 1;
      transform: scaleX(0) rotate(var(--line-rotate));
    }
    100% {
      opacity: 1;
      transform: scaleX(1) rotate(var(--line-rotate));
    }
} 
@keyframes tasteTextShow {
    0% {
      opacity: 0;
      transform: translateY(calc(12vw / 19.2)) scale(0.96);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
}

.modal-panel__about.modal-panel {
    background: #fffdf1;
    max-height: 100vh;
    height: 100vh;
    width: 100%;
}
.modal-panel__about .u-modal-ttl {
    text-align: center;
    font-size: calc(93vw /19.2);
}
.modal-panel__about .u-modal-ttl span {
    font-size: calc(51vw /19.2);
}
.modal-panel__about .modal_txt {
    font-size: calc(35vw /19.2);
    text-align: center;
    line-height: 2.5;
}
.modal-panel__about .modal-close {
    background-color: #ffe67f;
}

@media screen and (min-width: 1px) and (min-width: 768px) {
    .about-btn a:hover {
        transform: scale(1.1);
    }
    .about-btn a:hover::before {
        transform-origin: center bottom;
        transform: rotate(-20deg);
    }
}
@media screen and (min-width: 1px) and (max-width: 767px) {
    .about {
        overflow: hidden;
    }
    .about .about-headeing {
        padding-top: calc(100vw /7.5);
    }
    .about-headeing__01 {
        width: calc(680vw /7.5);
    }
    .about-headeing__02 {
        width: calc(586vw /7.5);
        margin: calc(70vw /7.5) auto 0;
    }
    .about-lead {
        margin: calc(105vw /7.5) auto 0;
        width: calc(990vw /7.5);
        margin-left: calc(-120vw /7.5);
    }
    .about-lead__01 {
        width: calc(383vw /7.5);
        top: calc(566vw /7.5);
    }
    .about-lead__02 {
        width: calc(410vw /7.5);
        top: calc(967vw /7.5);
    }
    .about-btn {
        margin: calc(100vw /7.5) auto 0;
    }
    .about-btn a {
        width: calc(630vw /7.5);
        font-size: calc(30vw /7.5);
        border-radius: 10px;
    }
    .about-btn a::before {
        width: calc(44vw / 7.5);
        height: calc(73vw / 7.5);
    }
    .about-btn a .u-plus:before, .about-btn a .u-plus:after {
        height: .5em;
        width: 1px;
    }
    
    @keyframes zoomin {
        0% {
            transform: scale(0.3);
        }
        80%{
            transform: scale(1.1);
        }
        100%{
            transform: scale(1.0);
        }
    }
    
    .about-taste {
        margin: calc(50vw / 7.5) auto 0;
        padding: calc(150vw / 7.5) 0 calc(100vw / 7.5);
    }
    .about-taste::after {
        width: calc(750vw / 7.5);
        height: calc(880vw / 7.5);
        background: url(./img/about-taste_bg_sp.png) center bottom no-repeat;
        background-size: 100% auto;
    }
      
    .about-taste__img {
        width: calc(645vw / 7.5);
    }
    .about-taste__img img {
        width: calc(900vw / 7.5);
    } 
    .about-taste__img figcaption {
        top: calc(-88vw / 7.5);
        width: calc(213vw / 7.5);
        height: calc(213vw / 7.5);
        font-size: calc(37vw / 7.5);
    }
    .about-taste__text01 {
        width: calc(273vw / 7.5);
        top: calc(35vw / 7.5);
        right: calc(40vw / 7.5);
    }
    .about-taste__text02 {
        width: calc(441vw / 7.5);
        left: calc(58vw / 7.5);
        top: calc(634vw / 7.5);
    }
    .about-taste__text01 p,
    .about-taste__text02 p {
        transform: translateY(calc(12vw / 7.5)) scale(0.96);
    }

    .about-taste__dot {
        width: calc(13vw / 7.5);
        height: calc(13vw / 7.5);
    }
    .about-taste__text01 .about-taste__dot {
        bottom: calc(-55vw / 7.5);
        left: calc(-102vw / 7.5);
    }
    .about-taste__text02 .about-taste__dot {
        top: calc(-130vw / 7.5);
        right: calc(200vw / 7.5);
    }
    .about-taste__text01 .about-taste__line {
        left: calc(-89vw / 7.5);
        bottom: calc(-43vw / 7.5);
        width: calc(111vw / 7.5);
        height: calc(70vw / 7.5);
    }
    
    .about-taste__line span {
        height: 1.5px;
    }
    .about-taste__text01 .about-taste__line span:nth-child(1) {
        width: calc(85vw / 7.5);
        left: calc(-7vw / 7.5);
    }
      
    .about-taste__text01 .about-taste__line span:nth-child(2) {
        width: calc(86vw / 7.5);
        left: calc(-5vw / 7.5);
        top: calc(-15vw / 7.5);
    } 
    .about-taste__text02 .about-taste__line {
        right: calc(197vw / 7.5);
        top: calc(-150vw / 7.5);
        width: calc(1.5vw / 7.5);
        height: calc(140vw / 7.5);
    }
    .about-taste__text02 .about-taste__line span:nth-child(1) {
        width: calc(105vw / 7.5);
        right: calc(8vw / 7.5);
        bottom: calc(3vw / 7.5);
    }
    .about-taste__text02 .about-taste__line span:nth-child(2) {
        display: none;
    }
      
    .about-taste__text03 {
        width: calc(660vw / 7.5);
        margin: calc(240vw / 7.5) auto 0;
        transform: translateY(calc(20vw / 7.5)) scale(0.96);
    }

    @keyframes tasteTextShow {
        0% {
          opacity: 0;
          transform: translateY(calc(12vw / 7.5)) scale(0.96);
        }
        100% {
          opacity: 1;
          transform: translateY(0) scale(1);
        }
    }

    .modal-panel__about .u-modal-ttl {
        font-size: calc(60vw /7.5);
    }
    .modal-panel__about .u-modal-ttl span {
        font-size: calc(33vw /7.5);
    }
    .modal-panel__about .modal_txt {
        font-size: calc(28vw /7.5);
    }
    .modal-panel__about  .u-flex_45 {
        margin: calc(90vw / 7.5) auto 0;
    }
    
}

/* textdora
//* -------------------------------------------------- */
.textdora {
    display: block;
    position: relative;
    margin: calc(80vw / 19.2) auto 0;
}
.circleText-wrap {
    position: relative;
    width: 100%;
    height: calc(840vw / 19.2);
    overflow: hidden;
}
.circleText {
    position: absolute;
    left: 50%;
    top: 0;
    width: calc(1780vw / 19.2);
    height: calc(1780vw / 19.2);
    transform: translateX(-50%);
    overflow: visible;
}
.circleText text {
    font-size: calc(74.5vw / 19.2);
    font-size: 61px;
    letter-spacing: 0.1em;
    fill: #60c5f0;
    font-family: var(--font-Montserrat);
    font-weight: 300;
    text-shadow: 2px 2px 3px #aaa;
}
.circleText-dora {
    fill: #008cce;
}
.circleText-rotate {
    transform-origin: 890px 890px;
    animation: circleTextRotate 50s linear infinite;
}
@keyframes circleTextRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.textdora-img {
    width: calc(1400vw /19.2);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateX(1%);
    opacity: 1!important;
}
.textdora-img img {
    opacity: 0;
}
.is-state_scroll.textdora-img img {
    animation: textdoraimg .6s .5s ease-in forwards;
}
@keyframes textdoraimg {
    0% {
      opacity: 0;
      transform: translateY(50%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}
@media screen and (min-width: 1px) and (max-width: 767px) {
    .textdora {
        margin: calc(80vw / 7.5) auto 0;
        width: 200%;
        margin-left: -50%;
    }
    .circleText-wrap {
        height: calc(474vw / 7.5);
    }
    .circleText {
        width: calc(1000vw / 7.5);
        height: calc(1000vw / 7.5);
    }
    .circleText text {
        font-size: 61px;
        text-shadow: 1px 1px 2px #aaa;
    }
    .circleText-rotate {
        transform-origin: 890px 890px;
    }
    .textdora-img {
        width: calc(778vw / 7.5);
    }
}

/* lineup
//* -------------------------------------------------- */
.lineup {
    background: #67c5e1 url(./img/pattern.png) repeat;
    background-size: 100% auto;
    padding: calc(300vw /19.2) 0 0;
    position: relative;
    z-index: 1;
}
.lineup .c-heading {
    width: calc(1413vw /19.2);
    padding-left: 2%;
}
.lineup-main {
    padding-bottom: calc(100vw / 19.2);
}
.lineup-block01 {
    padding-top: calc(100vw / 19.2);
    margin: calc(110vw / 19.2) auto 0;
    background: url(./img/lineup-block01_bg.png) right -50% no-repeat;
    background-size: 100% auto; 
}
.lineup-block02 {
    margin: calc(150vw / 19.2) auto 0;
    background: url(./img/lineup-block02_bg.png) left 60% no-repeat;
    background-size: 100% auto; 
}
.lineup-price {
    font-size: calc(62vw / 19.2);
    line-height: 1;
    position: relative;
    font-weight: 600;
    width: fit-content;
}
.lineup-box .u-encart {
    width: calc(91vw / 19.2);
    height: calc(91vw / 19.2);
    background: url(./img/ico-encart.svg) center no-repeat;
    background-size: 100% auto;
    position: absolute;
    right: -2.5em;
    top: -0.2em;
    cursor: pointer;
    transition: all 0.3s;
}
.lineup-box .caution-lists {
    font-size: calc(30vw / 19.2);
    width: 100%;
    margin: calc(90vw / 19.2) auto 0;
    line-height: 1.6;
    font-weight: 400;
}
.lineup-slider {
    position: relative;
}
.lineup-block01 .lineup-slider::before {
    position: absolute;
    content: '';
    right: calc(-80vw / 19.2);
    top: calc(-30vw / 19.2);
    margin: auto;
    background: url(./img/lineup-block01_han.png) center no-repeat;
    background-size: 100% auto;
    width: calc(1163vw / 19.2);
    height: calc(976vw / 19.2);
}
.lineup-block02 .lineup-slider::before {
    position: absolute;
    content: '';
    left: calc(-60vw / 19.2);
    top: calc(50vw / 19.2);
    margin: auto;
    background: url(./img/lineup-block01_han.png) center no-repeat;
    background-size: 100% auto;
    width: calc(1142vw / 19.2);
    height: calc(950vw / 19.2);
}

@media screen and (min-width: 1px) and (min-width: 768px) {
    .lineup-block {
        display: flex;
        overflow: hidden;
        justify-content: flex-start;
        align-items: center;
    }
    .lineup-block01 {
        flex-direction: row-reverse;
    }
    .lineup-slider {
        width: 50%;
        margin: 0 5%;
    }
    .lineup-box {
        width: 35%;
    }
    .lineup-box .u-encart:hover {
        transform: scale(1.1);
    }
}
@media screen and (min-width: 1px) and (max-width: 767px) {
    .lineup {
        background-size: 250% auto;
        padding: calc(160vw /7.5) 0 0;
    }
    .lineup .c-heading {
        width: calc(720vw /7.5);
    }
    .lineup-main {
        padding-bottom: calc(100vw / 7.5);
    }
    .lineup-block01 {
        padding-top: calc(100vw / 7.5);
        margin: calc(0vw / 7.5) auto 0;
        background: url(./img/lineup-block01_bg_sp.png) right 27% no-repeat;
        background-size: 100% auto; 
    }
    .lineup-block02 {
        margin: calc(130vw / 7.5) auto 0;
        background: url(./img/lineup-block02_bg_sp.png) left 150% no-repeat;
        background-size: 100% auto; 
    }
    .lineup-box {
        margin: calc(70vw / 7.5) auto 0;
        width: 80%;
    }
    .lineup-price {
        font-size: calc(48vw / 7.5);
        font-weight: 400;
        text-align: center;
        margin: 0 auto;
        text-indent: -1em;
    }
    .lineup-box .u-encart {
        width: calc(70vw / 7.5);
        height: calc(70vw / 7.5);
    }
    .lineup-box .caution-lists {
        font-size: calc(30vw / 7.5);
        margin: calc(60vw / 7.5) auto 0;
    }
    .lineup-block01 .lineup-slider::before {
        right: calc(0vw / 7.5);
        top: calc(-10vw / 7.5);
        width: calc(720vw / 7.5);
        height: calc(640vw / 7.5);
    }
    .lineup-block02 .lineup-slider::before {
        left: calc(20vw / 7.5);
        top: calc(-55vw / 7.5);
        width: calc(730vw / 7.5);
        height: calc(665vw / 7.5);
    }
}
    

/* lineup slider
//* -------------------------------------------------- */
.thumbSlider-mainWrap {
    position: relative;
}
.thumbSlider-main {
    overflow: hidden;
}
.thumbSlider-main img,
.thumbSlider-thumbs img {
    display: block;
    width: 100%;
    height: auto;
    margin: auto;
}
.thumbSlider-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: calc(103vw / 19.2);
    height: calc(103vw / 19.2);
    padding: 0;
    border: 0;
    background: transparent;
    transform: translateY(-50%);
    cursor: pointer;
}
.thumbSlider-arrow__prev {
    left: calc(-50vw / 19.2);
}
.thumbSlider-arrow__next {
    right: calc(-50vw / 19.2);
}
.thumbSlider-arrow img {
    display: block;
    width: 100%;
    height: auto;
}
.thumbSlider-thumbs {
    margin: calc(100vw / 19.2) auto 0;
    overflow: visible;
    width: 90%;
}
.thumbSlider-thumbs .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: calc(34vw /19.2);
    transform: none !important;
}
.thumbSlider-thumbs .swiper-slide {
    width: auto !important;
    height: auto;
    margin: 0 !important;
    padding: calc(5vw / 19.2) 0;
    background: #fff;
    border: calc(3vw / 19.2) solid transparent;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: calc(30vw /19.2);
    border-color: #fff;
}
.thumbSlider-thumbs .swiper-slide-thumb-active {
    border-color: #603813;
}

@media screen and (min-width: 1px) and (min-width: 768px) {
.thumbSlider-arrow:hover {
    transform: translateY(-50%)scale(1.1);
}
}
@media screen and (min-width: 1px) and (max-width: 767px) {
    .thumbSlider-main {
        width: 86%;
    }
    .thumbSlider-arrow {
        width: calc(80vw / 7.5);
        height: calc(80vw / 7.5);
    }
    .thumbSlider-arrow__prev {
        left: calc(5vw / 7.5);
    }
    .thumbSlider-arrow__next {
        right: calc(5vw / 7.5);
    }
    .thumbSlider-thumbs {
        margin: calc(50vw / 7.5) auto 0;
    }
    .thumbSlider-thumbs .swiper-wrapper {
        gap: calc(34vw /7.5);
    }
    .thumbSlider-thumbs .swiper-slide {
        padding: calc(5vw / 7.5) 0;
        border: calc(3vw / 7.5) solid transparent;
        border-radius: calc(30vw /7.5);
    }
    .thumbSlider-thumbs .swiper-slide-thumb-active {
        border-color: #603813;
    }
}



/* lineup sticker
//* -------------------------------------------------- */
.lineup-sticker {
    background-color: #00abd3;
    padding: calc(60vw /19.2) 0;
}
.lineup-sticker-inner {
    background: #fff url(./img/pattern.png) repeat;
    background-size: 100% auto;
    padding: calc(80vw /19.2) 0;
}
.lineup-sticker__title {
    width: calc(780vw /19.2);
    margin: 0 auto 0;
}
.lineup-sticker__title img,
.lineup-sticker__img img {
    transform: scale(0.3);
}
.lineup-sticker.is-state_scroll .lineup-sticker__title img {
    animation: zoomin 1s .5s ease-in-out forwards;
}
.lineup-sticker__img {
    width: calc(706vw /19.2);
    margin: calc(80vw /19.2) auto 0;
}
.lineup-sticker.is-state_scroll .lineup-sticker__img img {
    animation: zoomin 1s 1s ease-in-out forwards;
}
.lineup-sticker .caution-lists {
    font-size: calc(35vw /19.2);
    margin: calc(20vw / 19.2) auto 0;
    width: fit-content;
}
@media screen and (min-width: 1px) and (max-width: 767px) {
    .lineup-sticker {
        padding: calc(60vw /7.5) 0;
    }
    .lineup-sticker-inner {
        padding: calc(80vw /7.5) 0;
    }
    .lineup-sticker__title {
        width: calc(605vw /7.5);
    }
    .lineup-sticker__img {
        width: calc(655vw /7.5);
        margin: calc(80vw /7.5) auto 0;
    }
    .lineup-sticker .caution-lists {
        font-size: calc(29vw /7.5);
        margin: calc(20vw / 7.5) auto 0;
    }
}


/* infomation
//* -------------------------------------------------- */
.bg_pattern {
    background: #67c5e1 url(./img/pattern.png) repeat;
    background-size: 100% auto;
}
.infomation {
    padding: calc(100vw /19.2) 0;
}
.infomation-btns li {
    margin-top: 2em;
}
.infomation-btns a {
    display: block;
    position: relative;
    width: calc(602vw /19.2);
    background-color: #fffae9;
    margin: 0 auto;
    font-weight: 700;
    text-align: center;
    border: 1.5px solid #603813;
    padding: calc(5vw /19.2);
    font-size: calc(35vw /19.2);
    letter-spacing: .15em;
    cursor: pointer;
    transition: all .3s;
}
.infomation-btns a > div {
    border: 1.5px solid #603813;
    padding: calc(26vw /19.2) 5% calc(29vw /19.2);
}
.infomation-btns .u-plus {
    margin-right: 1em;
}
.infomation-btns__shop::after {
    position: absolute;
    content: '';
    right: 1em;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url(./img/ico_arrow_brown.svg) center bottom no-repeat;
    background-size: contain;
    width: calc(49vw / 19.2);
    height: calc(49vw / 19.2);
}
.infomation-btns__cart {
    text-indent: -1em;
}
.infomation-btns__cart::before {
    position: absolute;
    content: '';
    right: 1em;
    top: -4px;
    bottom: 0;
    margin: auto;
    background: url(./img/ico_cart.svg) center bottom no-repeat;
    background-size: contain;
    width: calc(48vw / 19.2);
    height: calc(41vw / 19.2);
}
.infomation .caution-lists {
    width: fit-content;
    margin: calc(90vw / 19.2) auto 0;
    font-size: calc(24vw /19.2);
}

@media screen and (min-width: 1px) and (min-width: 768px) {
    .infomation-btns a:hover {
        transform: scale(1.1);
    }
}
@media screen and (min-width: 1px) and (max-width: 767px) {
    .bg_pattern {
        background-size: 250% auto;
    }
    .infomation {
        padding: calc(100vw /7.5) 0;
    }
    .infomation-btns a {
        width: calc(602vw /7.5);
        border-width: 1px;
        padding: calc(5vw /7.5);
        font-size: calc(35vw /7.5);
    }
    .infomation-btns a > div {
        border-width: 1px;
        padding: calc(26vw /7.5) 5% calc(29vw /7.5);
    }
    .infomation-btns__shop::after {
        width: calc(49vw / 7.5);
        height: calc(49vw / 7.5);
    }
    .infomation-btns__cart::before {
        width: calc(48vw / 7.5);
        height: calc(41vw / 7.5);
    }
    .infomation .caution-lists {
        margin: calc(90vw / 7.5) auto 0;
        font-size: calc(24vw /7.5);
    }
}

/* link
//* -------------------------------------------------- */
.link {
    position: relative;
    padding: calc(325vw /19.2) 0 calc(160vw /19.2);
    overflow: hidden;
}
.link::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(-500vw / 19.2);
    width: calc(3000vw / 19.2);
    height: calc(810vw / 19.2);
    border-radius: 150% / 100% 100% 0 0;
    background: #0088db;
    z-index: 1;
    pointer-events: none;
    transition: background-color 0.6s ease;
}
.link.is-state_scroll::before {
    animation: circle 1.5s ease-in forwards;
}
@keyframes circle {
    from {
        border-radius: 150% / 100% 100% 0 0;
    }
    to {
        border-radius: 50% / 100% 100% 0 0;
    }
}
.link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(800vw / 19.2);
    background: #0088db;
    z-index: 1;
    pointer-events: none;
    transition: background-color 0.6s ease;
}
.link .c-heading {
    width: calc(934vw /19.2);
}
.link > div {
    position: relative;
    z-index: 2;
}
.link-bnrs {
    margin: 0 auto;
    padding-top: calc(200vw / 19.2);
    display: flex;
    justify-content: center;
}
.link-bnrs li {
    margin: 0 calc(15vw /19.2);
}
.link-bnrs a {
    background: #fff;
    border-radius: 18px;
    width: calc(564vw /19.2);
    height: calc(119vw /19.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}
.link-bnrs a::after {
    position: absolute;
    content: '';
    right: 1em;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url(./img/ico_arrow.svg) center bottom no-repeat;
    background-size: contain;
    width: calc(51vw / 19.2);
    height: calc(51vw / 19.2);
}
.link-bnrs li:nth-child(1) img {
    width: calc(455vw /19.2);
    margin-left: -2em;
}
.link-bnrs p {
    font-weight: 700;
    font-size: calc(36vw/ 19.2);
    letter-spacing: .1em;
    text-indent: -1em;
}
.link-snss {
    display: flex;
    justify-content: center;
    margin: calc(178vw / 19.2) auto 0;
}
.link-snss li {
    margin: 0 calc(40vw /19.2);
}
.link-snss a {
    background: #fff;
    border-radius: 50%;
    width: calc(207vw /19.2);
    height: calc(207vw /19.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}
.link-snss li:nth-child(1) img {
    width: calc(100vw /19.2);
}
.link-snss li:nth-child(2) img {
    width: calc(112vw /19.2);
}
@media screen and (min-width: 1px) and (min-width: 768px) {
    .link-bnrs a:hover {
        transform: scale(1.05);
    }
    .link-snss a:hover {
        transform: scale(1.1);
    }
}
@media screen and (min-width: 1px) and (max-width: 767px) {
    .link {
        padding: calc(200vw /7.5) 0 calc(180vw /7.5);
    }
    .link::before {
        left: calc(-520vw / 7.5);
        width: calc(1800vw / 7.5);
        height: calc(810vw / 7.5);
    }
    .link::after {
        height: calc(900vw / 7.5);
    }
    .link .c-heading {
        width: calc(500vw /7.5);
    }
    .link-bnrs {
        padding-top: calc(80vw / 7.5);
        display: block;
    }
    .link-bnrs li {
        margin: calc(50vw / 7.5) auto 0;
    }
    .link-bnrs a {
        border-radius: 13px;
        width: calc(547vw /7.5);
        height: calc(115vw /7.5);
        margin: 0 auto;
    }
    .link-bnrs a::after {
        width: calc(49vw / 7.5);
        height: calc(49vw / 7.5);
    }
    .link-bnrs li:nth-child(1) img {
        width: calc(455vw /7.5);
        margin-left: -2em;
    }
    .link-bnrs p {
        font-size: calc(35vw/ 7.5);
    }
    .link-snss {
        margin: calc(178vw / 7.5) auto 0;
    }
    .link-snss li {
        margin: 0 calc(40vw /7.5);
    }
    .link-snss a {
        width: calc(170vw /7.5);
        height: calc(170vw /7.5);
    }
    .link-snss li:nth-child(1) img {
        width: calc(86vw /7.5);
    }
    .link-snss li:nth-child(2) img {
        width: calc(99vw /7.5);
    }
}



/* footer
//* -------------------------------------------------- */
.g-footer {
  padding: calc(130vw /19.2) 0 0;
  background-color: #fffdf1;
}
.pagetop p {
  color: #60c5f0;
  font-size: calc(50vw /19.2);
  font-family: var(--font-Montserrat);
  text-align: center;
  font-weight: 400;
}
.pagetop p span {
    color: #0088db;
}
.pagetop img {
  width: calc(520vw /19.2);
  margin: calc(65vw /19.2) auto 0;
}
.g-footer .caution-lists {
  font-size: calc(24vw /19.2);
  width: fit-content;
  margin: calc(110vw /19.2) auto 0;
}
.g-footer .caution-lists a {
  display: inline;
}
.g-footer-logo {
  width: calc(270vw /19.2);
  margin: calc(180vw /19.2) auto calc(60vw /19.2);
  transition: all .3s;
}
.g-footer-logo img {
  margin-left: calc(-30vw /19.2);
}
.g-footer-copy {
  background-color: #0088db;
  color: #fff;
  text-align: center;
  padding: calc(50vw /19.2) 0;
  font-size: calc(24vw /19.2);
}

@media screen and (min-width: 768px) {
  .g-footer-logo:hover {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 767px) {
  .g-footer {
    padding: calc(150vw /7.5) 0 0;
  }
  .pagetop p {
    font-size: calc(50vw /7.5);
  }
  .pagetop img {
    width: calc(427vw /7.5);
    margin: calc(100vw /7.5) auto 0;
  }
  .g-footer .caution-lists {
    font-size: calc(24vw /7.5);
    margin: calc(125vw /7.5) auto 0;
    width: 90%;
  }
  .g-footer-logo {
    width: calc(250vw /7.5);
    margin: calc(180vw /7.5) auto calc(60vw /7.5);
  }
  .g-footer-logo img {
    margin-left: calc(-30vw /7.5);
  }
  .g-footer-copy {
    padding: calc(50vw /7.5) 0;
    font-size: calc(24vw /7.5);
  }
  
}
