/*===================
  基本設定
===================*/
#children {
    max-width: 900px;
    margin: 0 auto;
}
#children img {
    width: 100%;
}
#children .pc_none {
    display: none;
}

/*===================
  カラム
===================*/
#children .col_2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
#children .col_3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
}
#children .col_4 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
}

/*===================
  アンカー
===================*/
#children .anchor {
    background-color: #ffd1c9;
    padding: 3%;
    margin: 1% auto;
    text-align: center;
    border-radius: 20px;
}
#children .anchor h2 {
    font-size: 36px;
    color: #fff;
}
#children .anchor h3 {
    font-size: 27px;
    color: #fff;
    background-color: #e9a599;
    border-radius: 50px;
    margin: 1% 0 3%;
}
#children .anchor ul li {
    margin: 0 auto 10px;
    width: 100%;
}
#children .anchor ul li img {
    width: 80%;
    transition: 0.2s;
}
#children .anchor ul li:hover img {
    transform: scale(1.1);
    transition: 0.2s;
}

/*===================
  コンテンツ
===================*/
/*--見出し--*/
#children .content {
    max-width: 90%;
    margin: 0 auto;
}
#children .content h2 {
    position: relative;
    text-align: center;
    margin: 6% auto 1%;
}
#children .content h2::before {
    content: "";
    width: 85%;
    height: 5px;
    position: absolute;
    top: 40%;
    left: 7%;
    border-bottom: dashed 2px #46c4db;
}
#children .content h2 span {
    font-size: 34px;
    color: #46c4db;
    background-color: #fff;
    position: relative;
    padding: 0 20px;
}
#children .content h3 {
    font-weight: 400;
    text-align: center;
    font-size: 18px;
    line-height: 32px;
    padding: 20px 0;
    margin: 0 auto 20px;
    background-color: #fff2ebd6;
}
/*--商品カラム--*/
#children .content .item {
    width: 85%;
    margin: 0 auto;
}
#children .content ul.col_2 > li {
    background-color: #fde4d8;
    padding: 3%;
    border-radius: 10px;
    text-align: center;
}
#children .content ul.col_2 > li a {
    display: flex;    
    flex-direction: column;
    height: 100%;
}
#children .content ul li dd img {
    border-radius: 10px;
}
#children .content ul li dt {
    font-size: 18px;
    color: #333;
    text-align: center;
    padding-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}
#children .content ul li dd .price {
    font-size: 32px;
    text-align: center;
    color: #e63b1d !important;
}
#children .content ul li dd .intax {
    font-size: 14px;
    color: #e63b1d !important;
}
#children .content ul li dd .price .spesicalprice {
    display: none;
}
#children .content ul li .cart {
    font-size: 18px;
    width: 85%;
    margin: 10px auto;
    color: #d68d80;
    background-color: #ffffff;
    border-radius: 50px;
    position: relative;
}
#children .content ul li .cart::after {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    top: 34%;
    right: 12%;
    border-top: solid 2px #d68d80;
    border-right: solid 2px #d68d80;
    transform: rotate(45deg);
}
/*--その他ボタン--*/
#children .content .btn {
    margin: 3% auto;
}
#children .content .btn li {
    text-align: center;
    border-radius: 5px;
    background-color: #d68d80;
    border: solid 2px #d68d80;
    transition: 0.2s;
}
#children .content .btn li a {
    font-size: 18px;
    padding: 15px 0;
    display: block;
    color: #fff;
    transition: 0.2s;
}
#children .content .btn li:hover {
    background-color: #fff;
    transition: 0.2s;
}
#children .content .btn li:hover a {
    color: #d68d80 !important;
    transition: 0.2s;
}

/*===================
  サイドナビ
===================*/
#children .side_nav {
    position: fixed;
    top: 30%;
    right: 8%;
    width: 230px;
}
#children .side_nav li {
    text-align: left;
    padding-left: 20px;
    border-left: solid 3px #d8d8d8;
    position: relative;
}
#children .side_nav li:last-child {
    background-color: #eeeeee;
    border-left: solid 3px #46c4db;
}
#children .side_nav li a {
    font-size: 16px;
    padding: 15px 0;
    display: block;
}
#children .side_nav li:hover {
    border-left: solid 3px #46c4db;
}
#children .side_nav li:hover a {
    color: #46c4db !important;
}
#children .side_nav li::after {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    top: 44%;
    right: 3%;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    transform: rotate(45deg);
}
#children .side_nav li:hover::after {
    border-top: solid 2px #46c4db;
    border-right: solid 2px #46c4db;
}