@charset "UTF-8";

/* general */

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.blue {
    color: #5ea8dd;
}

.pink {
    color: #ec6a8b;
}

.red {
    color: #e94629;
}

.orange {
    color: #f39632;
}

.gray {
    color: #666666;
}

.yellow {
    color: #bfa82c;
}

.txt-bold {
    font-weight: bold
}

.en {
    font-family: 'Lato', 'ヒラギノ角ゴ ProN', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", 'メイリオ', meiryo, "ＭＳ Ｐゴシック", sans-serif;
    letter-spacing: 0;
}

a.text-link {
    font-size: 1.4rem;
    text-decoration: underline!important;
    color: #1d1d1d
}

a.text-link:hover {
    text-decoration: none!important;
}

.d-none {
    display: none!important;
}


/* bg */

.bg-blue {
    background-color: #ecf6fb;
}

.bg-orange {
    background-color: #faefe3;
}

.bg-gray {
    background-color: #f7f7f7;
}


/* contents */

.contents {
    width: 1160px;
    margin: 0 auto;
}

.contents_inner {
    width: 800px;
    margin: 0 auto;
}

.contents_inner+.contents_inner {
    margin-top: 2em;
}

.contents_h1 {
    display: inline;
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.5;
    background: linear-gradient(transparent 85%, rgba(236, 106, 139, 0.3) 0);
}

.contents_h1-deco {
    position: relative;
}

.contents_h1-deco:before,
.contents_h1-deco:after {
    content: "";
    position: absolute;
    bottom: 2px;
    width: 1px;
    height: 20px;
    background-color: #1d1d1d;
}

.contents_h1-deco:before {
    left: -32px;
    transform: rotate(-35deg);
}

.contents_h1-deco:after {
    right: -32px;
    transform: rotate(35deg);
}

.contents_h1-deco>span {
    position: relative;
}

.contents_h1-deco>span:before,
.contents_h1-deco>span:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 1px;
    height: 40px;
    background-color: #1d1d1d;
}

.contents_h1-deco>span:before {
    left: -30px;
    transform: rotate(-35deg);
}

.contents_h1-deco>span:after {
    right: -30px;
    transform: rotate(35deg);
}

.contents_h2 {
    font-size: 2.6rem;
    font-weight: 400;
}

.contents_h2-bg {
    display: block;
    padding: 15px 15px;
    background-color: #ecf7fb;
    border-radius: 4px;
}

.contents_h2-line {
    position: relative;
    display: block;
    text-align: center;
}

.contents_h2-line:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    transform: translateY(-50%);
}

.contents_h2-line>span {
    position: relative;
    display: inline-block;
    padding: 0 0.5em;
    background-color: #fff;
}

.contents_h3 {
    font-size: 2.4rem;
    font-weight: 400;
}

.contents_h3-bg {
    display: block;
    padding: 10px 15px;
    background-color: #eee;
    border-radius: 4px;
}

.contents_h3-line {
    position: relative;
    display: block;
    padding-left: 40px;
}

.contents_h3-line:before {
    content: "";
    position: absolute;
    width: 28px;
    height: 1px;
    left: 0;
    top: 50%;
    background-color: #1d1d1d;
    transform: translateY(-50%);
}

.contents_h3-middle {
    font-size: 2.6rem;
}

.contents_h4 {
    font-size: 2rem;
    font-weight: 400;
}

.contents_h4-line {
    position: relative;
    display: block;
    border-bottom: 1px solid #ddd;
}

.contents_h4-line:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 50px;
    height: 1px;
    background-color: #1d1d1d;
}

.contents_h5 {
    font-size: 1.8rem;
    font-weight: 400;
}

.main .contents_h2-bg.pagetitle {
    margin-bottom: 30px;
    padding: 50px 50px;
    font-size: 2.8rem;
    line-height: 1.1;
    position: relative
}

.main .contents_h2-bg.pagetitle:before {
    content: "";
    display: block;
    width: 2px;
    height: 32px;
    background: #5ea8dd;
    position: absolute;
    top: 50px;
    left: 30px
}

.main .contents_h2-bg.pagetitle.line2 {
    padding: 30px 50px
}

.main .contents_h2-bg.pagetitle.line2:before {
    top: 30px
}

.main .contents_h2-bg.pagetitle small {
    font-size: 2rem;
    font-weight: normal
}


/* mv */

.mv {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.mv-full {
    width: 100%;
    height: 0;
    padding-top: 28.125%;
}


/* pagettl */

.pagettl {
    display: flex;
    margin: 0 40px;
}

.pagettl_txt {
    width: 50%;
    padding-right: 40px;
}

.pagettl_h1+.pagettl_lead {
    margin-top: 30px;
}

.pagettl_lead {
    font-size: 1.6rem;
    line-height: 1.75;
}

.pagettl_figure {
    width: 50%;
}


/* txt */

.txt .marker {
    background: linear-gradient(transparent 60%, rgba(236, 106, 139, 0.3) 0);
}

.txt-bold {
    font-weight: bold;
}

.txt-normal {
    font-weight: normal!important;
}

.txt-notes01 {
    padding-left: 1em;
    text-indent: -1em;
}

.txt-notes02 {
    padding-left: 1em;
    color: #888;
    font-size: 1.2rem;
    text-indent: -1em;
    line-height: 1.66;
}

.txt-notes03 {
    padding-left: 3em;
    color: #666;
    border-left: 1px solid #ddd;
}


/* list */

.list>li {
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.5;
}

.list>li:before {
    content: "・";
}

.list>li+li {
    margin-top: 1em;
}

.list-col2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.list-col2:after {
    content: "";
    width: 45%;
}

.list-col2>li {
    width: 45%;
}

.list-circle>li {
    text-indent: -1.3em;
}

.list-circle>li:before {
    content: "●";
    color: #5ea8dd;
    padding-right: 0.3em;
}

.list-num01>li {
    padding-left: 0;
    margin-left: 1em;
    list-style-type: decimal;
    text-indent: 0;
}

.list-num01>li:before {
    content: none;
}

.list-num02 {
    align-items: center;
    counter-reset: num02;
}

.list-num02>li {
    position: relative;
    padding-left: 48px;
    text-indent: 0;
}

.list-num02>li:before {
    counter-increment: num02;
    content: '0' counter(num02);
    position: absolute;
    left: 0;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid #5ea8dd;
    border-radius: 50%;
    transform: translateY(-50%);
}

.list-num02>li:nth-of-type(9)~li:before {
    content: counter(num02);
}


/* tag */

.tag {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.tag>li.tag_list {
    padding: 10px 15px;
    font-size: 1.2rem;
    line-height: 1;
    background-color: #eef8fb;
}

.tag>li.tag_list-free {
    background-color: #fdf2f6;
}


/* btn */

.btn_list {
    display: flex;
    justify-content: center;
}

.btn_list+.btn_list {
    margin-top: 60px;
}

.btn {
    position: relative;
    width: 280px;
}

.btn+.btn {
    margin-left: 40px;
}

.btn>a,
.btn>button,
.btn>input[type="submit"] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 64px;
    padding: 0 40px;
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
    border-radius: 4px;
}

.btn>button,
.btn>input[type="submit"] {
    width: 100%;
    border: none;
    background-color: transparent;
    font-family: 'Lato', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

.btn span {
    position: relative;
    display: block;
}

.btn:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.btn-pagelink:before {
    right: 15px;
    width: 6px;
    height: 6px;
    border-top: solid 1.5px #000;
    border-right: solid 1.5px #000;
    transform: translateY(-50%) rotate(135deg);
}

.btn-pagelink>a {
    color: #1d1d1d;
    font-size: 1.3rem;
    border: 1px solid #666;
    background-color: #fff;
}

.btn-secondary:before {
    right: 15px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 50%;
}

.btn-secondary:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 22px;
    width: 4px;
    height: 4px;
    border-top: solid 1.5px #999;
    border-right: solid 1.5px #999;
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
}

.btn-secondary-external:before {
    width: 13px;
    height: 11px;
    border: none;
    background: url(/blog/common_assets/common/img/btn_external.png) left top / 100% auto no-repeat;
    border-radius: 0;
    transform: translateY(-50%);
}

.btn-secondary-external>a:after {
    content: none;
}

.btn-secondary-pdf:before {
    width: 11px;
    height: 13px;
    border: none;
    background: url(/blog/common_assets/common/img/btn_pdf.png) left top / 100% auto no-repeat;
    border-radius: 0;
    transform: translateY(-50%);
}

.btn-secondary-pdf>a:after {
    content: none;
}

.btn-secondary>a,
.btn-secondary>button,
.btn-secondary>input[type="submit"] {
    color: #fff;
    background-color: #999;
}

.btn-secondary>a:hover,
.btn-secondary>button:hover,
.btn-secondary>input[type="submit"]:hover {
    opacity: 0.8
}

.btn-primary:before {
    right: 15px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 50%;
}

.btn-primary:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 22px;
    width: 4px;
    height: 4px;
    border-top: solid 1.5px #7dbce8;
    border-right: solid 1.5px #7dbce8;
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
}

.btn-primary-external:before {
    width: 13px;
    height: 11px;
    border: none;
    background: url(/blog/common_assets/common/img/btn_external.png) left top / 100% auto no-repeat;
    border-radius: 0;
    transform: translateY(-50%);
}

.btn-primary-external>a:after {
    content: none;
}

.btn-primary-pdf:before {
    width: 11px;
    height: 13px;
    border: none;
    background: url(/blog/common_assets/common/img/btn_pdf.png) left top / 100% auto no-repeat;
    border-radius: 0;
    transform: translateY(-50%);
}

.btn-primary-pdf>a:after {
    content: none;
}

.btn-primary>a,
.btn-primary>button,
.btn-primary>input[type="submit"] {
    color: #fff;
    background-color: #7dbce8;
}

.btn-primary>a:hover,
.btn-primary>button:hover,
.btn-primary>input[type="submit"]:hover {
    opacity: 0.8
}

.btn-light:before {
    right: 15px;
    width: 16px;
    height: 16px;
    background-color: #b8b8b8;
    border-radius: 50%;
}

.btn-light:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 22px;
    width: 4px;
    height: 4px;
    border-top: solid 1.5px #fff;
    border-right: solid 1.5px #fff;
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
}

.btn-light-external:before {
    width: 13px;
    height: 11px;
    border: none;
    /*    background: url(/blog/common_assets/common/img/link_external.png) left top / 100% auto no-repeat;*/
    /*    border-radius: 0;*/
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
}

.btn-light-external>a:after {
    content: none;
}

.btn-light-pdf:before {
    width: 12px;
    height: 15px;
    border: none;
    background: url(/blog/common_assets/common/img/link_pdf.png) left top / 100% auto no-repeat;
    border-radius: 0;
    transform: translateY(-50%);
}

.btn-light-pdf>a:after {
    content: none;
}

.btn-light>a,
.btn-light>input[type="submit"] {
    color: #1d1d1d;
    border: 1px solid #ddd;
    background-color: #fff;
}

.btn-outline:before {
    right: 15px;
    width: 6px;
    height: 6px;
    border-top: solid 1.5px #000;
    border-right: solid 1.5px #000;
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
}

.btn-outline>a {
    color: #1d1d1d;
    border: 1px solid #666;
    background-color: #fff;
}


/* table */

.table_wrap {
    width: 920px;
    margin: 0 auto;
    position: relative;
    border-radius: 4px;
    overflow: hidden
}

.table_wrap:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: solid 2px #ddd;
    border-radius: 4px;
    pointer-events: none
}

.table {
    border: 2px solid #ddd;
    table-layout: fixed;
    width: 100%;
}

.table th,
.table td {
    line-height: 1.5;
}

.table th {
    padding: 30px 15px;
    font-weight: normal;
    text-align: left;
    vertical-align: top;
    background-color: #f7f7f7;
}

.table th:first-of-type {
    border-right: 2px solid #ddd;
}

.table td {
    padding: 15px;
    background-color: #fff;
    border-right: 1px solid #ddd;
    vertical-align: middle;
}

.table td:last-of-type {
    border-right: 0;
}

.table thead {
    border-bottom: 2px solid #ddd;
}

.table thead th:not(:first-of-type) {
    border-right: 1px solid #ddd;
}

.table thead th:last-of-type {
    border-right: none;
}

.table tbody tr:not(:last-of-type) {
    border-bottom: 1px solid #ddd;
}

.table_bg th,
.table_bg td {
    color: #5ea8dd;
    background-color: #eef8fb;
}


/* detail */

.detail {
    margin: 0 40px;
}

.detail+.detail {
    margin-top: 90px;
}

.detail_figure figcaption {
    margin-top: 1em;
    color: #666;
    font-size: 1.2rem;
}

.detail_txt p+p {
    margin-top: 1em;
}

.detail_heading {
    color: #5ea8dd;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.5;
}

.detail_heading+p {
    margin-top: 1em;
}

.detail-01 {
    width: 920px;
    margin: 0 auto;
}

.detail-01 .detail_figure {
    width: 100%;
}

.detail-01 .detail_txt {
    margin: 40px 60px 0;
}

.detail-02 {
    width: 920px;
    margin: 0 auto;
}

.detail-02 .detail_figure {
    width: 540px;
    margin: 0 auto;
}

.detail-02 .detail_txt {
    margin: 40px 60px 0;
}

.detail-03 {
    margin: 0 40px;
}

.detail-03 .detail_block+.detail_block {
    margin-top: 40px;
}

.detail-03 .detail_block:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: "";
    clear: both;
    height: 0;
}

.detail-03 .detail_block .detail_figure figcaption {
    margin-bottom: 1em;
}

.detail-03 .detail_block:nth-of-type(odd) .detail_figure {
    float: right;
    margin-left: 50px;
}

.detail-03 .detail_block:nth-of-type(even) .detail_figure {
    float: left;
    margin-right: 50px;
}

.detail-col2,
.detail-col3 {
    display: flex;
    justify-content: space-between;
}

.detail-col2 .detail_block {
    width: 520px;
}

.detail-col2 .detail_txt {
    margin-top: 20px;
}

.detail-col3 .detail_block {
    width: 340px;
}

.detail-col3 .detail_txt {
    margin-top: 20px;
}

.detail-col3 .detail_heading {
    font-size: 1.8rem;
}

.detail-col3 .detail_heading+p {
    margin-top: 0.5em;
}


/* video */

.video {
    width: 100%;
    max-width: 800px;
    margin: auto
}

.video .video_inner {
    height: 0;
    padding-bottom: 48.914%;
    padding-bottom: 56.25%;
    position: relative
}

.video .video_inner iframe {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.video .videocaption {
    margin-top: 1em;
    color: #666;
    font-size: 1.2rem
}


/* item */

.item {
    display: flex;
    justify-content: space-between;
    margin: 0 40px;
}

.item+.item {
    margin-top: 80px;
}

.item_block {
    position: relative;
}

.item_inner {
    position: relative;
    border: 2px solid #e6e6e6;
    border-radius: 4px;
}

.item_heading+p {
    margin-top: 1em;
}

.item_heading {
    color: #5ea8dd;
    font-weight: 400;
    line-height: 1.5;
}

.item_figure {
    margin-top: 15px;
}

.item-middle {
    margin-top: 1em;
    line-height: 1.6;
}

.item-middle+p {
    margin-top: 1em;
}

.item-col2 .item_block {
    width: 520px;
}

.item-col2 .item_inner {
    padding: 40px 40px 30px;
}

.item-col2 .item_heading {
    font-size: 2.4rem;
}

.item-col2 .item-middle {
    font-size: 1.8rem;
}

.item-col3 .item_block {
    width: 340px;
}

.item-col3 .item_inner {
    padding: 30px 30px 20px;
}

.item-col3 .item_heading {
    font-size: 2.2rem;
}

.item-col3 .item-middle {
    font-size: 1.6rem;
}

.item_block .tag {
    margin-top: 15px;
    gap: 10px;
}

.item_block>.btn {
    width: 100%;
    margin-top: -2px;
}

.item_block>.btn>a {
    border-radius: 0 0 4px 4px;
}

.item_inner>.btn {
    margin: 30px auto 0;
}


/* mini */

.mini {
    display: flex;
    flex-wrap: wrap;
    margin: 0 40px;
}

.mini+.mini {
    margin-top: 90px;
}

.mini_heading {
    margin-bottom: 1em;
    font-weight: bold;
}

.mini-col2 {
    gap: 50px 0;
}

.mini-col2 .mini_block {
    width: 540px;
}

.mini-col4 {
    justify-content: center;
    gap: 50px 40px;
}

.mini-col4 .mini_block {
    width: 240px;
}

.mini_block-col {
    display: flex;
    align-items: center;
}

.mini_block-col .mini_figure {
    width: 260px;
}

.mini_block-col .mini_txt {
    width: 300px;
    padding: 0 20px;
}


/* summary */

.summary {
    margin: 0 40px;
}

.summary_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 80px;
    border-top: 1px solid #ddd;
}

.summary_block:last-of-type {
    border-bottom: 1px solid #ddd;
}

.summary_txt {
    width: 560px;
}

.summary_btn {
    width: 320px;
}

.summary_btn>.btn {
    width: 100%;
}


/* headline */

.headline {
    position: relative;
    padding-left: 40px;
}

.headline:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    border: 2px solid #ec6a8b;
    background-color: #fdf8fa;
    border-radius: 50%;
    transform: translateY(-50%);
}

.headline_h2 {
    font-size: 2.6rem;
    font-weight: 400
}

.headline_h2:before {
    width: 24px;
    height: 24px;
}

.headline_h3 {
    font-size: 2.4rem;
    font-weight: 400
}

.headline_h3:before {
    width: 20px;
    height: 20px;
}

.headline_h4 {
    font-size: 2rem;
    font-weight: 400
}

.headline_h4:before {
    width: 18px;
    height: 18px;
}


/* middlehead */

.middlehead_count {
    counter-reset: middlehead;
}

.middlehead {
    position: relative;
}

.middlehead-01 {
    padding-left: 90px;
    margin-bottom: 90px;
    font-size: 2.4rem;
    line-height: 1.5;
}

.middlehead-01:before {
    counter-increment: middlehead;
    content: '0' counter(middlehead);
    position: absolute;
    top: -20px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
    color: #1d1d1d;
    font-size: 2.8rem;
    font-weight: 300;
    border: 1px solid #5ea8dd;
    border-radius: 50%;
}

.middlehead-02 {
    margin-bottom: 100px;
    font-size: 2.5rem;
    line-height: 1.36;
    text-align: center;
}

.middlehead-02:before {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #ddd;
    transform: translateY(-50%);
}

.middlehead-02_txt {
    position: relative;
    display: inline-block;
    padding: 0 20px;
    background-color: #fff;
}

.middlehead-02_txt:before {
    counter-increment: middlehead;
    content: '0' counter(middlehead);
    position: absolute;
    left: -75px;
    top: -35px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 82px;
    height: 87px;
    padding-top: 10px;
    color: #1d1d1d;
    font-size: 3.2rem;
    font-weight: 300;
    background: url(/blog/common_assets/common/img/balloon_middlehead02.png) left top / 100% auto no-repeat;
}


/* tab */

.tab_wrap {
    display: flex;
    flex-wrap: wrap;
}

.tab_wrap+.tab_wrap {
    margin-top: 100px;
}

.tab_label {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
    font-size: 1.6rem;
    background: #f7f7f7;
    border-bottom: 1px solid #ccc;
    order: -1;
    cursor: pointer;
}

.tab_contents {
    width: 100%;
    display: none;
}

.tab_switch:checked+.tab_label {
    background-color: #fff;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
}

.tab_switch:checked+.tab_label+.tab_contents {
    display: block;
}

.tab_switch {
    display: none;
}

.tab_wrap-col2 .tab_label {
    width: 50%;
}

.tab_wrap-col3 .tab_label {
    width: calc(100% / 3);
}


/* accordion */

.accordion {
    border: 1px solid #ccc;
    border-radius: 4px;
}

.accordion+.accordion {
    margin-top: 65px;
}

.accordion_parent {
    position: relative;
    padding: 25px 40px;
    font-size: 1.6rem;
    border-top: 1px solid #ccc;
    cursor: pointer;
}

.accordion_parent:before,
.accordion_parent:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    background-color: #1d1d1d;
    transform: translateY(-50%);
}

.accordion_parent:before {
    right: 30px;
    width: 12px;
    height: 2px;
}

.accordion_parent:after {
    right: 35px;
    width: 2px;
    height: 12px;
}

.accordion_parent:first-of-type {
    border-top: none;
}

.accordion_parent.open {
    background-color: #f7f7f7;
}

.accordion_parent.open:after {
    content: none;
}

.accordion_child {
    display: none;
    padding: 40px 140px;
    border-top: 1px solid #ccc;
}

.accordion_figure {
    text-align: center;
}

.accordion_child p+.accordion_figure {
    margin-top: 35px;
}


/* order */

.order {
    margin: 0 40px;
}

.order_block {
    display: flex;
}

.order_block+.order_block {
    margin-top: 80px;
}

.order_figure {
    width: 100%;
}

.order_txt {
    width: 100%;
    padding-left: 40px;
}

.order_txt .middlehead-01 {
    padding-top: 10px;
    margin-bottom: 50px;
    font-size: 2rem;
}

.order_txt .middlehead-01:before {
    top: 0;
}

.order_txt p+p {
    margin-top: 1em;
}

.order_repletion {
    padding: 30px 40px;
    margin-top: 30px !important;
    font-size: 1.2rem;
    line-height: 1.6;
    background-color: #f7f7f7;
}


/* point */

.point {
    margin: 0 40px;
    counter-reset: point;
}

.point_block {
    display: flex;
    align-items: center;
}

.point_block+.point_block {
    margin-top: 80px;
}

.point_txt {
    position: relative;
    width: 50%;
    padding: 80px 40px 40px 50px;
}

.point_txt:before,
.point_txt:after {
    position: absolute;
}

.point_txt:before {
    content: "";
    left: 0;
    top: 0;
    width: 29px;
    height: 29px;
    background: url(/blog/common_assets/common/img/icon_check.png) left top / 100% auto no-repeat;
}

.point_txt:after {
    counter-increment: point;
    content: 'POINT 0' counter(point);
    left: 50px;
    top: -3px;
    font-size: 1.9rem;
    font-weight: 300;
}

.point_txt p+p {
    margin-top: 1em;
}

.point_heading {
    font-size: 2rem;
}

.point_heading+p {
    margin-top: 1em;
}

.point_figure {
    width: 50%;
}


/* explanation */

.explanation_heading {
    margin-bottom: 15px;
    text-align: center;
}

.explanation_heading>span {
    position: relative;
    display: inline-block;
    font-size: 1.7rem;
}

.explanation_heading>span:before,
.explanation_heading>span:after {
    content: "";
    position: absolute;
    top: 8px;
    width: 1px;
    height: 18px;
    background-color: #1d1d1d;
}

.explanation_heading>span:before {
    left: -20px;
    transform: rotate(-35deg);
}

.explanation_heading>span:after {
    right: -20px;
    transform: rotate(35deg);
}

.explanation_block {
    width: 740px;
    padding: 40px 60px;
    margin: 0 auto;
    background-color: #f7f7f7;
    border-radius: 4px;
}


/* howto */

.howto {
    margin: 0 40px;
    padding: 40px 0;
}

.howto_inner {
    padding: 40px 50px;
    background-color: #fff;
    border: 2px dotted #ddd;
}

.howto_heading {
    margin-bottom: 30px;
    text-align: center;
}

.howto_heading span {
    display: block;
    font-size: 2.5rem;
}

.howto_heading span.en {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}

.howto_col {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.howto_step {
    width: 510px;
    counter-reset: step;
}

.howto_step>li {
    position: relative;
    padding-left: 80px;
    line-height: 2;
}

.howto_step>li:before,
.howto_step>li:after {
    position: absolute;
    top: -15px;
    left: 0;
    width: 54px;
    height: 54px;
    text-align: center;
}

.howto_step>li:before {
    content: "STEP";
    padding-top: 5px;
    font-size: 1.2rem;
    border: 1px solid #5ea8dd;
    border-radius: 50%;
}

.howto_step>li:after {
    counter-increment: step;
    content: counter(step);
    padding-top: 15px;
    font-size: 1.8rem;
}

.howto_step>li+li {
    margin-top: 3em;
}

.howto_figure {
    width: 420px;
}


/* styleguide */

.styleguide_block+.styleguide_block {
    margin-top: 80px;
}

.styleguide_headiing+.styleguide_headiing {
    margin-top: 3em;
}

.styleguide_ul {
    display: flex;
}

.styleguide_ul+.styleguide_ul {
    margin-top: 90px;
}

.styleguide_ul>li {
    width: 160px;
}

.styleguide_ul>li.full {
    width: 100%;
}

.styleguide_ul>li span {
    color: #949393;
}

.styleguide_ul>li p {
    font-size: 1.6rem;
    text-indent: 1em;
}


/* product */

.product_img {
    position: relative;
    text-align: center;
    height: 160px;
}

.product_img img {
    display: inline-block;
    height: 100%;
}

.product_img .product_icon {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1
}

.product_img .product_icon li+li {
    margin-top: 15px
}

.product_img .product_icon .product_icon_img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    z-index: 1;
    position: relative;
}

.product_img .product_icon .product_icon_img:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
}

.product_img .product_icon .product_icon-new {
    background: #ffe975;
}

.product_img .product_icon .product_icon-new:before {
    width: 64%;
    background-image: url(/blog/common_assets/common/img/icon_new.png);
}

.product_img .product_icon .product_icon-return {
    background: url(/blog/common_assets/common/img/bg_return.png) center center / 100% auto no-repeat;
}

.product_img .product_icon .product_icon-return:before {
    width: 50%;
}

.product_img .product_icon .product_icon-return.return_10:before {
    background-image: url(/blog/common_assets/common/img/icon_return_10.png);
}

.product_img .product_icon .product_icon-free {
    background: #7dbce8;
}

.product_img .product_icon .product_icon-free:before {
    width: 46.56%;
    background-image: url(/blog/common_assets/common/img/icon_free.png);
}

.product_img .product_icon .product_icon-recommend {
    background: #fff6ea;
    border: dashed 1px #fcab43;
}

.product_img .product_icon .product_icon-recommend:before {
    width: 70%;
    background-image: url(/blog/common_assets/common/img/icon_recommend.png);
}

.product_img .product_limit {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: inline-block;
    padding: 10px 10px 10px 30px;
    color: #ec6a8b;
    font-size: 1.2rem;
    line-height: 1;
    background-color: #fdf8fa;
    border: 1px solid #ec6a8b;
    border-radius: 4px;
    z-index: 1;
}

.product_img .product_limit:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    width: 18px;
    height: 20px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

.product_img .product_limit-royal:before {
    background-image: url(/blog/common_assets/common/img/icon_royal.png);
}

.products_list_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 40px;
}

.products_list_item {
    position: relative;
    width: 260px;
}

.products_list_item>a,
.products_list_item_wrap>a {
    color: inherit;
    text-decoration: none;
}

.products_list_detail {
    line-height: 1.5;
    margin: 12px 0 6px;
}

.products_list_item .comment {
    font-size: 1.2rem;
}

.products_list_item .name {
    margin-top: 3px
}

.products_list_item .name a {
    text-decoration: none;
}

.products_list_item .brand {
    display: inline-block;
    padding: 5px 10px;
    font-size: 1.2rem;
    line-height: 1;
    background-color: #f7f7f7;
    border-radius: 2px;
}

.products_list_item .price {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 36px
}

.products_list_item .price.price-campaign {
    display: block
}

.products_list_item .price div>.num {
    font-size: 2.2rem
}

.products_list_item .price div>.num .tax {
    color: #1d1d1d;
    font-size: 1.2rem;
    font-weight: 400
}

.products_list_item .price_change {
    display: flex;
    justify-content: space-between
}

.products_list_item .price-campaign .special {
    color: #e94629;
    font-size: 1.2rem
}

.products_list_item .price-campaign .normal {
    font-size: 1rem
}

.products_list_item .price_value {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.products_list_item .great_value>span {
    font-size: 1.2rem;
    display: inline-block;
    background: #E94629;
    line-height: 1;
    border-radius: 4px;
    padding: 6px 8px;
    color: #fff;
    letter-spacing: .04em;
    font-feature-settings: 'palt'
}

.products_list_item .great_value>span small {
    font-size: 1.1rem;
    line-height: 1
}

.products_list_item .price-campaign div>.num {
    color: #e94629;
    font-weight: 700;
}

.products_list_btn {
    width: 100%;
}

.products_list_btn>a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    color: #fff;
    text-decoration: none;
    background-color: #f39632;
    border-radius: 4px;
}

.products_list_btn>a:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 16px;
    margin-right: 5px;
    background: url(/blog/common_assets/img/shop/btn_cart.png) left top / 100% auto no-repeat;
}

.products_list_btn.btn-none>a {
    background: #999;
    pointer-events: none;
}

.products_list_btn.btn-none>a:before {
    content: none!important;
}

.products_list_bottom {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.products_list_bottom .part {
    color: #888;
    font-size: 1.2rem;
}

.products_list_bottom .btn-favorite {
    width: auto;
}

.products_list_bottom .btn-favorite label {
    font-size: 1.2rem;
    display: block;
    position: relative;
    padding-right: 20px;
    cursor: pointer;
    user-select: none
}

.products_list_bottom .btn-favorite label input {
    display: none
}

.products_list_bottom .btn-favorite label span {
    position: absolute;
    top: 2px;
    right: 0;
    height: 15px;
    width: 14px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    background-image: url('/blog/common_assets/common/img/icon_favorite.png');
}

.products_list_bottom .btn-favorite label input:checked+span {
    background-image: url('/blog/common_assets/common/img/icon_favorite_check.png');
    animation: zoom-in-anim 0.5s;
}

@keyframes zoom-in-anim {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.products_list_bottom .btn-favorite label input:checked+span:after {
    opacity: 1
}

.products_list_wrap.act_slide .products_list_item {
    margin-left: 40px;
}

.products_list_wrap.act_slide .slick-list {
    margin-left: -40px;
}

.products_list_wrap .slider_arrow {
    position: absolute;
    top: 32%;
    width: 30px;
    height: 30px;
    background-color: #b8b8b8;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transform: translateY(-50%)
}

.products_list_wrap .slider_arrow:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg)
}

.products_list_wrap .slider_arrow-prev {
    left: -15px
}

.products_list_wrap .slider_arrow-next {
    right: -15px
}

.products_list_wrap .slider_arrow-next:before {
    transform: translate(-50%, -50%) rotate(-135deg)
}

.products_list_pager {
    margin: 60px auto auto;
    padding: 30px 0;
    border-top: 1px solid #e6e6e6;
    border-bottom: none;
}

.products_list_pager_num {
    display: flex;
    justify-content: center;
}

.products_list_pager_num>li>a {
    text-decoration: none;
}

.products_list_pager_num>li.page+li.page {
    margin-left: 16px;
}

.products_list_pager_num>li.arrow-prev {
    margin-right: 40px;
}

.products_list_pager_num>li.arrow-next {
    margin-left: 40px;
}

.products_list_pager_num>li.arrow>a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    background-color: #b8b8b8;
    border-radius: 50%;
}

.products_list_pager_num>li.arrow>a:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(-135deg);
}

.products_list_pager_num>li.arrow-next>a:before {
    transform: translate(-50%, -50%) rotate(45deg)
}

.products_list_pager_num>li.page>a,
.products_list_pager_num>li.page>span.current {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
    border-radius: 4px;
}

.products_list_pager_num>li.page>a {
    color: #1d1d1d;
    border: 1px solid #ccc;
    background-color: #fff;
}

.products_list_pager_num>li.page>span.current {
    color: #999;
    background-color: #eee;
}


/* rating */

.star-rating {
    height: 16px;
    position: relative;
    width: 111px;
    display: inline-block;
}

.star-rating:before {
    background-image: url('/blog/common_assets/common/img/icon_rate.png');
    background-repeat: repeat-x;
    background-size: 23px 100%;
    bottom: 0;
    content: "";
    display: block;
    height: 16px;
    left: 0;
    position: absolute;
    right: 0;
    text-indent: 10000px;
    top: 0;
    width: 109px
}

.star-rating>span {
    display: block;
    text-indent: -10000px;
    width: 109px;
    height: 16px;
    position: absolute;
    overflow: hidden
}

.star-rating>span:before {
    background-image: url('/blog/common_assets/common/img/icon_rate_on.png');
    background-repeat: repeat-x;
    background-size: 23px 100%;
    bottom: 0;
    content: "";
    display: block;
    height: 16px;
    left: 0;
    position: absolute;
    right: 0;
    text-indent: 10000px;
    top: 0
}

.star-rating>span[data-rate="5.0"] {
    width: 100%!important;
}

.star-rating>span[data-rate="4.9"] {
    width: 98%!important;
}

.star-rating>span[data-rate="4.8"] {
    width: 96%!important;
}

.star-rating>span[data-rate="4.7"] {
    width: 94%!important;
}

.star-rating>span[data-rate="4.6"] {
    width: 92%!important;
}

.star-rating>span[data-rate="4.5"] {
    width: 90%!important;
}

.star-rating>span[data-rate="4.4"] {
    width: 88%!important;
}

.star-rating>span[data-rate="4.3"] {
    width: 86%!important;
}

.star-rating>span[data-rate="4.2"] {
    width: 84%!important;
}

.star-rating>span[data-rate="4.1"] {
    width: 82%!important;
}

.star-rating>span[data-rate="4.0"] {
    width: 80%!important;
}

.star-rating>span[data-rate="3.9"] {
    width: 78%!important;
}

.star-rating>span[data-rate="3.8"] {
    width: 76%!important;
}

.star-rating>span[data-rate="3.7"] {
    width: 74%!important;
}

.star-rating>span[data-rate="3.6"] {
    width: 72%!important;
}

.star-rating>span[data-rate="3.5"] {
    width: 70%!important;
}

.star-rating>span[data-rate="3.4"] {
    width: 68%!important;
}

.star-rating>span[data-rate="3.3"] {
    width: 66%!important;
}

.star-rating>span[data-rate="3.2"] {
    width: 64%!important;
}

.star-rating>span[data-rate="3.1"] {
    width: 62%!important;
}

.star-rating>span[data-rate="3.0"] {
    width: 60%!important;
}

.star-rating>span[data-rate="2.9"] {
    width: 58%!important;
}

.star-rating>span[data-rate="2.8"] {
    width: 56%!important;
}

.star-rating>span[data-rate="2.7"] {
    width: 54%!important;
}

.star-rating>span[data-rate="2.6"] {
    width: 52%!important;
}

.star-rating>span[data-rate="2.5"] {
    width: 50%!important;
}

.star-rating>span[data-rate="2.4"] {
    width: 48%!important;
}

.star-rating>span[data-rate="2.3"] {
    width: 46%!important;
}

.star-rating>span[data-rate="2.2"] {
    width: 44%!important;
}

.star-rating>span[data-rate="2.1"] {
    width: 42%!important;
}

.star-rating>span[data-rate="2.0"] {
    width: 40%!important;
}

.star-rating>span[data-rate="1.9"] {
    width: 38%!important;
}

.star-rating>span[data-rate="1.8"] {
    width: 36%!important;
}

.star-rating>span[data-rate="1.7"] {
    width: 34%!important;
}

.star-rating>span[data-rate="1.6"] {
    width: 32%!important;
}

.star-rating>span[data-rate="1.5"] {
    width: 30%!important;
}

.star-rating>span[data-rate="1.4"] {
    width: 28%!important;
}

.star-rating>span[data-rate="1.3"] {
    width: 26%!important;
}

.star-rating>span[data-rate="1.2"] {
    width: 24%!important;
}

.star-rating>span[data-rate="1.1"] {
    width: 22%!important;
}

.star-rating>span[data-rate="1.0"] {
    width: 20%!important;
}

.star-rating>span[data-rate="0.9"] {
    width: 18%!important;
}

.star-rating>span[data-rate="0.8"] {
    width: 16%!important;
}

.star-rating>span[data-rate="0.7"] {
    width: 14%!important;
}

.star-rating>span[data-rate="0.6"] {
    width: 12%!important;
}

.star-rating>span[data-rate="0.5"] {
    width: 10%!important;
}

.star-rating>span[data-rate="0.4"] {
    width: 8%!important;
}

.star-rating>span[data-rate="0.3"] {
    width: 6%!important;
}

.star-rating>span[data-rate="0.2"] {
    width: 4%!important;
}

.star-rating>span[data-rate="0.1"] {
    width: 2%!important;
}

.star-rating>span[data-rate="0"] {
    width: 0%!important;
}


/* breadcrumb */

.breadcrumb {
    padding: 20px 0;
}

.breadcrumb ul>li {
    display: inline-block;
    font-size: 1.2rem
}

.breadcrumb ul>li>a {
    color: #888;
    text-decoration: underline
}

.breadcrumb ul>li+li:before {
    content: "";
    margin: 0 10px 0 6px;
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: solid 1.5px #000;
    border-right: solid 1.5px #000;
    transform: translateY(-50%) rotate(45deg);
    vertical-align: -1px
}


/* placeholder */

input:focus::-webkit-input-placeholder {
    color: transparent!important;
}

input:focus::-moz-placeholder {
    color: transparent!important;
}

input:focus::-ms-input-placeholder {
    color: transparent!important;
}

input:focus::placeholder {
    color: transparent!important;
}

input {
    -webkit-appearance: none;
}

::placeholder {
    color: #ccc;
}


/* ------------------------------------
  header
------------------------------------ */

#header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 100;
}

#header .header_contents {
    position: relative;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    min-width: 960px;
}

#header .header_links {
    display: flex;
    align-items: center;
}

#header .header_links>li {
    position: relative;
    padding: 0 30px;
    font-size: 1.1rem;
}

#header .header_links>li+li {
    padding-left: 39px;
}

#header .header_links>li+li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 9px;
    height: 9px;
    margin-top: -4.5px;
    background: linear-gradient(-45deg, #fff, #fff 42%, #ccc 42%, #ccc 58%, #fff 58%, #fff);
}

#header .header_links>li span.current {
    color: #3d94d2;
}

#header .header_links>li a {
    color: #666;
    text-decoration: none;
}

#header .header_links>li:first-child a {
    color: #3d94d2;
}

#header .header_logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#header .header_menu {
    display: flex;
}

#header .header_menu_list {
    width: 80px;
    border-left: 1px solid #eee;
}

#header .header_menu_btn {
    position: relative;
    display: block;
    height: 70px;
    cursor: pointer;
}

#header .header_menu_btn.open {
    background-color: #ecf7fb;
}

#header .header_menu_btn:before {
    content: "";
    position: absolute;
    top: 13px;
    left: 50%;
    background-size: 100% auto;
    background-repeat: no-repeat;
    transform: translateX(-50%);
}

#header .header_menu_list-member .header_menu_btn:before {
    width: 22px;
    height: 22px;
    background-image: url(/blog/common_assets/common/img/icon_member.png);
}

#header .header_menu_list-guide .header_menu_btn:before {
    width: 17px;
    height: 22px;
    background-image: url(/blog/common_assets/common/img/icon_guide2.png);
}

#header .header_menu_list-mypage .header_menu_btn:before {
    width: 19px;
    height: 23px;
    background-image: url(/blog/common_assets/common/img/icon_mypage.png);
}

#header .header_menu_list-mycart .header_menu_btn:before {
    width: 23px;
    height: 22px;
    background-image: url(/blog/common_assets/common/img/icon_mycart.png);
}

#header .header_menu_btn span {
    position: absolute;
}

#header .header_menu_btn a.menu {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    color: #1d1d1d;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.06em;
    text-decoration: none;
}

#header .header_menu_btn span.menu {
    left: 0;
    bottom: 10px;
    width: 100%;
    color: #1d1d1d;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.06em;
}

#header .header_menu_list-mycart span.num {
    top: 7px;
    right: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    color: #fff;
    font-size: 1.1rem;
    border-radius: 50%;
    background-color: #ec6a8b;
}

#header .header_menu_list-mycart span.num:empty {
    display: none;
}

#header .header_menu_btn.open {
    background-color: #ecf7fb;
}

#header .header_menu_btn.open span.menu {
    color: #5ea8dd;
}

#header .header_menu_list-guide .header_menu_btn.open:before {
    background-image: url(/blog/common_assets/common/img/icon_guide_on.png);
}

#header .header_menu_list-mypage .header_menu_btn.open:before {
    background-image: url(/blog/common_assets/common/img/icon_mypage_on.png);
}

#header .header_menu_balloon {
    position: absolute;
    display: none;
    padding: 30px 30px 20px;
    margin-top: 17px;
    border: 1px solid #5ea8dd;
    border-radius: 4px;
    background-color: #fff;
    z-index: 100;
}

#header .header_menu_list-member .header_menu_balloon {
    right: 230px;
}

#header .header_menu_list-guide .header_menu_balloon {
    right: 160px;
}

#header .header_menu_list-mypage .header_menu_balloon {
    right: 80px;
}

#header .header_menu_balloon:before {
    content: "";
    position: absolute;
    right: 29px;
    top: -44px;
    border: 20px solid transparent;
    border-bottom: 25px solid #FFF;
    z-index: 2;
}

#header .header_menu_balloon:after {
    content: "";
    position: absolute;
    top: -46px;
    right: 29px;
    border: 20px solid transparent;
    border-bottom: 25px solid #5ea8dd;
    z-index: 1;
}

#header .header_menu_link {
    display: flex;
}

#header .header_menu_link>ul+ul {
    margin-left: 40px;
}

#header .header_menu_link>ul>li {
    line-height: 2.6;
}

#header .header_menu_link>ul>li>a {
    color: #1d1d1d;
    text-decoration: none
}

#header .header_menu_link>ul>li>a:hover {
    text-decoration: underline;
}

#header .header_menu_mypage {
    position: relative;
    width: 280px;
}

#header .header_menu_mypage:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 23px;
    height: 26px;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

#header .header_menu_mypage-royal:after {
    background-image: url(/blog/common_assets/common/img/mypage_icon_royal.png);
}

#header .header_menu_mypage_name {
    line-height: 1.5;
}

#header .header_menu_mypage_name>span {
    display: inline-block;
    margin: 0 0.5em;
    font-size: 1.8rem;
}

#header .header_menu_mypage_status {
    margin-top: 20px;
}

#header .header_menu_mypage_list {
    display: flex;
    align-items: center;
}

#header .header_menu_mypage_list+.header_menu_mypage_list {
    margin-top: 10px;
}

#header .header_menu_mypage_list_heading {
    width: 76px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    font-size: 1.2rem;
    border-radius: 4px;
}

#header .header_menu_mypage_list-step .header_menu_mypage_list_heading {
    background-color: #e3f5fb;
}

#header .header_menu_mypage_list-point .header_menu_mypage_list_heading {
    background-color: #ffebf3;
}

#header .header_menu_mypage_list_contents {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 204px;
}

#header .header_menu_mypage_list_contents>.off {
    position: relative;
    padding: 5px 10px;
    margin-left: 15px;
    color: #fff;
    line-height: 1;
    background-color: #ec6a8b;
    border-radius: 4px;
}

#header .header_menu_mypage_list_contents>.off:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -12px;
    margin-top: -4px;
    border: 4px solid transparent;
    border-right: 8px solid #ec6a8b;
}

#header .header_menu_mypage_list_contents>.off>.num {
    font-size: 2.2rem;
}

#header .header_menu_mypage_list-step .header_menu_mypage_list_contents>p {
    font-weight: bold;
}

#header .header_menu_mypage_list-point .header_menu_mypage_list_contents>p {
    position: relative;
    padding-left: 25px;
    font-size: 2.2rem;
}

#header .header_menu_mypage_list-point .header_menu_mypage_list_contents>p:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    background: url(/blog/common_assets/common/img/mypage_icon_point_pink.png) left top / 100% auto no-repeat;
    transform: translateY(-50%);
}

#header .header_menu_mypage_menu {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 10px 0;
}

#header .header_menu_mypage_menu_list {
    width: 136px;
}

#header .header_menu_mypage_menu_list>a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    font-size: 1.3rem;
    text-decoration: none;
    border: 1px solid #65a9e1;
    border-radius: 4px;
}

#header .header_menu_mypage_menu_list>a:before {
    content: "";
    display: inline-block;
    margin-right: 5px;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

#header .header_menu_mypage_menu_list-coupon>a:before {
    width: 17px;
    height: 14px;
    background-image: url(/blog/common_assets/common/img/mypage_icon_coupon.png);
}

#header .header_menu_mypage_menu_list-history>a:before {
    width: 20px;
    height: 19px;
    background-image: url(/blog/common_assets/common/img/mypage_icon_history.png);
}

#header .header_menu_mypage_menu_list-point>a:before {
    width: 18px;
    height: 18px;
    background-image: url(/blog/common_assets/common/img/mypage_icon_point_blue.png);
}

#header .header_menu_mypage_menu_list-favorite>a:before {
    width: 18px;
    height: 17px;
    background-image: url(/blog/common_assets/common/img/mypage_icon_favorite.png);
}

#header .header_menu_mypage_btn {
    margin-top: 12px;
}

#header .header_menu_mypage_btn .btn>a {
    height: 48px;
}

#header .header_menu_mypage_btn .logout {
    text-align: right;
    margin-top: 5px;
}

#header .header_menu_mypage_btn .logout a {
    text-decoration: none;
    position: relative;
}

#header .header_menu_mypage_btn .logout a:before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #7dbce8;
    border-radius: 50%;
    margin-right: 5px;
}

#header .header_menu_mypage_btn .logout a:after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: translate(-50%, -50%) rotate(-135deg);
    position: absolute;
    top: 8px;
    left: 5px;
}


/* common-header */

#header.common-header .header_logo>a+a {
    width: 143px;
    margin-left: 30px
}

#header.common-header .header_logo>a {
    display: inline-block;
    width: 194px
}

.common-header #nav .nav_btn>p {
    position: relative;
    padding-right: 16px
}

.common-header #nav .nav_btn.open>p:before {
    top: 12px;
    transform: rotate(-45deg)
}

.common-header #nav .nav_btn>p:before {
    content: '';
    position: absolute;
    top: 9px;
    right: 4px;
    width: 5px;
    height: 5px;
    border: 0;
    border-top: solid 1.5px #1d1d1d;
    border-right: solid 1.5px #1d1d1d;
    transform: rotate(135deg)
}

.common-header #nav .nav_contents {
    padding: 60px 0 70px
}

.common-header #nav .nav_contents_island .nav_contents_brand_list {
    width: 155px
}

.common-header #nav .nav_contents_island .nav_contents_brand_list .img {
    padding: 0 10px
}

.common-header #nav .nav_contents_island .nav_contents_brand_list a {
    margin-top: 2rem;
    color: #1d1d1d;
    font-size: 1.4rem
}


/* ------------------------------------
  nav
------------------------------------ */

#nav {
    z-index: 90;
    position: relative;
}

#nav.fixed {
    position: fixed!important;
    top: 71px !important;
    width: 100%;
    background-color: #fff;
}

#nav .nav_menu {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #eee;
}

#nav .nav_list {
    width: 180px;
    cursor: pointer;
    -webkit-transition: .2s linear;
    transition: .2s linear;
    z-index: 1;
}

#nav .nav_list:hover {
    color: #999;
}

#nav .nav_list+.nav_list {
    margin-left: 55px;
}

#nav .nav_list>a,
#nav .nav_btn {
    position: relative;
    display: block;
    padding: 20px 0;
    text-align: center;
}

#nav .nav_list>a {
    color: #1d1d1d;
    text-decoration: none;
}

#nav .nav_list>a:hover,
.nav_btn:hover {
    color: #999;
    opacity: 1;
}

#nav .nav_list>a:hover:after,
#nav .nav_btn:hover:after,
#nav .nav_btn.open:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    border-bottom: 1px solid #666;
    transform: translateX(-50%);
    animation: border_active 0.3s linear forwards;
}

@keyframes border_active {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

#nav .nav_list-serach>.nav_btn {
    position: relative;
    height: 100%;
}

#nav .nav_list-serach>.nav_btn:before {
    content: "";
    position: absolute;
    bottom: 30px;
    left: 50%;
    width: 15px;
    height: 15px;
    background: url(/blog/common_assets/common/img/icon_search.png) left top / 100% auto no-repeat;
    transform: translateX(-50%);
}

#nav .nav_list-serach>.nav_btn:hover:before,
#nav .nav_list-serach>.nav_btn.open:before {
    background-image: url(/blog/common_assets/common/img/icon_search_on.png);
}

#nav .nav_list span.en {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.06em;
}

#nav .nav_list span.ja {
    display: inline-block;
    font-size: 1.5rem;
    position: relative;
}

#nav .nav_btn span.en {
    position: relative;
}

#nav .nav_btn span.ja:before {
    content: '';
    position: absolute;
    top: 9px;
    right: -12px;
    width: 5px;
    height: 5px;
    border: 0px;
    border-top: solid 1.5px #1d1d1d;
    border-right: solid 1.5px #1d1d1d;
    transform: rotate(135deg);
}

#nav .nav_list-serach .nav_btn span.en:before {
    display: none;
}

#nav .nav_btn.open span.en:before {
    top: 12px;
    transform: rotate(-45deg);
}

#nav .nav_contents {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    padding-bottom: 60px;
    background-color: #fff;
    cursor: auto;
}

#nav .nav_contents_inner {
    position: relative;
    width: 1160px;
    margin: 0 auto;
    padding: 0;
}

#nav .nav_contents_heading {
    padding: 30px 0;
    color: #1d1d1d;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.06em;
}

#nav .nav_contents_heading span {
    display: inline-block;
    margin-left: 1em;
    font-size: 1.1rem;
    letter-spacing: 0;
}

#nav .nav_contents_brand {
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

#nav .nav_contents_brand_list {
    width: 30%;
    cursor: auto;
}

#nav .nav_contents_brand_block .img>img {
    display: block;
    margin: 0 auto;
}

#nav .nav_contents_brand_block .name {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    height: 40px;
}

#nav .nav_contents_brand_block a {
    position: relative;
    display: block;
    margin-top: 0.5em;
    /* padding-left: 35px; */
    color: #666;
    font-size: 1.4rem;
    line-height: 1.6;
    text-decoration: none;
    text-align: center;
}

#nav .nav_contents_brand_block a .img {
    display: block;
    text-align: center;
    margin-bottom: 30px;
}


/* #nav .nav_contents_brand_block a:before,
#nav .nav_contents_brand_block a:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#nav .nav_contents_brand_block a:before {
    left: 10px;
    width: 18px;
    height: 18px;
    background-color: #b8b8b8;
    border-radius: 50%;
}

#nav .nav_contents_brand_block a:after {
    left: 15px;
    width: 5px;
    height: 5px;
    border-top: solid 1.5px #fff;
    border-right: solid 1.5px #fff;
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
} */

#nav .nav_contents_brand_list-other {
    width: 290px;
}

#nav .nav_contents_brand_list-other>.nav_contents_brand_block {
    display: flex;
    justify-content: space-between;
}

#nav .nav_contents_brand_list-other>.nav_contents_brand_block .img {
    width: 90px;
}

#nav .nav_contents_brand_list-other>.nav_contents_brand_block .txt {
    width: 180px;
}

#nav .nav_contents_brand_list-other>.nav_contents_brand_block .name {
    justify-content: flex-start;
}

#nav .nav_contents_brand_list-other>.nav_contents_brand_block a {
    padding-left: 25px;
}

#nav .nav_contents_brand_list-other>.nav_contents_brand_block a:before {
    left: 0;
}

#nav .nav_contents_brand_list-other>.nav_contents_brand_block a:after {
    left: 5px;
}

#nav .nav_contents_brand_link {
    margin-top: 30px;
}

#nav .nav_contents_brand_link>li+li {
    margin-top: 1em;
}

#nav .nav_contents_brand_link>li a {
    color: #1d1d1d;
    text-decoration: none;
}

#nav .nav_contents_brand_link>li a:hover {
    text-decoration: underline;
}

#nav .nav_contents_category_top {
    display: flex;
}

#nav .nav_contents_category_top>li {
    width: 250px;
}

#nav .nav_contents_category_top>li+li {
    margin-left: 40px;
}

#nav .nav_contents_category_top>li>ul>li {
    line-height: 2.5;
}

#nav .nav_contents_category_top>li>ul>li>a {
    color: #1d1d1d;
    text-decoration: none;
}

#nav .nav_contents_category_top>li>ul>li>a:hover {
    text-decoration: underline;
}

#nav .nav_contents_category_bottom {
    display: flex;
    margin-bottom: 40px;
}

#nav .nav_contents_category_bottom>li {
    position: relative;
    display: flex;
    align-items: center;
    width: 25%;
    height: 73px;
    padding-left: 95px;
}

#nav .nav_contents_category_bottom>li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 73px;
    height: 73px;
    background-color: #fff8ed;
    border-radius: 50%;
    background-size: auto auto;
    background-position: center center;
    background-repeat: no-repeat;
}

#nav .nav_contents_category_bottom>li.dryskin:before {
    background-image: url(/blog/common_assets/common/img/category_icon_dryskin.png);
}

#nav .nav_contents_category_bottom>li.childbirth:before {
    background-image: url(/blog/common_assets/common/img/category_icon_childbirth.png);
}

#nav .nav_contents_category_bottom>li.baby:before {
    background-image: url(/blog/common_assets/common/img/category_icon_baby.png);
}

#nav .nav_contents_category_bottom>li.kids:before {
    background-image: url(/blog/common_assets/common/img/category_icon_kids2.png);
}

#nav .nav_contents_category_bottom>li.aging:before {
    background-image: url(/blog/common_assets/common/img/category_icon_aging.png);
}


/*#nav .nav_contents_category_bottom > li.kids:before {background-image: url(/blog/common_assets/common/img/category_icon_kids.png);}*/

#nav .nav_contents_category_bottom>li.family:before {
    background-image: url(/blog/common_assets/common/img/category_icon_family.png);
}

#nav .nav_contents_category_bottom>li>a {
    color: #1d1d1d;
    text-decoration: none;
}

#nav .nav_contents_category_bottom>li>a:hover {
    text-decoration: underline;
}

#nav .nav_contents_scene_menu {
    display: flex;
    justify-content: center;
}

#nav .nav_contents_scene_list {
    position: relative;
    width: 200px;
    padding-top: 135px;
}

#nav .nav_contents_scene_list:before {
    content: "";
    position: absolute;
    left: 5px;
    top: 0;
    width: 120px;
    height: 120px;
    background-color: #fdf2f6;
    background-size: auto auto;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 50%;
}

#nav .nav_contents_scene_list-season:before {
    background-image: url(/blog/common_assets/common/img/scene_icon_season.png);
}

#nav .nav_contents_scene_list-skin:before {
    background-image: url(/blog/common_assets/common/img/scene_icon_skin.png);
}

#nav .nav_contents_scene_list-kidsskin:before {
    background-image: url(/blog/common_assets/common/img/scene_icon_kidsskin.png);
}

#nav .nav_contents_scene_list-body:before {
    background-image: url(/blog/common_assets/common/img/scene_icon_body.png);
}

#nav .nav_contents_scene_list+.nav_contents_scene_list {
    margin-left: 35px;
}

#nav .nav_contents_scene_list>dl>dt {
    margin-bottom: 1em;
}

#nav .nav_contents_scene_list>dl>dt a {
    position: relative;
    padding-left: 25px;
    color: #1d1d1d;
    text-decoration: none;
}

#nav .nav_contents_scene_list>dl>dt a:before,
#nav .nav_contents_scene_list>dl dt a:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#nav .nav_contents_scene_list>dl>dt a:before {
    left: 0;
    width: 18px;
    height: 18px;
    background-color: #b8b8b8;
    border-radius: 50%;
}

#nav .nav_contents_scene_list>dl>dt a:after {
    left: 5px;
    width: 5px;
    height: 5px;
    border-top: solid 1.5px #fff;
    border-right: solid 1.5px #fff;
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
}

#nav .nav_contents_scene_list>dl>dd {
    padding-left: 1em;
    line-height: 2.4;
}

#nav .nav_contents_scene_list>dl>dd>a {
    color: #1d1d1d;
    font-size: 1.3rem;
    text-decoration: none;
}

#nav .nav_contents_scene_list>dl>dd>a:hover {
    text-decoration: underline;
}

#nav .nav_contents_scene_btn {
    margin-top: 30px;
}

#nav .nav_contents_scene_btn .btn {
    width: 400px;
    margin: 0 auto;
}

#nav .nav_contents_magazines_menu {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-right: 250px;
}

#nav .nav_contents_magazines_menu:after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 180px;
    height: 188px;
    background: url(/blog/common_assets/common/img/magazines_pic.png) left top / 100% auto no-repeat;
    transform: translateY(-50%);
}

#nav .nav_contents_magazines_list {
    width: 250px;
}

#nav .nav_contents_magazines_list>a {
    position: relative;
    display: flex;
    align-items: center;
    height: 80px;
    padding-left: 70px;
    color: #1d1d1d;
    font-size: 1.6rem;
    border-bottom: 1px solid #ddd;
    text-decoration: none;
}

#nav .nav_contents_magazines_list>a:before,
#nav .nav_contents_magazines_list>a:after {
    content: "";
    position: absolute;
    top: 50%;
}

#nav .nav_contents_magazines_list>a:before {
    left: 0;
    width: 56px;
    height: 56px;
    background-size: auto auto;
    background-position: center center;
    background-color: #fff9d7;
    background-repeat: no-repeat;
    border-radius: 50%;
    transform: translateY(-50%);
}

#nav .nav_contents_magazines_list>a:after {
    right: 15px;
    width: 7px;
    height: 7px;
    border-top: solid 1.5px #000;
    border-right: solid 1.5px #000;
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
}

#nav .nav_contents_magazines_list-movie>a:before {
    background-image: url(/blog/common_assets/common/img/magazines_icon_movie.png);
}

#nav .nav_contents_magazines_list-baby>a:before {
    background-image: url(/blog/common_assets/common/img/magazines_icon_baby.png);
}

#nav .nav_contents_magazines_list-kids>a:before {
    background-image: url(/blog/common_assets/common/img/magazines_icon_kids.png);
}

#nav .nav_contents_magazines_list-mama>a:before {
    background-image: url(/blog/common_assets/common/img/magazines_icon_mama.png);
}

#nav .nav_contents_magazines_list-beauty>a:before {
    background-image: url(/blog/common_assets/common/img/magazines_icon_beauty.png);
}

#nav .nav_contents_magazines_list-offstage>a:before {
    background-image: url(/blog/common_assets/common/img/magazines_icon_offstage.png);
}

#nav .nav_contents_magazines_btn {
    margin-top: 40px;
}

#nav .nav_contents_magazines_btn .btn {
    width: 400px;
    margin: 0 auto;
}

#nav .nav_contents_guide_col {
    display: flex;
}

#nav .nav_contents_guide_menu {
    width: 870px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px 0;
}

#nav .nav_contents_guide_list {
    width: 410px;
}

#nav .nav_contents_guide_list>a {
    position: relative;
    display: block;
    padding-left: 140px;
    min-height: 120px;
    text-decoration: none;
}

#nav .nav_contents_guide_list>a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 120px;
    height: 120px;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

#nav .nav_contents_guide_list-about>a:before {
    background-image: url(/blog/common_assets/common/img/guide_img_about.png);
}

#nav .nav_contents_guide_list-first>a:before {
    background-image: url(/blog/common_assets/common/img/guide_img_first.png);
}

#nav .nav_contents_guide_list-benefits>a:before {
    background-image: url(/blog/common_assets/common/img/guide_img_benefits.png);
}

#nav .nav_contents_guide_list-trial>a:before {
    background-image: url(/blog/common_assets/common/img/guide_img_trial.png);
}

#nav .nav_contents_guide_list-01>a:before {
    background-image: url(https://www.natural-s.jp/common/img/guide_img_01.png);
}

#nav .nav_contents_guide_list-02>a:before {
    background-image: url(https://www.natural-s.jp/common/img/guide_img_02.png);
}

#nav .nav_contents_guide_list-03>a:before {
    background-image: url(https://www.natural-s.jp/common/img/guide_img_03.png);
}

#nav .nav_contents_guide_list-04>a:before {
    background-image: url(https://www.natural-s.jp/common/img/guide_img_04.png);
}

#nav .nav_contents_guide_heading {
    position: relative;
    padding-left: 25px;
    color: #1d1d1d;
    font-size: 1.6rem;
}

#nav .nav_contents_guide_heading:before,
#nav .nav_contents_guide_heading:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#nav .nav_contents_guide_heading:before {
    left: 0;
    width: 18px;
    height: 18px;
    background-color: #b8b8b8;
    border-radius: 50%;
}

#nav .nav_contents_guide_heading:after {
    left: 5px;
    width: 5px;
    height: 5px;
    border-top: solid 1.5px #fff;
    border-right: solid 1.5px #fff;
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
}

#nav .nav_contents_guide_txt {
    margin-top: 0.5em;
    color: #666;
    font-size: 1.3rem;
    line-height: 1.7;
}

#nav .nav_contents_guide_link {
    width: 210px;
    text-align: center;
}

#nav .nav_contents_guide_link>li {
    line-height: 2.6;
}

#nav .nav_contents_guide_link>li>a {
    color: #1d1d1d;
    text-decoration: none;
}

#nav .nav_contents_guide_link>li>a:hover {
    text-decoration: underline
}

#nav .nav_contents_search {
    position: relative;
    width: 640px;
    margin: 0 auto;
    padding: 20px 0;
}

#nav .nav_contents_search_heading {
    position: absolute;
    top: 28px;
    left: -5em;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
}

#nav .nav_contents_search #search {
    position: relative;
    width: 100%;
    height: 40px;
}

#nav .nav_contents_search #search_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#nav .nav_contents_search #search_box::placeholder {
    color: #ccc;
}

#nav .nav_contents_search #search_button {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    border-top: none;
    border: 1px solid #ccc;
    background: url(/blog/common_assets/common/img/search_btn.png) center center / auto auto no-repeat #f7f7f7;
    border-radius: 0 4px 4px 0;
}

#nav .nav_contents_search_keyword {
    display: flex;
    margin-top: 10px;
}

#nav .nav_contents_search_keyword>li {
    margin-right: 10px;
}

#nav .nav_contents_search_keyword>li>a {
    display: block;
    padding: 0 10px;
    color: #1d1d1d;
    text-decoration: none;
    line-height: 2;
    background-color: #ecf7fb;
    border-radius: 15px;
}

#nav .nav_contents_search_orde {
    margin-top: 1em;
}

#nav .nav_contents_search_orde>a {
    position: relative;
    display: block;
    padding-left: 10px;
    color: #1d1d1d;
    text-decoration: none;
    font-size: 1.3rem;
}

#nav .nav_contents_search_orde>a:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    border-top: solid 1.5px #000;
    border-right: solid 1.5px #000;
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
}


/* ------------------------------------
  footer-search
------------------------------------ */

#footer-search {
    padding: 50px 0 60px;
    border-top: solid 1px #eee
}

#footer-search ul {
    display: flex;
    margin: auto;
    max-width: 860px;
    justify-content: space-between
}

#footer-search li {
    width: 380px
}

#footer-search .footer-search-heading {
    font-size: 1.6rem;
    margin-bottom: 12px
}

#footer-search form {
    position: relative;
    width: 100%;
    height: 40px
}

#footer-search input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 50px 0 1em;
    border: 1px solid #ccc;
    border-radius: 4px
}

#footer-search button {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    border-top: none;
    border: 1px solid #ccc;
    background: url(/blog/common_assets/common/img/search_btn.png) center center / auto auto no-repeat #f7f7f7;
    border-radius: 0 4px 4px 0
}

#footer-search ::placeholder {
    color: #ccc;
}

#footer-search ::-ms-input-placeholder {
    color: #ccc;
}

#footer-search :-ms-input-placeholder {
    color: #ccc;
}


/* ------------------------------------
  guide
------------------------------------ */

#guide {
    padding: 50px 0 40px;
    border-top: 1px solid #eee;
}

#guide .guide_inner {
    margin: 0 20px;
}

#guide .guide_heading {
    font-size: 2.8rem;
    font-weight: 300;
}

#guide .guide_heading span {
    display: inline-block;
    margin-left: 0.5em;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

#guide .guide_menu {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 20px;
}

#guide .guide_menu.colum2 {
    margin-top: 20px;
    justify-content: center;
}

#guide .guide_menu_list {
    position: relative;
    width: 360px;
}

#guide .guide_menu_list>a {
    position: relative;
    display: block;
    height: 100%;
    padding: 20px 40px 20px 125px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
}

#guide .guide_menu_list>a:before {
    content: "";
    position: absolute;
    left: 35px;
    top: 50%;
    background-size: 100% auto;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

#guide .guide_menu_list-about a:before {
    width: 49px;
    height: 36px;
    background-image: url(/blog/common_assets/common/img/icon_guide_about.png);
}

#guide .guide_menu_list-delivery a:before {
    width: 49px;
    height: 49px;
    background-image: url(/blog/common_assets/common/img/icon_guide_delivery.png);
}

#guide .guide_menu_list-faq a:before {
    width: 47px;
    height: 45px;
    background-image: url(/blog/common_assets/common/img/icon_guide_faq.png);
}

#guide .guide_menu_list-point a:before {
    width: 47px;
    height: 50px;
    background-image: url(/blog/common_assets/common/img/icon_guide_point.png);
}

#guide .guide_menu_list-firend a:before {
    width: 51px;
    height: 33px;
    background-image: url(/blog/common_assets/common/img/icon_guide_friend.png);
}

#guide .guide_menu_list-stepup a:before {
    width: 42px;
    height: 46px;
    background-image: url(/blog/common_assets/common/img/icon_guide_stepup.png);
}

#guide .guide_menu_list-sample a:before {
    width: 39px;
    height: 42px;
    background-image: url(/blog/common_assets/common/img/icon_guide_sample.png);
}

#guide .guide_menu_name {
    position: relative;
    padding-left: 20px;
    font-size: 1.6rem;
}

#guide .guide_menu_name:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 14px;
    height: 11px;
    background: url(/blog/common_assets/common/img/icon_guide_check.png) left top / 100% auto no-repeat;
    transform: translateY(-50%);
}

#guide .guide_menu_txt {
    margin-top: 1em;
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
}

#guide .guide_middle {
    display: block;
    margin-top: 40px;
}

#guide .guide_middle_list {
    position: relative;
    padding: 0 50px;
    margin: auto;
}

#guide .guide_middle_list:first-of-type {
    /* width: 750px; */
    margin-bottom: 50px;
}

#guide .guide_middle_list:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 1px;
    height: calc(100% - 20px);
    background-color: #eee;
}


/* #guide .guide_middle_list:last-of-type {
    width: 370px;
} */

#guide .guide_middle_list:last-of-type:after {
    content: "";
    position: absolute;
    right: 0;
    top: 10px;
    width: 1px;
    height: calc(100% - 20px);
    background-color: #eee;
}

#guide .guide_middle_heading {
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.3rem;
}

#guide .guide_middle_sns {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

#guide .guide_middle_sns>li+li {
    margin-left: 10px;
}

#guide .guide_middle_sns>li>a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    border: 1px solid #eee;
    border-radius: 50%;
}

#guide .guide_middle_shop {
    display: flex;
    justify-content: center;
}

#guide .guide_middle_shop>li+li {
    margin-left: 20px;
}

#guide .guide_middle_shop>li>a {
    display: block;
    text-decoration: none;
}

#guide .guide_middle_shop>li>a span {
    display: block;
    margin-top: 10px;
    color: #666;
    font-size: 1.2rem;
}

#guide .guide_bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

#guide .guide_bottom>li {
    width: 560px;
}

#guide .guide_bottom>li .btn {
    width: 100%;
}


/* ------------------------------------
  pagetop
------------------------------------ */

#pagetop {
    padding-bottom: 25px;
}

#pagetop>.contents {
    position: relative;
    height: 50px;
}

#pagetop a {
    position: absolute;
    right: 0;
    top: 50%;
    padding-right: 70px;
    color: #1d1d1d;
    text-decoration: none;
    font-size: 1.2rem;
    transform: translateY(-50%);
}

#pagetop a:before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 50px;
    height: 50px;
    background-color: #b8b8b8;
    border-radius: 50%;
    transform: translateY(-50%);
}

#pagetop a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 21px;
    width: 9px;
    height: 9px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(-45deg);
}

.breadcrumb+#pagetop {
    margin-top: -70px;
}


/* ------------------------------------
  footer
------------------------------------ */

#footer .bg-gray {
    padding: 50px 0 60px;
}

#footer .footer_col {
    display: flex;
    justify-content: space-between;
}

#footer .footer_contact {
    width: 460px;
}

#footer .footer_contact_block {
    padding: 20px;
    text-align: center;
    background-color: #fff;
    border-radius: 4px;
}

#footer .footer_contact_block+.footer_contact_block {
    margin-top: 20px;
}

#footer .footer_contact_block.contact {
    padding: 0;
}

#footer .footer_contact_block.contact a {
    padding: 20px;
    color: #000;
    font-size: 14px;
    display: block;
    text-decoration: none;
}

#footer .footer_contact_block.contact a::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 16px;
    background: url(/blog/common_assets/common/img/btn_form.png) left top / 100% auto no-repeat;
    margin-right: 10px;
    vertical-align: text-bottom;
}

#footer .footer_contact_num {
    position: relative;
    display: inline-block;
    padding-left: 34px;
    font-size: 2.8rem;
}

#footer .footer_contact_num:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    background-size: 100% auto;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

#footer .footer_contact_num-shopping:before {
    width: 24px;
    height: 24px;
    background-image: url(/blog/common_assets/common/img/icon_inquiry_shopping.png);
}

#footer .footer_contact_num-skincare:before {
    width: 23px;
    height: 20px;
    background-image: url(/blog/common_assets/common/img/icon_inquiry_skincare.png);
}

#footer .footer_contact_num .free {
    display: inline-block;
    padding: 5px 10px;
    margin-left: 10px;
    color: #666;
    font-size: 1.2rem;
    line-height: 1;
    background-color: #eee;
    vertical-align: middle;
}

#footer .footer_contact_time {
    color: #666;
    font-size: 1.3rem;
    line-height: 1.5;
}

#footer .footer_link {
    display: flex;
    justify-content: space-between;
    width: 610px;
}

#footer .footer_link_list>dt {
    margin-bottom: 1em;
    font-weight: bold;
}

#footer .footer_link_list>dd {
    padding-left: 1em;
    font-size: 1.3rem;
    border-left: 1px solid #ddd;
    line-height: 1.5;
}

#footer .footer_link_list>dd+dd {
    padding-top: 1em;
}

#footer .footer_link_list>dd>a {
    color: #666;
    text-decoration: none;
}

#footer .footer_link_btn {
    margin-top: 60px;
}

#footer .footer_link_btn .btn {
    width: 210px;
}

#footer .footer_link_btn .btn:after {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    width: 20px;
    height: 16px;
    background: url(/blog/common_assets/common/img/btn_form.png) left top / 100% auto no-repeat;
    transform: translateY(-50%);
}

#footer .footer_link_btn .btn>a {
    padding: 0 35px;
    font-size: 1.3rem;
}

#footer .footer_btn {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

#footer .footer_btn .btn {
    width: 560px;
}

#footer .footer_btn .btn>a {
    height: 100px;
}

#footer .footer_copy {
    background-color: #fff;
}

#footer .footer_copy>.contents {
    position: relative;
}

#footer .footer_copy_list {
    display: flex;
    padding: 30px 0;
}

#footer .footer_copy_list>li {
    position: relative;
    font-size: 1.1rem;
    line-height: 1;
}

#footer .footer_copy_list>li+li {
    padding-left: 20px;
    margin-left: 15px;
}

#footer .footer_copy_list>li+li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 2px;
    height: 15px;
    background-color: #ccc;
    transform: translateY(-50%) rotate(45deg);
}

#footer .footer_copy_privacymark {
    position: absolute;
    right: 0;
    top: 50%;
    width: 50px;
    transform: translateY(-50%);
}

#footer .footer_copy_privacymark a:after {
    content: none;
}


/* guide-modal */

.mfp-close {
    display: none !important;
}

.guide-modal-wrap {
    position: relative;
    margin: 0 auto;
    padding: 40px;
    max-width: 900px;
    width: 100%;
    background: #fff;
}

.guide-modal-wrap h2 {
    font-size: 2.6rem;
    font-weight: normal;
    text-align: center;
    padding: 20px 0;
}

.guide-modal-wrap .prof-wrap {
    background: #f7f7f7;
    padding: 30px;
}

.guide-modal-wrap .btn_list {
    margin-top: 48px;
}

.guide-modal-wrap .btn_list .btn-back {
    max-width: 330px;
}

.guide-modal-wrap .prof-wrap .name {
    text-align: center;
    font-size: 2.4rem;
}

.guide-modal-wrap .prof-wrap .name span {
    font-size: 2rem;
    margin-left: 1rem;
}

.guide-modal-wrap .prof-wrap ul {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.guide-modal-wrap .prof-wrap ul li {
    width: 240px;
    margin: 0 20px;
}

.guide-modal-wrap .prof-wrap ul li dt {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}

.guide-modal-wrap .prof-wrap ul li dd {
    background: #fff;
    margin-top: 16px;
    padding: 20px;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1;
    border-radius: 4px;
}

.guide-modal-wrap .prof-wrap ul li dd span {
    font-size: 4.4rem;
    color: #5ea8dd;
    margin-right: 6px;
}

.guide-modal-wrap .inner .summary {
    margin: 0 80px;
}

.guide-modal-wrap .inner .summary_block {
    padding: 25px 0;
    border: none;
    align-items: flex-end;
}

.guide-modal-wrap .inner .summary_block>div {
    width: 48%;
}

.guide-modal-wrap .inner .summary_block>.summary_txt dt {
    font-size: 1.6rem;
}

.guide-modal-wrap .inner .summary_block>.summary_txt dd {
    display: flex !important;
    align-items: center;
}

.guide-modal-wrap .inner .summary_block>.summary_txt dt span {
    font-weight: bold;
}

.guide-modal-wrap .inner .summary_block>.summary_txt dd span {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.guide-modal-wrap .inner .summary_block>.summary_txt dd span+span {
    margin-left: 1rem;
}

.guide-modal-wrap .inner .s-summary_block>.summary_txt p {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: bold;
}

.guide-modal-wrap .inner .s-summary_block>.summary_txt p span {
    color: #ec6a8b;
}

.guide-modal-wrap .inner .summary_block>.summary_txt dd.bg-blue {
    position: relative;
    display: block;
    margin: 1rem 15px 0 0;
    padding: 12px 20px;
    min-width: 120px;
    max-width: 100%;
    background: #ecf7fb;
    border-radius: 4px;
}

.guide-modal-wrap .inner .summary_block>.summary_txt dd.bg-blue:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 99%;
    margin-top: -15px;
    border: 15px solid transparent;
    border-left: 15px solid #ecf7fb;
}

.guide-modal-wrap .inner .summary_block>.summary_txt dd.bg-orange {
    position: relative;
    display: block;
    margin: 1rem 15px 0 0;
    padding: 12px 20px;
    min-width: 120px;
    max-width: 100%;
    background: #faefe3;
    border-radius: 4px;
}

.guide-modal-wrap .inner .summary_block>.summary_txt dd.bg-orange:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 99%;
    margin-top: -15px;
    border: 15px solid transparent;
    border-left: 15px solid #faefe3;
}

.guide-modal-wrap .inner .summary_block>.summary_txt dd span.point-01::before {
    content: '';
    position: relative;
    display: inline-block;
    background: url('/blog/common_assets/img/cart/icon_modal1.png')no-repeat;
    background-size: contain;
    background-position: center;
    width: 24px;
    height: 29px;
    left: 0;
    top: 0;
    margin-right: 4px;
}

.guide-modal-wrap .inner .summary_block>.summary_txt dd span.point-02::before {
    content: '';
    position: relative;
    display: inline-block;
    background: url('/blog/common_assets/img/cart/icon_modal2.png')no-repeat;
    background-size: contain;
    background-position: center;
    width: 24px;
    height: 29px;
    left: 0;
    top: 0;
    margin-right: 4px;
}

.guide-modal-wrap .inner .summary_block>.summary_txt dd span.point-03::before {
    content: '';
    position: relative;
    display: inline-block;
    background: url('/blog/common_assets/img/cart/icon_modal3.png')no-repeat;
    background-size: contain;
    background-position: center;
    width: 24px;
    height: 29px;
    left: 0;
    top: 0;
    margin-right: 4px;
}

.guide-modal-wrap .inner .summary_block>.summary_txt dd span.point-04::before {
    content: '';
    position: relative;
    display: inline-block;
    background: url('/blog/common_assets/img/cart/icon_modal4.png')no-repeat;
    background-size: contain;
    background-position: center;
    width: 24px;
    height: 29px;
    left: 0;
    top: 0;
    margin-right: 4px;
}

.guide-modal-wrap .inner .s-summary_block>.summary_txt p.point-05::before {
    content: '';
    position: relative;
    display: inline-block;
    background: url('/blog/common_assets/img/cart/icon_modal5.png')no-repeat;
    background-size: contain;
    background-position: center;
    width: 24px;
    height: 29px;
    left: 0;
    top: 0;
    margin-right: 4px;
}

.guide-modal-wrap .inner .summary_block>.summary_txt p.point-05 {
    font-size: 1.6rem;
}

.guide-modal-wrap .inner .summary_block>.summary_txt p.point-05 span {
    font-weight: bold;
}

.guide-modal-wrap .inner .summary_block>div .btn {
    max-width: 100%;
}

.guide-modal-wrap .inner .summary_block>div .btn a {
    height: 80px;
    font-size: 1.8rem;
}

.guide-modal-wrap .inner .s-summary_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border: none;
}

.guide-modal-wrap .inner .s-summary_block>.summary_txt p span {
    color: #ec6a8b;
}

.mfp-fade.mfp-bg {
    opacity: 0;
    transition: all .3s
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: .4
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transition: all .3s
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0
}

.mt-1 {
    margin-top: 1rem
}

.mt-2 {
    margin-top: 2rem
}

.mt-3 {
    margin-top: 3rem
}

.mb-1 {
    margin-bottom: 1rem
}

.mb-2 {
    margin-bottom: 2rem
}

.mb-3 {
    margin-bottom: 3rem
}