@charset "UTF-8";


/* ブレイクポイントと連動している container の幅になる。 */
/* containerにデフォルトで入っているpaddingを設定 */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1.5;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,
*:before,
*:after {
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.l-wrapper {
    overflow: hidden;
}

.l-container {
    margin: 0 auto;
    position: relative;
    padding-left: 16px;
    padding-right: 16px;
    /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
    /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
    /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
    /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
    /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
    /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}

.l-container.is-lg-width {
    max-width: 1280px;
}

.l-container.is-md-width {
    max-width: 920px;
}

.l-container.is-sm-width {
    max-width: 768px;
}

.l-container.is-xs-width {
    max-width: 400px;
}

@media screen and (max-width: 400px) {
    .l-container {
        width: 100%;
    }
}

@media screen and (min-width: 401px) {
    .l-container {
        width: 100%;
    }
}

@media screen and (min-width: 921px) {
    .l-container {
        padding-left: 84px;
        padding-right: 84px;
    }
}

@media screen and (min-width: 1281px) {
    .l-container {
        width: 1280px;
    }
}

.l-container.has-padding {
    padding: 0 15px;
    /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}

@media screen and (max-width: 768px) {
    .l-container.has-padding {
        padding: 0 20px;
    }
}

.l-liquid-container {
    width: 100%;
    position: relative;
    padding-left: 84px;
    padding-right: 84px;
    /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}

@media screen and (max-width: 920px) {
    .l-liquid-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.l-flex-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.l-flex-box.is-direction-column {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.l-flex-box.is-align-center {
    align-items: center;
}

.l-flex-box.is-align-start {
    align-items: flex-start;
}

.l-flex-box.is-flex-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.l-flex-box.is-justify-center {
    -webkit-justify-content: center;
    justify-content: center;
}

.l-flex-box.is-justify-space-between {
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.l-flex-box.l-block-sm {
    /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}

@media screen and (max-width: 768px) {
    .l-flex-box.l-block-sm {
        display: block;
    }
}

.show-sm {
    display: none !important;
}

.hide-sm {
    display: block !important;
}

/* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
@media screen and (max-width: 768px) {
    .show-sm {
        display: block !important;
    }

    .hide-sm {
        display: none !important;
    }
}

.u-relative {
    position: relative;
}

html {
    font-size: 62.5%;
    /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}

@media screen and (max-width: 768px) {
    html {
        font-size: 50%;
    }
}

@media (max-width: 350px) {
    html {
        font-size: 42%;
    }
}

body {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    line-height: 2;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -webkit-font-kerning: normal;
    font-kerning: normal;
    font-variant-ligatures: no-common-ligatures;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 2dppx) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

a {
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.6rem;
}

.jp-fonts-main,
body,
input,
select,
textarea,
label,
.contact__form .contact__form__ttl .note {
    font-family:"游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: normal;
    font-style: normal;
}

.header__main__logo,
.nav,
.latin-fonts-main,
.section__heading .section__heading__title,
.static-page-title h1,
.btn,
.section--access__contact a.link-to-contact,
.cpn-brand-thumbnail .cpn-brand-thumbnail__button a,
.cpm-brand-detail--product .product__flex-container .product__text .product__text__purchasing-area .product__text__purchasing-area__action a,
.contact__form .forom__action .forom__action__submit,
.page-thanks .thaks__content a,
.header__main .header__main__menu .header__main__menu__item a,
.footer,
.section--brands .section--brands__list .section--brands__list__item .section--brands__list__item__hover-content .dammy-button,
.contact__form .contact__form__ttl,
.page-recruit .recruit__content {
    font-family: "A1ゴシック M", "A1 Gothic M", sans-serif;
    font-style: normal;
    font-weight: normal;
}


.kern-wide,
.section__heading .section__heading__title,
.static-page-title h1,
.btn,
.section--access__contact a.link-to-contact,
.cpn-brand-thumbnail .cpn-brand-thumbnail__button a,
.cpm-brand-detail--product .product__flex-container .product__text .product__text__purchasing-area .product__text__purchasing-area__action a,
.contact__form .forom__action .forom__action__submit,
.page-thanks .thaks__content a,
.header__main,
.footer,
.contact__form .contact__form__ttl {
    letter-spacing: 0.12em;
}

.has-text-black {
    color: #000;
}

.has-text-white {
    color: #000;
}

.has-text-center {
    text-align: center;
}

.has-text-right {
    text-align: right;
}

.has-chushaku {
    position: relative;
}

.has-chushaku .chushaku {
    position: absolute !important;
    right: -6px;
    font-size: 10px !important;
    top: -10px;
    line-height: 1;
    letter-spacing: -0.1em !important;
    /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}

.has-chushaku .chushaku .ast {
    display: block !important;
    font-size: 1.4em;
    position: absolute;
    top: 1px;
    left: -8px;
}

@media screen and (max-width: 768px) {
    .has-chushaku .chushaku {
        right: -7px;
        top: -0.7em;
        font-size: 10px !important;
        white-space: nowrap;
    }

    .has-chushaku .chushaku.chushaku--sp-box-edge-01 {
        top: -19px;
        right: -120%;
    }

    .has-chushaku .chushaku.chushaku--sp-box-edge-02 {
        top: -19px;
        right: -60%;
    }

    .has-chushaku .chushaku.chushaku--sp-box-edge-03 {
        top: -19px;
        right: -230%;
    }
}

::selection {
    background: #ffecec;
    /* WebKit/Blink Browsers */
}

::-moz-selection {
    background: #ffecec;
    /* Gecko Browsers */
}

.section__heading {
    padding-top: 90px;
    padding-bottom: 60px;
}

.section__heading .section__heading__title {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    line-height: 1;
    margin: 0;
}

.static-page-title {
    padding-top: 65px;
    text-align: center;
}

.static-page-title h1 {
    padding-bottom: 60px;
    margin-bottom: 0;
    font-size: 4.8rem;
    line-height: 1;
    font-weight: 600;
}

/* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
@media screen and (max-width: 768px) {
    .section__heading {
        padding-top: 54px;
        padding-bottom: 48px;
    }

    .static-page-title {
        padding-top: 40px;
        text-align: center;
    }

    .static-page-title h1 {
        padding-bottom: 50px;
        font-size: 4rem;
    }
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 100%;
}

.btn,
.section--access__contact a.link-to-contact,
.cpn-brand-thumbnail .cpn-brand-thumbnail__button a,
.cpm-brand-detail--product .product__flex-container .product__text .product__text__purchasing-area .product__text__purchasing-area__action a,
.contact__form .forom__action .forom__action__submit,
.page-thanks .thaks__content a {
    display: inline-block;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid #000;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -ms-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.btn:hover,
.section--access__contact a.link-to-contact:hover,
.cpn-brand-thumbnail .cpn-brand-thumbnail__button a:hover,
.cpm-brand-detail--product .product__flex-container .product__text .product__text__purchasing-area .product__text__purchasing-area__action a:hover,
.contact__form .forom__action .forom__action__submit:hover,
.page-thanks .thaks__content a:hover {
    background-color: #000;
    color: #FFF;
}

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}

input:focus {
    outline-style: none;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    height: 60px;
    padding-left: 17px;
    font-size: 1.5rem;
}

input,
select,
textarea,
label {
    letter-spacing: 0.1em;
    -webkit-box-shadow: none;
    box-shadow: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-appearance: none;
    max-width: 100%;
}

textarea {
    padding: 17px;
    font-size: 1.5rem;
}

textarea:focus {
    outline: none;
}

input[type=radio],
input[type=checkbox] {
    display: none;
}

input,
textarea {
    border: 0;
    border-bottom: 1px solid #ccc;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -ms-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

input:focus,
textarea:focus {
    border: 0;
    border-bottom: 1px solid #000;
}

input::placeholder {
    color: #bfbfbf;
}

input:-ms-input-placeholder {
    color: #bfbfbf;
}

input::-ms-input-placeholder {
    color: #bfbfbf;
}

.elm-form-long {
    width: 100%;
}

.radio,
.checkbox {
    position: relative;
    box-sizing: border-box;
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
    position: relative;
    display: inline-block;
    margin-right: 30px;
    padding: 0px 0px 0px 30px;
    vertical-align: middle;
    cursor: pointer;
}

.radio:hover:after,
.checkbox:hover:after {
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -ms-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.radio:after,
.checkbox:after {
    -webkit-transition: border-color 0.2s linear;
    transition: border-color 0.2s linear;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 14px;
    height: 14px;
    border: 2px solid #000;
    content: '';
}

.radio:before {
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 14px;
    height: 14px;
    background-color: #000;
    content: '';
    opacity: 0;
}

input[type=radio]:checked+.radio:before {
    opacity: 1;
}

select {
    outline: none;
    text-indent: 0.01px;
    text-overflow: '';
    background: none transparent;
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

select option {
    background-color: #fff;
    color: #333;
}

select::-ms-expand {
    display: none;
}

select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #828c9a;
}

.select {
    position: relative;
    width: 100%;
    border-radius: 0;
    height: 60px;
    background-color: #eee;
    border: none;
    padding-left: 17px;
}

.select-wrap {
    position: relative;
    width: 100%;
}

.select-wrap:before {
    z-index: 1;
    position: absolute;
    top: 21px;
    right: 28px;
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
@media screen and (max-width: 768px) {

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    .select {
        height: 48px;
        padding-left: 17px;
        font-size: 1.5rem;
    }

    .select-wrap {
        position: relative;
        width: 100%;
    }

    .select-wrap:before {
        z-index: 1;
        position: absolute;
        top: 16px;
        right: 21px;
        display: block;
        content: "";
        width: 12px;
        height: 12px;
        border-right: 1px solid #000;
        border-bottom: 1px solid #000;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

.header__main {
    position: fixed;
    width: 100vw;
    z-index: 100;
    background-color: rgb(255 255 255 / 90%);

}

@media screen and (max-width: 768px) {
    .header__main {
        position: absolute;
    }
}

.header__main .header__main__flex-wrap {
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}



.header__main .header__main__logo {
    letter-spacing: 0.15em;
    text-decoration: none;
    font-size: 24px;
    line-height: 1;
}

.header__main .header__main__logo a {
    text-decoration: none;
}

.header__main .header__main__menu {
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    align-items: center;
}

.header__main .header__main__menu .header__main__menu__item a {
    position: relative;
    padding: 13px;
    text-decoration: none;
}



.header__main .header__main__menu .header__main__menu__item.header__main__menu__item--sns {
    width: 90px;
    margin-left: 30px;
}

.header__main .header__main__menu .header__main__menu__item.header__main__menu__item--sns ul {
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
}

.header__main .header__main__menu .header__main__menu__item.header__main__menu__item--sns ul li a {
    padding: 5px;
}

.header__main .header__main__menu .header__main__menu__item.header__main__menu__item--sns ul li a img {
    height: 13px;
}

.header__main .header__main__menu .header__main__menu__item.header__main__menu__item--sns ul li:nth-of-type(3) img {
    height: 11px;
}

.header__main__right--sp {
    display: none;
}

/* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
@media screen and (max-width: 920px) {
    .header__main .header__main__flex-wrap {
        position: relative;
        height: 72px;
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
    }

    .header__main .header__main__flex-wrap .header__main__left {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
    }

    .header__main .header__main__flex-wrap .header__main__logo {
        height: 24px;
        text-align: center;
    }

    .header__main .header__main__flex-wrap .header__main__logo img {
        width: 190px;
    }

    .header__main .header__navigation {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        background-color: #FFF;
        -webkit-transition-duration: 0.5s;
        -moz-transition-duration: 0.5s;
        -ms-transition-duration: 0.5s;
        -o-transition-duration: 0.5s;
        transition-duration: 0.5s;
    }

    .header__main .header__navigation.nav-open {
        opacity: 1;
        visibility: visible;
    }

    .header__main .header__navigation.nav-open ul li a {
        font-size: 2.8rem;
        line-height: 6rem;
    }

    .header__main .header__main__menu {
        width: 100vw;
        height: 80%;
        padding-right: 0;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        justify-content: center;
    }

    .header__main .header__main__menu .header__main__menu__item.header__main__menu__item--sns {
        margin-left: 0;
        margin-top: 20px;
        width: 120px;
    }

    .header__main .header__main__menu .header__main__menu__item.header__main__menu__item--sns ul li a img {
        height: 18px;
    }

    .header__main .header__main__menu .header__main__menu__item.header__main__menu__item--sns ul li:nth-of-type(3) img {
        height: 16px;
    }

    .header__main__right--sp {
        display: block;
    }

    .header__main__right--sp .header__main__toggle {
        position: relative;
        height: 27px;
        padding: 25px;
    }

    .header__main__right--sp .header__main__toggle .header__main__toggle__inner {
        position: absolute;
        top: 12px;
        right: 0;
    }

    .header__main__right--sp .header__main__toggle span {
        position: absolute;
        right: 0;
        display: block;
        width: 22px;
        height: 2px;
        background-color: #000;
        -webkit-transition-duration: 0.4s;
        -moz-transition-duration: 0.4s;
        -ms-transition-duration: 0.4s;
        -o-transition-duration: 0.4s;
        transition-duration: 0.4s;
    }

    .header__main__right--sp .header__main__toggle span:nth-of-type(1) {
        top: 10px;
    }

    .header__main__right--sp .header__main__toggle span:nth-of-type(2) {
        top: 18px;
    }

    .header__main__right--sp .header__main__toggle.closed span:nth-of-type(1) {
        top: 10px;
        -webkit-animation-fill-mode: forwards;
        -moz-animation-fill-mode: forwards;
        -o-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-duration: 1s;
        -ms-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-name: close-nav-upper-bar;
        animation-name: close-nav-upper-bar;
    }

    .header__main__right--sp .header__main__toggle.closed span:nth-of-type(2) {
        top: 18px;
        -webkit-animation-fill-mode: forwards;
        -moz-animation-fill-mode: forwards;
        -o-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-duration: 1s;
        -ms-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-name: close-nav-bottom-bar;
        animation-name: close-nav-bottom-bar;
    }

    .header__main__right--sp .header__main__toggle.open span:nth-child(1) {
        -webkit-animation-fill-mode: forwards;
        -moz-animation-fill-mode: forwards;
        -o-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-duration: 1s;
        -ms-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-name: open-nav-upper-bar;
        animation-name: open-nav-upper-bar;
    }

    .header__main__right--sp .header__main__toggle.open span:nth-child(2) {
        top: 13px;
        -webkit-animation-fill-mode: forwards;
        -moz-animation-fill-mode: forwards;
        -o-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-duration: 1s;
        -ms-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-name: open-nav-bottom-bar;
        animation-name: open-nav-bottom-bar;
    }
}

@keyframes open-nav-upper-bar {
    0% {
        top: 10px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    20% {
        top: 13px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    100% {
        top: 13px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }
}

@keyframes open-nav-bottom-bar {
    0% {
        top: 18px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    20% {
        top: 13px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    100% {
        top: 13px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        -o-transform: rotate(135deg);
    }
}

@keyframes close-nav-upper-bar {
    0% {
        top: 13px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }

    50% {
        top: 13px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    100% {
        top: 10px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
}

@keyframes close-nav-bottom-bar {
    0% {
        top: 13px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        -o-transform: rotate(135deg);
    }

    50% {
        top: 13px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    100% {
        top: 18px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
}

.footer {
    padding-top: 60px;
    padding-bottom: 30px;
    background-color: #fafafa;
}

.footer a {
    transition-duration: 0.3s;
}

.footer a:hover {
    color: #ffc9c9;
}

.footer .footer--main__content .footer--main__content__flex-inner {
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.footer .footer--main__content__block {
    -webkit-flex: 0 0 310px;
    -ms-flex: 0 0 310px;
    flex: 0 0 310px;
}

.footer .footer--main__content__block ul li a {
    text-decoration: none;
    line-height: 3.2rem;
    font-size: 1.4rem;
}

.footer .footer--main__sns {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.footer .footer--main__sns p {
    font-size: 1.4rem;
    font-weight: 600;
    margin-right: 35px;
}

.footer .footer--main__sns .footer--main__sns__list {
    width: 90px;
}

.footer .footer--main__sns ul {
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
}

.footer .footer--main__sns ul li {
    margin-top: -3px;
}

.footer .footer--main__sns ul li a {
    padding: 5px;
}

.footer .footer--main__sns ul li a img {
    height: 13px;
    vertical-align: middle;
}

.footer .footer--main__sns ul li:nth-of-type(3) img {
    height: 11px;
}

.footer .footer--main__line-up .footer--main__line-up__title {
    margin-bottom: 30px;
}

.footer .footer--main__line-up .footer--main__line-up__title p {
    font-size: 1.4rem;
    font-weight: bold;
    display: inline-block;
}

.footer .footer--main__line-up ul {
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 192px;
}

.footer .footer--main__line-up ul li {
    width: 210px;
}

.footer .footer--main__line-up ul li.is-coming-soon a {
    color: #aaa;
    pointer-events: none;
}

.footer .footer--main__bottom {
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding-top: 60px;
}

.footer .footer--main__bottom .footer--main__legal-links ul li a {
    display: block;
    margin-top: -5px;
    font-size: 1.2rem;
    text-decoration: none;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.footer .footer--main__bottom .footer--main__legal-links ul li a:hover {
    text-decoration: underline;
}

.footer .footer--main__bottom .footer--main__copyright p {
    font-size: 1.1rem;
}

/* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
@media screen and (max-width: 920px) {
    .footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer .footer--main__content__block {
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }

    .footer .footer--main__line-up .footer--main__line-up__title {
        margin-top: 52px;
        margin-bottom: 3px;
    }

    .footer .footer--main__line-up ul {
        height: auto;
    }

    .footer .footer--main__sns {
        margin-bottom: 30px;
    }

    .footer .footer--main__sns p {
        display: block;
    }

    .footer .footer--main__sns .footer--main__sns__list {
        width: 100px;
        position: absolute;
        left: 130px;
        top: -5px;
    }

    .footer .footer--main__sns ul li {
        margin-top: 1px;
    }

    .footer .footer--main__sns ul li a {
        padding: 2px;
    }

    .footer .footer--main__sns ul li a img {
        height: 18px;
    }

    .footer .footer--main__sns ul li:nth-of-type(3) img {
        height: 16px;
    }

    .footer .footer--main__bottom {
        display: block;
        padding-top: 30px;
    }

    .footer .footer--main__bottom .footer--main__legal-links {
        margin-bottom: 20px;
    }
}

.section--keyvisual .section--keyvisual__image img {
    width: 100%;
    height: 100%;
    max-height: 1040px;
    object-fit: cover;
}

.section--brands .section--brands__list {
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    margin-left: -8px;
    margin-right: -8px;
    /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}

.section--brands .section--brands__list .section--brands__list__item {
    -webkit-flex: 0 0 33.3333333%;
    -ms-flex: 0 0 33.3333333%;
    flex: 0 0 33.3333333%;
    margin-bottom: 16px;
    padding-left: 8px;
    padding-right: 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media (min-width: 1800px) {
    .section--brands .section--brands__list .section--brands__list__item {
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    }
}

@media (min-width: 2560px) {
    .section--brands .section--brands__list .section--brands__list__item {
        -webkit-flex: 0 0 20%;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
    }
}

.section--brands .section--brands__list .section--brands__list__item .section--brands__list__item__inner {
    position: relative;
}

.section--brands .section--brands__list .section--brands__list__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}

.section--brands .section--brands__list .section--brands__list__item .section--brands__list__item__hover-content {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    -webkit-transition-duration: 0.7s;
    -moz-transition-duration: 0.7s;
    -ms-transition-duration: 0.7s;
    -o-transition-duration: 0.7s;
    transition-duration: 0.7s;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
}

.section--brands .section--brands__list .section--brands__list__item .section--brands__list__item__hover-content.is-comming-soon {
    background-color: #666;
}

.section--brands .section--brands__list .section--brands__list__item .section--brands__list__item__hover-content.is-comming-soon .dammy-button {
    pointer-events: none;
}

.section--brands .section--brands__list .section--brands__list__item .section--brands__list__item__hover-content .dammy-button {
    z-index: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 192px;
    height: 48px;
    border: 2px solid #fff;
    text-align: center;
    line-height: 46px;
    font-weight: bold;
    font-size: 1.6rem;
    color: #FFF;
}

.is-comming-soon+.section--brands .section--brands__list .section--brands__list__item .section--brands__list__item__hover-content .dammy-button {
    border: none;
}

.section--brands .section--brands__list .section--brands__list__item .section--brands__list__item__hover-content img {
    opacity: 0.7;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition-duration: 2.5s;
    -moz-transition-duration: 2.5s;
    -ms-transition-duration: 2.5s;
    -o-transition-duration: 2.5s;
    transition-duration: 2.5s;
}

.section--brands .section--brands__list .section--brands__list__item .section--brands__list__item__hover-content:hover {
    opacity: 1;
}

.section--brands .section--brands__list .section--brands__list__item .section--brands__list__item__hover-content:hover img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.section--about-us .section--about-us__content {
    padding-top: 120px;
    padding-bottom: 120px;
    background-image: url("../images/bg-night-sky.jpg");
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    /* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
}

.section--about-us .section--about-us__statement {
    color: #FFF;
    text-align: center;
}

.section--about-us .section--about-us__statement h2 {
    font-size: 3.6rem;
}

.section--about-us .section--about-us__statement p {
    font-weight: bold;
}

.section--company .section--company__info-table {
    width: 800px;
    margin: 0 auto;
}

.section--company .section--company__info-table table tr th,
.section--company .section--company__info-table table tr td {
    vertical-align: middle;
    text-align: left;
    font-size: 1.6rem;
    height: 80px;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    padding: 20px 0;
}

.section--company .section--company__info-table table tr th {
    width: 220px;
    padding-left: 10px;
}

.section--company .section--company__info-table table tr td {
    width: 580px;
}

.section--access__map {
    height: 480px;
    background-color: #f3f3f4;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}



.section--access__contact {
    padding-top: 120px;
    padding-bottom: 120px;
    text-align: center;
}

.section--access__contact h2 {
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 60px;
}

.section--access__contact a.link-to-contact {
    font-size: 2.4rem;
    line-height: 80px;
    width: 420px;
    height: 80px;
}

ul.slick-dots {
    position: absolute;
    bottom: 13px;
    width: 100%;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}

ul.slick-dots li {
    position: relative;
    width: 54px;
    height: 4px;
    margin-left: 5px;
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
}

ul.slick-dots li:before {
    display: block;
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: 4px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-transition-duration: 2s;
    -moz-transition-duration: 2s;
    -ms-transition-duration: 2s;
    -o-transition-duration: 2s;
    transition-duration: 2s;
}

ul.slick-dots li.slick-active:before {
    background-color: #FFF;
}

ul.slick-dots li button {
    opacity: 0;
}

/* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
@media screen and (max-width: 768px) {
    ul.slick-dots {
        bottom: 10px;
    }

    ul.slick-dots li {
        width: 32px;
        height: 3px;
    }

    ul.slick-dots li:before {
        height: 3px;
    }
}

/* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
@media screen and (max-width: 920px) {

    .section--keyvisual .section--keyvisual__image img {
        height: calc(75vw - 24px);
    }

    .section--brands .section--brands__list {
        margin-left: -6px;
        margin-right: -6px;
    }

    .section--brands .section--brands__list .section--brands__list__item {
        -webkit-flex: 0 0 calc(50%);
        -ms-flex: 0 0 calc(50%);
        flex: 0 0 calc(50%);
        margin-bottom: 12px;
        padding-left: 6px;
        padding-right: 6px;
    }

    .section--brands .section--brands__list .section--brands__list__item .section--brands__list__item__hover-content {
        display: none;
    }

    .section--brands .section--brands__list .section--brands__list__item .section--brands__list__item__hover-content .dammy-button {
        display: none;
    }

    .section--about-us .section--about-us__content {
        padding-top: 96px;
        padding-bottom: 96px;
        padding-left: 16px;
        padding-right: 16px;
        background-image: url("../images/bg-night-sky__sp.jpg");
        -webkit-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    .section--about-us .section--about-us__statement h2 {
        line-height: 1.8;
        margin-left: -10px;
        margin-right: -10px;
    }

    .section--company {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section--company .section--company__info-table {
        width: 100%;
    }

    .section--company .section--company__info-table table tr th,
    .section--company .section--company__info-table table tr td {
        line-height: 1.5;
        height: 64px;
    }

    .section--company .section--company__info-table table tr th {
        width: 35%;
    }

    .section--access__map {
        height: 300px;
    }

    .section--access__contact {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .section--access__contact h2 {
        margin-bottom: 48px;
    }

    .section--access__contact a.link-to-contact {
        font-size: 2rem;
        width: 70%;
        height: 60px;
        line-height: 58px;
    }
}

/* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
.page-brands-index {
    padding-top: 90px;
}

.page-brands-index .brands-index__content {
    padding-right: 84px;
    padding-left: 84px;
}

.page-brands-index ul.brands-index__list {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    margin-left: -8px;
    margin-right: -8px;
    padding-bottom: 60px;
}

.page-brands-index ul.brands-index__list .brands-index__list__item {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    margin-bottom: 100px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.page-brands-index ul.brands-index__list .brands-index__list__item:before {
    padding-top: 55.8394161%;
}

.cpn-brand-thumbnail {
    padding-left: 8px;
    padding-right: 8px;
}

.cpn-brand-thumbnail .cpn-brand-thumbnail__visual {
    margin-bottom: 30px;
}

.cpn-brand-thumbnail .cpn-brand-thumbnail__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cpn-brand-thumbnail .cpn-brand-thumbnail__logo {
    text-align: center;
    margin-bottom: 5px;
}

.cpn-brand-thumbnail .cpn-brand-thumbnail__logo img {
    width: 100%;
    max-width: 400px;
}

.cpn-brand-thumbnail .cpn-brand-thumbnail__text {
    text-align: center;
    margin-bottom: 35px;
}

.cpn-brand-thumbnail .cpn-brand-thumbnail__text h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0;
}

.cpn-brand-thumbnail .cpn-brand-thumbnail__text p {
    font-size: 1.4rem;
    line-height: 2.4rem;
}

.cpn-brand-thumbnail .cpn-brand-thumbnail__button {
    text-align: center;
}

.cpn-brand-thumbnail .cpn-brand-thumbnail__button a {
    position: relative;
    font-size: 1.6rem;
    line-height: 46px;
    width: 280px;
    height: 48px;
}

.cpn-brand-thumbnail .cpn-brand-thumbnail__button a.coming-soon {
    border-color: #ccc;
    pointer-events: none;
    color: #ccc;
}

.cpn-brand-thumbnail .cpn-brand-thumbnail__button a.coming-soon:hover {
    color: inherit;
}

.cpn-brand-thumbnail .cpn-brand-thumbnail__button a.has-site-to-jump .icon {
    position: absolute;
    content: "";
    display: inline;
    top: 17px;
    right: 22px;
    height: 10px;
    width: 10px;
    background-image: url("../images/icon-link-outside.png");
    -webkit-background-size: 10px;
    -o-background-size: 10px;
    background-size: 10px;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.cpn-brand-thumbnail .cpn-brand-thumbnail__button a.has-site-to-jump:hover .icon {
    background-image: url("../images/icon-link-outside--white.png");
}

/* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
@media screen and (min-width: 1481px) {
    .page-brands-index ul.brands-index__list .brands-index__list__item {
        -webkit-flex: 0 0 33.333333%;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
    }
}

@media (min-width: 1800px) {
    .page-brands-index ul.brands-index__list .brands-index__list__item {
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    }
}

/* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
@media screen and (max-width: 920px) {
    .page-brands-index ul.brands-index__list {
        display: block;
        padding-bottom: 30px;
    }

    .page-brands-index ul.brands-index__list .brands-index__list__item {
        width: 100%;
        margin-bottom: 80px;
    }

    .cpn-brand-thumbnail .cpn-brand-thumbnail__visual {
        margin-bottom: 10px;
    }

    .cpn-brand-thumbnail .cpn-brand-thumbnail__logo {
        margin-bottom: 5px;
    }

    .cpn-brand-thumbnail .cpn-brand-thumbnail__logo img {
        width: 90%;
    }

    .cpn-brand-thumbnail .cpn-brand-thumbnail__text {
        margin-bottom: 20px;
    }
}

/* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
@media screen and (max-width: 768px) {
    .page-brands-index .brands-index__content {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.page-brand-detail__plane-note {
    position: relative;
    height: calc(100vh - 516px);
    min-height: 500px;
    margin-top: 90px;
    padding-left: 32px;
    padding-right: 32px;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.page-brand-detail__plane-note p {
    line-height: 2.5;
    text-align: center;
    font-size: 1.5rem;
}

.page-brand-detail__plane-note p a {
    color: #555;
}

.page-brand-detail__plane-note p a:hover {
    color: #777;
}

.product-detail-container,
.cpm-brand-detail--product-copy,
.cpm-brand-detail--contents-tab,
.cpm-brand-detail--full-width-image,
.cpm-brand-detail--product,
.cpm-brand-detail--chushaku-text {
    width: 940px;
    margin: 0 auto;
    letter-spacing: 0.04em;
}

.page-brand-detail {
    padding-top: 90px;
}

.cpm-brand-detail--hero-image__container img {
    width: 100%;
    max-height: 900px;
    object-fit: cover;
}

.cpm-brand-detail--product-copy {
    margin-top: 80px;
    margin-bottom: 80px;
}

.cpm-brand-detail--product-copy h1 {
    font-size: 3.6rem;
    text-align: center;
    line-height: 1.4;
}

.cpm-brand-detail--product-copy h1 .cpm-brand-detail--product-copy__space-hide-sm {
    display: inline;
}

.cpm-brand-detail--product-copy h1 small {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 10px;
}

.cpm-brand-detail--product-copy h1 span.chushaku {
    font-size: 1.5rem;
    vertical-align: top;
}

.cpm-brand-detail--contents-tab {
    margin-top: 80px;
    margin-bottom: 80px;
}

.cpm-brand-detail--contents-tab ul {
    display: flex;
    border-bottom: 2px solid #000000;
    width: 919px;
}

.cpm-brand-detail--contents-tab ul li {
    -webkit-flex: 1 1;
    -ms-flex: 1 1;
    flex: 1 1;
    height: 80px;
    -webkit-transform: translateY(2px);
    -moz-transform: translateY(2px);
    -ms-transform: translateY(2px);
    -o-transform: translateY(2px);
    transform: translateY(2px);
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
    border: 2px solid #000000;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.cpm-brand-detail--contents-tab ul li:not(:last-child) {
    margin-right: 20px;
}

.cpm-brand-detail--contents-tab ul li p {
    font-size: 2rem;
    text-align: center;
    color: #000000;
    font-weight: bold;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.cpm-brand-detail--contents-tab ul li p small {
    font-size: 1.6rem;
    display: block;
    margin-bottom: -12px;
}

.cpm-brand-detail--contents-tab ul li.is-active {
    background-color: #000000;
}

.cpm-brand-detail--contents-tab ul li.is-active p {
    color: #FFF;
}

.cpm-brand-detail--full-width-image img {
    width: 100%;
}

.cpm-brand-detail--product {
    margin-top: 120px;
    margin-bottom: 100px;
}

.cpm-brand-detail--product .product__flex-container {
    display: flex;
    align-items: flex-end;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.cpm-brand-detail--product .product__flex-container .product__image {
    -webkit-flex: 0 0 100px;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
}

.cpm-brand-detail--product .product__flex-container .product__image img {
    width: 100%;
    vertical-align: bottom;
}

.cpm-brand-detail--product .product__flex-container .product__text {
    -webkit-flex: 1 0 100px;
    -ms-flex: 1 0 100px;
    flex: 1 0 100px;
}

.cpm-brand-detail--product .product__flex-container .product__text .product__text__feature-circles {
    position: relative;
    height: 92px;
    margin-bottom: 30px;
}

.cpm-brand-detail--product .product__flex-container .product__text .product__text__feature-circles img {
    height: 100%;
}

.cpm-brand-detail--product .product__flex-container .product__text .product__text__feature-circles .product__text__feature-heart {
    position: absolute;
    top: -40px;
    right: -10px;
    width: 157px;
}

.cpm-brand-detail--product .product__flex-container .product__text .product__text__feature-circles .product__text__feature-heart img {
    width: 100%;
}

.cpm-brand-detail--product .product__flex-container .product__text h1 {
    font-size: 3rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.cpm-brand-detail--product .product__flex-container .product__text h1 small {
    font-size: 1.8rem;
    vertical-align: top;
}

.cpm-brand-detail--product .product__flex-container .product__text p {
    font-size: 1.5rem;
    line-height: 1.5em;
    margin-bottom: 20px;
}

.cpm-brand-detail--product .product__flex-container .product__text p small {
    font-size: 1.3rem;
    vertical-align: top;
    display: inline-block;
    margin-top: -4px;
}

.cpm-brand-detail--product .product__flex-container .product__text .product__text__purchasing-area {
    display: flex;
    width: 100%;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: flex-end;
}

.cpm-brand-detail--product .product__flex-container .product__text .product__text__purchasing-area .product__text__purchasing-area__text p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 0;
}

.cpm-brand-detail--product .product__flex-container .product__text .product__text__purchasing-area .product__text__purchasing-area__text p span {
    margin-left: -0.5em;
}

.cpm-brand-detail--product .product__flex-container .product__text .product__text__purchasing-area .product__text__purchasing-area__action a {
    display: block;
    text-align: center;
    line-height: 46px;
    font-weight: bold;
    text-decoration: none;
    width: 250px;
    height: 48px;
}

.cpm-brand-detail--chushaku-text {
    margin-top: 120px;
    margin-bottom: 80px;
}

.cpm-brand-detail--chushaku-text p {
    font-size: 1.2rem;
    line-height: 1.4em;
    letter-spacing: -0.03em;
}

/* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
@media screen and (max-width: 920px) {

    .product-detail-container,
    .cpm-brand-detail--product-copy,
    .cpm-brand-detail--contents-tab,
    .cpm-brand-detail--full-width-image,
    .cpm-brand-detail--product,
    .cpm-brand-detail--chushaku-text {
        width: 100%;
        max-width: 500px;
        padding-left: 32px;
        padding-right: 32px;
    }

    .cpm-brand-detail--hero-image__container img {
        height: 220px;
    }

    .cpm-brand-detail--product-copy {
        padding-left: 12px;
        padding-right: 12px;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .cpm-brand-detail--product-copy br {
        display: none;
    }

    .cpm-brand-detail--product-copy h1 {
        font-size: 3.2rem;
    }

    .cpm-brand-detail--product-copy h1 .cpm-brand-detail--product-copy__space-hide-sm {
        display: none;
    }

    .cpm-brand-detail--product-copy h1 small {
        font-size: 2rem;
    }

    .cpm-brand-detail--contents-tab {
        border-bottom: 1px solid #000;
        -ms-overflow-x: scroll;
        overflow-x: scroll;
        -ms-overflow-y: hidden;
        overflow-y: hidden;
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .cpm-brand-detail--contents-tab ul {
        width: calc(100vw - 32px);
        width: -webkit-calc(100vw - 32px);
        margin-left: -16px;
        margin-right: -16px;
        border: 1px solid #000;
        -webkit-transform: translateY(1px);
        -moz-transform: translateY(1px);
        -ms-transform: translateY(1px);
        -o-transform: translateY(1px);
        transform: translateY(1px);
        min-width: 340px;
    }

    .cpm-brand-detail--contents-tab ul li {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
        -webkit-flex-grow: 1;
        flex-grow: 1;
        -webkit-flex-shrink: initial;
        flex-shrink: initial;
        -webkit-flex-basis: auto;
        flex-basis: auto;
        border: none;
        height: 55px;
    }

    .cpm-brand-detail--contents-tab ul li:not(:last-child) {
        margin-right: 0px;
        border-right: 1px solid #000;
    }

    .cpm-brand-detail--contents-tab ul li p {
        font-size: 15px;
        line-height: 18px;
    }

    .cpm-brand-detail--contents-tab ul li p small {
        font-size: 12px;
        font-weight: normal;
        margin-bottom: 2px;
    }

    .cpm-brand-detail--full-width-image {
        padding-left: 16px;
        padding-right: 16px;
    }

    .cpm-brand-detail--product {
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .cpm-brand-detail--product .product__flex-container {
        display: block;
    }

    .cpm-brand-detail--product .product__flex-container .product__image {
        width: 100%;
        margin-bottom: 40px;
    }

    .cpm-brand-detail--product .product__flex-container .product__image img {
        width: 250px;
        margin: 0 auto;
    }

    .cpm-brand-detail--product .product__flex-container .product__text {
        width: 100%;
    }

    .cpm-brand-detail--product .product__flex-container .product__text .product__text__feature-circles {
        text-align: center;
        height: 80px;
        margin-bottom: 20px;
    }

    .cpm-brand-detail--product .product__flex-container .product__text .product__text__feature-circles .product__text__feature-heart {
        top: -120px;
        right: -24px;
        width: 110px;
    }

    .cpm-brand-detail--product .product__flex-container .product__text h1 {
        text-align: center;
        font-size: 2.7rem;
    }

    .cpm-brand-detail--product .product__flex-container .product__text h1 br {
        display: none;
    }

    .cpm-brand-detail--product .product__flex-container .product__text .product__text__purchasing-area {
        display: block;
    }

    .cpm-brand-detail--product .product__flex-container .product__text .product__text__purchasing-area .product__text__purchasing-area__action {
        margin-top: 30px;
    }

    .cpm-brand-detail--product .product__flex-container .product__text .product__text__purchasing-area .product__text__purchasing-area__action a {
        width: 100%;
    }

    .cpm-brand-detail--chushaku-text {
        margin-top: 80px;
    }
}

/* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
@media screen and (max-width: 768px) {
    .page-brand-detail__plane-note {
        height: calc(100vh - 678px);
        min-height: 400px;
        margin-top: 72px;
    }
}

.page-contact {
    padding-top: 90px;
    padding-bottom: 120px;
}

.contact__note-area {
    background-color: #f9f9f9;
    padding-top: 70px;
    padding-bottom: 70px;
}

.contact__text-box {
    width: 840px;
    margin: 0 auto;
}

.contact__text-box:nth-of-type(1) {
    margin-bottom: 60px;
}

.contact__text-box .contact__text-box__ttl {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact__text-box .contact__text-box__p {
    font-size: 1.4rem;
    line-height: 1.8rem;
}

.contact__text-box.contact__text-box--text-red {
    color: #C00 !important;
}

.contact__form {
    width: 760px;
    margin: 0 auto;
    padding-top: 60px;
}

.contact__form .contact__form__ttl {
    text-align: center;
    font-size: 3.6rem;
    margin-bottom: 60px;
    font-weight: bold;
}

.contact__form .contact__form__ttl .note {
    display: block;
    text-align: center;
    color: #C00;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.contact__form dl {
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.contact__form dl dt {
    -webkit-flex: 0 0 280px;
    -ms-flex: 0 0 280px;
    flex: 0 0 280px;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    margin-top: 20px;
    padding-top: 15px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact__form dl dt.align-top {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    padding-top: 16px;
}

.contact__form dl dt label {
    font-weight: bold;
}

.contact__form dl dt label span {
    font-size: 1.5rem !important;
}

.contact__form dl dt.required:after {
    display: inline;
    content: "*";
    color: #C00;
    font-size: inherit;
}

.contact__form dl dt span.required {
    display: none;
}

.contact__form dl dt span.optional {
    display: none;
}

.contact__form dl dd {
    display: block;
    -webkit-flex: 480px;
    -ms-flex: 480px;
    flex: 480px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.contact__form dl dd.multi-input-field__container {
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-left: -7.5px;
    margin-right: -7.5px;
}

.contact__form dl dd.multi-input-field__container .multi-input-field__item {
    -webkit-flex: 1 1 100px;
    -ms-flex: 1 1 100px;
    flex: 1 1 100px;
    margin-left: 7.5px;
    margin-right: 7.5px;
}

.contact__form dl dd.required .error_blank {
    font-size: 1.4rem;
    color: #C00;
}

.contact__form dl dd ul.category li:not(:last-child) {
    margin-bottom: 10px;
}

.contact__form dl dd ul.gender {
    display: flex;
}

.contact__form dl dd ul.gender li label {
    margin-bottom: 0;
}

.contact__form dl dd.postal input {
    width: 120px;
}

.contact__form dl dd.address input {
    margin-bottom: 20px;
}

.contact__form dl dd.tel {
    display: flex;
    align-items: center;
}

.contact__form dl dd.tel input {
    width: 120px;
}

.contact__form .forom__action {
    text-align: center;
    padding-top: 50px;
}

.contact__form .forom__action .forom__action__submit {
    font-size: 2.4rem;
    width: 420px;
    height: 80px;
    font-weight: 600;
    letter-spacing: 0.1em;
    -webkit-border-radius: 0;
    border-radius: 0;
    background-color: #FFF;
    color: #000;
}

.page-thanks {
    position: relative;
    margin-top: 90px;
    height: calc(100vh - 516px);
    min-height: 500px;
}

.page-thanks .static-page-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.page-thanks .thaks__content {
    height: 100%;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
}

.page-thanks .thaks__content h1 {
    margin-bottom: 15px;
}

.page-thanks .thaks__content p {
    margin-bottom: 40px;
}

.page-thanks .thaks__content a {
    width: 280px;
    height: 48px;
    line-height: 4.6rem;
}

/* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
@media screen and (max-width: 920px) {
    .page-contact {
        padding-bottom: 80px;
    }

    .contact__note-area {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .contact__text-box {
        width: 100%;
    }

    .contact__text-box:nth-of-type(1) {
        margin-bottom: 40px;
    }

    .contact__form {
        width: 100%;
        padding-left: 32px;
        padding-right: 32px;
    }

    .contact__form .contact__form__ttl {
        margin-bottom: 10px;
    }

    .contact__form dl dt {
        margin-bottom: 0;
        padding-top: 0;
    }

    .contact__form dl dt.align-top {
        padding-top: 0;
    }

    .contact__form dl dd {
        margin-top: 10px;
    }

    .contact__form dl dd.multi-input-field__container {
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }

    .contact__form dl dd.multi-input-field__container .multi-input-field__item {
        width: 100px;
    }

    .contact__form dl dd.postal input {
        width: 30%;
    }

    .contact__form dl dd.tel {
        display: flex;
        align-items: center;
    }

    .contact__form dl dd.tel input {
        width: 30%;
    }

    .contact__form .forom__action {
        padding-top: 30px;
    }

    .contact__form .forom__action .forom__action__submit {
        width: 100%;
        height: 60px;
        font-size: 2rem;
    }

    .page-thanks .thaks__content h1 {
        line-height: 1.5;
    }
}

.page-recruit {
    position: relative;
    margin-top: 90px;
    height: calc(100vh - 516px);
    min-height: 500px;
}

.page-recruit .static-page-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.page-recruit .recruit__content {
    height: 100%;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2.4rem;
}


.page-works{
        position: relative;
    margin-top: 90px;
    height: 100%;
    min-height: 500px;
}
}
.page-policy {
    padding-top: 90px;
}

.page-policy__content .policy-text {
    max-width: 840px;
    margin: 0 auto;
    padding-bottom: 120px;
}

.page-policy__content p {
    font-size: 1.4rem;
    line-height: 2.45rem;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
}

.page-policy__content h2 {
    font-size: 2rem;
    font-weight: bold;
}

.page-policy__content h3 {
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 30px;
}

.page-policy__content table tbody tr th,
.page-policy__content table tbody tr td {
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 2.45rem;
}

.page-policy__content table tbody tr th {
    min-width: 60px;
}

/* 引数無しのデフォルトでは md をブレイクポイントとする（ここはケースバイケースで使用頻度の高いものに入れ替える） */
@media screen and (max-width: 768px) {

    
    .page-policy__content {
        width: 100%;
        margin-top: 60px;
    }

    .page-policy__content .table__hide-sm {
        display: none;
    }
}


/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #999;
    /*動き*/
    transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    opacity: 1;
    z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/

#g-nav li {
    list-style: none;
    text-align: center;
}

#g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
}

/*×に変化*/
.openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
}

.openbtn1 span:nth-of-type(1) {
    top: 15px;
}

.openbtn1 span:nth-of-type(2) {
    top: 23px;
}

.openbtn1 span:nth-of-type(3) {
    top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}





.menu {
    display: block;
    position: fixed;
    bottom: 16px;
    right: 16px;
    background-color: #222;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    z-index: 9999;
    box-shadow: 0px 3px 8px rgb(51 51 51 / 50%);
    cursor: pointer;
}


.menu__line {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background-color: #fff;
    border-radius: 13px;
    transition-duration: .4s;
}

.menu__line:nth-child(1) {
    top: 14px;
}

.menu__line:nth-child(2) {
    top: 23px;
}

.menu__line:nth-child(3) {
    bottom: 14px;
}

.menu.active {
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
}

.menu.active .menu__line:nth-child(1) {
    transform: translate(-12px, 9px) rotate(-45deg);
    background-color: #000;
    ;

}

.menu.active .menu__line:nth-child(2) {
    transition-duration: 0s;
    opacity: 0;
}

.menu.active .menu__line:nth-child(3) {
    transform: translate(-12px, -9px) rotate(45deg);
    background-color: #000;
    ;
}

.nav {
    display: block;
    position: fixed;
    bottom: 16px;
    right: 16px;
    background-color: #222;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    z-index: 999;
    transition-duration: .4s;
}

.nav.open {
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    right: 0px;
    bottom: 0px;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav__list {
    display: none;
}

.nav__list.show {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    width: 100%;
    opacity: 0;
    animation-name: fadein;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.nav__item:nth-child(1) {
    animation-delay: .2s;
}

.nav__item:nth-child(2) {
    animation-delay: .3s;
}

.nav__item:nth-child(3) {
    animation-delay: .4s;
}

.nav__item:nth-child(4) {
    animation-delay: .5s;
}

.nav__item:nth-child(5) {
    animation-delay: .6s;
}

.nav__item:nth-child(6) {
    animation-delay: .7s;
}

.nav__item:not(:last-child) {
    margin-bottom: 32px;
}

.nav__link {
    font-size: 24px;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: #000;
}



@keyframes fadein {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }

    100% {
        opacity: 1;
    }
}



/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
    .pc {
        display: none !important;
    }
}


@media screen and (min-width: 921px) {
    .mobile {
        display: none;
    }
}