/*--------------------------------------------
parts
--------------------------------------------*/
:root {
    --color-base: rgb(255, 255, 255);
    --color-main: rgb(0, 94, 225);
    --color-accent: rgb(0, 53, 128);
    --color-accent__transparent: rgba(0, 53, 128, 0.5);

    --color-yellow: rgb(255, 189, 34);
    --color-yellow__transparent: rgb(255, 189, 34, 0.6);
    --color-lightgrey: rgb(213, 230, 233);
    --color-black: rgb(50, 50, 50);

    --color-grad: linear-gradient(0deg, #22d3ee, #1660c8);
}
body {
    margin: 0;
    padding: 0;
}
body * {
    box-sizing: border-box;
}
body::before {
    content: none;
}
/* wrap */
.wrap {
    font-size: 1.25rem;
    color: var(--color-black);
    background: var(--color-lightgrey);
}

/* article */
.wrap article {
    max-width: 1920px;
    width: 100%;
    background: rgb(255, 255, 255);
    border-radius: 500px;
    padding: 5em 0;
    margin: 0 auto;
}

/* section */
.wrap section {
    max-width: 1350px;
    width: 90%;
    margin: 0 auto;
}

a {
    text-decoration: none;
    transition: all 0.3s;
}
a:hover {
    opacity: 0.6;
}
ul li {
    list-style: none;
    padding: 0;
}
dl,
dl dd {
    margin: 0;
}

/* arrow-icon */
.arrow-icon {
    height: 1.5em;
}
.arrow-icon path {
    fill: var(--color-base);
}

/* arrow-circle */

/* link-btn */
.link-btn {
    color: var(--color-base);
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    background-image: var(--color-grad);
    border-radius: 200px;
    padding: 0.5em 1em;
}


/*--------------------------------------------
article-first
--------------------------------------------*/
article.article-first {
    color: var(--color-base);
    background-image: var(--color-grad);
    border-radius: 0 0 500px 500px;
    padding-top: 10em;
    padding-bottom: 7em;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.first-back {
    min-width: 600px;
    width: 70%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0;
}
section.section-first {
    position: relative;
}
section.section-first h1 {
    max-width: 810px;
    width: 90%;
    margin: 0 auto;
    z-index: 5;
    position: relative;
}
section.section-first h1 img {
    width: 100%;
}
section.section-first p {
    font-size: 110%;
    width: fit-content;
    color: var(--color-abase);
    font-weight: 700;
    background: var(--color-main);
    border-radius: 0.25em;
    padding: 0.5em;
    margin: 0 auto;
}
section.section-first p span span {
    font-weight: 700;
    border: solid 2px var(--color-base);
    padding: 0.25em;
}
.first-visit {
    font-size: 220%;
    text-align: center;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--color-base);
    text-shadow    :
        2px  2px 1px #005ee1,
        -2px  2px 1px #005ee1,
        2px -2px 1px #005ee1,
        -2px -2px 1px #005ee1,
        2px  0px 1px #005ee1,
        0px  2px 1px #005ee1,
        -2px  0px 1px #005ee1,
        0px -2px 1px #005ee1;
    display: block;
    margin: 0 auto;
    margin-top: 1rem;
}
.first-date {
    width: 15em;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0;
}
.first-off {
    width: 10em;
    height: auto;
    position: absolute;
    top: 5em;
    left: 5em;
}
/*--------------------------------------------
article-campaign
--------------------------------------------*/
article.article-campaign {
    padding: 10em 0;
    padding-bottom: 15em;
    margin-top: -5em;
}
/* section-campaign */
section.section-campaign {
    color: var(--color-main);
}
section.section-campaign h2 {
    font-size: 200%;
    font-weight: 700;
    text-align: center;
}
.campaign-contents {
    max-width: 600px;
    width: 100%;
    font-weight: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
    margin: 0 auto;
}
.campaign-contents dl {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    background-image: var(--color-grad);
    border-radius: 500px;
    padding: 1em;
}
.campaign-contents dt {
    width: 15em;
    color: var(--color-base);
}
.campaign-contents dt small {
    display: block;
}
.campaign-contents dd .link-btn {
    color: var(--color-main);
    background: var(--color-base);
}
.campaign-contents dd .link-btn svg path {
    fill: var(--color-main);
}
.campaign-contents > small {
    display: block;
    margin-top: -1.5em;
}

/* section-visit */
.visit-contents__wrap {
    max-width: 800px;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
    margin-top: 3em;
}
.visit-contents {
    width: 70%;
    background: var(--color-abase);
    border: solid 5px var(--color-main);
    border-radius: 2em;
    padding: 2em;
}
.visit-contents h2 {
    font-size: 150%;
    text-align: center;
    font-weight: 900;
    color: var(--color-main);
    margin: 0;
}
.visit-contents h2 span {
    color: var(--color-yellow);
    display: inline-block;
    transform: rotate(-10deg);
}
.visit-contents p {
    font-weight: 800;
    text-align: center;
    margin:  1em 0;
}
.visit-contents ol {
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    margin: 0 auto;
}
.visit-contents ol li {
    width: fit-content;
    font-size: 110%;
    font-weight: 600;
    color: var(--color-accent);
}
.visit-contents ol li a {
    width: fit-content;
    color: var(--color-accent);
    line-height: 1em;
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.visit-contents ol li a svg {
    height: 1em;
}
.visit-contents ol li a svg path {
    fill: var(--color-accent);
}
.visit-contents .link-btn {
    max-width: 20em;
    margin: 0 auto;
    margin-top: 1em;
}

.visit-img {
    width: 35%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 2em;
    margin-left: -5%;
    margin-top: 5em;
}

/*--------------------------------------------
article-common
--------------------------------------------*/
article.article-common {
    padding-bottom: 15em;
    margin-top: -5em;
    position: relative;
}
article.article-common:last-of-type {
    padding-bottom: 5em;
}
article.article-common > h2 {
    width: 10rem;
    text-align: center;
    line-height: 1.25em;
    font-weight: 900;
    color: var(--color-accent);
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-yellow);
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: -3em;
    left: 50%;
    transform: translateX(-50%);
}
article.article-common > p {
    text-align: center;
    font-weight: 700;
    line-height: 2em;
}

/*--------------------------------------------
article-products
--------------------------------------------*/
article.article-products {
    background-image: var(--color-grad);
}
article.article-products > p {
    color: var(--color-base);
    margin-bottom: 3em;
}

.product-content {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    margin: 0 auto;
}
.product-item {
    width: calc(100% / 3 - 2em / 3);
    display: flex;
    flex-direction: column;
    border-radius: 1em;
    background: var(--color-lightgrey);
    position: relative;
    overflow: hidden;
}
.product-item > *:not(img, .product-off) {
    margin-left: 1rem;
    margin-right: 1rem;
}
.product-off {
    color: var(--color-base);
    font-weight: 900;
    background-image: var(--color-grad);
    border-radius: 200px;
    padding: 0.25em 1em;
    position: absolute;
    top: 0.5em;
    right: 0.5em;
}
.product-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.product-item dt {
    font-size: 80%;
    font-weight: 700;
    color: var(--color-black);
    margin-top: 1rem;
}
.product-item dd {
    font-weight: 900;
    color: var(--color-accent);
}
.product-detail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5em;
}
.product-cord {
    width: fit-content;
    font-size: 80%;
    font-weight: 700;
    color: var(--color-accent);
    display: block;
    background: var(--color-base);
    border-radius: 200px;
    padding: 0.25em 1em;
    margin-top: 0.5em;
}
.product-status {
    width: fit-content;
    font-size: 80%;
    font-weight: 700;
    color: var(--color-base);
    display: block;
    background: var(--color-main);
    border-radius: 200px;
    padding: 0.25em 1em;
    margin-top: 0.5em;
}
.product-status__new { background: rgb(0, 81, 162);}
.product-status__old { background: rgb(190, 44, 22);}
.product-status__new-old { background: rgb(13, 155, 89);}
.product-status__out { background: rgb(204, 152, 21);}
.product-price {
    font-size: 120%;
    color: var(--color-main);
    font-weight: 900;
    margin-top: 0.5em;
    margin-bottom: 1rem;
}
.product-tax {
    width: fit-content;
    font-size: 60%;
    color: var(--color-black);
    position: relative;
}
.product-tax::before {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--color-black);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.product-en {
    font-size: 70%;
}

section.section-products .link-btn {
    max-width: 20em;
    background: var(--color-main);
    margin: 0 auto;
    margin-top: 3em;
}

/*--------------------------------------------
article-present
--------------------------------------------*/
article.article-present {
    text-align: center;
    background-image: var(--color-grad);
}
article.article-present > h2 {
    font-size: 130%;
}
article.article-present > p {
    color: var(--color-base);
}
section.section-present {
    margin-top: 3em;
}
section.section-present h3 {
    min-width: 10em;
    width: fit-content;
    font-size: 150%;
    font-weight: 900;
    color: var(--color-base);
    border: solid 2px var(--color-base);
    border-radius: 200px;
    padding: 0.25em 1em;
    margin: 0 auto;
    margin-bottom: 1em;
}
.present-content {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
    margin: 0 auto;
}
.present-item {
    width: calc(100% / 3 - 2em / 3);
    display: flex;
    flex-direction: column;
    border-radius: 1em;
    background: var(--color-lightgrey);
    position: relative;
    overflow: hidden;
}
.present-item p {
    font-weight: 700;
}

/*--------------------------------------------
article-cta
--------------------------------------------*/
article.article-cta {
    border-radius: 500px 500px 0 0;
}
article.article-cta > p {
    margin-bottom: 3em;
}
article.article-cta > p span {
    font-size: 200%;
    color: rgb(162, 0, 0);
    display: block;
    margin-bottom: 1rem;
}
/* section-contact */
section.section-contact {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
}
.contact-item {
    width: calc(100% / 2 - 1em / 2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
    background: var(--color-lightgrey);
    box-sizing: border-box;
    border-radius: 1em;
    padding: 2em 1.5em;
}
.contact-item span {
    width: 4em;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-base);
}
.contact-item span svg {
    height: 2.5em;
}
.contact-item.form-item span svg path {
    fill: var(--color-main);
}
.contact-item.tel-item span svg path {
    fill: var(--color-accent);
}

.contact-item h3 {
    font-size: 120%;
    color: var(--color-black);
    margin: 0;
}
.contact-item p {
    width: fit-content;
    color: var(--color-base);
    border-radius: 200px;
    background-image: var(--color-grad);
    padding: 0.25em 1em;
    margin: 0;
}

/* section-access */
section.section-access {
    margin-top: 5em;
}
section.section-access h3 {
    font-size: 300%;
    color: var(--color-yellow);
    font-weight: 900;
    text-align: center;
    margin: 0;
}
section.section-access p {
    text-align: center;
    font-weight: 900;
    color: var(--color-accent);
    margin: 0;
}
.access-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 2em 1em;
    margin-top: 2em;
}
.access-content iframe {
    width: calc(100% / 2 - 1em / 2);
    height: 100%;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
}
.access-detail {
    width: calc(100% / 2 - 1em / 2);
    display: flex;
    flex-direction: column;
    gap: 1em;
    box-sizing: border-box;
}
.access-detail img {
    border-radius: 1em;
}
.access-detail p {
    font-weight: 700;
    margin: 0 auto;
}
.access-detail div {
    display: flex;
    flex-direction: column;
    gap: 1em;
    border-radius: 1em;
    background: var(--color-lightgrey);
    padding: 1.5em 1em;
}
.access-detail div dt {
    width: fit-content;
    font-weight: 700;
    color: var(--color-base);
    background: var(--color-main);
    border-radius: 200px;
    padding: 0.25em 1em;
    margin-bottom: 0.5rem;
}

section.section-access .link-btn {
    max-width: 20em;
    margin: 0 auto;
    margin-top: 3em;
}

/*--------------------------------------------

max-width 1350

--------------------------------------------*/
@media (max-width: 1350px) {
/*--------------------------------------------
article-first
--------------------------------------------*/
section.section-first {
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.first-visit {
    margin-top: 0;
}
.first-off {
    position: static;
    margin-bottom: -10em;
}
.first-date {
    margin: 0 0 0 auto;
    margin-top: -3em;
    position: static;
}
}


/*--------------------------------------------

max-width 1199

--------------------------------------------*/
@media (max-width: 1199px) {
/*--------------------------------------------
article-first
--------------------------------------------*/
article.article-first {
    padding-top: 5em;
}
}
/*--------------------------------------------

max-width 1080

--------------------------------------------*/
@media (max-width: 1080px) {
/*--------------------------------------------
parts
--------------------------------------------*/
/* arrow-icon */

/* link-btn */

/* article */
.wrap article {
    border-radius: 200px;
}

/*--------------------------------------------
article-first
--------------------------------------------*/
article.article-first {
    border-radius: 0 0 200px 200px;
}
section.section-first h1 {
    width: 100%;
}
.first-off {
    margin-bottom: -7em;
}
/*--------------------------------------------
article-campaign
--------------------------------------------*/
/* section-campaign */

/* section-visit */

/*--------------------------------------------
article-common
--------------------------------------------*/


/*--------------------------------------------
article-products
--------------------------------------------*/
.product-content {
    width: 100%;
}

/*--------------------------------------------
article-present
--------------------------------------------*/
.present-content {
    width: 100%;
}

/*--------------------------------------------
article-cta
--------------------------------------------*/
article.article-cta {
    border-radius: 200px 200px 0 0;
}

/* section-contact */
section.section-contact {
    width: 90%;
}

/* section-access */
}

/*--------------------------------------------

max-width 810

--------------------------------------------*/
@media (max-width: 810px) {
.wrap {
    font-size: 0.9rem;
}
/*--------------------------------------------
parts
--------------------------------------------*/
/* arrow-icon */

/* link-btn */

/*--------------------------------------------
article-first
--------------------------------------------*/

/*--------------------------------------------
article-campaign
--------------------------------------------*/
/* section-campaign */
.campaign-contents dl {
    justify-content: center;
}
.campaign-contents dt {
    width: 100%;
    text-align: center;
}

/* section-visit */
.visit-contents__wrap {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.visit-contents {
    width: 90%;
    padding: 2em 1em;
    padding-bottom: 3em;
    margin: 0 auto 0 0;
}
.visit-img {
    width: 80%;
    margin: 0 0 0 auto;
    margin-top: -1em;
}

/*--------------------------------------------
article-common
--------------------------------------------*/
article.article-common > p {
    margin-top: 5em;
}

/*--------------------------------------------
article-products
--------------------------------------------*/
.product-content {
    gap: 0.5em;
}
.product-item {
    width: calc(100% / 2 - 0.5em / 2);
}

/*--------------------------------------------
article-present
--------------------------------------------*/
.present-content {
    gap: 0.5em;
}
.present-item {
    width: calc(100% / 2 - 0.5em / 2);
}

/*--------------------------------------------
article-cta
--------------------------------------------*/
/* section-contact */
.contact-item {
    width: 100%;
}


/* section-access */
.access-content iframe {
    width: 100%;
    aspect-ratio: 1.51 / 1;
}
.access-detail {
    width: 100%;
}
}

/*--------------------------------------------

max-width 650

--------------------------------------------*/
@media (max-width: 650px) {
/*--------------------------------------------
parts
--------------------------------------------*/
/* arrow-icon */

/* link-btn */

/*--------------------------------------------
article-first
--------------------------------------------*/
.first-off {
    margin-bottom: -5em;
}
/*--------------------------------------------
article-campaign
--------------------------------------------*/
/* section-campaign */

/* section-visit */

/*--------------------------------------------
article-common
--------------------------------------------*/


/*--------------------------------------------
article-products
--------------------------------------------*/

/*--------------------------------------------
article-present
--------------------------------------------*/

/*--------------------------------------------
article-cta
--------------------------------------------*/
/* section-contact */

/* section-access */
}