@charset "UTF-8";

html {
    box-sizing: border-box;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

*,
:after,
:before {
    background-repeat: no-repeat;
    box-sizing: inherit;
}

:after,
:before {
    text-decoration: inherit;
    vertical-align: inherit;
}

* {
    padding: 0;
    margin: 0;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

hr {
    overflow: visible;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

summary {
    display: list-item;
}

small {
    font-size: 80%;
}

[hidden],
template {
    display: none;
}

abbr[title] {
    border-bottom: 1px dotted;
    text-decoration: none;
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
    outline-width: 0;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
}

b,
strong {
    font-weight: bolder;
}

dfn {
    font-style: italic;
}

mark {
    background-color: #ff0;
    color: #000;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

input {
    border-radius: 0;
}

ul,
li {
    list-style: none;
}

[role=button],
[type=button],
[type=reset],
[type=submit],
button {
    cursor: pointer;
}

[disabled] {
    cursor: default;
}

[type=number] {
    width: auto;
}

[type=search] {
    -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

textarea {
    overflow: auto;
    resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
    font: inherit;
}

optgroup {
    font-weight: 700;
}

button {
    overflow: visible;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: 0;
    padding: 0;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button:-moz-focusring {
    outline: 1px dotted ButtonText;
}

[type=reset],
[type=submit],
button,
html [type=button] {
    -webkit-appearance: button;
}

button,
select {
    text-transform: none;
}

button,
input,
select,
textarea {
    background-color: transparent;
    border-style: none;
    color: inherit;
}

/* 全体共通 */
.wrap {
    width: 100%;
    margin: auto;
    position: relative;
    display: block;
}

img {
    width: 100%;
    margin: 0;
    display: block;
}

.section {
    position: relative;
}

@media screen and (min-width: 769px) {
    .wrap {
        width: 750px;
    }
}

/* mv */
.mv__product {
    width: 42%;
    position: absolute;
    bottom: 16%;
}

.mv__product_01 {
    left: 2%;
    -webkit-transform: translateZ(0);
    display: none;
    opacity: 0;
}

.mv__product_02 {
    right: 2%;
    -webkit-transform: translateZ(0);
    display: none;
    opacity: 0;
}

.mv__product_01.product__ani {
    -webkit-transform: translateZ(0);
    animation-name: product;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    display: block;
    opacity: 1;
}

@keyframes product {
    from {
        opacity: 0;
        left: -100px;
    }

    to {
        opacity: 1;
        left: 0;
    }
}

.mv__product_02.product__ani {
    -webkit-transform: translateZ(0);
    animation-name: product_2;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    display: block;
    opacity: 1;
}

@keyframes product_2 {
    from {
        opacity: 0;
        right: -100px;
    }

    to {
        opacity: 1;
        right: 0;
    }
}


/* award */
.award {
    padding: 48px 2px;
}

.guide__link {
    display: block;
    width: 94%;
    margin: 24px auto 0;
}


.footer {
    padding: 48px 0;
    max-width: 90%;
    margin: 0 auto;
    display: block;
}

.footer__logo {
    width: 140px;
    margin: 0 auto;
    display: block;
}

.footer__link {
    font-size: 13px;
    color: #000;
    border: none;
    text-decoration: none;
    padding: 0 12px;
}

.footer__link__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 32px;
}

.footer__copyright {
    font-size: 11px;
    text-align: center;
    margin-top: 32px;
}

/* CTA */
.cta__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 7%;
    margin: 0 auto;
}

.cta__02 .cta__list {
    bottom: 3%;
}

.cta__list_item {
    width: 43%;
    margin-bottom: 6px;
}

.cta__list_item:nth-child(2n) {
    margin-left: 12px;
}

.cta__more {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9.3%;
    margin: 0 auto;
    width: 28%;
    z-index: 99;
}

.dental .cta__list {
    bottom: 2%;
}

.essence .cta__list {
    bottom: 1%;
}

.product__image {
    width: 38%;
    position: absolute;
    left: -2%;
    top: 28%;
}

.product__s {
    top: 37%;
}

.product__image02 {
    top: auto;
    bottom: 10.8%;
}

.product__s02 {
    top: auto;
    bottom: 8%;
}

.fade-in {
    opacity: 0;
    transition-duration: 800ms;
    transition-property: opacity, transform;
}

.fade-in-left {
    transform: translate(-50px, 0);
}

.scroll-in {
    opacity: 1;
    transform: translate(0, 0);
}