@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP|Rubik&display=swap');

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: #191919;
    background-color: white;
    -webkit-font-feature-settings: "palt"1;
    font-feature-settings: "palt"1;
}

a {
    opacity: 1;
    -webkit-transition: .35s;
    -o-transition: .35s;
    transition: .35s;
    cursor: pointer;
    text-decoration: none;
    color: black
}

a:hover {
    opacity: .5;
    -webkit-transition: .35s;
    -o-transition: .35s;
    transition: .35s;
}

address {
    font-style: normal;
}


/* Universal */
/*Fonts - Colors*/
.is-black-text {color: black;}
.is-gray-87-text {color: #222222;}
.is-gray-73-text {color: #444444;}
.is-gray-50-text {color: #808080;}
.is-gray-35-text {color: #a5a5a5;}
.is-gray-15-text {color: #d9d9d9;}
.is-gray-02-text {color: #f7f9f9;}
.is-white-text {color: white;}
.is-brand-key-text {color: #496ba7;}
.is-brand-sub-text {color: #008DCB;}
.is-subttl-text {color: #edf9fb;}
.is-subttlg-text {color: #eefbed;}
.is-caution-text {color: #d10059;}
.is-cautions-text {color: #773800;}
.is-negative-text {color: #fdded8;}
.is-negatives-text {color: #b12a0b;}
.is-attention-text {color: #f5ebde;}
.is-attentions-text {color: #ff6d33;}


/*Fonts - Sizes*/
.small-size-font {font-size: 0.75em;}
.midium-size-font {font-size: 1.0em;}
.large-size-font {font-size: 1.5em;}


/*Fonts - Weights*/
.is-weight-700 {font-weight: 700;}
.is-weight-400 {font-weight: 400;}


/*Backbround - Colors*/
.is-bgcolor-brand-key {background-color: #496ba7;}
.is-bgcolor-brand-sub {background-color: #008DCB;}
.is-bgcolor-black {background-color: black;}
.is-bgcolor-gray-87 {background-color: #222222;}
.is-bgcolor-gray-73 {background-color: #444444;}
.is-bgcolor-gray-50 {background-color: #808080;}
.is-bgcolor-gray-35 {background-color: #a5a5a5;}
.is-bgcolor-gray-15 {background-color: #d9d9d9;}
.is-bgcolor-gray-02 {background-color: #f7f9f9;}
.is-bgcolor-white {background-color: white;}

/*Frame - Solid : 1px: color*/
.is-framecolor-black {border: 1px solid black;}
.is-framecolor-bland-key {border: 1px solid #496ba7;}
.is-framecolor-bland-sub {border: 1px solid #008DCB}

/*Text - Colors*/
.is-neutral-subttl {background-color: #edf9fb;}
.is-neutral-subttlg {background-color: #eefbed;}
.is-neutral-caution {background-color: #d10059;}
.is-neutral-cautions {background-color: #773800;}
.is-neutral-negative {background-color: #fdded8;}
.is-neutral-negatives {background-color: #b12a0b;}
.is-neutral-attention {background-color: #f5ebde;}
.is-neutral-attentions {background-color: #ff6d33;}

/*Text - Aliginment*/
.ctr-txt {text-align: center;}
.rtl-txt {text-align: right;}
.ltr-txt {text-align: left;}

/* Text - Decoration */
.ul-dotted {
    border-bottom: 1px dashed;
    padding-bottom: .125rem;
}

/* Margin, Padding */
.m0 {margin: 0}
.mtl, .mvl {margin-top: 70px}
.mtm, .mvm {margin-top: 35px}
.mts, .mvs {margin-top: 14px}
.mbl, .mvl {margin-bottom: 70px}
.mbm, .mvm {margin-bottom: 35px}
.mbs, .mvs {margin-bottom: 14px;}
.mll, .mhl {margin-left: 70px}
.mlm, .mhm {margin-left: 35px}
.mls, .mhs {margin-left: 14px}
.mrl, .mhl {margin-right: 70px}
.mrm, .mhm {margin-right: 35px}
.mrs, .mhs {margin-right: 14px;}
.p0 {padding: 0}
.ptl, .pvl {padding-top: 70px}
.ptm, .pvm {padding-top: 35px}
.pts, .pvs {padding-top: 14px}
.pbl, .pvl {padding-bottom: 70px}
.pbm, .pvm {padding-bottom: 35px}
.pbs, .pvs {padding-bottom: 14px;}
.pll, .phl {padding-left: 70px}
.plm, .phm {padding-left: 35px}
.pls, .phs {padding-left: 14px}
.prl, .phl {padding-right: 70px}
.prm, .phm {padding-right: 35px}
.prs, .phs {padding-right: 14px;}

.mvl-var {
    margin-top: 70px;
    margin-bottom: 70px;
}

.align {
    height: calc(100vh - 140px);
    align-items: center;
    justify-content: center;
}

.c-align {
    display: flex;
    align-items: center;
}

.lh-s { line-height: 2rem;}

.ctr {
    margin-left: auto;
    margin-right: auto;
}

.ctr-flex {justify-content: center;}


header, footer {
    background-image: url(../img/frame.svg);
    background-repeat: repeat-x;
    background-size: 35px 35px;
    height: 35px;
    position: fixed;
    width: 100%;
    z-index: 1;
}

header {
    top: 0;
    left: 0;
}

footer {
    left: 0;
    bottom: 0;
    font-size: .5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 1rem;
}

footer p {
    background-color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
    height: 60%;
}

.contents {
    width: 100%;
    line-height: 0;
    padding-top: 60px;
    padding-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

nav {
    width: 25vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
}

nav .purpose_txt {
    font-weight: 700;
    margin: 2rem 0 1.25rem 0;
    line-height: 1.5rem;
    font-size: 1rem;
}

nav ul {
    list-style: none;
    font-size: .75rem;
    padding: 0
}

nav ul li {
    margin-bottom: .75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    letter-spacing: .25rem;
}

nav .current {
    font-weight: 700;
}

nav ul li::after {
    content: "";
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 1.5rem;
    height: 1px;
    border-bottom: 1px solid gray;
    margin-top: .25rem;
}

nav h1 img {
    height: 17.548148vh;
}

nav h2 {
    font-size: .75rem;
    position: relative;
    margin-top: 18px;
    display: block;
}

nav h2::before {
    content: "";
    display: inline-block;
    border-top: 1px solid black;
    position: absolute;
    width: 100%;
    height: 1px;
    margin-top: -3px
}

nav .nav_news_date li {
    background-color: #F4F4F4;
    padding: .5rem;
    margin: 5px 0;
    letter-spacing: 0;
    line-height: 1.5
}

nav .nav_news_date li::after {
    content: none;
}

nav .p-mark {
    font-size: .5rem;
    line-height: 1.5;
    margin-top: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
}

nav .p-mark img {
    width: 54px;
    margin-right: 1rem;
}

.page {
    width: 75vw;
    margin-left: 25vw;
    padding: 0;
    right: 0;
    line-height: 1.75;
    padding-left: 10px;
    padding-right: 20px;
}

.wrap {
    width: 100%
}

.box1-1 {
    width: 100%;
}

.box1-2 {
    width: 50%;
}

.box1-3 {
    width: calc(100% / 3);
}

.box2-3 {
    width: calc(100% / 6);
}

.box4-5 {
    width: 80%
}

.box1-5 {
    width: 20%;
}

.ie-wrap {
    display: inline-block;
}

.list-block {
    list-style: none;
    justify-content: space-between;
}

.layout-controll-boxes-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.layout-controll-boxes-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
}

.ctitle_e {
    font-size: .75rem;
    border-bottom: 3px solid #496ba7;
    width: 100px;
    padding-bottom: 40px;
    line-height: 1.25;
}

.ctitle_j {
    font-size: .75rem;
    font-weight: 400;
    padding-top: 12px;
    padding-bottom: 40px;
    line-height: 1.5;
}

.ctitle_j::first-line {
    line-height: 1.25;
}

.business_ttl {
    font-size: 14px;
    color: white;
    background-color: black;
    padding-left: .25rem;
    padding-right: .25rem;
}

.page .ctitle_head {
    line-height: 1;
}

.ctitle_head {
    display: block;
    width: 150px;
    min-width: 90px;
}

.clead-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-top: 60px
}

.clead {
    display: inline-block;
    font-size: .75rem;
    padding-left: 14px;
    line-height: 1.5;
}

.page::before {
    content: "";
    background-image: url(../img/top-bg-office.jpg);
    width: 100%;
    height: 100%;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 25vw;
    z-index: -1;
    opacity: .2
}

.page .page-frame-deco {
    width: auto;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 25vw;
    z-index: -1;
}

.page .page-frame-deco img {
    width: auto;
    height: 100vh;
}

.page-contentent {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
}

.page-contentent-block {
    padding-top: 40px;
    padding-bottom: 40px;
    width: 100%
}

.box-wide-narrow {
    width: 800px
}

.block {
    display: block;
}


/* Business */
.business_items {
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.business_items li {
    display: block;
    list-style: none;
    width: 345px;
    background-image: url(../img/frame.svg);
    background-repeat: repeat;
    background-size: 35px 35px;
    padding: 1rem;
    margin-right: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.business_items li .business_item {
    display: block;
    background-color: rgba(255, 255, 255, 1);
    padding: 2rem;
    height: 100%;
    font-size: .75rem;
}


.business_items li .business_item_name, .business_items li .business_item_name04, .business_items li .business_item_name06 {
    font-size: 1.25rem;
    line-height: 1rem;
    margin-top: .25rem;
    margin-bottom: 2rem;
}

.business_items li .business_item_names {
    font-size: .75rem;
    line-height: rem;
    margin-top: .25rem;
    margin-bottom: 2rem;
}

.business_items li .item01::before, .business_items li .item02::before, .business_items li .item03::before, .business_items li .item04::before, .business_items li .item05::before, .business_items li .item06::before {
    content: "";
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: .75rem;
    background-size: contain;
    width: 27px;
    height: 27px;
}

.business_items li .item01::before {
    background-image: url(../img/ico_business01.svg);
    background-size: 27px 27px;
    margin-top: -3px;
    margin-left: -27px
}

.business_items li .item02::before {
    background-image: url(../img/ico_business02.svg);
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
    margin-top: -3px;
    margin-left: -30px
}

.business_items li .item03::before {
    background-image: url(../img/ico_business03.svg);
    background-size: 32px 32px;
    width: 32px;
    height: 32px;
    margin-top: -3px;
    margin-left: -32px
}

.business_items li .item04::before {
    background-image: url(../img/ico_business04.svg);
    background-size: 27px 27px;
    margin-top: -5px;
    margin-left: -27px
}

.business_items li .item05::before {
    background-image: url(../img/ico_business05.svg);
    background-size: 27px 27px;
    margin-top: -1px;
    margin-left: -46px
}

.business_items li .item06::before {
    background-image: url(../img/ico_business06.svg);
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
    overflow: visible;
    margin-top: -5px;
    margin-left: -30px;
}

.business_items li .business_item_name::after {
    content: "";
    display: block;
    border-bottom: 1px solid gray;
    margin-left: 7rem;
    width: 2rem;
    height: 10px;
}

.service_flow h3, .business_others h3 {
    color: white;
    background-color: black;
    padding: .5rem 1rem .5rem 1rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.service_flow ul {
    margin-top: 2rem;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%
}

.service_flow li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 5px;
    margin-bottom: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.service_flow li .point {
    display: table-cell;
    border: 1px solid #191919;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    text-align: center;
    padding-top: 60px;
    line-height: 1.25;
    position: relative;
}

.point-des {
    line-height: 1rem;
    font-size: .75rem;
}

.service_flow li .point-l {
    padding-top: 50px
}

.service_flow li::after {
    content: "";
    background-image: url(../img/arw-flow.svg);
    background-repeat: no-repeat;
    background-size: 20px 10px;
    width: 20px;
    height: 10px;
    background-size: contain;
    margin-left: 5px;
    margin-top: -30px;
    display: inline-block;
}

.service_flow li:nth-child(1)::after, .service_flow li:nth-child(4)::after {
    margin-top: -40px;
}

.service_flow li:nth-child(3)::after {
    margin-top: -60px;
}

.service_flow li:nth-child(5)::after {
    margin-top: -70px;
}

.service_flow li:last-child::after {
    content: none;
}

.service_flow .point span {
    width: 100%;
    text-align: center;
}


/* Btn Slide-arw  */

.btn-slide-arw {
    min-width: 200px;
    border: 1px solid black;
    background-color: transparent;
    padding: .5em 1.5em .5em 2.5em;
    font-size: 1em;
    font-weight: normal;
    cursor: pointer;
    text-indent: 20px;
    position: relative;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.btn-slide-arw:hover {
    color: white;
}

.btn-slide-arw:hover::before {
    content: "";
    background-color: #2970a9;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.btn-slide-arw::before {
    content: "";
    background-color: white;
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: .35s;
    -o-transition: .35s;
    transition: .35s;
}

.btn-slide-arw::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url(../img/arw-mark.svg);
    background-repeat: no-repeat;
    background-size: 12px;
    margin-left: 8px;
    background-position-y: 2px;
    -webkit-transition: .35s;
    -o-transition: .35s;
    transition: .35s;
}

.btn-frame {
    overflow: hidden;
}


.btn-frame button {
    min-width: 75%;
    display: block;
    text-align: left;
}

.btn-frame button::before {
    content: "";
    background-image: url(../img/frame.svg);
    display: inline-block;
    background-size: 50px 50px;
    width: 50px;
    height: 50px;
}


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


.group_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    position: relative;
    font-weight: 400;
    font-size: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 1px dotted #191919;
}

.cm_item .cm_ttl, .group_item .corporate_name {
    font-size: 1.5rem;
}

.group_item .corporate_script {
    margin-left: 0;
    font-size: .75rem;
    line-height: 1.25rem;
}

.group_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    position: relative;
    font-weight: 400;
    font-size: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 1px dotted #191919;
}

.cm_item .cm_ttl, .group_item .corporate_name {
    margin-left: 3rem;
    font-size: 1.5rem;
}

#contact .corporate_name {
    margin-left: 0;
}

.group_item .corporate_script {
    margin-left: 3rem;
}

.group_item table {
    font-size: .75rem;
    font-weight: 400;
    margin-left: 3rem;
    border-top: 1px dotted gray;
    border-bottom: 1px dotted gray;
}

#contact .group_item table {
    font-size: .75rem;
    font-weight: 400;
    margin-left: 0;
    border-top: 1px dotted gray;
    border-bottom: 1px dotted gray;
    width: 100%
}

.group_item table th {
    padding: .5rem 1rem .5rem 0;
}

.group_item table td {
    padding: 0;
}

.cm_item .link_site, .group_item .link_site, #contact .link_site {
    margin-left: 3rem;
    border: 1px solid lightgray;
    padding: .5rem .75rem .5rem .75rem;
    background-color: white;
    font-size: .75rem;
}

.shop-logos .link_site, #contact .link_site {
    margin-left: 0;
}

.shop-logos img {
    width: 118px
}

.cm_item .link_site::after, .group_item .link_site::after, #contact .link_site::after {
    content: "";
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background-image: url(../img/arw-mark.svg);
    background-size: contain;
    width: 12px;
    height: 12px;
    margin-left: .5rem;
}

.cm_item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cm_ttl-left {
    margin-right: 4.5rem;
}


/* Corporate */

.corporate_items {
    list-style: none;
}

.item_message, .item_purpose {
    height: 190px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.item_message {
    background-image: url(../img/btn-corporate-top@2x.jpg);
    background-size: contain;
    background-position-x: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #f6f7f9;
    padding: 30px 30px 30px 20%;
}

.corporate_items .item_message .corporate_item .item01 {
    font-size: 1.5rem;
    border-bottom: solid 2px #008DCB;
}

.corporate_items .item_message .corporate_item .head_name {
    font-size: .75rem;
    line-height: 2;
}

.item_purpose {
    background-color: #008BCE;
    color: white;
    align-items: center;
    justify-content: center;
    padding: 30px 20% 30px 20%
}

.item_purpose .item02 {
    line-height: 1.5;
}

.list-block-corporate li {
    width: calc(50% - 20px);
    margin-bottom: 40px
}

.list-block-corporate img {
    width: 100%
}

/* CM */
.cm_item {
    display: flex;
    width: 100%;
    position: relative;
    font-weight: 400;
    font-size: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 1px dotted #191919;
}

/* Table */
.table_business {
    width: 100%;
}

.table_business li {
    font-weight: 700;
    font-size: .75rem;
    margin-top: .5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid lightgray;
    line-height: 2rem;
}

.table_business li:first-of-type {
    margin-top: 0;
}

.table_business .table_ttl {
    width: 5rem;
}

.table_business li p, .table_business_sub li {
    font-weight: 400;
}

.table_business_sub li {
    margin-left: 3rem;
}

.table_business li p {
    display: block;
    margin-left: 3rem;
}


/* Privacy Policy */
#privacy {
    font-size: 1rem;
    line-height: 1.75;
}

#privacy .content-body h2 {
    font-weight: 400;
    letter-spacing: .125rem;
    line-height: 1.5;
    border-bottom: 1px dotted gray;
}

#privacy .content-body h3 {
    font-weight: 400;
    background-color: #e4e4e4;
    padding: .5rem .1rem .5rem 1rem;
    font-size: 1rem;
    margin-top: 4rem;
    margin-bottom: 1rem;
}

#privacy .content-body p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

#privacy .lstyle-main {
    margin-left: 1.75rem;
}

#privacy .lstyle-main li {
    text-indent: -0.125rem;
    padding-left: .125rem;
    list-style-position: outside;
    line-height: 1.75;
}

#privacy table {
    width: 100%;
}

#privacy table caption {
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
    margin-bottom: 12px
}

#privacy th {
    padding-right: 1rem;
    width: 12rem;
    vertical-align: top;
}

#privacy .layout-controll-boxes-enactment-row {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

#privacy .layout-controll-boxes-enactment-row .item-privacy-contact {
    padding-top: 9rem;
}

#privacy .layout-controll-boxes-enactment-row ul {
    list-style: none;
}

#privacy .layout-controll-boxes-enactment-row li {
    display: block;
}

#privacy .layout-controll-boxes-enactment-row p:nth-child(1) {
    padding-top: 8rem;
}
#privacy .layout-controll-boxes-enactment-row p:nth-child(2) {
    padding-left: 3rem;
}

.lstyle-sub {
    text-indent: -3rem;
}

.lstyle-none {
    list-style: none;
}


/* Purpose */
.purpose-poster {
    width: 100%;
    background-color: #252525;
    color: white;
    text-align: center;
    font-size: 1.75rem;
    line-height: 5rem;
    padding: 6rem;
}

.purpose-plate {
    width: 100%;
    padding-top: 70px;
    text-align: center;
}

.business_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pitem01, .pitem02, .pitem04 {
    background-repeat: repeat;
    background-size: 35px 35px;
    padding: 1rem;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
    line-height: 2.5rem;
    position: relative;
}

.purpose-plate div {
    text-align: left;
    line-height: 1.75;
    display: inline-block;
}

.pitem01, .pitem02, .pitem04 {
    margin-bottom: 3rem;
}

.pitem01::after, .pitem02::after, .pitem04::after {
    content: "";
    background-size: contain;
    width: 12px;
    height: 20px;
    position: absolute;
    right: -25px;
    top: 5rem;
}

.pitem01::after, .pitem04::after {
    background-image: url(../img/arw-purpose-gray.svg);
}

.pitem01 {
    background-image: url(../img/frame-gray.svg);
}

.pitem02::after {
    background-image: url(../img/arw-purpose-blue.svg);
}

.pitem02 {
    background-image: url(../img/frame.svg);
}

.pitem04 {
    background-image: url(../img/frame-blk.svg);
}

.purpose-item {
    padding: 2rem 1.5rem 2rem 1.5rem;
    width: 320px;
}

.purpose-tag {
    position: absolute;
    top: .5rem;
    left: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Roboto Condensed', sans-serif;
}

.purpose-ttl {
    background-color: #303030;
    color: white;
    padding: .125rem .75rem .125rem .75rem;
    word-break: keep-all;
}

.purpose-txt {
    margin-left: 2.25rem;
    margin-top: -3rem;
}

.purpose-txt span {
    border-bottom: 2px solid #008DCB;
}


/* Message */
.bg-top {
    background-image: url(../img/top.jpg);
    background-size: 70%;
    background-position-x: 255px;
    background-position-y: center;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
@media screen and (max-width:1000px){
    .bg-top{
        background-size:contain;
        background-position-y: top;
    } 
}

.message-txt {
    font-size: .75rem;
    width: 370px;
    height: auto;
    line-height: 1.5rem;
    padding: 2rem 1rem 2rem 1rem;
}

.yuji-boku-regular {
    font-family: "Yuji Boku", serif;
    font-weight: 500;
    font-style: normal;
    font-size:1.8em;
}



/* Top */
.brand_box {
    overflow: hidden;
}

.boxes2 {
    padding: 0;
    margin: 0
}

.brand_box ul {
    list-style: none;
}

.brand_box ul li p:first-of-type {
    font-family: 'Rubik', sans-serif;
    line-height: 1.75rem;
    font-weight: 500;
}

.area_business {
    background-image: url(../img/top-bg-office.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 1px;
    height: 100vh;
    width: 71.197917vw;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 25vw;
    justify-content: center;
    z-index: -1;
}

.area_business-bg, .area_personal-bg {
    position: absolute;
    height: 100vh;
    top: 0;
    left: 0;
    pointer-events: none;
}

.area_business-bg img, .area_personal-bg img {
    height: 100%;
    width: auto;
}

.area_personal {
    background-image: url(../img/top-bg-personal.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 1px;
    height: 100vh;
    width: 71.197917vw;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 60vw;
    justify-content: center;
}

.brand_ttl {
    background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22obj%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2024.1%2040.1%22%20style%3D%22enable-background%3Anew%200%200%2024.1%2040.1%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3Anone%3Bstroke%3A%230F81C4%3Bstroke-width%3A5.669%3Bstroke-miterlimit%3A10%3B%7D%3C%2Fstyle%3E%3Cg%20id%3D%22arw-1%22%20transform%3D%22translate(2.004%202.004)%22%3E%20%3Cpath%20id%3D%22pth%22%20class%3D%22st0%22%20d%3D%22M0%2C0l18.1%2C18.1L0%2C36.1%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    background-size: 18px 26px;
    background-repeat: no-repeat;
    height: 150px;
    font-size: 16px;
    line-height: 1.5;
    transition: .35s;
    z-index: +1;
}

.area_business .brand_ttl {
    margin-top: 0;
    background-position: 100px 73px;
}

.area_personal .brand_ttl {
    background-position: 100px 50px;
}

.brand_ttl:hover {
    width: 140px;
    transition: .35s;
}

.area_business .brand_ttl:hover {
    background-position: 120px 73px;
}

.area_personal .brand_ttl:hover {
    background-position: 120px 50px;
}

.brand_ttl {
    margin-left: 10.5vw
}

.brand_box ul li p:first-of-type {
    font-family: 'Rubik', sans-serif;
    line-height: 1.75rem;
    font-weight: 500;
}

.brand_ttl-jp {
    width: 180px;
    margin-left: 14vw;
    z-index: +1;
}


@media screen and (max-width:1170px), print {
    .item_message {
        background-size: cover;
    }
}

@media screen and (max-width:800px), print {
    .pc {
        display: none;
    }

    .align {
        height: unset;
        align-items: unset;
        justify-content: unset;
    }

    .ctitle_e {
        width: calc(100vw - 40px);
        padding-bottom: 14px;
        display: block;
    }

    .ctitle_j {
        margin-bottom: 0 !Important;
        padding-bottom: 20px
    }

    .clead-wrap {
        padding-top: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .clead {
        font-size: .75rem;
    }

    .box-wide-narrow {
        width: 100%
    }

    .plm {
        padding-left: 0;
    }

    .logo-area {
        background-color: white;
        height: 44px;
        left: 5%;
        position: absolute;
        grid-area: space;
    }

    .logo-area img {
        width: 200px;
        height: 34px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-line-pack: center;
        align-content: center;
        -ms-flex-item-align: center;
        align-self: center;
    }

    .logo-area h1 {
        padding: .125rem .75rem .125rem .75rem;
        height: 40px;
    }

    footer {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-right: 0;
    }

    footer p {
        width: 90%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .wrapper {
        width: 100%;
        -webkit-box-align: unset;
        -ms-flex-align: unset;
        align-items: unset;
        overflow: hidden;
    }

    .nav-wrapper {
        position: absolute;
        top: -100vh;
        left: 0;
    }

    .wide-fixer {
        width: 90%;
    }

    .contents-wrapper {
        width: 100%;
        left: 0;
        padding-top: 90px
    }

    .contents-wrapper::before {
        content: none;
    }

    .wrapper::before {
        content: "";
        background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22brn_x5F_cart_x5F_btn%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20551.8%201080%22%20style%3D%22enable-background%3Anew%200%200%20551.8%201080%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23FFFFFF%3B%7D%20.st1%7Bfill%3A%23F4F3EE%3B%7D%3C%2Fstyle%3E%3Cg%3E%20%3Cpolygon%20class%3D%22st0%22%20points%3D%220%2C1080%20375.8%2C1080%200%2C0%20%22%2F%3E%20%3Cpolygon%20class%3D%22st1%22%20points%3D%220%2C0%20375.8%2C1080%20551.8%2C1080%20176%2C0%20%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E'), url(../img/top-bg-office.jpg);
        -pie-background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22brn_x5F_cart_x5F_btn%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20551.8%201080%22%20style%3D%22enable-background%3Anew%200%200%20551.8%201080%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23FFFFFF%3B%7D%20.st1%7Bfill%3A%23F4F3EE%3B%7D%3C%2Fstyle%3E%3Cg%3E%20%3Cpolygon%20class%3D%22st0%22%20points%3D%220%2C1080%20375.8%2C1080%200%2C0%20%22%2F%3E%20%3Cpolygon%20class%3D%22st1%22%20points%3D%220%2C0%20375.8%2C1080%20551.8%2C1080%20176%2C0%20%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E'), url(../img/top-bg-office.jpg);
        behavior: url(../js/PIE.js);
        background-size: auto, cover;
        background-repeat: no-repeat;
        background-position-x: left, 1px;
        height: 100%;
        width: 100%;
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        opacity: .3;
        z-index: -1;
    }

    .ctitle_j {
        margin-top: .5rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
    }

    .body-wrapper {
        width: 100%
    }

    .mvl-sp {
        margin-top: 0;
        margin-bottom: 0;
    }

    .ctr-txt-sp {
        text-align: center;
    }


    /* Company - Index */
    .item_message {
        background-position-x: -230px;
    }

    .corporate_items .item_message .corporate_item {
        margin-left: 1.75rem
    }

    .item_purpose {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .item_purpose .item02 {
        margin-right: unset;
    }

    .item_purpose a {
        margin-top: 18px
    }

    .list-block li:nth-child(odd) {
        margin-right: unset
    }

    .list-block li:nth-child(even) {
        margin-left: unset
    }

    .list-block li:nth-child(1) {
        margin-right: auto;
        margin-left: auto;
    }

    .list-block li:nth-child(2), .list-block li:nth-child(3), .list-block li:nth-child(4) {
        margin-top: 18px;
        margin-right: auto;
        margin-left: auto;
    }

    .list-block img {
        width: 100%
    }


    /* Message */
    .bg-top {
        background-position-x: 0;
        height: unset;
        padding-top: 300px;
        margin-bottom: 70px;
    }

    .message-txt {
        width: 100%;
        margin-left: auto;
        margin-right: auto
    }

    /* CM, Group */
    .group_item .corporate_name {
        margin-left: 0;
        font-size: 1.25rem;
    }

    .group_item .corporate_script {
        margin-left: 0;
        font-size: .75rem;
    }

    .group_item table {
        margin-left: 0;
        width: 100%
    }

    .group_item table th {
        width: 5rem
    }

    .cm_item .link_site, .group_item .link_site, #contact .link_site {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .group_item .mbs {
        margin-bottom: 46px;
        text-align: center;
    }

    #business .group_item .prm {
        padding-right: 20px;
    }

    .group_item .box4-5 {
        width: 69%
    }

    #business .group_item .link_site {
        padding: .5rem .125rem .5rem .125rem;
        width: 118px;
        word-break: keep-all;
    }

    .btn-sp {
        width: 120px
    }

    .cm_item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .cm_item .cm_ttl {
        margin: 14px auto 14px auto;
    }

    .cm_item .link_site {
        margin-top: 14px;
        display: block;
    }

    /* Purpose */
    .purpose-item {
        width: 100%;
        padding: 2.5rem 1rem 2.5rem 1rem
    }

    .purpose-poster {
        width: 100%;
        background-color: #252525;
        color: white;
        text-align: center;
        font-size: 1.25rem;
        line-height: 2.25rem;
        padding: 1rem;
    }

    #corporate .pitem01::after, #corporate .pitem02::after, #corporate .pitem04::after {
        right: unset;
        top: unset;
        margin-top: 1.75rem;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        -ms-transform: rotate(90deg);
    }

    #corporate .pitem01, #corporate .pitem02, #corporate .pitem04 {
        margin-bottom: 2rem;
        width: 100%;
    }

    .purpose-txt {
        margin-left: auto;
        margin-right: auto;
        margin-top: unset;
        margin-bottom: 2.5rem;
    }

    .purpose-plate {
        padding-top: 30px;
    }

    .mvl-var {
        margin-top: 30px
    }

    /* Corporate, History */
    .table_business {
        margin-bottom: 70px
    }

    .table_business .table_ttl_hist {
        width: 6rem;
    }

    .table_business li p {
        margin-left: 0
    }


    /* Business */
    .ctitle_head {
        background-color: black;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        width: calc(100vw - 40px);
        padding-bottom: .75rem;
    }

    #corporate .business_ttl, .business_ttl {
        padding-left: 0;
        padding-right: 0;
    }

    .clead {
        width: 100%;
        padding-left: 0;
        margin-top: 12px
    }

    .business_items li {
        width: 100%;
        margin-right: 0;
    }

    .business_items li:nth-child(odd) {
        margin-right: 0;
    }

    .service_flow ul {
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .service_flow li {
        margin-right: 5vw;
        position: relative;
    }

    .service_flow .flow_point .point::after {
        margin-left: 7.72vw;
    }

    .service_flow .flow_point li>.point::after {
        width: 5vw;
        background-position-x: -18px;
        position: absolute;
    }

    .service_flow h3, .business_others h3 {
        width: 100%;
    }

    .service_flow .flow_point .point, .service_flow .flow_point .point_last {
        width: 33.816425vw;
        height: 33.816425vw;
    }

    .service_flow .flow_point li>.point_l::after {
        margin-left: 5rem;
        margin-top: -0.25rem
    }

    .point_sub li {
        width: 29.816425vw;
    }

    .btn-frame {
        width: 100%;
    }

    .btn-frame button {
        width: 100%;
        min-width: unset;
        text-align: center;
    }

    .btn-frame button::before {
        background-repeat: repeat-y;
        height: 100%;
    }

    .btn-slide-arw {
        padding: .75em 0 .75em 0
    }

    /* Privacy */
    #privacy .body-wrapper th {
        width: 100px
    }


    /* Navigation */
    /* Header Type-A */

    header {
        background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22bor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2060%2060%22%20style%3D%22enable-background%3Anew%200%200%2060%2060%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23296FA9%3B%7D%3C%2Fstyle%3E%3Cg%20id%3D%22gr_x5F_bor%22%3E%20%3Cpolygon%20id%3D%22pth12%22%20class%3D%22st0%22%20points%3D%2260%2C50%2050%2C60%2055.8%2C60%2060%2C55.8%20%22%2F%3E%20%3Cpolygon%20id%3D%22pth11%22%20class%3D%22st0%22%20points%3D%2210%2C0%200%2C10%200%2C15.8%2015.8%2C0%20%22%2F%3E%20%3Cpolygon%20id%3D%22pth10%22%20class%3D%22st0%22%20points%3D%220%2C0%200%2C5.8%205.8%2C0%20%22%2F%3E%20%3Cpolygon%20id%3D%22pth9%22%20class%3D%22st0%22%20points%3D%2220%2C0%200%2C20%200%2C25.8%2025.8%2C0%20%22%2F%3E%20%3Cpolygon%20id%3D%22pth8%22%20class%3D%22st0%22%20points%3D%2260%2C40%2040%2C60%2045.8%2C60%2060%2C45.8%20%22%2F%3E%20%3Cpolygon%20id%3D%22pth7%22%20class%3D%22st0%22%20points%3D%2260%2C10%2010%2C60%2015.8%2C60%2060%2C15.8%20%22%2F%3E%20%3Cpolygon%20id%3D%22pth6%22%20class%3D%22st0%22%20points%3D%2260%2C0%200%2C60%205.8%2C60%2060%2C5.8%20%22%2F%3E%20%3Cpolygon%20id%3D%22pth5%22%20class%3D%22st0%22%20points%3D%2260%2C30%2030%2C60%2035.8%2C60%2060%2C35.8%20%22%2F%3E%20%3Cpolygon%20id%3D%22pth4%22%20class%3D%22st0%22%20points%3D%2260%2C20%2020%2C60%2025.8%2C60%2060%2C25.8%20%22%2F%3E%20%3Cpolygon%20id%3D%22pth3%22%20class%3D%22st0%22%20points%3D%2250%2C0%200%2C50%200%2C55.8%2055.8%2C0%20%22%2F%3E%20%3Cpolygon%20id%3D%22pth2%22%20class%3D%22st0%22%20points%3D%2230%2C0%200%2C30%200%2C35.7%2035.8%2C0%20%22%2F%3E%20%3Cpolygon%20id%3D%22pth1%22%20class%3D%22st0%22%20points%3D%2240%2C0%200%2C40%200%2C45.8%2045.8%2C0%20%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
        background-repeat: repeat-x;
        height: 35px;
        width: 100%;
        background-size: 35px 35px;
        z-index: 1;
        display: block;
        position: fixed;
    }

    nav {
        margin: 0;
        padding: 14px 0;
        width: 100%;
        height: 35px;
        left: 0;
        color: #191919;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 51px 1fr 1fr;
        grid-template-columns: 51px 1fr 1fr;
        -ms-grid-rows: auto;
        grid-template-rows: auto;
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
        grid-template-areas:
            "space space menu";
        z-index: 10;
    }

    nav .logo {
        text-align: center;
        grid-area: logo;
    }

    nav .logo img {
        width: 20vw
    }

    nav .nav-area {
        text-align: right;
        padding-right: 10%;
        grid-area: menu;
    }

    nav .menu {
        display: block;
        text-align: left;
        grid-area: menu;
        list-style: none;
        text-align: right;
    }

    nav .menu li {
        display: inline-block;
        margin-right: 40px;
        position: relative;
    }

    nav .menu {
        display: -ms-grid;
        display: grid;
        grid-auto-flow: row;
        position: absolute;
        text-align: center;
        list-style: none;
        grid-area: unset;
        width: 100%;
        height: calc(100vh - 35px);
        background-color: white;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        top: -100vh;
        left: 0;
        z-index: -1;
        -webkit-transition: .35s;
        -o-transition: .35s;
        transition: .35s;
    }

    nav .menu li {
        display: block;
        margin-right: unset;
        position: relative;
        font-size: 1.5em;
    }

    nav .menu li:last-child {
        margin-right: unset;
    }

    nav .menu li::after {
        content: none;
    }

    nav .menu li:last-child::after {
        content: none;
        margin-left: unset;
    }

    /* = */
    nav .menu-click {
        background-color: white;
        cursor: pointer;
        color: #191919;
        position: relative;
        float: right;
        width: 46px;
        height: 44px;
        padding: 6px
    }

    nav .menu-click span {
        width: 34px;
        height: 4px;
        display: inline-block;
        background: #008DCB;
    }

    nav .menu-click span:nth-child(1) {
        margin-top: 6px;
        position: absolute;
        -webkit-transition: .35s ease-in-out;
        -o-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
    }

    nav .menu-click span:nth-child(2) {
        margin-top: 20px;
        position: relative;
        -webkit-transition: .35s ease-in-out;
        -o-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
    }

    nav .rotate1 {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: .35s ease-in-out;
        -o-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
        margin-top: 14px !important;
    }

    nav .rotate2 {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transition: .35s;
        -o-transition: .35s;
        transition: .35s;
        margin-top: 14px !important;
    }

    .set {
        top: 35px !important;
        -webkit-transition: .35s;
        -o-transition: .35s;
        transition: .35s;
    }

    .stop-scrolling {
        overflow: hidden;
    }

    nav .p-mark {
        padding-left: 10%;
        padding-right: 10%;
        letter-spacing: .125rem;
        color: #191919;
    }

    #contact .group_item .layout-controll-boxes-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #contact .group_item .layout-controll-boxes-row .box1-2 {
        width: 100%
    }

    #contact .group_item .layout-controll-boxes-row .btn-sp {
        width: auto
    }

    #contact .group_item .layout-controll-boxes-row .prl {
        padding-right: 0;
    }

    #contact .group_item .layout-controll-boxes-row table, #contact .group_item .layout-controll-boxes-row caption {
        text-align: center;
    }

    #contact .group_item .layout-controll-boxes-row table {
        margin-top: 3rem
    }

    .page {
        margin-left: 0;
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
        padding-top: 20px;
    }

    .page::before {
        content: none;
    }

    .pitem01, .pitem02, .pitem04 {
        margin-bottom: 2rem;
        width: 100%;
    }

    .pitem01::after, .pitem02::after, .pitem04::after {
        right: unset;
        top: unset;
        margin-top: 1.75rem;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        -ms-transform: rotate(90deg);
    }

    .ctr-txt-sp {
        text-align: center;
    }

    .purpose-txt span {
        border-bottom: 2px solid #008DCB;
        margin-right: unset;
    }

    .item_message {
        background-position-x: 60%;
        padding: 30px 30px 30px 0
    }

    .item_purpose {
        flex-direction: column;
        justify-content: left
    }

    .item_purpose .item02 {
        margin-right: unset;
    }

    .item_purpose a {
        margin-top: 18px;
    }

    .item_purpose .mlm {
        margin-left: 0;
    }

    .item_message, .item_purpose {
        align-items: flex-start;
    }

    .list-block-corporate li {
        width: 100%;
        margin-bottom: 10px;
    }


    /* Top */
    #top .contents {
        flex-direction: column;
    }

    #top .top-main {
        text-align: center;
        width: 100%;
    }

    #top .top-main ul {
        list-style: none;
    }

    #top .top-main h1 img {
        height: 17.548148vh;
    }

    #top .purpose_txt {
        margin: 1.75rem 0 1.75rem 0;
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.5rem;
    }

    #top h2 {
        border-top: 2px solid black;
        display: inline-block;
        margin-top: .5rem;
        line-height: 1.25;
        margin-bottom: .5rem;
        font-size: .75;
    }

    #top .nav_news_date {
        margin-bottom: 2rem;
        padding: .5rem
    }

    .boxes2 {
        width: 100%;
        display: flex;
        flex-direction: row;
        height: auto;
    }

    .nav_news_date {
        background-color: #F4F4F4;
        width: 100%;
    }

    .brand_box {
        margin-top: 5px;
        display: block;
    }

    .top-menu-sp {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .top-menu-sp img {
        width: 100%;
        height: auto;
    }

    .menu_business, .menu_personal {
        width: 100%;
        height: auto;
    }

    .menu_business {
        background-color: #F5F3F0;
    }

    .brand_box ul li p:first-of-type {
        line-height: 1.25rem;
    }

    .brand_ttl02 {
        margin-top: 7rem;
    }

    .boxes2 li {
        display: block;
    }

    .brand_ttl {
        background-size: 12px;
        background-repeat: no-repeat;
        font-size: 1rem;
        height: auto;
        margin-left: 0;
        padding: 1rem;
    }

    .menu_business .brand_ttl {
        background-position: 8.5rem 5.75rem;
    }

    .menu_personal .brand_ttl {
        background-position: 7rem 4.25rem;
    }

    .brand_ttl02 {
        margin-top: 7rem
    }

    .brand_box ul li p:first-of-type {
        line-height: 1.25rem;
    }

    .brand_ttl-jp {
        width: 100%;
        font-size: .75rem;
        padding: 1rem;
        margin-left: 0;
        margin-bottom: 1rem
    }

    .brand_ttl:hover {
        width: auto;
    }

    .area_business .brand_ttl:hover {
        background-position: unset;
    }

    .area_personal .brand_ttl:hover {
        background-position: unset;
    }

    .p-mark-sub {
        font-size: .5rem;
        margin-top: 1.5rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        text-align: left;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-top: 2rem;
        padding-bottom: 3.5rem;
    }

    .p-mark-sub img {
        margin-right: 1rem;
    }

    .p-mark-sub {
        font-size: .5rem;
        text-align: left;
        line-height: 2;
    }

    #form_S .pvl, #form_R .pvl {
        padding-top: 0;
        padding-bottom: 0;
    }

    .form #mailform {
        width: 100%
    }

}