@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:wght@100&display=swap');
:root {
    --accent: #1E5A08;
    --light-accent: #8F9C8A
}

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 100vw;
    font-family: 'Alegreya Sans SC', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 18px;
    color: #333333;
    scroll-behavior: smooth;
    position: relative;
}
@media (min-width: 1100px) {
    body {
        font-size: 18px;
    }
}
#wpadminbar {
    display: none;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.warning {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 9999;
}
.w1 .warning {
    display: block;
}
.landscape {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 80%;
    margin: auto;
    height: 100%;
}
.warning h3 {
    color: var(--accent);
}
.home {
    overflow: hidden;
    width: 100%;
    height: 100vh;
}
.home section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    position: relative;
}
.home main {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translateY(0);
}
.nav-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}
.link-cta {
    position: relative;
    width: 4em;
    height: 4em;
    background-color: #ffffff19;
    border-radius: 50%;
    display: block;
}
header .link-cta {
    top: -1em;
    left: -1em;
}
.link-cta::before {
    content: '';
    display: block;
    width: 30%;
    height: 30%;
    border-radius: 50%;
    border: solid 1px #fff;
    position: absolute;
    left: 35%;
    top: 35%;
}
header .link-cta::before {
    left: 40%;
    top: 40%;
}
.link-cta::after {
    content: '';
    display: block;
    position: absolute;
    top: 45%;
    left: 45%;
    width: 0.5em;
    height: 0.5em;
    background-color: #fff;
    border-radius: 50%;
}
header .link-cta::after {
    top: 50%;
    left: 50%;
}

.before {
    width: 1rem;
    height: 1rem;
    padding: 0.5rem;
    margin-top: 1.5rem;
}
#first {
    background-color: var(--accent);
    color: #fff;
}
.logo-txt {
    font-size: 3em;
    letter-spacing: 1px;
    font-weight: 400;
}
.ctrl-bot {
    position: absolute;
    bottom: 0.5em;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
.ctrl-circle {
    width: 5em;
    height: 5em;
    border: solid 1px var(--accent);
    border-radius: 50%;
    position: relative;
    background-color: #fff;
    z-index: 2;
}
#first .ctrl-circle {
    border: solid 1px #fff;
    background-color: transparent;
}
.ctrl-circle::before, .ctrl-circle::after, .before::before, .before::after {
    content: '';
    position: absolute;
    width: 1em;
    height: 1px;
    bottom: 1.5em;
    background-color: var(--accent);
}
.before::before, .before::after {
    bottom: auto;
    top: 0.5em;
}
#first .ctrl-circle::before, #first .ctrl-circle::after {
    background-color: #fff;
}
.ctrl-circle::before {
    left: calc(50% - 1em + 2px);
    transform: rotateZ(35deg);
}
.ctrl-circle::after  {
    right: calc(50% - 1em + 2px);
    transform: rotateZ(-35deg);
}
.before::after {
    right: calc(50% - 1em + 2px);
    transform: rotateZ(35deg);
}
.before::before {
    left: calc(50% - 1em + 2px);
    transform: rotateZ(-35deg);
}
.toggle-menu {
    position: fixed;
    top: 0.5em;
    left: 0.5em;   
    z-index: 100;
    width: 1.5em;
    height: 1.5em;
}
.toggle-menu::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border: solid 1px #fff;
    border-radius: 50%;
    z-index: 10;
}
.toggle-menu::after {
    content: '';
    width: 0.25em;
    height: 0.25em;
    position: absolute;
    left: calc(50% - 0.125em + 1px);
    top: calc(50% - 0.125em + 1px);
    background: #fff;
    border-radius: 50%;
}
.menu-overlay {
    width: 250%;
    height: 250%;
    position: absolute;
    left: -80%;
    top: -80%;
    background: #ffffff19;
    z-index: -1;
    border-radius: 50%;
}
.menu-open .menu-overlay {
    transform-origin: center;
    transform: scale(3000%);
    background: var(--accent);
    transition: transform 1s ease-out;
}
.main-menu-wrap {
    opacity: 0;
    position: fixed;
    z-index: 100;
    pointer-events: none;
}
.menu-open .main-menu-wrap {
    opacity: 1;
}
.main-menu {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
}
.menu-open .main-menu {
    transition: opacity 1s 0.7s ease-out;
    opacity: 1;
}
.menu-open .menu-logo {
    color: #fff;
    display: inline-block;
    text-decoration: none;
    font-size: 1.5em;
    position: absolute;
    left: 50%;
    top: 1em;
    transform: translateX(-50%);
    font-weight: 500;
    pointer-events: all
}
.menu-open .menu-list {
    display: flex;
    flex-direction: column;
    width: 300px;
    max-width: 90%;
    pointer-events: all
}
.menu-item {
    color: #fff;
    display: inline-block;
    margin: 1.5em 0 0;
    text-decoration: none;
    font-size: 1.75em;
    text-transform: uppercase;
    font-weight: 500;
}
.account-menu .menu-item {
    font-size: 1.2rem;
}
.woocommerce-account .toggle-menu::before {
    width: 0.7em;
    height: 1.2em;
    background-color: #fff;
    top: auto;
    bottom: -0.5em;
    left: 60%;
    transform: translateX(-50%);
}
.woocommerce-account .toggle-menu::after {
    width: 0.65em;
    height: 0.65em;
    left: 60%;
    transform: translateX(-50%);
    top: 0.1em;
}
.woocommerce-page .new-menu-icon {
    width: 8em;
    max-width: 100vw;
    position: absolute;
    left: 2em;
    top: 0.5em;
    display: none;
}
.menu-open.woocommerce-page .new-menu-icon {
    display: none !important;
}
.menu-open .social-list {
    pointer-events: all;
    display: flex;
    margin: 4em 0 0;
}
.social-item {
    display: inline-block;
    margin: 0 1em;
}
.social-icon {
    width: 1.5em;
}
.menu-open .close-menu {
    pointer-events: all;
    width: 5em;
    height: 5em;
    background: transparent;
    border: solid 1px #fff;
    border-radius: 50%;
    font-size: 1rem;
    position: absolute;
    bottom: 1.5em;
    left: 50%;
    transform: translateX(-50%);
}
.close-menu::before, .close-menu::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 33%;
    transform: translate(-50%, -50%) rotate(-45deg);
    border-top: solid 1px #fff;
}
.close-menu::after {
    transform: translate(-50%, -50%) rotate(45deg);
}
.woocommerce-product-search {
    width: 100%;
    position: relative;
}
.woocommerce-product-search .search-field {
    width: 100%;
    border: none;
    border-bottom: solid 1px #fff;
    background-color: transparent;
    color: #fff;
    font-family: 'Alegreya Sans SC', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.75rem;
    padding-right: 2rem;
}
.search-field:focus{
    outline: none;
}
.search-field::placeholder{
    color: #fff;
}
.woocommerce-product-search #searchsubmit {
    position: absolute;
    right: 0;
    bottom: 0;
    background: url(img/search.svg);
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    color: #fff;
    width: 2rem;
    height: 2rem;
}
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.bg-bubble::before, .bg-bubble::after {
    position: absolute;
    content: '';
    width: 7em;
    height: 7em;
    border-radius: 50%;
    opacity: 0.1;
    background-color: #fff;
}
.bg-bubble:first-child::before {
    top: 25%;
    left: 7%;
}
.bg-bubble:first-child::after {
    top: 30%;
    left: 25%;
}
.bg-bubble:nth-child(2)::before {
    top: 20%;
    right: -2.5%;
    width: 4em;
    height: 4em;
}
.bg-bubble:nth-child(2)::after {
    bottom: 35%;
    left: 8%;
    width: 4em;
    height: 4em;
}
.bg-bubble:nth-child(3)::before {
    bottom: 22%;
    left: 63%;
    width: 4em;
    height: 4em;
}
.bg-bubble:nth-child(3)::after {
    bottom: 25%;
    right: 9%;
}

.advice {
    padding: 3em 0 6em 0;
    height: calc(100% - 9em);
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
}

.big-circle {
    width: 60vw;
    padding: 7.5vw;
    height: 60vw;
    max-width: 300px;
    max-height: 300px;
    margin-right: 35vw;
    position: relative;
    color: #fff;
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}
.big-circle::before, .small-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 50%;
    background-color: var(--accent);
}
.big-circle .big-num, .advice > .big-num { 
    font-family: century-gothic, sans-serif;
    font-size: 3.5rem;
    width: 100%;
    text-align: center;
    display: block;
    line-height: 1;
}
.big-circle .big-num {
    margin-bottom: 3vw;
}
.big-circle .link-cta {
    margin: 0 auto;
}

.small-circle {
    width: 45vw;
    height: 45vw;
    max-height: 250px;
    max-width: 250px;
    padding: 5vw;
    margin-left: 50vw;
    position: relative;
    color: #fff;
    margin-top: 1.5vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-grow: 0;
    flex-shrink: 0;
}
.small-circle::before {
    opacity: 0.8;
}
.small-circle .big-num {
    font-size: 1.7rem;
    text-align: center;
    display: block;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 2px;
}
.big-circle .circle-desc {
    letter-spacing: 0;
}
.small-circle .circle-desc {
    font-size: 0.8rem;
    line-height: 2em;
}
#third .small-circle {
    margin: 0;
}
#third .big-circle {
    margin-right: 0;
    margin-left: 30vw;
    margin-top: 3.5vh;
}
#third .small-circle{
    margin-right: 40vw;
}
.advice-desc {
    width: 60%;
    margin: 2em auto;
    color: var(--accent);
    text-align: center;
}
.advice > .big-num {
    color: var(--accent);
}
#fourth .advice {
    justify-content: start;
    margin-top: 10vw;
    align-items: center;
}
@keyframes pulse {
    from {transform: scale(1);}
    to {transform: scale(1.5);}
}
#fourth .link-cta{
    background-color: var(--accent)b0;
    position: absolute;
    top: 50%;
    animation: pulse ease-out 2s infinite alternate;
}
#fourth .link-cta::before {
    background-color: var(--accent);
    border: solid 1px var(--accent);
}

/* PRODUCT */

.fold {
    height: calc(100vh - 1px);
    display: flex;
    flex-direction: column;
    border-bottom: solid 1px var(--accent);
    position: relative;
}
/*.fold::before {
    content: '';
    width: 0.7em;
    height: 0.7em;
    border-top: solid 1px var(--accent);
    border-right: solid 1px var(--accent);
    background-color: #fff;
    transform: translateX(-50%) rotateZ(-45deg);
    transform-origin: center;
    position: absolute;
    left: 50%;
    bottom: calc(-0.35em - 1px);
}*/
.buy-btn {
    position: absolute;
    bottom: -2.5em;
    left: 50%;
    width: 5em;
    height: 5em;
    transform: translateX(-50%);
    border-radius: 50%;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}
.cart-icon {
    width: 2.5em;    
}

.product-img-wrap {
    width: 140%;
    height: 65vh;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    overflow: hidden;
    transform: translateX(-15%);
    position: relative;
}
.gallery-img .product-img, .product-img-wrap img, .product-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-info {
    height: 25vh;
    width: 85%;
    margin: 0 auto;
}
.product-ttl {
    margin-bottom: 0.5em;
    font-weight: normal;
}
.product-meta {
    color: var(--accent);
    font-size: 1.1rem;
}
.product-details {
    padding: 0 7.5%;
}
.product-sec {
    position: relative;
    padding: 12vh 0;
}
.product-sec::after {
    content: '';
    width: 40%;
    height: 1px;
    background-color: #707070;
    position: absolute;
    left: 30%;
    bottom: 0;
}
.product-sec:last-child::after {
    display: none;
}
.product-sec-ttl {
    font-size: 2rem;
    color: var(--accent);
    font-weight: normal;
    margin-top: 0;
}
.img-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.gallery-img {
    width: 49.5%;
    max-width: 190px;
    height: 45vw;
    max-height: 230px;
    margin-bottom: 1%;
}
.product-desc > .product-sec-ttl, .product-desc > .excerpt {
    padding: 0 0.5rem;
}
.excerpt {
    font-size: 1.1rem;
    line-height: 2em;
}

.product-slide {
    position: relative;
    padding-bottom: 5em;
    width: 100vw;
    overflow: hidden;
}
.product-slide .ctrl-circle::before, .product-slide .ctrl-circle::after {
    bottom: auto;
    top: 1.5em;
}
.product-slide .ctrl-circle::before {
    transform: rotateZ(-35deg);
}
.product-slide .ctrl-circle::after {
    transform: rotateZ(35deg);
}
.to-top {
    cursor: pointer;
    display: block;
}
.slider-wrap {
    display: flex;
    width: fit-content;
    left: -100vw;
    position: relative;
    align-items: flex-start;
    overflow: hidden;
}
.no-slide .slider-wrap {
    left: 0;
}
.shifting {
    transition: left 0.4s ease-out;
}

.slide-advice {
    opacity: 0;
    transition: opacity 0.4s ease-out
}
.idle-user .slide-advice {
    display: block;
    pointer-events: none;
    opacity: 1;
}
.black-overlay {
    pointer-events: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #00000066;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 10;
}
@keyframes bounce {
    from {transform: translateX(-50%) scale(1.3)}
    to {transform: translateX(0) scale(1)}
}
.bubble-tip {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5em;
    height: 5em;
    background-color: var(--accent);
    border-radius: 50%;
    position: relative;
    animation: bounce ease-in 2s infinite alternate;
}
.bubble-tip::before {
    content: '';
    width: 0.7em;
    height: 0.7em;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    transform: translateY(-50%) rotateZ(45deg);
    position: absolute;
    right: 1em;
    top: 50%;
}

/* CHECKOUT */

.product-banner {
    width: 100%;
    height: 25vh;
}

.woocommerce-checkout .product-ttl {
    width: 85%;
    margin: 1em auto;
    font-size: 1.3rem;
}
.bread-wrap {
    display: flex;
    justify-content: center;
    min-width: 90%;
    margin: auto;
}
.bread-step {
    width: 20%;
    height: 20vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #fff;
    font-size: 0.85rem;
}
.bread-step::before{
    content: '';
    width: 120%;
    height: 120%;
    position: absolute;
    left: -10%;
    top: -10%;
    background-color: var(--light-accent);
    border-radius: 50%;
    z-index: -2;
}
.breadcrumb {
    margin-top: 5vh;
    padding: 2vh 0;
    position: relative;
}
.breadcrumb::before {
    content:'';
    width: 100%;
    height: 1px;
    background-color: var(--accent);
    position: absolute;
    bottom: 50%;
    left: 0;
    z-index: -10;
}
.current::before {
    background-color: var(--accent);
    z-index: -1;
}
.form-wrap {
    width: 85%;
    margin: 1em auto 0;
    font-size: 1rem;
    position: relative;
}
.red, .red::placeholder, .validate-required, .validate-required input::placeholder {color:var(--accent)}
.red::placeholder, .validate-required input::placeholder{opacity: 0.5}
input.red, select.red, .validate-required input, .validate-required select {
    border: solid 1px var(--accent);
    color: #333333;
    border-radius: 8px;
}
select.red, .validate-required select {
    height: 2.2em;
    width: 100%;
    font-size: 1rem;
}
.send-btn {
    color: var(--accent);
    border: solid 1px var(--accent);
    width: 5em;
    height: 5em;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    margin: 2.5em auto 0;
    text-decoration: none;
    background-color: #fff;
    z-index: 5;
    cursor: pointer;
}
.woocommerce-order-received {
    min-height: 100vh;
}
.woocommerce-order-received .woocommerce-order {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.thanks-btn {
    color: var(--accent);
    border: solid 1px var(--accent);
    border-radius: 2rem;
    padding: 0.75rem 3rem;
    text-align: center;
    margin: 1rem auto 5rem;
    text-decoration: none;
    display: inline-block;
}
.input-text, .input {
    font-size: 1rem;
    line-height: 2.2em;
    border-radius: 8px;
    padding: 0 0.5em;
    width: calc(100% - 1em);
    border: solid 1px #707070;
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    line-height: 2.2em;
    color: #333333;
}
.input option {
    line-height: 2.2em;
}
.carousel-form {
    width: 100%;
    overflow: hidden;
}
.checkout-slider {
    display: flex;
    align-items: flex-start;
    position: relative;
    left: 0;
    transition: left ease-out 0.2s;
    height: 100%;
}
.checkout-slide {
    width: 100vw;
    flex-shrink: 0;
}
.half {
    width: 45%;
}
#billing_last_name_field, #billing_first_name_field, #shipping_postcode_field, #shipping_state_field {
    width: 45%;
    display: inline-block;
}
#shipping_state_field {
    float: right;
}
.select2-container--default .select2-selection--single {
    border: solid 1px var(--accent);
    border-radius: 8px;
    height: auto;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 2.2em;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
}
#shipping_address_1_field {
    margin-top: 0;
}
.half-wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
}
.input-wrap, .form-row {
    margin: 0.5em 0;
}
.controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 2em;
    padding-bottom: 0.5em;
}
.controls .next {
    padding-right: 2.5em;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
}
.controls .prev {
    position: relative;
    min-width: 1px;
    display: block;
}
.controls .next::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
}
.controls .prev::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
}
.controls .prev::before, .controls .next::before {
    width: 1.2rem;
    height: 1.2rem;
    display: block;
    border-top: solid 1px var(--accent);
}
.controls .prev::before {
    transform: rotateZ(-45deg);
    border-left: solid 1px var(--accent);
    margin-left: 0.5rem;
}
.controls .next::before {
    transform: rotateZ(45deg);
    border-right: solid 1px var(--accent);
    margin-right: 0.5rem;
}
.confirm-order {
    padding-bottom: 2em;
}
.confirm-order .input {
    opacity: 0.5;
}
.thank-you h3 {
    font-weight: normal;
    width: 90%;
}
.image-source-link {
	color: var(--light-accent);
}

.woocommerce-notices-wrapper {
    display: none;
}
.optional, .required {
    display: none;
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background-color: transparent;
    width: 85%;
    margin: 2em auto 0;
}
.confirm-order {
    padding-bottom: 2em;
}
.edit-txt {
    display:inline-block;
    padding-left: 2em;
}
.edit-order {
    position:absolute;
    left:0;
    bottom:2em
}
.woocommerce-privacy-policy-text {
    font-size: 0.85em;
    margin-top: 3em;
}
#shipping_address_2-send {
    margin-top: 0.5em;
}
.checkout_coupon {
    display: block !important;
}
.woocommerce-error, .cart-empty {
    margin: 1em 0;
    border-top: solid 1px var(--light-accent);
    background-color: var(--light-accent);
    color: #fff;
}
.checkout-form .woocommerce-message {
    display: none;
}
.woocommerce-message {
    margin: 1em 0;
    border-top: solid 1px #5a825f;
    background-color: transparent;
    color: #5a825f;
}
.woocommerce-message::before {
    top: 50%;
    transform: translateY(-50%);
    color: #5a825f;
}
.woocommerce-error::before, .cart-empty::before {
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}
#shipping_country_field, #billing_postcode_field, #billing_country_field, #billing_state_field, #billing_city_field, #billing_address_1_field, #billing_address_2_field, #billing_company_field {
    display: none;
}
.checkout {
    display: flex;
    align-items: flex-start;
}
.woocommerce-NoticeGroup-checkout .woocommerce-error {
    position: fixed;
    top: 50%;
    z-index: 10;
    left: 3%;
}
.woocommerce-thankyou-order-received {
    margin-top: 2em;
}
.thank-you-details {
    padding-bottom: 5em;
}

/* LOGIN NAV */

.login-nav {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1em;
    z-index: 5;
    font-weight: bold;
}
.login-link {
    color: #fff;
    padding-left: 1em;
    letter-spacing: 1px;
}

/* LOGIN & SIGN UP PAGES */
.red-bg {
    background-color: var(--accent);
    min-height: 100vh;
    width: 100vw;
    color: #fff;
}
.romaji-ttl {
    font-size: 2.5em;
    margin: 0;
    padding: 10vh 0 5vh;
    font-weight: normal;
    text-align: center;
}
.red-bg .romaji-ttl {
    color: #fff;
}
#loginform, .login-alternate {
    width: 85%;
    margin: auto;
}
#loginform p {
    margin: 0;
}
.red-bg .input {
    background-color: #fff;
    border: none;
}
#loginform .input {
    margin: 0.25em 0 1em;
}
.login-page .send-btn {
    color: #fff;
    border: solid 1px #fff;
    background-color: transparent;
    font-family: 'Alegreya Sans SC', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    margin-top: 0;
    width: 5em;
    height: 5em;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    margin: 2.5em auto 0;
    text-decoration: none;
    z-index: 5;
}
.login-alternate a {
    color: #fff;
}

/* MY ACCOUNT */
.my-account .romaji-ttl, .search-results .romaji-ttl {
    color: var(--accent);
}
.woocommerce-account .menu-overlay {
    background-color: var(--accent)aa;
}
.woocommerce-account.menu-open .menu-overlay {
    background: var(--accent);
}
.account-welcome {
    text-align: center;
}
.account-portal, .account-intro {
    margin: 2em auto;
    width: 90%;
    text-align: center;
    line-height: 2em;
}
.account-intro {
    text-align: left;
    width: 75%;
    margin: 2em auto 4em;
}
.portal-wrap {
    width: 90%;
    margin: auto;
    padding: 1em 0;
    display: flex;
    justify-content: space-between;
}
.portal {
    width: 42.5%;
}
.romaji-small {
    margin: 0;
    font-family: 'Alegreya Sans SC', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: normal;
}
.portal .romaji-small{
    color: #000;
    font-size: 1.7rem;
    text-align: center;
    line-height: 1rem;
}
.gift-portal, .wish-portal {
    height: 25vw;
    width: 100%;
    background-size: cover;
}
.gift-portal {
    background-image: url('img/gift-portal.jpg');
}
.wish-portal {
    background-image: url('img/wish-portal.jpg');
}
.account-products .romaji-ttl, .account-profile .romaji-ttl, .edit-profile-info .romaji-ttl, .order-history-wrap .romaji-ttl {
    font-size: 1.7rem;
    padding: 0;
    text-align: left;
}
.account-products, .account-profile {
    width: 90%;
    margin: 2em auto 4em;
    padding-bottom: 4em;
    position: relative;
}
.account-profile {
    padding-bottom: 0;
}
.account-products::after {
    content: '';
    width: 35%;
    border-bottom: solid 1px #000;
    opacity: 0.2;
    position: absolute;
    bottom: 0;
    left: 32.5%;
}
.last-products {
    display: flex;
    justify-content: space-between;
    margin-top: 2em;
}
.round-product {
    width: 30%;
    height: 27vw;
    border-radius: 50%;
    background-image: url(img/placeholder.png);
    background-size: cover;
    box-shadow: 1px 1px 3px #888;
}
.woocommerce-MyAccount-navigation {
    margin-top: 2em;
}
.woocommerce-MyAccount-navigation a {
    text-decoration: none;
    color: #000;
    margin-bottom: 2em;
    display: inline-block;
}
#delete-my-account {
    background: none;
    color: var(--accent);
    border: none;
    font-size: 0.8rem;
    padding: 0;
}
.round-cta {
    color: var(--accent);
    border: solid 1px var(--accent);
    width: 6em;
    height: 6em;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    margin: 6em auto 0;
    text-decoration: none;
    background-color: transparent;
    z-index: 5;
    font-size: 1rem;
}
.edit-profile-info {
    width: 90%;
    margin: 2em auto;
}
.edit-name-form .address-field {
    display: none !important;
}
.edit-profile-info .validate-required, .edit-profile-info .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000;
}
.edit-profile-info .validate-required input, .edit-profile-info .validate-required select, .edit-profile-info .select2-container--default .select2-selection--single {
    border-color: #707070;
}
.edit-profile-info button[type='submit'] {
    background: none;
    color: var(--accent);
    font-weight: normal;
    padding: 0;
    position: relative;
    line-height: 1.75em;
}
.edit-profile-info .form-row {
    padding: 3px;
}
.edit-profile-info button[type='submit']::before {
    content: '';
    width: 100%;
    border-bottom: solid 1px var(--accent);
    position: absolute;
    bottom: 0;
    left: 0;
}
.edit-profile-info .no-edit button[type='submit'] {
    opacity: 0;
    pointer-events: none;
}
.edit-name-form {
    margin-top: 1em;
}
.edit-toggle-wrap {
    text-align: right;
}
.edit-toggle, .edit-toggle-pass {
    font-size: 0.9rem;
    color: var(--accent);
    line-height: 1;
}
.label {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 0.5em;
    display: inline-block;
}
.edit-address-form {
    margin: 3em 0;
}
.edit-profile-info input:disabled, .edit-profile-info select:disabled {
    background: #f3f3f3;
}
.edit-profile-info h3 {
    display: none;
}
.edit-profile-info .input-text::placeholder {
    opacity: 0;
}
.edit-toggle-pass {
    margin: 1em 0 2em;
    display: block;
}
.pass-change .edit-toggle-pass {
    display: none;
}
.toggle-password {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: ease-out 0.4s;
}
.pass-change .toggle-password {
    height: auto;
    opacity: 1;
}
.woocommerce-password-strength {
    text-align: left;
    font-weight: normal;
}
.woocommerce-password-hint {
    display: none;
}

.order-history-wrap {
    width: 90%;
    margin: 2em auto 4em;
}
.woocommerce table.shop_table.order-history {
    margin: 2em 0 0;
}
.order-history-item {
    margin: 2em 0;
    display: flex;
    text-decoration: none;
    align-items: center;
    color: #000;
}
.order-info-wrap {
    margin-left: 2em;
    position: relative;
    width: 60%;
}
.order-history-date {
    position: absolute;
    right: 0;
    top: 0;
}
.order-history-number {
    font-size: 1.2rem;
    font-weight: bold;
}
.order-history-status {
    font-size: 0.9rem;
    color: var(--accent);
    margin: 0.5em 0 0;
}
.includes_tax {
    display: none;
}
.flex {
    display: flex;
}
.woocommerce-Price-amount {
    font-size: 1.2rem;
    font-weight: bold;
}
.order-products-list {
    margin: 2em 0 4em;
}
.order-product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.order-product-info {
    display: flex;
    flex-wrap: wrap;
    width: 60%;
    justify-content: space-between;
}
.order-product-info .product-name {
    max-width: 80%;
}
.order-product-info .product-quantity {
    font-size: 1.2rem;
}
.order-product-info .woocommerce-Price-amount {
    display: block;
    width: 100%;
    color: var(--accent);
    text-align: right;
}
.totals .round-cta {
    margin: 0;
    font-size: 1.3rem;
}
.totals .round-cta .woocommerce-Price-amount {
    font-size: 1em;
}
.totals .flex {
    align-items: center;
}
.totals .center {
    flex-grow: 2;
}
.center {
    display: flex;
    justify-content: center;
}
.total-ttl {
    font-size: 1.3rem;
}
.woocommerce-view-order .account-profile {
    display: none;
}
.order_details {
    margin-bottom: 4em;
}
.search-item {
    display: flex;
    width: 90%;
    margin: 4em auto;
    justify-content: space-between;
    align-items: flex-start;
    text-decoration: none;
    color: #000;
}
.search-img-wrap {
    flex-shrink: 0;
    overflow: hidden;
}
.search-info {
    width: 60%;
}
.search-info h2 {
    font-size: 1rem;
    margin: 0 0 0.5em;
}
.search-meta {
    font-size: 0.9rem;
}
.search-results .ctrl-bot {
    margin: 4em 0 2em;
    position: static;
    display: flex;
    justify-content: center;
    width: 100%;
    transform: none;
}
.view-change {
    position: fixed;
    right: 1rem;
    top: 1rem;
    width: 2.5rem;
    z-index: 15;
}
.view-icon {
    width: 100%;
    opacity: 0;
    position: absolute;
}
.active-view .view-icon {
    opacity: 1;
    position: static;
}
.slide-view, .list-view {
    position: relative;
}
.list-wrap {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 10rem;
}
.list-wrap .product-slide {
    padding: 0;
    width: 50%;    
    background-color: #fff;
    display: flex;
    overflow: visible;
    position: static;
}
.list-ttl {
    text-align: center;
    margin: 5rem 0 0;
    color: var(--accent);
}
.list-wrap .product-details, .list-wrap .to-top, .list-wrap .clone, .list-ttl  {
    display: none;
}
.list-wrap .product-slide:nth-child(3) .to-top {
    display: block;    
}
.list-wrap .fold {
    border: none;
    align-items: center;
    height: auto;
    padding: 5rem 2.5% 0;
    
}
.list-wrap .product-info {
    width: auto;
    height: auto;
}
.wishlist-toggle, .wishlist-title {
    display: none;
}
.list-wrap .product-img-wrap {
    width: 100%;
    height: 47.5vw;
    max-height: 300px;
    border-radius: 50%;
    flex-shrink: 0;
    transform: none;
}
.list-wrap .woocommerce-loop-product__title {
    font-size: 1rem;
}
.list-wrap .buy-btn {
    position: static;
    transform: none;
    margin-top: auto;
    color: #fff;
    text-decoration: none;
}
.list-wrap .product-meta {
    margin-bottom: 1.5rem;
}
.product-slide .ctrl-bot {
    z-index: 0;
}
@media screen and (min-width:500px) {
    img {
        -webkit-user-drag: none;
        -khtml-user-drag: none;
        -moz-user-drag: none;
        -o-user-drag: none;
        user-drag: none;
    }
    .product-slide {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    .slider-wrap {
        background-color: var(--accent);
        left: -69vw;
    }
    .product-slide {
        width: 45vw;
        margin: 0 1.5vw;
        background-color: #fff;
        padding-bottom: 10vw;
        border-bottom-left-radius: 22.5vw;
        border-bottom-right-radius: 22.5vw;
    }
    .ctrl-bot {
        bottom: 2rem;
    }
    .product-img-wrap {
        height: 40vw;
    }
    .fold {
        height: auto;
    }
    .gallery-img {
        height: 22.25vw;
        max-height: none;
        max-width: none;
    }
    .product-info {
        margin-top: 5vw;
    }
    .woocommerce-checkout .woocommerce, .woocommerce-order, .carousel-form {
        max-width: 700px;
        margin: auto;
        background-color: #fff;
    }
    .woocommerce-order {
        max-width: calc(700px - 4rem);
        padding: 1rem 2rem 5rem;
        border-bottom-left-radius: 22.5vw;
        border-bottom-right-radius: 22.5vw;
        margin-bottom: 10vh;
    }
    .thanks-btn {
        position: relative;
        overflow: hidden;
        transition: color 0.4s ease-out;
    }
    .thanks-btn::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -200%;
        width: 100%;
        height: 150%;
        transform: skewY(5deg);
        background-color: var(--accent);
        transition: bottom ease-out 0.4s
    }
    .thanks-btn:hover:before {
        bottom: -25%;
    }
    .thanks-btn:hover {
        color: #fff;
    }
    .thanks-btn span {
        position: relative;
        z-index: 2;    
    }
    .woocommerce-checkout {
        background-color: var(--accent);
    }
    form.woocommerce-checkout{
        background-color: #fff;
    }
    .checkout-slide {
        max-width: 700px;
    }
    .breadcrumb {
        z-index: 1;
    }
    .bread-wrap {
        max-width: 500px;
        min-width: 0;
        margin: auto;
    }
    .bread-step {
        max-height: 100px;
    }
    .woocommerce-checkout main {
        min-height: 100vh;
    }
    .carousel-form {
        margin-top: -1px;
        padding: 5vw 0 20vmax;
        border-bottom-left-radius: 350px;
        border-bottom-right-radius: 350px;
        margin-bottom: 10vh;
    }
    .list-wrap .product-slide {
        margin: 0 auto 5vmax;
        border-radius: 5vw;
        max-width: 316px;
    }
    .send-btn {
        transition: color ease-out 0.4s, background-color ease-out 0.4s;
    }
    .send-btn:hover {
        color: #fff;
        background-color: var(--accent);
    }
    #third .big-circle {
        margin-top: 0;
    }
    .small-circle .circle-desc {
        font-size: 1rem;
    }
    .big-circle .circle-desc, .advice-desc {
        font-size: 1.4rem;
    }
    .list-wrap .woocommerce-loop-product__title {
        font-size: 1.2rem;
    }
    .slider-wrap::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #000;
        opacity: 0.5;
        z-index: 1;
    }
    .active-slide {
        position: relative;
        z-index: 2;
    }
}
@media screen and (min-width:1800px) {
    .bg-bubble::before, .bg-bubble::after {
        width: 25vw;
        height: 25vw;
    }
    .bg-bubble:nth-child(2)::before, .bg-bubble:nth-child(2)::after {
        width: 15vw;
        height: 15vw;
    }
    .bg-bubble:nth-child(3)::before {
        width: 10vw;
        height: 10vw;    
    }
    .bg-bubble:nth-child(2)::after {
        bottom: initial;
        top: 10%;
    }
    .bg-bubble:first-child::after {
        top: 45%;
    }
    .product-slide {
        width: 30vw;
        margin: 0 1vw;
    }
    .slider-wrap {
        left: -62vw;
    }
    .product-img-wrap {
        height: 30vw;
    } 
    .gallery-img {
        height: 14.85vw;
    }
    .list-wrap .woocommerce-loop-product__title {
        font-size: 1.5rem;
    }
    .slider-wrap {
        left: -30vw
    }
}
.woocommerce-invalid-required-field input {
    border: solid 2px red;
}
.woocommerce-invalid-required-field label {
    color: red;
    font-weight: bold;
}