@charset "UTF-8";

:root {
    --color-bg: #f1f5f7;
    --color-border: #E3E3E3;
    --color-dark: #000;
    --color-basic: #444;
    --color-light: #F7F7F7;
    --color-non: #FFF;
    --color-form: #973b64;
    --font-family-ja: "游ゴシック Medium", Yu Gothic Medium, "游ゴシック体", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", 'PingFang SC', 'Microsoft YaHei', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
    --font-family-ja-min: "游明朝", "YuMincho", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
    --font-family-en: 'EB Garamond', serif;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

ul[class],
ol[class] {
    list-style: none;
    padding: 0;
    margin: 0;
}

:-webkit-any-link:not(.button) {
    color: var(--color-basic);
}

:-moz-any-link:not(.button) {
    color: var(--color-basic);
}

:any-link:not(.button) {
    color: var(--color-basic);
}

a {
    text-decoration: none;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    cursor: pointer;
}

a:hover,
a.button:hover {
    text-decoration: none;
    opacity: .75;
}

::-moz-selection {
    background: var(--color-light);
}

::selection {
    background: var(--color-light);
}

*:focus {
    outline: none;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 62.5%;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}

body {
    font-family: var(--font-family-ja);
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 400;
    color: var(--color-basic);
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 2rem;
    padding: 0 0 2rem;
}

h3 {
    font-size: 1.6rem;
    line-height: 1.4;
}

h1,
h2 {
    font-family: var(--font-family-ja-min);
    line-height: 1.4;
    font-weight: 400;
    margin: 0;
}

h1 span,
h2 span {
    display: block;
    font-family: var(--font-family-en);
    line-height: 1;
    letter-spacing: 0.05rem;
}

h1 span {
    font-size: 1.8rem;
    letter-spacing: 0.05rem;
}

h2 span {
    font-size: 1.6rem;
    margin: 0 0 .5rem;
}

h2 span:nth-child(2) {
    font-size: 2rem;
}

h3 span {
    font-size: 1.6rem;
    display: block;
}

h2.dib {
    text-align: center;
}

h2.dib span {
    display: block;
    margin-right: 0;
}

@media (min-width: 600px) {
    h1 {
        font-size: 2.6rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    h3 span {
        font-size: 1.6rem;
    }

    h2.dib span {
        display: inline-block;
        margin-right: 1rem;
    }
}

p {
    margin: 0 0 2rem;
    line-height: 2;
}

p span {
    margin: 0 .5rem;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-style: none;
    image-rendering: -webkit-optimize-contrast;
    -webkit-backface-visibility: hidden;
}

.bg {
    background: var(--color-bg);
}

.responsive {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.center {
    display: block;
    text-align: center;
}

.right {
    display: block;
    text-align: right;
}

.lead {
    font-family: var(--font-family-ja-min);
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 400;
}

@media (min-width: 600px) {
    .lead {
        font-size: 2rem;
    }
}

a.marker {
    background: linear-gradient(transparent 60%, #e9dde5 30%);
}

a.underline {
    border-bottom: 1px solid;
}

.attention {
    margin: 2rem 0 !important;
}

.attention li {
    line-height: 1.6;
    display: flex;
    align-items: baseline;
}

.attention li:before {
    content: "※";
    margin-right: 0.5em;
}

.sp {
    display: block;
}

.pc {
    display: none;
}

@media (min-width: 480px) {
    a[href^="tel:"] {
        pointer-events: none;
    }

    label,
    input[type='checkbox'] {
        cursor: pointer;
    }
}

@media (min-width: 600px) {
    .tac {
        text-align: center;
    }

    .sp {
        display: none !important;
    }
}

@media (min-width: 821px) {
    .pc {
        display: block !important;
    }
}

.service-link-img .tac,
.section.banner-2 .tac {
    text-align: center;
}


/*//////////////////// SCL ////////////////////////*/
.scl {
    display: none;
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 1;
}

/*//////////////////// LAYOUT ////////////////////////*/

.container {
    width: 100%;
    padding: 0 2rem;
    margin: 0 auto;
}

@media (min-width: 600px) {
    .container {
        max-width: 1240px;
    }

    .offset {
        max-width: 1040px;
        margin: auto;
    }
}

/*//////////////////// LIST / ARTICLE ////////////////////////*/

.list .main-block>.container,
.article .main-block>.container {
    padding: 0;
}

.article .main .contents-inner {
    padding: 2rem;
}

.side {
    padding: 2rem;
}

@media (min-width: 821px) {
    .main {
        flex: 3;
        padding: 0 2rem;
    }

    .side {
        flex: 1;
        padding: 2rem 2rem 2rem 8rem;
    }

    .side ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
}

/*//////////////////// GRID ////////////////////////*/
.grid-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3.6%;
    row-gap: 40px;
}

.grid-wrap.jic {
    justify-items: center;
}

.grid-wrap.jcc {
    justify-content: center;
}

.grid-wrap.jac {
    justify-content: center;
    align-items: center;
}

.grid-wrap.aic {
    align-items: center;
}

.grid-wrap.pic {
    place-items: center;
}

.grid-wrap .content-img {
    border-radius: 5px;
    box-shadow: rgb(0 0 0 / 10%) 0 20px 25px -5px, rgb(0 0 0 / 4%) 0 10px 10px -5px;
}

.grid-wrap .content-text {
    margin: 1.3rem 0 0;
}

.grid-wrap .content-text a:not(:first-child) {
    margin-left: 0.5rem;
}

.grid-wrap .content-text a span {
    display: block;
}

.grid-wrap.col12,
.grid-wrap.col123,
.grid-wrap.col133,
.grid-wrap.col124,
.grid-wrap.col1234 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-wrap.col23,
.grid-wrap.col24,
.grid-wrap.col235 {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 600px) {

    .grid-wrap>.contents-box,
    .grid-wrap>.contents-img,
    .grid-wrap>.contents-text {
        flex: 1;
    }

    .grid-wrap.col12 {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 5%;
    }

    .grid-wrap.col123,
    .grid-wrap.col124,
    .grid-wrap.col1234 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-wrap.col23,
    .grid-wrap.col133,
    .grid-wrap.col235 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .grid-wrap.col1234 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 980px) {
    .grid-wrap.col123 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-wrap.col124,
    .grid-wrap.col1234 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-wrap.col24 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-wrap.col235 {
        grid-template-columns: repeat(5, 1fr);
    }

    .grid-wrap.col1234 {
        column-gap: 2%;
    }
}

@media (min-width: 600px) {

    .odd .grid-wrap:nth-child(odd) .contents-img,
    .even .grid-wrap:nth-child(even) .contents-img {
        order: 1;
    }

    .odd .grid-wrap:nth-child(even) .contents-img,
    .even .grid-wrap:nth-child(odd) .contents-img {
        order: 2;
    }
}

/*//////////////////// FLEX ////////////////////////*/

.contents-wrap .contents-text {
    padding: 2rem;
}

@media (min-width: 821px) {
    .contents-wrap {
        display: flex;
    }

    .contents-wrap.jac {
        justify-content: center;
        align-items: center;
    }

    .contents-wrap.jcas {
        justify-content: center;
        align-items: stretch;
    }

    .contents-wrap.jcas>.contents-box,
    .contents-wrap.jcas>.contents-img,
    .contents-wrap.jcas>.contents-text {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contents-wrap.jcc {
        justify-content: center;
    }

    .contents-wrap.ais {
        align-items: stretch;
    }

    .contents-wrap.aic {
        align-items: center;
    }

    .contents-wrap.fww {
        flex-wrap: wrap;
    }

    .contents-wrap.fdr {
        flex-direction: row-reverse;
    }

    .contents-wrap>.contents-box,
    .contents-wrap>.contents-img,
    .contents-wrap>.contents-text {
        flex: 1;
    }

    .odd .contents-wrap:nth-child(odd),
    .even .contents-wrap:nth-child(even) {
        flex-direction: row-reverse;
    }
}

/*//////////////////// GUTTER ////////////////////////*/

.mt {
    margin: 2rem 0 0;
}

.mb {
    margin: 0 0 4rem;
}

.mtb {
    margin: 2rem 0;
}

@media (min-width: 600px) {
    .mt {
        margin: 4rem 0 0;
    }

    .mb {
        margin: 0 0 4rem;
    }

    .mtb {
        margin: 4rem 0;
    }
}

.main-block section:not(section.mesh):not(section.service):not(section.form):not(section.flow):not(section.contact-item):not(section.mask-container_01):not(section.mask-container_02):not(section.mask-container_03) {
    padding: 6rem 0;
}

@media (min-width: 821px) {
    .main-block section:not(section.mesh):not(section.service):not(section.form):not(section.flow):not(section.contact-item):not(section.mask-container_01):not(section.mask-container_02):not(section.mask-container_03) {
        padding: 11rem 0;
    }
}

/*//////////////////// LIST COL2 ////////////////////////*/

ul.col2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.col2>li {
    width: 100%;
}

ul.col2>li:nth-child(2n) {
    padding: 4rem 1rem 1rem;
    border-bottom: 1px solid #EEE;
}

ul.col2>li:nth-child(2n+1) {
    padding: 4rem 1rem 1rem;
    border-bottom: 3px solid #EEE;
}

ul.col2 li ol {
    padding: 0 1em;
}

ul.col2 li ol li {
    line-height: 2;
}

@media (min-width: 600px) {
    ul.col2 {
        display: flex;
        flex-wrap: wrap;
    }

    ul.col2>li:nth-child(2n) {
        width: 80%;
    }

    ul.col2>li:nth-child(2n+1) {
        width: 20%;
    }
}

/*//////////////////// DL DT DD ////////////////////////*/

dt {
    padding: 1rem;
    margin: 0;
    border-bottom: 3px solid var(--color-dark);
}

dd {
    padding: 1rem;
    margin: 0 0 3rem;
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 600px) {
    dl {
        display: flex;
        flex-wrap: wrap;
        line-height: 1.8;
    }

    dt {
        width: 30%;
        margin: 0 0 2rem;
        text-align: left;
    }

    dd {
        width: 70%;
        margin: 0 0 2rem;
    }
}

/*//////////////////// BUTTON ////////////////////////*/

.button {
    position: relative;
    display: block;
    background: var(--color-dark);
    color: var(--color-non);
    border: 1px solid var(--color-dark);
    line-height: 1.4;
    text-align: center;
    padding: 1.2rem 4rem;
}

.button:hover {
    background: var(--color-non);
    color: var(--color-dark);
}

.button.white {
    background: var(--color-non);
    color: var(--color-dark);
}

.button.white:hover {
    background: var(--color-dark);
    color: var(--color-non);
}

.button.letter:before {
    font-family: var(--font-family-en);
    font-size: 1.4rem;
    margin: 0 .5rem 0 0;
}

.button.letter.entry:before {
    content: 'Entry';
}

.button.letter.contact:before {
    content: 'Contact';
}

.button.letter.card:before {
    content: 'Card';
}

.button.letter.shop:before {
    content: 'Shop';
}

.button.letter.website:before {
    content: 'Website';
}

.button.letter.click:before {
    content: 'Click';
}

.button.shift::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border: 1px solid var(--color-basic);
    transition: 0.2s;
}

.button.shift:hover::before {
    top: 0;
    left: 0;
    border: none;
}

@media (min-width: 821px) {
    .button {
        display: inline-block;
        width: auto;
    }
}

.icon {
    position: relative;
    padding: 1rem 4rem;
    min-width: 200px;
}

.icon::after {
    content: "";
    padding-left: 1.6rem;
    margin-left: 0.5rem;
}

.icon.arrowR::after {
    background: url(/lp/content/images/icon_arrowR.svg) no-repeat center center/contain;
}

.iconB::before {
    content: "";
    padding-right: 1.6rem;
    margin-right: .5rem;
}

.iconB.arrowL::before {
    background: url(/lp/content/images/icon_arrowL.svg) no-repeat center center/contain;
}

.icon.prev::before {
    content: "";
    padding-right: 1.6rem;
    margin-right: .5rem;
    background: url(/lp/content/images/icon_arrowL.svg) no-repeat center center/contain;
}

.white.icon::after,
.icon:hover::after,
.iconB:hover::before {
    filter: brightness(0);
}

.white.icon:hover::after {
    filter: brightness(100);
}

.tel.md {
    font-family: var(--font-family-en);
    font-size: 3.0rem;
}

.tel::before {
    content: "";
    filter: brightness(0);
    padding-right: 1.2rem;
    margin: 0 .5rem;
    background: url(/lp/content/images/icon_tel.svg) no-repeat center/contain;
}

.tel.md::before {
    padding-right: 2rem;
    margin-right: 1rem;
}


/*//////////////////// MAIN BLOCK ////////////////////////*/

.main-block {
    position: relative;
    z-index: 1;
}

.list .main-block,
.article .main-block {
    margin: 0 0 8rem;
}

/*//////////////////// TITLE BLOCK ////////////////////////*/

.title-block .container {
    padding: 3rem 2rem 0;
}

.title-block {
    border-bottom: 1px solid var(--color-border);
}

.title-block h1 {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
}

.title-block h1 span {
    position: absolute;
    z-index: -1;
    bottom: -1rem;
    right: 0;
    font-size: 4rem;
    background: -webkit-linear-gradient(top, rgba(240, 240, 240, 1) 0%, rgba(240, 240, 240, 1) 80%, rgba(240, 240, 240, 0) 80%, rgba(240, 240, 240, 0) 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.title-block .contents-img {
    box-shadow: rgb(0 0 0 / 10%) 0 20px 25px -5px, rgb(0 0 0 / 4%) 0 10px 10px -5px;
}

.title-block .contents-text {
    padding: 2rem 0;
}

@media (min-width: 600px) {
    .title-block .container {
        padding: 0 2rem;
    }

    .title-block h1 {
        padding: 3rem 0 1rem;
        margin: 6rem 0 0;
    }

    .title-block h1 span {
        bottom: -2.5rem;
        right: 0;
        font-size: 12rem;
    }
}

/*//////////////////// FOOTER ////////////////////////*/
footer {
    background: var(--color-light);
    padding: 0;
    text-align: left;
}

footer .logo {
    text-align: center;
    margin: 0 0 2rem;
}

footer .logo img {
    width: 200px;
    filter: brightness(0);
}

footer .container {
    padding: 0;
}

footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

footer .button {
    min-width: auto;
    width: auto;
    margin: 1rem;
}

footer .internal-link {
    width: 100%;
}

footer .acMenu-parent {
    padding: 2rem 1rem;
    background: none;
}

footer .acMenu-child li {
    background: none !important;
}

footer .acMenu-child li {
    border-bottom: 1px solid var(--color-pale);
    box-sizing: border-box;
}

footer .profile {
    width: 100%;
    padding: 1rem;
    text-align: center;
}

footer .profile .call {
    font-family: var(--font-family-en);
    font-size: 3rem;
    font-weight: 600;
    padding-left: 3.6rem;
    line-height: 2;
    margin: 2rem 0;
}

footer .profile .call:before {
    font-size: 2.6rem;
    bottom: 0.2rem;
}

footer .acMenu span {
    font-family: var(--font-family-en);
    margin-right: 0.5rem;
    letter-spacing: 0.05rem;
}

footer .button {
    display: block;
}

footer .copyright {
    font-family: var(--font-family-ja-min);
    background: var(--color-non);
    padding: 0;
    text-align: center;
    padding: 1rem 0;
    font-size: 1.3rem;
    width: 100%;
    font-weight: 400;
}

footer .copyright2 {
    text-align: center;
    padding: 1rem;
    border-top: 1px solid #dcdcdc;
    font-size: 1.2rem;
}

footer p {
    line-height: 1.4;
}

@media (min-width: 600px) {
    footer {
        padding: 4rem 0 0;
    }

    footer .profile {
        flex: 1;
    }

    footer .internal-link {
        flex: 3;
        margin: 0 auto;
        padding: 5px;
        column-count: 3;
        column-gap: 30px;
    }

    footer .acMenu {
        padding: 5px;
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid;
        border: none;
    }

    footer .acMenu-parent {
        color: var(--color-pale);
    }

    footer .acMenu-child li {
        border: none;
    }

    footer .acMenu-parent,
    footer .single {
        font-size: 1.6rem;
        font-weight: 400;
        pointer-events: none;
        padding: 0;
        margin: 0 0 0.5rem;
        border-bottom: 1px solid var(--color-dark);
    }

    footer .acMenu-parent:after,
    footer .single:after {
        display: none;
    }

    footer .acMenu-child {
        display: block !important;
        background: none;
    }

    footer .acMenu-child li {
        background: none !important;
        padding: .5rem 0;
        margin: .5rem 0;
    }

    footer .acMenu-child a {
        pointer-events: auto;
    }

    footer .contents-wrap {
        column-gap: 30px;
    }
}

/*//////////////////// rel11 privacy policy ////////////////////////*/

.privacy-policy .container h2 {
    margin: 4rem 0 0;
}

.privacy-policy .container h3 {
    font-size: 1.6rem;
    padding: 0;
    margin: .5rem 0;
}

.privacy-policy .container p,
.privacy-policy .container ol li {
    line-height: 1.6;
}

.privacy-policy .container>ol>li>span {
    font-family: var(--font-family-ja-min);
    font-size: 1.8rem;
    font-weight: 400;
}

.privacy-policy .container ol {
    padding: 0 0 0 1em;
    margin: 0 0 2rem;
}

.privacy-policy .container dl.purpose {
    counter-reset: num 0;
}

.privacy-policy .container dl.purpose dt:not(:first-child)::before {
    counter-increment: num 1;
    content: '(' counter(num)')';
    margin: 0 0.5rem 0 0;
}

.privacy-policy .container dl.purpose dt:nth-child(4n+1),
.privacy-policy .container dl.purpose dd:nth-child(4n+2) {
    margin: 0;
    border-bottom: 1px solid var(--color-border);
    padding: 1.6rem;
}

.privacy-policy .container dl.purpose dt:nth-child(4n+3),
.privacy-policy .container dl.purpose dd:nth-child(4n+4) {
    margin: 0;
    border-bottom: 1px solid var(--color-light);
    padding: 1.6rem;
}

.privacy-policy .container dl.purpose dt:first-of-type {
    background: #b4bbbf;
    color: var(--color-non);
    margin: 0;
}

.privacy-policy .container dl.purpose dt:not(:first-of-type):nth-child(4n+1),
.privacy-policy .container dl.purpose dt:nth-child(4n+3) {
    background: #f7fafb;
    margin: 0;
}

.privacy-policy .container ol {
    counter-reset: num 0;
}

.privacy-policy .container ol>li {
    position: relative;
    counter-increment: num 1;
    list-style: none;
    padding-left: .5rem;
    margin: 0 0 1rem;
}

.privacy-policy .container>ol>li::before {
    content: counter(num)'.';
    font-family: var(--font-family-ja-min);
    font-weight: 400;
}

.privacy-policy .container ol li::before {
    position: absolute;
    left: -2rem;
}

.privacy-policy .container ol.policy-list li::before {
    position: absolute;
    left: -1.5rem;
}

.privacy-policy .container>ol>li>ol>li::before {
    content: counter(num)')';
}

.privacy-policy .container>ol>li>ol>li>ol>li::before {
    content: '(' counter(num)')';
}

.privacy-policy .container>ol>li>ol>li>ol>li>ol>li::before {
    content: '[' counter(num)']';
}

ul.lower-alpha {
    counter-reset: alphabet;
}

ul.lower-alpha>li {
    list-style-type: none;
    counter-increment: alphabet;
}

ul.lower-alpha>li::before {
    content: counter(alphabet, lower-alpha) ')';
}

ol.nocount {
    margin: 0;
    padding: 0;
}

.privacy-policy .container ol.nocount>li::before {
    content: '';
}

.privacy-policy .container>ol:not(.policy-list)>li::before {
    font-size: 1.8rem;
}

@media (min-width: 600px) {

    .privacy-policy .container dl.purpose dt,
    .privacy-policy .container dl.purpose dd {
        width: 50%;
        border: none;
    }

    .privacy-policy .container p,
    .privacy-policy .container ol li {
        line-height: 2;
    }

    .privacy-policy .container h2 {
        margin: 1rem 0 0;
    }

    .privacy-policy .container dl.purpose dt:first-of-type,
    .privacy-policy .container dl.purpose dd:first-of-type {
        background: #61676a;
        color: var(--color-non);
        margin: 0;
    }

    .privacy-policy .container>ol>li>span {
        font-size: 2rem;
    }

    .privacy-policy .container>ol>li>ol>li>span {
        font-size: 1.8rem;
        font-weight: 600;
    }

    .privacy-policy .container>ol:not(.policy-list)>li::before {
        font-size: 2rem;
    }

    .privacy-policy .container>ol>li>ol>li::before {
        font-size: 1.8rem;
    }

    .privacy-policy .container dl.purpose dt:nth-child(4n+3),
    .privacy-policy .container dl.purpose dd:nth-child(4n+4) {
        margin: 0;
        border-bottom: 1px solid var(--color-border);
    }
}

/*//////////////////// rel13 Term ////////////////////////*/

.rel13 .privacy-policy .container>ol>li::before {
    content: none;
}

.rel13 .privacy-policy .container>ol>li>span {
    position: relative;
    left: -2rem;
    bottom: 0.5rem;
}

.rel13 .privacy-policy .container>ol>li>ol>li::before {
    font-size: 1.8rem;
    line-height: 1.6;
}

.rel13 .privacy-policy .container>ol>li>ol>li::before {
    content: counter(num)'.';
}

.rel13 .privacy-policy .container ol>li {
    padding-left: 1rem;
}

.rel13 .privacy-policy .container ol {
    padding: 0;
    margin: 0 0 2rem;
}

.privacy-policy .container .policy-hundling>li {
    margin-bottom: 4rem;
}

@media (min-width: 600px) {
    .rel13 .privacy-policy .container ol {
        padding: 0 0 0 1rem;
    }
}

/*//////////////////// tsuika ////////////////////////*/

div#saikansystem,
div#alphaclub {
    border-top: solid 1px;
}

section.all-info {
    max-width: 760px;
    margin: auto;
    padding: 2rem 0 5rem !important;
}

section.all-info .grid-wrap.col12 p {
    line-height: 1.4;
    margin: 1rem 0 0;
}

section.all-info h2 {
    border-bottom: 1px solid;
    padding: 0;
    margin: 5rem auto 2rem;
    font-weight: 600;
}

/*アルファ*/
.privacy-policy.alpha {
    line-height: 1.8;
}

.privacy-policy.alpha .indent {
    padding-left: 1em;
    text-indent: -1em;
    margin: 0 0 2rem;
}

.privacy-policy.alpha h3 {
    font-family: var(--font-family-ja-min);
    font-size: 1.8rem;
    font-weight: 400;
    padding: .5rem 0 .5rem;
}

.privacy-policy.alpha p b,
.privacy-policy.alpha b {
    font-size: 1.5rem;
    line-height: 1.4;
}

.privacy-policy.alpha .pmark {
    margin-left: 10px;
    padding-left: 110px;
    background: url(/lp/pp/pms.gif) left no-repeat;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.privacy-policy.alpha table {
    border-collapse: separate;
    border-spacing: 0;
}

.privacy-policy.alpha table {
    border-top: #CCC 1px solid;
    border-left: #CCC 1px solid;
    margin: 0 0 2rem;
}

.privacy-policy.alpha tbody tr td {
    border-bottom: #CCC 1px solid;
    border-right: #CCC 1px solid;
    padding: 3px;
}

.privacy-policy.alpha tbody tr:first-child {
    background: #61676a;
    color: #fff;
}

.privacy-policy.alpha tbody tr:first-child td {
    padding: 1rem;
    width: 50%;
}

.privacy-policy.alpha tbody tr:not(:first-child) td:nth-child(1),
.privacy-policy.alpha tbody tr:not(:first-child) td:nth-child(2) {
    background-color: #f7fafb;
}

.privacy-policy.alpha tbody tr:not(:first-child) td:nth-child(1) {
    white-space: nowrap;
    text-align: center;
}

@media (min-width: 600px) {
    .privacy-policy.alpha h3 {
        font-size: 2rem;
    }
}