@charset "UTF-8";

/* CSS Document */

/*====================================

    .top_cp_list

====================================*/

.top_cp_list {
    padding: 80px 40px;
}
.top_cp_list .ttl {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}
.top_cp_list .ttl h2 {
    display: inline-block;
    background: #fff;
    border: 1px solid #000;
    border-radius: 40px;
    line-height: 1em;
    padding: .6em 1em;
    font-size: 150%;
}
.top_cp_list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.top_cp_list ul li {
    width: 19%;
    margin-bottom: 20px;
}
.top_cp_list ul li:not(:nth-child(5n)){
    margin-right: 1%;
}
.top_cp_list ul li a {
    display: block;
    background: #fff;
    border: 1px solid #000;
    border-radius: 30px;
    text-decoration: none;
    position: relative;
}
.top_cp_list ul li a .icon {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 60px;
    pointer-events: none;
    z-index: 1;
    display: none;
}
.top_cp_list ul li a .icon img {
    animation: rotate 10s linear infinite;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.top_cp_list ul li a .icon:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, .2);
    background: url(/common/images/badge_top_inner.svg) no-repeat center center;
    background-size: cover;
}
.top_cp_list ul li a figure {
    padding: 20px;
}
.top_cp_list ul li a p {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}
.top_cp_list ul li:nth-child(1) a:hover {
    background: var(--color_01);
}
.top_cp_list ul li:nth-child(2) a:hover {
    background: var(--color_02);
}
.top_cp_list ul li:nth-child(3) a:hover {
    background: var(--color_03);
}
.top_cp_list ul li:nth-child(4) a:hover {
    background: var(--color_04);
}
.top_cp_list ul li:nth-child(5) a:hover {
    background: var(--color_05);
}
.top_cp_list ul li:nth-child(6) a:hover {
    background: var(--color_06);
}
.top_cp_list ul li:nth-child(7) a:hover {
    background: var(--color_07);
}
.top_cp_list ul li:nth-child(8) a:hover {
    background: var(--color_08);
}
.top_cp_list ul li:nth-child(9) a:hover {
    background: var(--color_09);
}
.top_cp_list ul li:nth-child(10) a:hover {
    background: var(--color_10);
}

/*====================================

    .concept

====================================*/

.concept {
    padding: 0 40px;
    position: relative;
    margin-bottom: 80px;
}
.concept .inner {
    background: #fff;
    padding: 50px;
    border-radius: 60px;
    border: 1px solid #000;
    position: relative;
}
.concept .inner .ph_text {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
}
.concept .inner .ph_text .ph {
    width: 400px;
    border: 1px solid #000;
    padding: 40px 100px;
    border-radius: 40px;
}
.concept .inner .ph_text .text {
    flex: 1;
    padding: 0 0 0 60px;
}
.concept .inner .ph_text .text h3 {
    font-size: 120%;
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.concept .mogu_ex {
    background: #eee;
    border-radius: 30px;
    padding: 40px;
}
.concept .mogu_ex .info {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #000;
}
.concept .mogu_ex .info dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.concept .mogu_ex .info dl dt {
    width: 100px;
}
.concept .mogu_ex .info dl dd {
    flex: 1;
    padding: 0 0 0 40px;
}
.concept .mogu_ex .info dl dd h2 {
    font-size: 120%;
    font-weight: bold;
    margin-bottom: 10px;
}
.concept .mogu_ex .mogu_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.concept .mogu_ex .mogu_list dl {
    width: 50%;
    margin-bottom: 10px;
}
.concept .mogu_ex .mogu_list dl dt p {
    background: #fff;
    line-height: 1em;
    border: 1px solid #000;
    display: inline-block;
    font-size: 90%;
    padding: .4em 1em;
    border-radius: 40px;
}














