@charset "utf-8";

:root {
    --ccd-font-en: "Montserrat";
    --ccd-font-jp: "Noto Sans JP", sans-serif;
    --ccd-text-color: #303837;
    --ccd-bg-color: #f5f4f2;
    --ccd-accent-color: #efebdd;
    --ccd-survey_color1: #ba1c23;
    --ccd-survey_color2: #c8494f;
    --ccd-survey_color3: #d6777b;
    --ccd-survey_color4: #e3a4a7;
    --ccd-survey_color5: #cccccc;
    --ccd-survey_color6: #dddddd;
    --ccd-contents-width: 1100px;
    --ccd-section-padding: 100px;
    --ccd-hover-animation: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#headNav {
    display: none;
}

#capsule_op {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background-color: var(--ccd-accent-color);
    z-index: 9990;
    animation: fadeOut .8s cubic-bezier(.895, 0, .14, .94) 7.8s forwards;
}
@keyframes fadeOut {
    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}
#capsule_op img {
    max-width: 100%;
    vertical-align: bottom;
}
#capsule_op .scene_01 {
    position: fixed;
    top: 0;
    left: 0;
    display: grid;
    place-content: center;
    width: 100vw;
    height: 100dvh;
    background-color: var(--ccd-accent-color);
    z-index: 1;
}
#capsule_op .scene_01 img {
    width: 68.57vw;
    clip-path: inset(0 100% 0 0);
    animation: wipeIn 1s ease-in-out .5s forwards;
}
@keyframes wipeIn {
    100% {
        clip-path: inset(0);
    }
}
#capsule_op .scene_02 {
    position: fixed;
    top: 0;
    left: 0;
    display: grid;
    place-content: center;
    width: 100vw;
    height: 100dvh;
    background-color: var(--ccd-accent-color);
    z-index: 2;
    clip-path: inset(0 100% 0 0);
    animation: wipeIn 1s ease-in-out 1.8s forwards;
}
#capsule_op .scene_02 > .gacha_machine {
    position: relative;
}
#capsule_op .scene_02 .gacha_machine_wrap {
    animation: fadeOut .5s ease-in 3.9s forwards;
}
#capsule_op .scene_02 .gacha_machine_wrap > img {
    width: 24vw;
}
#capsule_op .scene_02 .gacha_machine_wrap > img:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
#capsule_op .scene_02 .gacha_machine_wrap > img:nth-child(2) {
    animation: appearObject .2s ease-in 2.6s forwards;
}
#capsule_op .scene_02 .gacha_machine_wrap > img:nth-child(3) {
    animation: appearObject .2s ease-in 3s forwards;
}
@keyframes appearObject {
    100% {
        opacity: 1;
    }
}
@keyframes disappearObject {
    100% {
        opacity: 0;
    }
}
#capsule_op .scene_02 .gacha_capsule {
    position: absolute;
    top: 45vw;
    left: 4vw;
    width: 6vw;
    opacity: 0;
    translate: 0 -30%;
    animation: appearCapsule .4s cubic-bezier(0.215, 0.61, 0.355, 1) 3.2s forwards, focusCapsule .5s cubic-bezier(0.215, 0.61, 0.355, 1) 3.7s forwards, shaking .15s ease-in 4.2s 3;
    z-index: 2;
}
#capsule_op .scene_02 .gacha_capsule > img:first-child {
    animation: disappearObject .3s cubic-bezier(0.215, 0.61, 0.355, 1) 4.6s forwards;
}
#capsule_op .scene_02 .gacha_capsule > img:nth-child(2) {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    animation: appearObject .3s cubic-bezier(0.215, 0.61, 0.355, 1) 4.6s forwards;
}
@keyframes appearCapsule {
    20% {
        opacity: 0;
        translate: 0 -30%;
    }
    100% {
        opacity: 1;
        translate: 0 0;
    }
}
@keyframes focusCapsule {
    100% {
        top: 50%;
        left: 50%;
        translate: -50% -50%;
        width: 10vw;
    }
}
@keyframes shaking {
    0% {
        transform: translate(0px, 0px) rotateZ(0deg);
    }
    25% {
        transform: translate(5px, 5px) rotateZ(0.5deg);
    }
    50% {
        transform: translate(0px, 5px) rotateZ(0deg);
    }
    75% {
        transform: translate(5px, 0px) rotateZ(-0.5deg);
    }
    100% {
        transform: translate(0px, 0px) rotateZ(0deg);
    }
}
#capsule_op .scene_02 .capsules > img {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 9vw;
    opacity: 0;
    z-index: 1;
}
#capsule_op .scene_02 .capsules > #op_capsule_01 {
    animation: op_capsule_01 .5s cubic-bezier(0.215, 0.61, 0.355, 1) 4.8s forwards;
}
#capsule_op .scene_02 .capsules > #op_capsule_02 {
    animation: op_capsule_02 .5s cubic-bezier(0.215, 0.61, 0.355, 1) 5s forwards;
}
#capsule_op .scene_02 .capsules > #op_capsule_03 {
    animation: op_capsule_03 .5s cubic-bezier(0.215, 0.61, 0.355, 1) 5.2s forwards;
}
#capsule_op .scene_02 .capsules > #op_capsule_04 {
    animation: op_capsule_04 .5s cubic-bezier(0.215, 0.61, 0.355, 1) 4.8s forwards;
}
#capsule_op .scene_02 .capsules > #op_capsule_05 {
    animation: op_capsule_05 .5s cubic-bezier(0.215, 0.61, 0.355, 1) 5s forwards;
}
#capsule_op .scene_02 .capsules > #op_capsule_06 {
    animation: op_capsule_06 .5s cubic-bezier(0.215, 0.61, 0.355, 1) 5.2s forwards;
}
#capsule_op .scene_02 .capsules > #op_capsule_07 {
    animation: op_capsule_07 .5s cubic-bezier(0.215, 0.61, 0.355, 1) 5.2s forwards;
}
#capsule_op .scene_02 .capsules > #op_capsule_08 {
    animation: op_capsule_08 .5s cubic-bezier(0.215, 0.61, 0.355, 1) 4.8s forwards;
}
#capsule_op .scene_02 .capsules > #op_capsule_09 {
    animation: op_capsule_09 .5s cubic-bezier(0.215, 0.61, 0.355, 1) 4.8s forwards;
}
#capsule_op .scene_02 .capsules > #op_capsule_10 {
    animation: op_capsule_10 .5s cubic-bezier(0.215, 0.61, 0.355, 1) 5s forwards;
}
@keyframes op_capsule_01 {
    100% {
        top: 5vw;
        bottom: auto;
        left: 10vw;
        right: auto;
        rotate: -45deg;
        opacity: 1;
        translate: 0 0;
    }
}
@keyframes op_capsule_02 {
    100% {
        top: 12vw;
        bottom: auto;
        left: 30vw;
        right: auto;
        rotate: 45deg;
        opacity: 1;
        translate: 0 0;
    }
}
@keyframes op_capsule_03 {
    100% {
        top: 5vw;
        bottom: auto;
        left: auto;
        right: 10vw;
        rotate: -45deg;
        opacity: 1;
        translate: 0 0;
    }
}
@keyframes op_capsule_04 {
    100% {
        top: 15vw;
        bottom: auto;
        left: auto;
        right: 30vw;
        rotate: 45deg;
        opacity: 1;
        translate: 0 0;
    }
}
@keyframes op_capsule_05 {
    100% {
        top: 27vw;
        bottom: auto;
        left: 14vw;
        right: auto;
        rotate: -45deg;
        opacity: 1;
        translate: 0 0;
    }
}
@keyframes op_capsule_06 {
    100% {
        top: 27vw;
        bottom: auto;
        left: auto;
        right: 14vw;
        rotate: 45deg;
        opacity: 1;
        translate: 0 0;
    }
}
@keyframes op_capsule_07 {
    100% {
        top: auto;
        bottom: 8vw;
        left: 7vw;
        right: auto;
        rotate: 45deg;
        opacity: 1;
        translate: 0 0;
    }
}
@keyframes op_capsule_08 {
    100% {
        top: auto;
        bottom: 13vw;
        left: 30vw;
        right: auto;
        rotate: -45deg;
        opacity: 1;
        translate: 0 0;
    }
}
@keyframes op_capsule_09 {
    100% {
        top: auto;
        bottom: 8vw;
        left: auto;
        right: 7vw;
        rotate: 45deg;
        opacity: 1;
        translate: 0 0;
    }
}
@keyframes op_capsule_10 {
    100% {
        top: auto;
        bottom: 11vw;
        left: auto;
        right: 30vw;
        rotate: -45deg;
        opacity: 1;
        translate: 0 0;
    }
}
#capsule_op .scene_03 {
    position: fixed;
    top: 0;
    left: 0;
    display: grid;
    place-content: center;
    width: 100vw;
    height: 100dvh;
    background-color: var(--ccd-accent-color);
    z-index: 3;
    clip-path: inset(0 100% 0 0);
    animation: wipeIn 1s ease-in-out 5.6s forwards;
}
#capsule_op .scene_03 .op_logo {
    width: 34vw;
    margin: 0 auto 90px;
}
#capsule_op .scene_03 .op_txt_wrap {
    position: relative;
    width: 83.18vw;
}
#capsule_op .scene_03 .op_txt_zero {
    position: absolute;
    bottom: 0;
    left: 15.75vw;
    width: 4.42vw;
    text-align: center;
}
#capsule_op .scene_03 .op_txt_zero > img:first-child {
    width: 82.08%;
    animation: revolvingDoor .2s ease-in 6.4s 3 forwards;
}
#capsule_op .scene_03 .op_txt_zero > img:nth-child(2) {
    position: absolute;
    left: 0;
    visibility: hidden;
    animation: revolvingDoorReverse .2s ease-in 6.8s 3 forwards;
}
@keyframes revolvingDoor {
    50% {
        scale: -1 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes revolvingDoorReverse {
    100% {
        visibility: visible;
        scale: -1 1;
    }
}

#capsule-coffee-day {
    background-color: #fff;
    color: var(--ccd-text-color);
    font-family: var(--ccd-font-en), var(--ccd-font-jp);
    font-weight: 500;
    font-feature-settings: "palt";
}
#capsule-coffee-day .pc_none {
    display: none;
}
#capsule-coffee-day a {
    color: var(--ccd-text-color);
}
#capsule-coffee-day img {
    width: 100%;
    vertical-align: bottom;
}
#capsule-coffee-day .wrap {
    max-width: var(--ccd-contents-width);
    margin-left: auto;
    margin-right: auto;
}
#capsule-coffee-day .section_ttl {
    font-size: 56px;
    font-weight: 800;
    text-align: center;
}
#capsule-coffee-day .section_ttl > span {
    display: block;
    font-size: 24px;
    font-weight: 500;
    margin-top: 25px;
}
#capsule-coffee-day .section_txt {
    font-size: 20px;
    font-weight: 500;
    line-height: 2;
    margin-top: 30px;
}

#capsule-coffee-day #mv {
    background-color: var(--ccd-bg-color);
}
#capsule-coffee-day #mv .event_logo {
  width: 100%;
  height: 123px;
  overflow: hidden;
  position: relative;
}
#capsule-coffee-day #mv .event_logo > div {
  width: calc(1307px * 2);
  height: 100%;
  background: url(../img/event_logo.svg) repeat-x 0 center / 1307px 83px;
  animation: eventLogo 20s linear infinite;
}
@keyframes eventLogo {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1307px);
  }
}

#capsule-coffee-day #introduction {
    background-color: var(--ccd-bg-color);
    text-align: center;
}
#capsule-coffee-day #introduction > .wrap {
    padding: var(--ccd-section-padding) 0;
}
#capsule-coffee-day #introduction > .wrap > * + * {
    margin-top: var(--ccd-section-padding);
}
#capsule-coffee-day #introduction .information img {
    max-width: 555px;
}
#capsule-coffee-day #introduction p {
    font-size: 20px;
    line-height: 2;
}
#capsule-coffee-day #introduction p > sup {
    font-size: 80%;
}
#capsule-coffee-day #introduction p + .notes {
    margin-top: 40px;
    font-size: 14px;
}
#capsule-coffee-day #introduction .point {
    display: flex;
    justify-content: space-between;
    margin: 140px 0 200px;
}
#capsule-coffee-day #introduction .point > .item {
    position: relative;
    width: 30.91%;
    text-align: center;
}
#capsule-coffee-day #introduction .point > .item > .point_wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: #fff;
    overflow: hidden;
}
#capsule-coffee-day #introduction .point_ttl {
    background-color: var(--ccd-survey_color1);
    padding: 35px 0 25px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}
#capsule-coffee-day #introduction .point_detail p {
    font-size: 15px;
    line-height: 1.8;
}
#capsule-coffee-day #introduction .point_detail p > strong {
    color: var(--ccd-survey_color1);
    font-size: 28px;
    line-height: 1;
}
#capsule-coffee-day #introduction .point_detail p > span {
    color: var(--ccd-survey_color1);
}
#capsule-coffee-day #introduction .point > .item figure {
    position: absolute;
    top: 205px;
    left: 50%;
    translate: -50% 0;
    width: 45%;
}
#capsule-coffee-day #introduction .point > .item:nth-child(2) figure {
    width: 20.88%;
}











#capsule-coffee-day .map .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
#capsule-coffee-day .map .section_ttl {
    display: flex;
    align-items: center;
}
#capsule-coffee-day .map .section_ttl > span {
    margin-left: 24px;
}
#capsule-coffee-day .map .head p {
    font-size: 20px;
    font-weight: 400;
}
#capsule-coffee-day .map .head p > span {
    margin-left: 20px;
}
#capsule-coffee-day .map .head p > span a {
    padding-bottom: 5px;
    border-bottom: 1px solid var(--ccd-text-color);
}
@media (hover:hover) {
    #capsule-coffee-day .map .head p > span a:hover {
        border-bottom-width: 0px;
    }
}

#capsule-coffee-day #about {
    background-color: var(--ccd-bg-color);
    padding: var(--ccd-section-padding) 0;
    text-align: center;
}
#capsule-coffee-day #about .about_step {
    margin-top: 110px;
}
#capsule-coffee-day #about .about_step > .item {
    position: relative;
    background-color: #fff;
    padding: 60px 0 50px;
    border-radius: 20px;
}
#capsule-coffee-day #about .about_step > .item + .item {
    margin-top: 65px;
}
#capsule-coffee-day #about .step_ttl {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    background-color: var(--ccd-text-color);
    padding: 10px 0;
    border-radius: 9999vw;
    color: #fff;
    font-size: 25px;
    font-weight: 700;
}
#capsule-coffee-day #about .about_step p {
    font-size: 20px;
    line-height: 1.75;
}
#capsule-coffee-day #about .about_step > .item::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 14px solid var(--ccd-text-color);
}
#capsule-coffee-day #about .about_step > .item:last-child::after {
    display: none;
}

#capsule-coffee-day #lineup .wrap {
    padding: var(--ccd-section-padding) 0;
}
#capsule-coffee-day .lineup_list {
    margin-top: 90px;
}
#capsule-coffee-day .lineup_list > ul {
    gap: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    justify-items: center;
}
#capsule-coffee-day .lineup_list > ul > li {
    width: 257px;
    background-color: var(--ccd-bg-color);
    text-align: center;
    overflow: hidden;
    transition: border-radius var(--ccd-hover-animation);
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
}
#capsule-coffee-day .lineup_list > ul > li > a {
    display: inherit;
    grid-template-rows: inherit;
    grid-row: inherit;
}
#capsule-coffee-day .lineup_list > ul > li figure {
    width: 120px;
    margin: auto;
    padding: 30px 0;
}
#capsule-coffee-day .lineup_list > ul > li .capsule_name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}
#capsule-coffee-day .lineup_list > ul > li .capsule_name > span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
}
#capsule-coffee-day .lineup_list > ul > li .btn {
    position: relative;
    margin-top: 10px;
    display: block;
    padding: 13px 0;
    background-color: var(--ccd-accent-color);
    font-size: 16px;
    font-weight: 400;
}
#capsule-coffee-day .lineup_list > ul > li .btn::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 18px;
    width: 8px;
    height: 15px;
    margin: auto;
    background: url(../img/ico_arrow.png) no-repeat center / 100% auto;
}
@media (hover:hover) {
    #capsule-coffee-day .lineup_list > ul > li:hover {
        border-radius: 14px;
    }
}
#capsule-coffee-day #lineup .column {
    gap: 0;
    margin-top: 120px;
}
#capsule-coffee-day .column {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
#capsule-coffee-day #lineup .column figure {
    width: 280px;
    margin: auto;
}
#capsule-coffee-day #sustainable.column figure {
    width: 140px;
}
#capsule-coffee-day .column_detail {
    max-width: 692px;
}
#capsule-coffee-day #lineup .column_detail {
    flex-shrink: 0;
}
#capsule-coffee-day .column_ttl {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
}
#capsule-coffee-day .column_detail p {
    font-size: 16px;
    line-height: 1.75;
    text-align: justify;
}
#capsule-coffee-day .column_detail .more {
    margin-top: 40px;
}

#capsule-coffee-day #marriage .wrap, #capsule-coffee-day #gacha .wrap {
    padding: var(--ccd-section-padding) 0;
}
#capsule-coffee-day #gacha .wrap {
    text-align: center;
}
#capsule-coffee-day #marriage .wrap .section_ttl, #capsule-coffee-day #gacha .wrap  .section_ttl {
    margin-bottom: 60px;
}
#capsule-coffee-day #marriage .wrap figure, #capsule-coffee-day #gacha .wrap figure {
    margin: 0 auto 60px;
}
#capsule-coffee-day #marriage .wrap figure {
    width: 44.18%;
}
#capsule-coffee-day #gacha .wrap figure {
    width: 73.77%;
}
#capsule-coffee-day #marriage .wrap p, #capsule-coffee-day #gacha .wrap p {
    font-size: 18px;
    line-height: 2;
    text-align: justify;
}
#capsule-coffee-day #marriage .wrap p + p {
    margin-top: 30px;
}
#capsule-coffee-day #marriage .marriage_flow {
    display: flex;
    justify-content: space-between;
    column-gap: 10%;
    width: 69.09%;
    margin: 40px auto 0;
}
#capsule-coffee-day #marriage .marriage_flow > .item {
    text-align: center;
}
#capsule-coffee-day #marriage .marriage_flow > .item img {
    margin-bottom: 30px;
}
#capsule-coffee-day #marriage .marriage_flow .flow_ttl {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}
#capsule-coffee-day #marriage .marriage_flow .flow_ttl > span {
    position: relative;
    background-color: #fff;
    padding: 0 15px;
    z-index: 2;
}
#capsule-coffee-day #marriage .marriage_flow .flow_ttl::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 34%;
    height: 1px;
    background-color: var(--ccd-text-color);
    z-index: 1;
}
#capsule-coffee-day #marriage .marriage_flow p {
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
}
#capsule-coffee-day #gacha .wrap .more {
    margin-top: 40px;
}

#capsule-coffee-day #day {
    background-color: var(--ccd-bg-color);
    text-align: center;
}
#capsule-coffee-day #day .wrap {
    padding: var(--ccd-section-padding) 0;
}
#capsule-coffee-day #day .wrap > p {
    font-size: 18px;
    line-height: 2;
}
#capsule-coffee-day .survey {
    margin-top: 150px;
}
#capsule-coffee-day .survey_ttl {
    position: relative;
    display: inline-block;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.6;
    text-align: left;
    padding-left: 90px;
    margin-bottom: 90px;
}
#capsule-coffee-day .survey_ttl::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: url(../img/ico_q.png) no-repeat center center / 100% auto;
}
#capsule-coffee-day .survey .column {
    justify-content: center;
    column-gap: 113px;
}
#capsule-coffee-day .survey > .item + .item {
    margin-top: 120px;
}
#capsule-coffee-day .survey_graph {
    position: relative;
    text-align: center;
}
#capsule-coffee-day .survey_graph .circle {
    width: 100%;
    max-width: 478px;
    height: auto;
    aspect-ratio: 1 / 1;
    transform: rotate(-90deg);
}
#capsule-coffee-day .survey_graph .circle circle {
    fill: none;
    stroke-width: 16px;
    stroke-dasharray: 0, 282.74;
}
#capsule-coffee-day #survey_graph1.survey_graph .circle circle:first-child {
    stroke: var(--ccd-survey_color5);
    stroke-dashoffset: 0;
}
#capsule-coffee-day #survey_graph1.survey_graph.inview .circle circle:first-child {
    animation: survey_graph1-a 0.4s 0s ease-out forwards;
}
@keyframes survey_graph1-a {
    0% {
        stroke-dasharray: 0, 282.74;
    }
    100% {
        stroke-dasharray: 82.27, 282.74;
    }
}
#capsule-coffee-day #survey_graph1.survey_graph .circle circle:nth-child(2) {
    stroke: var(--ccd-survey_color1);
    stroke-dashoffset: -82.27;
}
#capsule-coffee-day #survey_graph1.survey_graph.inview .circle circle:nth-child(2) {
    animation: survey_graph1-b 0.4s 0.4s ease-out forwards;
}
@keyframes survey_graph1-b {
    0% {
        stroke-dasharray: 0, 282.74;
    }
    100% {
        stroke-dasharray: 124.13, 282.74;
    }
}
#capsule-coffee-day #survey_graph1.survey_graph .circle circle:nth-child(3) {
    stroke: var(--ccd-survey_color2);
    stroke-dashoffset: -206.40;
}
#capsule-coffee-day #survey_graph1.survey_graph.inview .circle circle:nth-child(3) {
    animation: survey_graph1-c 0.4s 0.8s ease-out forwards;
}
@keyframes survey_graph1-c {
    0% {
        stroke-dasharray: 0, 282.74;
    }
    100% {
        stroke-dasharray: 57.96, 282.74;
    }
}
#capsule-coffee-day #survey_graph1.survey_graph .circle circle:nth-child(4) {
    stroke: var(--ccd-survey_color3);
    stroke-dashoffset: -264.36;
}
#capsule-coffee-day #survey_graph1.survey_graph.inview .circle circle:nth-child(4) {
    animation: survey_graph1-d 0.4s 1.2s ease-out forwards;
}
@keyframes survey_graph1-d {
    0% {
        stroke-dasharray: 0, 282.74;
    }
    100% {
        stroke-dasharray: 10.74, 282.74;
    }
}
#capsule-coffee-day #survey_graph1.survey_graph .circle circle:nth-child(5) {
    stroke: var(--ccd-survey_color4);
    stroke-dashoffset: -275.10;
}
#capsule-coffee-day #survey_graph1.survey_graph.inview .circle circle:nth-child(5) {
    animation: survey_graph1-e 0.4s 1.6s ease-out forwards;
}
@keyframes survey_graph1-e {
    0% {
        stroke-dasharray: 0, 282.74;
    }
    100% {
        stroke-dasharray: 7.92, 282.74;
    }
}
#capsule-coffee-day #survey_graph2.survey_graph .circle circle:first-child {
    stroke: var(--ccd-survey_color1);
    stroke-dashoffset: 0;
}
#capsule-coffee-day #survey_graph2.survey_graph.inview .circle circle:first-child {
    animation: survey_graph2-a 0.4s 0s ease-out forwards;
}
@keyframes survey_graph2-a {
    0% {
        stroke-dasharray: 0, 282.74;
    }
    100% {
        stroke-dasharray: 78.83, 282.74;
    }
}
#capsule-coffee-day #survey_graph2.survey_graph .circle circle:nth-child(2) {
    stroke: var(--ccd-survey_color2);
    stroke-dashoffset: -78.83;
}
#capsule-coffee-day #survey_graph2.survey_graph.inview .circle circle:nth-child(2) {
    animation: survey_graph2-b 0.4s 0.4s ease-out forwards;
}
@keyframes survey_graph2-b {
    0% {
        stroke-dasharray: 0, 282.74;
    }
    100% {
        stroke-dasharray: 133.71, 282.74;
    }
}
#capsule-coffee-day #survey_graph2.survey_graph .circle circle:nth-child(3) {
    stroke: var(--ccd-survey_color5);
    stroke-dashoffset: -212.54;
}
#capsule-coffee-day #survey_graph2.survey_graph.inview .circle circle:nth-child(3) {
    animation: survey_graph2-c 0.4s 0.8s ease-out forwards;
}
@keyframes survey_graph2-c {
    0% {
        stroke-dasharray: 0, 282.74;
    }
    100% {
        stroke-dasharray: 45.83, 282.74;
    }
}
#capsule-coffee-day #survey_graph2.survey_graph .circle circle:nth-child(4) {
    stroke: var(--ccd-survey_color6);
    stroke-dashoffset: -258.37;
}
#capsule-coffee-day #survey_graph2.survey_graph.inview .circle circle:nth-child(4) {
    animation: survey_graph2-d 0.4s 1.2s ease-out forwards;
}
@keyframes survey_graph2-d {
    0% {
        stroke-dasharray: 0, 282.74;
    }
    100% {
        stroke-dasharray: 24.37, 282.74;
    }
}
#capsule-coffee-day .survey_graph .survey_label {
    fill: #fff;
    font-size: 6px;
    font-weight: 500;
    opacity: 0;
}
#capsule-coffee-day .survey_graph.inview .survey_label {
    animation: survey_label 0.8s 2s ease-out forwards;
}
@keyframes survey_label {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
#capsule-coffee-day .survey_graph #survey_graph1_label-a {
    top: 104px;
    right: 70px;
}
#capsule-coffee-day .survey_graph #survey_graph1_label-b {
    bottom: 27px;
    left: 230px;
}
#capsule-coffee-day .survey_graph #survey_graph1_label-c {
    top: 122px;
    left: 60px;
}
#capsule-coffee-day .survey_graph #survey_graph1_label-d {
    top: 31px;
    left: 174px;
}
#capsule-coffee-day .survey_graph #survey_graph1_label-e {
    top: 20px;
    left: 215px;
}
#capsule-coffee-day .survey_graph #survey_graph2_label-a {
    top: 109px;
    right: 66px;
}
#capsule-coffee-day .survey_graph #survey_graph2_label-b {
    bottom: 27px;
    left: 230px;
}
#capsule-coffee-day .survey_graph #survey_graph2_label-c {
    top: 120px;
    left: 60px;
}
#capsule-coffee-day .survey_graph #survey_graph2_label-d {
    top: 31px;
    left: 176px;
}
#capsule-coffee-day .survey_graph > p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: var(--ccd-survey_color1);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}
#capsule-coffee-day .survey_detail {
    width: 430px;
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
}
#capsule-coffee-day .survey_detail > ul > li + li {
    margin-top: 25px;
}
#capsule-coffee-day .survey_detail > ul > li > p {
    padding-left: 35px;
}
#capsule-coffee-day .survey_num {
    position: relative;
    margin-bottom: 5px;
}
#capsule-coffee-day .survey_num::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 19px;
    height: 19px;
    background-color: var(--ccd-survey_color1);
    border-radius: 50%;
}
#capsule-coffee-day .survey_num.survey_color2::before {
    background-color: var(--ccd-survey_color2);
}
#capsule-coffee-day .survey_num.survey_color3::before {
    background-color: var(--ccd-survey_color3);
}
#capsule-coffee-day .survey_num.survey_color4::before {
    background-color: var(--ccd-survey_color4);
}
#capsule-coffee-day .survey_num.survey_color5::before {
    background-color: var(--ccd-survey_color5);
}
#capsule-coffee-day .survey_num.survey_color6::before {
    background-color: var(--ccd-survey_color6);
}
#capsule-coffee-day .survey .notes {
    margin-top: 75px;
    font-size: 14px;
    text-align: right;
}

#capsule-coffee-day #drip-pod {
    background-color: var(--ccd-bg-color);
}
#capsule-coffee-day #drip-pod .point_ttl {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--ccd-section-padding);
    line-height: 1.4;
}
#capsule-coffee-day #drip-pod .point_ttl > span > small {
    display: block;
    font-size: 20px;
    font-weight: 500;
    margin-top: 10px;
}
#capsule-coffee-day #drip-pod .point_ttl > span {
    position: relative;
    z-index: 1;
}
#capsule-coffee-day #drip-pod .point_ttl::before {
    content: "POINT";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--ccd-accent-color);
    font-size: 160px;
    font-weight: 700;
}
#capsule-coffee-day #drip-pod .point_list {
    width: 90%;
    margin: 0 auto;
}
#capsule-coffee-day #drip-pod .wrap {
    padding: var(--ccd-section-padding) 0;
}
#capsule-coffee-day #drip-pod .column {
    margin-top: var(--ccd-section-padding);
}
#capsule-coffee-day .drip-pod_ttl {
    flex-shrink: 0;
    font-size: 50px;
    font-weight: 800;
}
#capsule-coffee-day #drip-pod .column_detail p {
    line-height: 2.125;
}
#capsule-coffee-day #drip-pod .more {
    margin-top: 20px;
    text-align: right;
}
#capsule-coffee-day .more > a {
    position: relative;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--ccd-text-color);
    font-size: 18px;
    font-weight: 500;
}
#capsule-coffee-day .more > a::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 15px;
    margin-left: 12px;
    background: url(../img/ico_arrow.png) no-repeat center / 100% auto;
}
@media (hover:hover) {
    #capsule-coffee-day .more > a:hover {
        border-bottom-width: 0px;
    }
}

#capsule_modal {
    display: none;
}
.modaal-wrapper {
    z-index: 1002;
}
.modaal-inner-wrapper {
    padding-top: 24px;
    padding-bottom: 24px;
}
.modaal-container {
    max-width: 474px;
    margin: 0 auto;
    background: none;
    box-shadow: none;
}
.modaal-content-container {
    padding: 0;
}
.modal_wrap {
    position: relative;
    background-color: #fff;
    padding: 40px 32px;
    border-radius: 16px;
    color: var(--ccd-text-color);
    font-family: var(--ccd-font-en), var(--ccd-font-jp);
    font-weight: 500;
    font-feature-settings: "palt";
}
/* .modal_wrap .modal_close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    background: url(../img/ico_close.png) 50% 50% no-repeat center / contain;
    border: 0;
    outline: none;
} */
.modal_wrap .modal_close > span {
    display: block;
    text-indent: -9999px;
}
.modal_wrap figure {
    width: 210px;
    margin: 0 auto;
}
.modal_wrap figure img {
    max-width: 100%;
}
.modal_wrap .capsule_detail {
    margin-top: 20px;
}
.modal_wrap .capsule_name {
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.4;
}
.modal_wrap p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    text-align: justify;
}
.modal_wrap .feature {
    font-size: 16px;
    margin: 40px 0 30px;
    text-align: center;
    border-bottom: 1px solid var(--ccd-accent-color);
    padding-bottom: 20px;
}
.modal_wrap .feature li {
    padding-bottom: 0.8rem;
    letter-spacing: 0.1em;
}
.modal_wrap .feature li > span {
    color: rgb(242, 242, 242);
}
.modal_wrap .feature li > span > strong {
    color: var(--ccd-survey_color1);
}
.modal_wrap .flavor,
.modal_wrap .origin {
    text-align: center;
}
.modal_wrap .flavor {
    padding-bottom: 20px;
}
.modal_wrap .capsule_detail span.ttl {
    font-weight: 600;
    padding-bottom: 10px;
}
.modaal-overlay {
    z-index: 1001;
}
.modaal-close {
    position: absolute;
    top: -60px;
    right: -10px;
}
.modaal-close:after, 
.modaal-close:before {
    background:#ccc; 
    width: 2px;
    height: 34px;
}
.modaal-close:focus, .modaal-close:hover {
    background-color: transparent;
}
.modaal-close:focus:after, .modaal-close:focus:before, .modaal-close:hover:after, .modaal-close:hover:before {
    background: #fff;
}


@media screen and (max-width: 767px) {
    :root {
        --ccd-contents-width: 92.53vw;
        --ccd-section-padding: 16vw;
    }

    #headBtnNav {
        padding-right: 1.5rem;
    }
    #headBtnNav > ul > #spNavOpenBtn {
        display: none;
    }
    
    #capsule_op .scene_02 .gacha_machine_wrap > img {
        width: 58vw;
    }
    #capsule_op .scene_02 .gacha_capsule {
        top: 110vw;
        left: 10vw;
        width: 14vw;
    }
    @keyframes focusCapsule {
        100% {
            top: 50%;
            left: 50%;
            translate: -50% -50%;
            width: 24vw;
        }
    }
    #capsule_op .scene_02 .capsules > img {
        width: 18vw;
    }
    @keyframes op_capsule_01 {
        100% {
            top: 14vw;
            bottom: auto;
            left: 10vw;
            right: auto;
            rotate: -45deg;
            opacity: 1;
            translate: 0 0;
        }
    }
    @keyframes op_capsule_02 {
        100% {
            top: 14vw;
            bottom: auto;
            left: 50%;
            right: auto;
            rotate: 45deg;
            opacity: 1;
            translate: -50% 0;
        }
    }
    @keyframes op_capsule_03 {
        100% {
            top: 14vw;
            bottom: auto;
            left: auto;
            right: 10vw;
            rotate: -45deg;
            opacity: 1;
            translate: 0 0;
        }
    }
    @keyframes op_capsule_04 {
        100% {
            top: 44vw;
            bottom: auto;
            left: auto;
            right: 25vw;
            rotate: 45deg;
            opacity: 1;
            translate: 0 0;
        }
    }
    @keyframes op_capsule_05 {
        100% {
            top: 44vw;
            bottom: auto;
            left: 25vw;
            right: auto;
            rotate: -45deg;
            opacity: 1;
            translate: 0 0;
        }
    }
    @keyframes op_capsule_06 {
        100% {
            top: auto;
            bottom: 44vw;
            left: auto;
            right: 25vw;
            rotate: 45deg;
            opacity: 1;
            translate: 0 0;
        }
    }
    @keyframes op_capsule_07 {
        100% {
            top: auto;
            bottom: 44vw;
            left: 25vw;
            right: auto;
            rotate: -45deg;
            opacity: 1;
            translate: 0 0;
        }
    }
    @keyframes op_capsule_08 {
        100% {
            top: auto;
            bottom: 14vw;
            left: 10vw;
            right: auto;
            rotate: -45deg;
            opacity: 1;
            translate: 0 0;
        }
    }
    @keyframes op_capsule_09 {
        100% {
            top: auto;
            bottom: 14vw;
            left: 50%;
            right: auto;
            rotate: 45deg;
            opacity: 1;
            translate: -50% 0;
        }
    }
    @keyframes op_capsule_10 {
        100% {
            top: auto;
            bottom: 14vw;
            left: auto;
            right: 10vw;
            rotate: -45deg;
            opacity: 1;
            translate: 0 0;
        }
    }
    #capsule_op .scene_03 .op_logo {
        width: 54vw;
        margin-bottom: 12vw;
    }
    #capsule_op .scene_03 .op_txt_zero {
        left: 16vw;
    }

    #capsule-coffee-day .sp_none {
        display: none;
    }
    #capsule-coffee-day .pc_none {
        display: block;
    }
    #capsule-coffee-day .section_ttl {
        font-size: 9vw;
    }
    #capsule-coffee-day .section_ttl > span {
        font-size: 4vw;
        margin-top: 4vw;
    }
    #capsule-coffee-day .section_txt {
        font-size: 3.5vw;
        margin-top: 5vw;
    }

    #capsule-coffee-day #mv .event_logo {
        height: 15.47vw;
    }
    #capsule-coffee-day #mv .event_logo > div {
        width: calc(163.6vw * 2);
        background-size: 163.6vw 10.13vw;
    }
    @keyframes eventLogo {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-163.6vw);
        }
    }

    #capsule-coffee-day #introduction .information img {
        max-width: 95%;
    }
    #capsule-coffee-day #introduction p {
        font-size: 3.2vw;
    }
    #capsule-coffee-day #introduction p + .notes {
        margin-top: 30px;
        font-size: 2.8vw;
    }
    #capsule-coffee-day #introduction .point {
        display: grid;
        grid-template-rows: auto auto;
        grid-template-columns: 1fr 1fr;
        gap: 8vw 2vw;
        margin: var(--ccd-section-padding) 0 28vw;
    }
    #capsule-coffee-day #introduction .point > .item {
        width: 44vw;
    }
    #capsule-coffee-day #introduction .point > .item:first-child {
        grid-column: 1 / -1;
        justify-self: center;
    }
    #capsule-coffee-day #introduction .point > .item:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }
    #capsule-coffee-day #introduction .point > .item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
        justify-self: end;
    }
    #capsule-coffee-day #introduction .point_ttl {
        padding: 5vw 0 3vw;
        margin-bottom: 3vw;
        font-size: 3vw;
    }
    #capsule-coffee-day #introduction .point > .item figure {
        top: 33vw;
        width: 40%;
    }
    #capsule-coffee-day #introduction .point_detail p {
        font-size: 2.8vw;
    }
    #capsule-coffee-day #introduction .point_detail p > strong {
        font-size: 6vw;
    }
    #capsule-coffee-day .map .head {
        flex-direction: column;
        row-gap: 9vw;
        margin-bottom: 8vw;
    }
    #capsule-coffee-day .map .section_ttl {
        display: block;
    }
    #capsule-coffee-day .map .section_ttl > span {
        margin-left: 0;
    }
    #capsule-coffee-day .map .head p {
        font-size: 3.5vw;
    }
    #capsule-coffee-day .map .head p > span {
        margin-left: 5vw;
    }

    #capsule-coffee-day #about .section_ttl {
        font-size: 8vw;
        line-height: 1.4;
    }
    #capsule-coffee-day #about .about_step {
        margin-top: 17.5vw;
    }
    #capsule-coffee-day #about .about_step > .item {
        padding: 10vw 5vw 7.5vw;
    }
    #capsule-coffee-day #about .about_step > .item + .item {
        margin-top: 12.5vw;
    }
    #capsule-coffee-day #about .about_step > .item::after {
        bottom: -3.5vw;
        border-left-width: 2.75vw;
        border-right-width: 2.75vw;
        border-top-width: 3.5vw;
    }
    #capsule-coffee-day #about .step_ttl {
        width: 32.5vw;
        font-size: 4.2vw;
    }
    #capsule-coffee-day #about .about_step p {
        font-size: 3.5vw;
    }

    #capsule-coffee-day .lineup_list {
        margin-top: 13vw;
    }
    #capsule-coffee-day .lineup_list > ul {
        gap: 3.735vw;
        grid-template-columns: repeat(2, 1fr);
    }
    #capsule-coffee-day .lineup_list > ul > li {
        width: auto;
    }
    #capsule-coffee-day .lineup_list > ul > li figure {
        width: 46%;
        padding: 5.5vw 0 3vw;
    }
    #capsule-coffee-day .lineup_list > ul > li .capsule_name {
        font-size: 3.2vw;
        line-height: 1.4;
    }
    #capsule-coffee-day .lineup_list > ul > li .capsule_name > span {
        font-size: 2.5vw;
        margin-top: 3vw;
    }
    #capsule-coffee-day .lineup_list > ul > li .btn {
        margin-top: 2vw;
        padding: 3vw 0;
        font-size: 3vw;
    }
    #capsule-coffee-day .lineup_list > ul > li .btn::after {
        right: 4vw;
        width: 1.6vw;
        height: 2.67vw;
    }
    #capsule-coffee-day #lineup .column {
        row-gap: 12.5vw;
        margin-top: 16vw;
    }
    #capsule-coffee-day #lineup .column figure {
        width: 62.5vw;
    }
    #capsule-coffee-day #sustainable.column figure {
        width: 30vw;
    }
    #capsule-coffee-day .column_ttl {
        font-size: 4vw;
        text-align: center;
        margin-bottom: 5vw;
    }
    #capsule-coffee-day .column_detail p {
        font-size: 3vw;
    }
    #capsule-coffee-day .column_detail .more {
        text-align: center;
        margin-top: 7.5vw;
    }

    #capsule-coffee-day #marriage .wrap .section_ttl, #capsule-coffee-day #gacha .wrap .section_ttl {
        margin-bottom: 8vw;
        line-height: 1.2;
    }
    #capsule-coffee-day #marriage .wrap figure, #capsule-coffee-day #gacha .wrap figure {
        width: 70%;
        margin-bottom: 8vw;
    }
    #capsule-coffee-day #gacha .wrap figure {
        width: 92%;
    }
    #capsule-coffee-day #marriage .wrap p, #capsule-coffee-day #gacha .wrap p {
        font-size: 3vw;
        line-height: 1.75;
    }
    #capsule-coffee-day #marriage .wrap p + p {
        margin-top: 4vw;
    }
    #capsule-coffee-day #marriage .marriage_flow {
        flex-wrap: wrap;
        width: 80%;
        margin-top: 5vw;
    }
    #capsule-coffee-day #marriage .marriage_flow > .item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    #capsule-coffee-day #marriage .marriage_flow > .item:nth-child(2) {
        margin: 2vw 0 5vw;
    }
    #capsule-coffee-day #marriage .marriage_flow > .item img {
        width: 25%;
        margin-bottom: 0;
    }
    #capsule-coffee-day #marriage .marriage_flow .flow_detail {
        width: 60%;
    }
    #capsule-coffee-day #marriage .marriage_flow .flow_ttl {
        font-size: 3.5vw;
        text-align: left;
        margin-bottom: 3vw;
    }
    #capsule-coffee-day #marriage .marriage_flow .flow_ttl > span {
        padding-left: 0;
        padding-right: 3vw;
    }
    #capsule-coffee-day #marriage .marriage_flow .flow_ttl::before {
        left: 0;
        translate: 0 -50%;
        width: 18vw;
    }
    #capsule-coffee-day #marriage .wrap p, #capsule-coffee-day #gacha .wrap p {
        text-align: left;
    }
    #capsule-coffee-day #gacha .wrap .more {
        margin-top: 7.5vw;
    }

    #capsule-coffee-day #day .wrap > p {
        font-size: 3.5vw;
    }
    #capsule-coffee-day #day .more {
        margin-top: 9vw;
    }
    #capsule-coffee-day .survey {
        margin-top: 25vw;
    }
    #capsule-coffee-day .survey > .item + .item {
        margin-top: 20vw;
    }
    #capsule-coffee-day .survey_ttl {
        font-size: 4vw;
        line-height: 1.5;
        padding-left: 15vw;
        margin-bottom: 10vw;
    }
    #capsule-coffee-day .survey_ttl::before {
        width: 10vw;
        height: 10vw;
    }
    #capsule-coffee-day .survey .column {
        gap: 7.5vw 0;
    }
    #capsule-coffee-day .survey_graph .circle {
        width: 90%;
    }
    #capsule-coffee-day .survey_graph > p {
        font-size: 4vw;
    }
    #capsule-coffee-day .survey_detail {
        width: 100%;
        font-size: 3vw;
        text-align: center;
    }
    #capsule-coffee-day .survey_detail > ul {
        display: inline-block;
        text-align: left;
    }
    #capsule-coffee-day .survey_detail > ul > li + li {
        margin-top: 3.75vw;
    }
    #capsule-coffee-day .survey_detail > ul > li > p {
        padding-left: 7.5vw;
    }
    #capsule-coffee-day .survey_num::before {
        width: 3vw;
        height: 3vw;
    }
    #capsule-coffee-day .survey .notes {
        margin-top: 7.5vw;
        font-size: 2.5vw;
    }
    
    #capsule-coffee-day #point {
        padding-top: 12vw;
    }
    #capsule-coffee-day #drip-pod .point_ttl {
        font-size: 5vw;
        margin-bottom: 15vw;
        line-height: 1.6;
    }
    #capsule-coffee-day #drip-pod .point_ttl > span > small {
        font-size: 3.5vw;
        margin-top: 2vw;
    }
    #capsule-coffee-day #drip-pod .point_ttl::before {
        font-size: 25vw;
    }
    #capsule-coffee-day #drip-pod .point_list {
        width: 84%;
        margin: 0 auto;
    }
    #capsule-coffee-day #drip-pod .wrap {
        padding: 14vw 0 15vw;
    }
    #capsule-coffee-day .column {
        flex-direction: column;
        gap: 6vw;
    }
    #capsule-coffee-day .drip-pod_ttl {
        font-size: 9vw;
    }
    #capsule-coffee-day #drip-pod .column p {
        max-width: 100%;
        font-size: 3.5vw;
    }
    #capsule-coffee-day #drip-pod .more {
        margin-top: 6vw;
        text-align: center;
    }
    #capsule-coffee-day #drip-pod .cover_sp {
        position: relative;
    }
    #capsule-coffee-day #drip-pod .swiper-button-prev,
    #capsule-coffee-day #drip-pod .swiper-button-next {
        color: var(--ccd-accent-color);
    }
    #drip-pod .swiper-button-next:after, 
    #drip-pod .swiper-button-prev:after {
        font-size: 6vw;
    }
    #capsule-coffee-day .more > a {
        padding-bottom: 1.5vw;
        font-size: 3.5vw;
    }
    #capsule-coffee-day .more > a::after {
        width: 1.6vw;
        height: 3.47vw;
        margin-left: 3vw;
        vertical-align: -0.5vw;
    }

    /* .modal_wrap .modal_close {
        top: 4vw;
        right: 4vw;
        width: 7vw;
        height: 7vw;
    } */
    .modal_wrap {
        padding: 9vw 6vw;
        border-radius: 4vw;
    }
    .modal_wrap figure {
        width: 30vw;
    }
    .modal_wrap .capsule_detail {
        margin-top: 4vw;
    }
    .modal_wrap .capsule_name {
        font-size: 6vw;
        margin-bottom: 6vw;
    }
    .modal_wrap .capsule_name > span {
        font-size: 3vw;
        margin-top: 4vw;
    }
    .modal_wrap p {
        font-size: 3.2vw;
        line-height: 1.8;
    }
    .modal_wrap .feature {
        font-size: 3.2vw;
        margin: 8vw 0 6vw;
        padding-bottom: 4vw;
    }
    .modal_wrap .flavor{
        padding-bottom: 1.5vw;
    }
    .modal_wrap .capsule_detail span.ttl {
        padding-bottom: 1.5vw;
    }
    .modal_wrap .buy {
        width: 90%;
        margin-top: 6vw;
    }
    .modal_wrap .buy > a {
        padding: 5vw 0;
        font-size: 3.5vw;
    }
    .modaal-close {
        position: absolute;
        top: -14vw;
        right: 8px;
        width: 25px;
        height: 25px;
    }
    .modaal-close:after, 
    .modaal-close:before {
        width: 0.5vw;
        height: 8vw;
    }
}