@charset "utf-8";

body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
}

article,
aside,
canvas,
details,
figcaption,
figure,
header,
footer,
main,
menu,
nav,
section,
summary {
    display: block;
}

h1 {
    width: 200px;
}

#key_img {
    width: 100%;
}

div#wrap {
    margin: 0 auto;
    width: 100%;
    /*font-family: "メイリオ";*/
}

p#key_img {
    margin-top: 0px;
    margin-right: auto;
    margin-left: auto;
    padding: 0px;
    vertical-align: bottom;
    text-align: center;
}

img {
    vertical-align: bottom;
    max-width: 100%;
}

div#wrap div#link_pc {
    margin-bottom: 0.6em;
}

h2 {
    clear: both;
    margin: 30px 0 20px;
    text-align: center;
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.05em;
    background-color: #ea5a86;
    padding: 15px 3%;
    line-height: 1.3em;
}

h3 {
    background-color: #FFDEE5;
    padding-top: 0.9em;
    padding-bottom: 0.9em;
    font-size: 18px;
    margin-bottom: 0.2em;
    margin-top: 20px;
    padding-left: 0.9em;
    padding-right: 0.9em;
    line-height: 1.48;
}

p#bunner_area {
    margin-bottom: 2em;
    text-align: center;
}

p {
    font-size: 0.9em;
    margin: 0px;
    display: block;
}

.mB10 {
    margin-bottom: 10px;
}

.mB20 {
    margin-bottom: 20px;
}

.mT10 {
    margin-top: 10px;
}

.mT20 {
    margin-top: 20px;
}

.mT30 {
    margin-top: 30px;
}

.mT40 {
    margin-top: 40px;
}

.tC {
    text-align: center;
}

:root {
    --sp-header-height: 100px;
}

/* ヘッダー＆メニューの設定 */
#top {
    position: sticky;
    top: 0;
    z-index: 1200;
    max-width: 768px;
    width: 100%;
    height: 80px;
    background-color: #FFFFFF;
    padding: 10px 0 12px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    box-shadow: 0px 6px 6px -6px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

body.sp-menu-open {
    overflow: hidden;
}

#menu_button {
    position: relative;
    width: 56px;
    height: 56px;
    margin-right: 10px;
    border-radius: 2px;
    background: #fdeef3;
    border: 1px solid #f8c0d3;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .3s ease, border-color .3s ease;
}

#menu_button span {
    position: absolute;
    width: 24px;
    height: 2px;
    background: #F63864;
    left: 50%;
    transform: translateX(-50%);
    transition: transform .3s ease, opacity .3s ease;
}

#menu_button span:nth-child(1) {
    top: 13px;
}

#menu_button span:nth-child(2) {
    top: 20px;
}

#menu_button span:nth-child(3) {
    top: 27px;
}

#menu_button .sp-menu__button-label {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #3b354f;
    white-space: nowrap;
}

#menu_button.is-open span:nth-child(1) {
    transform: translate(-50%, 7px) rotate(45deg);
}

#menu_button.is-open span:nth-child(2) {
    opacity: 0;
}

#menu_button.is-open span:nth-child(3) {
    transform: translate(-50%, -7px) rotate(-45deg);
}

#layer_menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - var(--sp-header-height));
    z-index: 1100;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s ease;
}

#layer_menu.is-open {
    pointer-events: auto;
    opacity: 1;
}

.sp-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 10, 24, 0.65);
    opacity: 0;
    transition: opacity .3s ease;
}

#layer_menu.is-open .sp-menu__overlay {
    opacity: 1;
}

.sp-menu__panel {
    position: absolute;
    left: 50%;
    top: 2%;
    width: min(540px, calc(90% - 32px));
    height: calc(100% - 66px);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(10, 13, 40, 0.28);
    margin-bottom: 40px;
    padding: 6px 20px 32px;
    transform: translate(-50%, -18px);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
    display: flex;
    flex-direction: column;
}

.sp-menu__item-head {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: inherit;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
}

.sp-menu__item-head .menu_icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sp-menu__item-head .menu_label {
    flex: 1;
    font-size: 1rem;
    text-align: left;
}

.sp-menu__item-head i {
    font-size: 0.9rem;
    color: #b39cc6;
}

#layer_menu.is-open .sp-menu__panel {
    transform: translate(-50%, 0);
    opacity: 1;
}

.sp-menu__header {
    display: none;
}

.sp-menu__title {
    margin: 0;
    font-weight: 700;
    font-size: 1.3rem;
    color: #1b1f33;
}

#menu_button .sp-menu__title {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-100%, 540%);
    margin: 0;
    font-weight: 700;
    font-size: 12px;
    color: #f63864;
    letter-spacing: 0.01em;
    background: transparent;
    opacity: 1;
    transition: opacity .2s ease;
}

#menu_button.is-open .sp-menu__title {
    transform: translate(-73%, 540%);
}

.sp-menu__scrollarea {
    padding-top: 18px;
    padding-bottom: 18px;
    padding-right: 6px;
    overflow-y: auto;
    flex: 1;
}

.sp-menu__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
}

.sp-menu__grid>li {
    background: #fff8fc;
    border: 1px solid #ede6f5;
    border-radius: 8px;
    padding: 7px 18px;
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #201f33;
    font-weight: 600;
    position: relative;
    box-sizing: border-box;
}

.sp-menu__grid>.layer_menu__banner {
    background: none;
    border: none;
    margin-bottom: 24px;
    padding: 0;
    min-height: auto;
    align-items: stretch;
}

.sp-menu__grid>li>a {
    color: inherit;
    text-decoration: none;
}

.sp-menu__grid .menu_icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sp-menu__grid .menu_label {
    display: inline-block;
    font-size: 1rem;
}

.sp-menu__grid .second-content {
    display: none;
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #ede6f5;
    padding-top: 10px;
    gap: 6px;
}

.sp-menu__grid>li.active {
    display: grid;
    border-color: #ffd8ea;
    background: #fff8fc;
}

.sp-menu__grid>li.active .second-content {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.sp-menu__grid .second-content a {
    color: #333;
    font-size: 0.92rem;
}

.layer_menu__banner {
    grid-column: 1 / -1;
}

.layer_menu__banner a {
    display: block;
}

.layer_menu__banner img {
    width: 100%;
    border-radius: 0;
}

.sp-menu__cta {
    margin: 18px 0;
    display: grid;
    gap: 12px;
}

.sp-menu__cta-btn {
    display: inline-block;
    text-align: center;
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    background-color: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}

.sp-menu__cta-btn {
    border: 1px solid #d93c5c;
    color: #d93c5c;
}

.sp-menu__cta-btn:active {
    transform: translateY(1px);
}

@media screen and (max-width: 480px) {
    .sp-menu__grid {
        grid-template-columns: 1fr;
    }
}

.second-content li {
    position: relative;
    padding-left: 3em;
}


.second-content li a {
    display: flex;
}



/* メニューボタンのデザイン */
/*
div#menu_button {
position: absolute;
display: block;
width: 30px;
height: 3px;
top: 50%;
right: 0;
transform: translate(-50%, -50%);

-webkit-transform: translate(-50%, -50%);
transition: linear .4s;
-webkit-transition: all linear .4s;
cursor: pointer;
background-color: #E71F67;
}

div#menu_button::after {
content: ' ';
position: absolute;
display: block;
width: 30px;
height: 3px;
top: 300%;
left: 0;
background: #E71F67;
cursor: pointer;
}

div#menu_button::before {
content: ' ';
position: absolute;
display: block;
width: 30px;
height: 3px;
top: -300%;
left: 0;
background: #E71F67;
cursor: pointer;
}

div.action#menu_button {
position: absolute;
width: 30px;
height: 3px;
top: 70%;
right: -2%;
transform: translate(-50%, -50%) rotate(45deg);
-webkit-transform: translate(-50%, -50%) rotate(45deg);
transition: linear .5s;
-webkit-transition: all linear .5s;
background: none;
cursor: pointer;
}

div#menu_button.action::after {
content: ' ';
position: absolute;
width: 30px;
height: 3px;
top: 70%;
right: -2%;
transform: translate(-50%, -50%) rotate(90deg);
-webkit-transform: translate(-50%, -50%) rotate(90deg);
transition: linear .5s;
-webkit-transition: all linear .5s;
background: #E71F67;
cursor: pointer;
}

div#menu_button.action::before {
content: ' ';
position: absolute;
width: 30px;
height: 3px;
top: 100%;
right: -2%;
transform: translate(-50%, -50%) rotate(180deg);
-webkit-transform: translate(-50%, -50%) rotate(180deg);
transition: linear .5s;
-webkit-transition: all linear .5s;
background: #E71F67;
cursor: pointer;
}
*/

/* 開閉式比較表の設定 */
div.plan_title {
    margin: 0 auto 0.8em auto;
    width: 75%;
}

div.plan_title h3 {
    margin-bottom: 0.5em;
    text-align: center;
    line-height: 1.6;
    font-weight: bold;
}

div.plan_title h3 span {
    margin-right: 0.3em;
    font-size: 0.875em;
}

div.plan_title p {
    margin-bottom: 0.8em;
    color: #ff7a21;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.02em;
}

div.plan_title p:last-child {
    color: #000;
    font-size: 0.75em;
    line-height: 1.5;
    text-align: left;
}

div.plan_title p>a {
    display: block;
    color: #578a3d;
    font-size: 1.4em;
    text-align: center;
}

div.plan_title p.link_company {
    text-align: center;
}

div.plan_title p.link_company a {
    color: #ff7a21;
    font-size: 1.3em;
}

dl.contents {
    margin-bottom: 0em;
    margin-top: 0em;
    /*font-family:Helvetica, Arial, Meiryo, メイリオ, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;*/
}

dl.contents dt {
    display: block;
    cursor: pointer;
    padding: 12px;
    color: #000;
    font-size: 0.9em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background: #eee;
    /*background: linear-gradient(#fff, #ccc);
    border: 1px solid #ccc;
    border-radius: 8px;*/
}

dl.contents dd {
    display: none;
}

dl.contents2 {
    margin-bottom: 0em;
    margin-top: 0em;
    /*font-family:Helvetica, Arial, Meiryo, メイリオ, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', "Osaka", "Verdana", "ＭＳ Ｐゴシック", sans-serif;*/
}

dl.contents2 dt {
    display: block;
    cursor: pointer;
    margin: 0 auto;
    padding: 1em 1em;
    width: 98%;
    text-align: left;
    font-size: 1em;
    font-weight: bold;
    background: linear-gradient(#fff, #eaeaea);
    width: 300px;
}

dl.contents2 dd {
    display: none;
    padding-top: 0.3em;
    border-bottom: 1px solid #ccc;
}

/* 比較表の内容(テーブル部分)の設定 */
h4 {
    margin-bottom: 1em;
    padding-top: 0.8em;
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
}

table.plan {
    width: 95%;
    margin: 0 auto 1.2em auto;
}

table.plan th {
    padding-top: 0.8em;
    padding-bottom: 0.5em;
    text-align: left;
    font-size: 1.1em;
}

table.plan td {
    padding: 0.5em;
    border: 1px solid #630;
}

table.plan td:nth-child(odd) {
    width: 40%;
    background-color: #ffcccc;
}

table.plan td p {
    font-size: 1em;
    line-height: 1.6;
}

table.address {
    width: 95%;
    margin: 0 auto 1.2em auto;
}

table.address th {
    padding-top: 0.8em;
    padding-bottom: 0.5em;
    letter-spacing: 0.03em;
    text-align: left;
    font-size: 1em;
    font-weight: bold;
    line-height: 1.4;
}

table.address td {
    padding-bottom: 0.3em;
}

table.address td p {
    line-height: 1.5;
    letter-spacing: 0.03em;
}

table.address td p:before {
    content: "・";
}

/* 資料請求・お申し込みボタンのデザイン */
dl.contents dd a.btn01 {
    display: block;
    margin: 0 auto 0.8em auto;
    padding: 1em 0.2em;
    width: 60%;
    color: #fff;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    background: -moz-linear-gradient(top, #ffa900 0%, #ea553a);
    background: -webkit-gradient(linear, left top, left bottom, from(#ffa900), to(#ea553a));
    border: 1px solid #eee;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 2px 2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 2px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 1px 1px rgba(0, 0, 0, 0.1) inset;
    -webkit-box-shadow: 1px 1px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 1px 1px rgba(0, 0, 0, 0.2) inset;
}

dl.contents dd a.btn02 {
    display: block;
    margin: 0 auto 3em auto;
    padding: 1em 0.2em;
    width: 60%;
    color: #fff;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    background: -moz-linear-gradient(top, #98c53d 0%, #578a3d);
    background: -webkit-gradient(linear, left top, left bottom, from(#98c53d), to(#578a3d));
    border: 1px solid #eee;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 2px 2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 2px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 1px 1px rgba(0, 0, 0, 0.1) inset;
    -webkit-box-shadow: 1px 1px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 1px 1px rgba(0, 0, 0, 0.2) inset;
}

/* 取扱会社ロゴ部分の設定 */
ul#companyList {
    margin: 0 auto;
    width: 260px;
}

ul#companyList li {
    float: left;
    margin-right: 20px;
    margin-bottom: 0.8em;
}

ul#companyList li:nth-child(2n) {
    margin-right: 0;
}

ul#companyList li:last-child {
    margin-bottom: 3em;
}

/* テキストエリア(免責事項など)の設定 */
section.textArea {
    margin-bottom: 1.5em;
}

section.textArea p {
    padding: 0 0.5em;
    line-height: 1.6;
}

/* PC版サイトへのリンク */
div#link_pc {
    width: 98%;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 5px;
    margin-left: auto;
}

div#link_pc a {
    display: block;
    cursor: pointer;
    color: #000;
    font-size: 0.9em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(#fff, #ccc);
    border: 1px solid #ccc;
    margin-bottom: 0.1em;
    padding-top: 0.9em;
    padding-right: 0;
    padding-bottom: 0.9em;
    padding-left: 0;
}

#search_box table {
    width: 100%;
    margin-top: 10px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
}

#wrap #search_box th {
    width: 50px;
    background-color: #FF3761;
    color: #FFFFFF;
    padding-top: 5px;
    padding-bottom: 5px;
    border-top-width: 2px;
    border-bottom-width: 2px;
    border-top-style: solid;
    border-bottom-style: solid;
    border-top-color: #FFFFFF;
    border-bottom-color: #FFFFFF;
}

#wrap #search_box td {
    padding-left: 15px;
}

#wrap #search_box select {
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: 18px;
    margin-bottom: 5px;
}



/* フッターエリア */
footer {
    background-color: #FFFFFF;
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 6.4vh !important;
    padding-left: 0px;
}

footer p {
    color: #494232;
    font-size: 0.5em;
    text-align: center;
    line-height: 1.5;
    background-color: #FFFFFF;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
}

footer .ssl-text {
    padding-bottom: 4px;
}

/* 「Font Awesome」を使って開閉ボタンを追加 */
dt i.fa-chevron-circle-right {
    margin-right: 0.5em;
    font-size: 1.3em;
    padding-left: 0.5em;
}

dt i.fa-chevron-circle-up {
    margin-right: 0.5em;
    font-size: 1.3em;
    padding-left: 0.5em;
}

#wrap #search_box {
    background-image: url(../topimg/bg.jpg);
    background-repeat: repeat;
    /*    padding: 2px;*/
}

#search_box .search_box_inner {
    background-color: #FFFFFF;
    padding: 10px;
}

#ichiran {
    background-color: #F0F0F0;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 30px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
}

#ichiran p {
    font-weight: bold;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    width: 90%;
}

.ichiran_list li {
    list-style-type: none;
    padding: 0px;
    float: left;
    margin-top: 0px;
    margin-right: 2px;
    margin-bottom: 0px;
    margin-left: 0px;
    width: 16%;
    height: 58px;
    padding-top: .3em;
}

.ichiran_list img {
    max-width: 90%;
    vertical-align: middle;
    text-align: center;
}


.request {
    overflow: hidden;
}

.request li {
    float: left;
    width: 25%;
}

.request li+dt:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -1px;
    width: 1px;
    height: 100%;
}

.request li img {
    width: 100%;
}

dl.request {
    margin-bottom: 2em;
}

dl.request li {
    display: block;
    cursor: pointer;




}

dl.request dd {
    display: none;
    padding-top: 0.3em;
    border-bottom: 1px solid #ccc;
}








.footer_link li {
    float: left;
    display: block;
    cursor: pointer;
    width: 50%;
    color: #000;

}

.footer_link a {
    color: #333333;
    text-decoration: none;
}

.footer_link {
    display: flex;
    flex-wrap: wrap;
    padding: 0px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0.4em;
    margin-left: auto;
}

.footer2 {
    background-color: #ea5a86;

    margin: 0px;
    padding: 10px;

}

/**************************/

#footerFloatingMenu {
    display: block;
    width: 100%;
    position: fixed;
    left: 0px;
    bottom: 0px;
    z-index: 9999;
    text-align: center;
    padding: 0 auto;

}

#footerFloatingMenu img {
    max-width: 100%;
}


/**************************/


#tabs {
    overflow: hidden;
    width: 100%;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
}

#tabs ul {
    overflow: hidden;
    list-style: none;
    border-bottom: 1px solid #eee;
    margin: 0;
}

#tabs li {
    padding: 0px;
    float: left;

    margin: 0px;
    width: 25%;
}

#tabs li img {

    max-width: 100%;
}

#tabs li a {}

#tabs .panel {
    background: #fff;
    padding: 10px;
    display: none;
    overflow: hidden;
}


.t-tabs .tab_item {
    width: calc(100%/3);
}











.panel {
    padding: 10px;
}

.tab_menu li.active,
.tab_menu li:hover {
    background-color: #999;


}

.newsbox {
    border: 2px solid #FF3366;
    padding: 10px;
    margin-bottom: 5px;
    overflow: hidden;
    background-color: #FFFFFF;
    ;
}

.hikakubox {
    border: 2px solid #FF3366;
    padding: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    background-color: #FFFFFF;
}

.hikakubox .f_left_logo {
    float: left;
    width: 34%;
    padding-left: 4%;
    font-size: 0.8em;
    text-align: center;
}

.hikakubox .f_left_logo a {
    display: block;
}

.hikakubox .f_left_logo .shounin {
    font-size: 10px;
    margin-top: 4px;
}


.hikakubox img {}

.hikaku_btn {
    margin-top: 10px;
    clear: both;
    overflow: hidden;
}

.hikaku_btn .btn1 a {
    display: block;
    cursor: pointer;
    color: #fff;
    font-size: 0.9em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(#ff0000, #cc0000);
    border: 1px solid #fff;
    margin-bottom: 0.1em;
    padding: 1.4em 0;
    width: 49%;
    float: left;
    border-radius: 50px;
}

.hikaku_btn .btn2 a {
    display: block;
    cursor: pointer;
    color: #fff;
    font-size: 0.9em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(#0099cc, #0000cc);
    border: 1px solid #fff;
    margin-bottom: 0.1em;
    padding: 1.4em 0;
    float: right;
    width: 49%;
    border-radius: 50px;
}

.btn3 a {
    display: block;
    cursor: pointer;
    color: #fff;
    font-size: 0.9em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(#aaa, #555);
    border: 1px solid #fff;
    margin-top: 10px;
    margin-bottom: 0.1em;
    padding: 1.4em 0;
    width: 100%;
    clear: both;
    border-radius: 50px;
}

.hikaku_btn p {


    margin-right: 1px;
    padding: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.hikakubox .price {
    color: #FF0000;
    font-size: 130%;
}

.hikakubox .plan {
    color: #FF0000;
    display: block;
    margin-top: 8px;
}

.hikakubox p.discount {
    float: left;
    display: block;
    font-size: 1.2em;
    font-weight: bolder;
}

.hikakubox .discount span {
    display: inline-block;
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #ffff7f 0%) repeat scroll 0 0;
    color: #FF0000;
}

.hikakubox .right {
    float: right;
    width: 58%;
    margin-top: 15px;
}

.hikakubox .hokenC {
    font-size: 20px;
}

.hikakubox .plan {
    font-size: 16px;
}

.hikakubox .camTxt {
    margin-top: 12px;
}

.hikakubox .camTxt span {
    padding: 3px 8px;
    color: #fff;
    background: #57ac24;
    text-decoration: none;
}

.hikakubox .camTxt span:after {
    display: inherit !important;
}

.planTable {
    width: 100%;
    /* margin-top: 20px; */
    border: none;
}

.planTable th,
.planTable td {
    padding: 4px 2px;
    line-height: 1.4;
    text-align: center;
    vertical-align: middle;
    font-size: 13px;
    border: solid 1px #ddd;
}

.planTable th {
    width: 20%;
}

.planTable td {
    width: 40%;
}

.planTable tr.planT th,
.planTable tr.planT td {
    padding-top: 8px;
    padding-bottom: 8px;
    font-weight: bold;
    background: #fff9e5;
}

.planTable tr.kanyuT th,
.planTable tr.kanyuT td {
    padding-top: 8px;
    padding-bottom: 8px;
    font-weight: bold;
    background: #f2f2f2;
}


#wrap #page_tit {
    background-color: #FFDEE5;
    padding-top: 0.9em;
    padding-bottom: 0.9em;
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 0.9em;
}

#wrap .company_table {
    width: 96%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-top-color: #666666;
    border-right-color: #666666;
}

#wrap .company_table td,
#wrap .company_table th {
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-bottom-style: solid;
    border-left-style: solid;
    border-bottom-color: #666666;
    border-left-color: #666666;
    padding: 0.5em;
    line-height: 1.6em;
    font-size: 90%;
}

#wrap .company_table th {
    background-color: #FAFAFA;
    width: 25%;
}

#wrap .clearfix :after {
    content: ".";
    display: inline-block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
}

#wrap .clearfix {
    display: inline-block;
    margin-bottom: 10px;
}

#wrap .main_contents {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
    line-height: 1.2em;
}

#wrap .main_contents h3 {
    max-width: 100%;
    /*    background-image: url(../images/content/icon.jpg);*/
    background-repeat: no-repeat;
    background-position: left center;
    clear: both;
    font-size: 1.3em;
    font-weight: bold;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #ea5a86;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

#wrap .main_contents img .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#wrap .main_contents .hyou01 dl {
    max-width: 100%;
    padding-top: 10px;
    padding-right: 0;
    padding-bottom: 10px;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    text-align: center;
}

#wrap .main_contents .hyou01 dt {
    background-color: #ffb6c1;
    max-width: 100%;
    font-size: 1.3em;
    font-whight: bold;
    border: 2px dashed #000;
    padding: 0.5em;
    text-align: center;
}


#wrap .main_contents .hyou01 dd {
    max-width: 100%;
    border-right: 2px solid #222;
    border-bottom: 2px solid #222;
    border-left: 2px solid #222;
    margin-bottom: 1em;
    padding: 0.5em;
    text-align: center;
}


#wrap .main_contents .faq dl {
    box-sizing: border-box;
    width: 100%;
    padding: 1em 0em;
}

#wrap .main_contents .faq dt {
    box-sizing: border-box;
    width: 100%;
    padding: 1em 0em;
}

#wrap .main_contents .faq dd {
    box-sizing: border-box;
    width: 100%;
    line-height: 1.2em;
    padding-bottom: 1.5em;
}

#wrap .main_contents .list01 li {
    box-sizing: border-box;
    float: left;
    width: 50%;
    height: 20em;
    border: 1px solid #333333;
    text-align: center;
    padding-top: 1em;
    padding-right: 0.5em;
    padding-bottom: 1em;
    padding-left: 0.5em;
}

#wrap .main_contents .list01 img {
    width: 80%;
    height: auto;
    max-height: 8em;
    margin: 0.5em;
}

#wrap .main_contents .list02 li {
    box-sizing: border-box;
    display: block;
    width: 100%;
    border: 1px solid #333333;
    text-align: center;
    padding-top: 0.5em;
    padding-right: 0.5em;
    padding-bottom: 0.5em;
    padding-left: 0.5em;
}

#wrap .faq .jump {
    max-width: 33%;
    width: 33%;
    text-align: center;
    float: left;
    padding-bottom: 1em;
}

#wrap .faq img .jump {
    max-width: 33%;
    width: 25%;
    margin: auto;
}

#wrap .main_contents1 {
    width: 96%;
    margin: 0 2% 5%;
    line-height: 1.2em;
}

#wrap .main_contents1 h3 {
    max-width: 100%;
    /*    background-image: url(../images/_content/icon.jpg);*/
    background-repeat: no-repeat;
    background-position: left center;
    clear: both;
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
    padding: 3% 0;
    line-height: 1.3em;
}

#wrap .main_contents1 img .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#wrap .main_contents1 .hyou01 dl {
    max-width: 100%;
    padding-top: 10px;
    padding-right: 0;
    padding-bottom: 10px;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    text-align: center;
}

#wrap .main_contents1 .hyou01 dt {
    background-color: #ffb6c1;
    max-width: 100%;
    font-size: 1.3em;
    font-weight: bold;
    border: 2px dashed #000;
    padding: 0.5em;
    text-align: center;
}


#wrap .main_contents1 .hyou01 dd {
    max-width: 100%;
    border-right: 2px solid #222;
    border-bottom: 2px solid #222;
    border-left: 2px solid #222;
    margin-bottom: 1em;
    padding: 0.5em;
    text-align: center;
}


#wrap .main_contents1 .faq dl {
    box-sizing: border-box;
    width: 100%;
    padding: 1em 0em;
}

#wrap .main_contents1 .faq dt {
    box-sizing: border-box;
    width: 100%;
    padding: 1em 0em;
}

#wrap .main_contents1 .faq dd {
    box-sizing: border-box;
    width: 100%;
    line-height: 1.2em;
    padding-bottom: 1.5em;
}

#wrap .main_contents1 .list01 li {
    box-sizing: border-box;
    float: left;
    width: 50%;
    height: 20em;
    border: 1px solid #333333;
    text-align: center;
    padding-top: 1em;
    padding-right: 0.5em;
    padding-bottom: 1em;
    padding-left: 0.5em;
}

#wrap .main_contents1 .list01 img {
    width: 80%;
    height: auto;
    max-height: 8em;
    margin: 0.5em;
}

#wrap .main_contents1 .list02 li {
    box-sizing: border-box;
    display: block;
    width: 100%;
    border: 1px solid #333333;
    text-align: center;
    padding-top: 0.5em;
    padding-right: 0.5em;
    padding-bottom: 0.5em;
    padding-left: 0.5em;
}

#wrap .main_contents1 .content {
    padding-bottom: 10%;
}



#wrap .main_contents1 .content1 {
    border: solid 1px #ccc;
}

#wrap .main_contents1 .content img {
    width: 90%;
    margin-left: 5%;
}

#wrap .main_contents1 .content p {
    text-align: left;
    padding: 2% 0;
    padding-left: 5%;
}

#wrap .main_contents1 td {
    padding: 0 3%;
}

#wrap .column {
    line-height: 1.5em;
    font-size: 0.8em;
}

#wrap .column img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#wrap .column h3 {
    background-color: #FFDEE5;
    padding-top: 0.9em;
    padding-bottom: 0.9em;
    font-size: 18px;
    margin-bottom: 0.2em;
    margin-top: 20px;
    padding-left: 0.9em;
}


#wrap .column table {
    width: 96%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-top-color: #666666;
    border-right-color: #666666;
}

#wrap .column td,
#wrap .column th {
    vertical-align: middle;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-bottom-style: solid;
    border-left-style: solid;
    border-bottom-color: #666666;
    border-left-color: #666666;
    padding: 0.5em;
    line-height: 1.6em;
    font-size: 85%;
}

#wrap .column th {
    background-color: #f0f0f0;
    width: 30%;
}

#wrap .column td {
    width: 70%;
}

#wrap .column thead th {
    background-color: #ffe8ec;
    width: 30%;
}

#wrap .column dl {
    box-sizing: border-box;
    width: 100%;
    display: block padding: 1em 0em;
}

#wrap .column dt {
    box-sizing: border-box;
    float: left;
    width: 30%;
    margin: auto;
    background-color: #666666;
    border: 1px solid #333333;
    text-align: center;
}

#wrap .column dd {
    box-sizing: border-box;
    width: 70%;
    float: left;
    border: 1px solid #333333;
    line-height: 1.2em;
}

#wrap .column dd :after {
    clear: both;
}

#wrap .column .syousai_btn {
    background: linear-gradient(top, #ffccff, #ff4caa);
    border-radius: 4px;
    border: 1px solid #c0c0c0;
    width: 90%;
    margin: 0 auto;
}

#wrap .column .syousai_btn a {
    display: block;
    cursor: pointer;
    color: #ffffff;
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(255, 0, 102, 0.3);
    letter-spacing: 0.2em;
    padding-top: 0.5em;
    padding-right: 0;
    padding-bottom: 0.5em;
    padding-left: 0;
}

#wrap .column .box {
    width: 100%;
}

#wrap .column .box .box_left {
    box-sizing: border-box;
    width: 50%;
    float: left;
    padding-bottom: 0.5em;
    display: inline-block;
}

#wrap .column .box .box_left img {
    width: 100%;
    height: auto;
}

#wrap .column .box .box_right {
    box-sizing: border-box;
    width: 50%;
    padding-bottom: 0.5em;
    display: inline-block;
}

#wrap .column .box .box_right img {
    width: 50%;
    height: auto;
    padding: 2%;
    text-align: center;
}

#wrap .column .box .box_bottom {
    box-sizing: border-box;
    width: 100%;
    clear: both;
    text-align: center;
    display: inline-block;
}

#wrap .column .box .box_bottom img {
    box-sizing: border-box;
    width: 80%;
    height: auto;
}



.contentimg {
    width: 90%;
    padding: 2% 5%;
}

.contentimg img {
    width: 100%;
}


.sticky_table {
    display: block;
    position: relative;
    overflow: scroll;
    width: calc(100vw);
    height: calc(70vh);
    border-collapse: collapse;
    font-size: 0;
}

.sticky_table thead,
.sticky_table tbody {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.sticky_table th,
.sticky_table td {
    width: 8.0rem;
    background: #fff;
    font-size: 1.0rem;
    ;
    vertical-align: middle;
    text-align: center;
    border: solid 1px #888;
}

.sticky_table tbody th {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 1;
    padding: 5px 0
}

.sticky_table tbody tr:nth-child(even) th {
    background-color: #FA6B89;
}

.sticky_table tbody tr:nth-child(odd) th {
    background-color: #FFE9EA;
}


.sticky_table tbody tr:nth-child(even) td {
    background-color: #ccc;
}

.sticky_table tbody tr:nth-child(odd) td {
    background-color: #fff;
}

/* ペット保険とは？ */
.spImg01 {
    text-align: center;
    margin: 0 0 20px;
}

.table_sp {
    width: 98%;
    margin: auto;
    border: none;
}

.table_sp th {
    background: #F0F0F0;
    font-weight: bold;
}

.table_sp th,
.table_sp td {
    display: block;
    width: 100%;
    padding: 10px 0;
}

/* 追加 */
#wrap .content h3 {
    background-color: #FFDEE5;
    padding-top: 0.9em;
    padding-bottom: 0.9em;
    font-size: 18px;
    margin-bottom: 0.2em;
    padding-left: 0.9em;
}

#wrap .content table {
    width: 96%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-top-color: #666666;
    border-right-color: #666666;
}

#wrap .content td,
#wrap .content th {
    vertical-align: middle;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-bottom-style: solid;
    border-left-style: solid;
    border-bottom-color: #666666;
    border-left-color: #666666;
    padding: 0.5em;
    line-height: 1.6em;
    font-size: 85%;
}

#wrap .content {
    line-height: 1.5em;
    font-size: 0.8em;
}

#wrap .content th {
    background-color: #f0f0f0;
    width: 50%;
}

#wrap .content td {
    width: 50%;
}

.hikakubox .btn4 a,
.hikakubox .btn5 a {
    display: block;
    width: 98%;
    padding: 8px 2px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 8px;
}

.hikakubox .btn4 a {
    background: #FF6600;
}

.hikakubox .btn5 a {
    background: #FF3366;
}

.hikakubox .red2 {
    font-size: 1.2em !important;
    font-weight: bold;
    color: #F00;
}

.taishou {
    margin: 12px 0 5px;
    font-size: 1.1em;
    font-weight: bold
}

.kanyuTable {
    width: 100%;
    margin-top: 20px;
}

.kanyuTable th {
    width: 100%;
    padding: 24px 5px;
    font-weight: bold;
    background: #ddd;
}

.kanyuTable td {
    padding: 14px 5px;
    text-align: center;
    border-bottom: solid 1px #ddd;
}

.image {
    margin: 20px 0;
    text-align: center;
}

.back_btn a {
    background-color: #FF883E;
    border-bottom: 4px solid #c5530b;
    color: #FFFFFF;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    padding: 15px 5px;
    border-radius: 10px;
    margin: 20px 0 0;
    display: block;
}

.red {
    font-weight: bold;
    color: #FF0000;
}




/*関連記事*/
/*

.c_box{
width:100%;
text-align: center;
margin-top: 40px;
}






.box .c_box h3 {
font-size: 1.6em;
color: #FF6666;
font-weight: bold;
border-bottom-width: 2px;
border-bottom-style: dotted;
border-bottom-color: #CCCCCC;
text-align: center;
margin-bottom: 20px;
min-height: 70px;
margin-top: 20px;
}


.box .c_box .more a{
background-color: #FF883E;
color: #FFFFFF;
font-size: 1.3em;
text-decoration: none;
text-align: center;
padding-top: 2px;
padding-right: 10px;
padding-bottom: 2px;
padding-left: 10px;
margin-right: 20px;
margin-left: 20px;
display: block;
}

.more a{
margin-top: 20px;
}

.box{
margin-bottom: 50px;
overflow: hidden;
}
*/



#kanren .c_box {
    padding: 20px 0;
    background-color: #efefef;
    width: 90%;
    margin: 10px auto;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 10px;
}

#kanren .c_box img {
    margin-bottom: 20px;
    border-radius: 180px;
    height: 250px;
    width: 250px;
    text-align: center;
}

#kanren .c_box h3 {
    font-size: 1.5em;
    color: #FF6666;
    font-weight: bold;
    border-bottom-width: 2px;
    border-bottom-style: dotted;
    border-bottom-color: #CCCCCC;
    text-align: center;
    margin-bottom: 20px;
    min-height: 60px;
}

#kanren .c_box p {
    font-size: 1em;

    margin: 0 20px;
    text-align: left;
}

#kanren .c_box .more a {
    background-color: #FF883E;
    color: #FFFFFF;
    font-size: 1em;
    text-decoration: none;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
    display: block;
    font-weight: bold;
}

#kanren .c_box .more a:hover {
    background-color: #ff6666;

}



/*.....4月22日....*/
.bot {
    border: 5px;
    padding-left: 15px;
    background-color: #F8B551;
    border-radius: 10%;
    font-size: 130%;
    margin-bottom: 10px;
}

.box2 {
    margin-top: 50px;
}

#madoguchi-sp .box {
    background-color: #F0F0F0;
    padding: 20px;
    margin-bottom: 50px;
    overflow: hidden;
}

#madoguchi-sp .font01 {
    font-weight: bold;
    color: #FF3300;
    background-color: #FFFF00;
    padding-right: 10px;
    padding-left: 10px;
}

#madoguchi-sp h5 {
    font-size: 150%;
    margin-bottom: 15px;
    margin-top: 15px;
}

.images {
    text-align: center;
    margin-bottom: 20px;
}

#hikakubox-z .price {
    font-size: 100% !important;
    color: #FF0000;
    font-weight: bolder;
    padding-top: 10px;
}

#hikakubox-z .plan {
    color: #FF0000;
    float: left;
    display: block;
    padding: 0;

}

.plan_select {
    margin-top: 10px;
}

.table-box {
    margin: 10px auto;
    text-align: center;
    width: 100%;
}

#hikakubox-z dl.contents dd {
    padding-top: 0.3em;
}

.shou {
    margin-bottom: 20px;
    padding: 0 10px;
}

.shouImg {
    margin-bottom: 10px;
    text-align: center;
}

/* 豆知識 TABLE */
.nameArea {
    overflow: scroll;
    position: relative;
    max-width: 96%;
    margin: 0 auto 10px;
}

.mameTable {
    position: relative;
    border-collapse: collapse;
}

.mameTable th,
.mameTable td {
    white-space: nowrap;
    padding: 14px 5px;
    text-align: center;
    vertical-align: middle;
    font-size: 11px;
    border: solid 1px #ccc;
}

.mameTable th {
    position: -webkit-sticky;
    position: sticky;
    left: -1px;
    background: #f5f5f5;
}

.mameTable2 {
    width: 100% !important;
    overflow: inherit !important;
}

.mameTable2 th,
.mameTable2 td {
    white-space: normal !important;
}

.mameTable tr.plan td {
    padding: 30px 5px;
    font-size: 12px;
    font-weight: bold;
}

.mameTable tr.plan span {
    padding: 6px 8px;
    color: #fff;
    border-radius: 12px;
}

.mameTable tr.plan span.plan01 {
    background: #1fa232;
}

.mameTable tr.plan span.plan02 {
    background: #f1c31d;
}

.mameTable tr.plan span.plan03 {
    background: #188ac4;
}

.mameTable tr.plan span.plan04 {
    background: #959596;
}

.mameTable tr.price td,
.mameTable tr.price th {
    font-weight: bold;
    color: #FF3366;
    background: #FFFFCC;
}

.mameTable tr.price td {
    font-size: 14px;
}


.mameTable a {
    background-image: url(../../../img/btn.jpg);
    background-repeat: no-repeat;
    width: 70px;
    display: block;
    margin-right: auto;
    margin-left: auto;
    height: 50px;
}

.mameTable a span {
    font-size: 0;
}

/* c_box */
.c_box {
    width: 98%;
    margin: 0 auto 20px;
}

.c_box a {
    margin-bottom: 20px;
}

.c_box .more a {
    background-color: #FF883E;
    color: #FFFFFF;
    font-size: 1.3em;
    text-decoration: none;
    text-align: center;
    margin-top: 12px;
    padding: 15px 0px;
    display: block;
    margin-left: 0px;
    border-radius: 16px;
}

.inner {
    width: 98% !important;
    margin: 0 auto !important;
}

.kiji_title {
    display: inline-block;
    text-align: left;
    padding-bottom: 5px;
    border-bottom: dotted 1px #ea5a86;
}

.sick {
    padding: 5px;
    background: #fff5f7;
}

.sickInner {
    margin-bottom: 10px;
    padding: 10px 20px;
    background: #fff;
}

.sickT {
    margin: 15px 0 5px;
    padding: 6px 10px;
    text-align: center;
    background: #fff5f7;
}

.sickT h5 {
    margin-bottom: 2px;
    font-size: 15px;
    font-weight: bold;
}

.sicktxt {
    margin-bottom: 10px;
    text-align: center;
}

.sicktxt .red {
    font-size: 16px;
}

.shouBtn {
    margin: 20px 20px 30px;
}

.shouBtn a {
    display: block;
    padding: 24px 5px;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: #ed5506;
    border-radius: 16px;
    -moz-border-radius: 16px;
    -webkit-border-radius: 16px;
    box-shadow: 2px 2px 4px #999;
    background: -moz-linear-gradient(top, #ff9e15, #ed5506);
    background: -webkit-linear-gradient(top, #ff9e15, #ed5506);
    background: linear-gradient(to bottom, #ff9e15, #ed5506);
}

.hyou02 {
    width: 100%;
    border-spacing: 0;
    border-collapse: 0;
}

.hyou02 td {
    border-top-width: 1px;
    border-right-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-top-color: #333333;
    border-right-color: #333333;
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 2px;
    padding-left: 10px;
}

.td03 {
    background-color: #C8E3E3;
}

.hyou02 th {
    border-top-width: 1px;
    border-right-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-top-color: #333333;
    border-right-color: #333333;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: normal;
    background-color: #F0F0F0;
    color: #666666;
}

.text-center {
    text-align: center;
}

.six-pack {
    background-color: antiquewhite;
    border: solid 1px black;
}

.hyou03 {
    width: 100%;
    border-spacing: 0;
    border-collapse: 0;
}

.hyou03 th {
    border-top-width: 1px;
    border-right-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-top-color: #333333;
    border-right-color: #333333;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: normal;
    background-color: #FFFAD6;
    color: #666666;
}

.hyou03 td {
    border-top-width: 1px;
    border-right-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-top-color: #333333;
    border-right-color: #333333;
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 2px;
    padding-left: 10px;
}

.bar02 {
    color: #FFFFFF;
    font-size: 20px;
    /*
    background-image: url(../images/bar02.jpg);
    background-repeat: no-repeat;
    */
    width: 100%;
    height: 42px;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 200%;
    text-align: center;
}

.hyou50 {
    width: 50%;
}




/*関連ページ*/

.kanren {
    position: relative;
    border-top: solid 1px #ccc;
    padding-top: 15px;
    overflow: hidden;
    margin: 5px 0;
    z-index: 1;
}

.kanren:first-child {
    margin-top: 20px;
}


.kanren img {
    float: left;
    max-width: 115px;
}

.kanren p {
    width: 64%;
    font-size: 15px;
    float: right;
    letter-spacing: 2px;
    line-height: 20px;

}


.kanren a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -999px;
    z-index: 2;
    /* 必要であればリンク要素の重なりのベース順序指定 */
}


.inner-k {
    padding: 3%;
}

#li h3 {
    border-bottom: none !important;
}

#li p {
    margin-top: 10px;
    padding: 15px;
}

/*
#wrap p{
margin-top: 10px;
padding: 15px;
font-size: 15px;
}
*/

.in {
    background-color: #FFE8E8;
    padding: 10px;
    overflow: hidden;
}

.in .inu {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    width: 100%;
    background-color: #FFFFFF;
    float: left;
    text-align: right;
    background-image: url(../../../images/top_hikaku/top_hikaku_inu.png);
    background-position: 5px bottom;
    background-repeat: no-repeat;
    height: 91px;
    /* padding-right: 20px; */
    padding-bottom: 10px;
    /* padding-left: 10px; */
    border: 1px solid #f1dada;
}

.in .neko {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    width: 100%;
    background-color: #FFFFFF;
    float: left;
    /* padding-right: 20px; */
    padding-bottom: 10px;
    /* padding-left: 10px; */
    text-align: right;
    background-image: url(../../../images/top_hikaku/top_hikaku_neko.png);
    background-position: 5px bottom;
    background-repeat: no-repeat;
    height: 91px;
    border: 1px solid #f1dada;
    margin-top: 8px;
}

.in .inu img,
.in .neko img {
    margin-top: 26px;
    width: 50%;
    margin-right: 5px;
}

#news_topic {
    height: 300px;
    overflow: scroll;

}

#news_topic p {
    line-height: 32px;
}

#news_topic li {
    font-weight: bold;
    vertical-align: middle;
    margin-bottom: 10px;
    line-height: 25px;

}

#news_topic img {
    margin-bottom: 4px;
}

#news_topic2 {
    position: relative;
    border-top: solid 1px #ccc;
    padding-top: 15px;
    overflow: hidden;
    margin: 5px 0;
    z-index: 1;
}

.news_topic2 {
    position: relative;
    border-top: solid 1px #ccc;
    padding-top: 15px;
    overflow: hidden;
    margin: 5px 0;
    z-index: 1;
}

.news_topic2 .date {
    color: #009900;
}


.txtbox {}

.list03 li {
    position: relative;
    border-top: solid 1px #ccc;
    padding-top: 15px;
    overflow: hidden;
    margin: 5px 0;
    z-index: 1;
}



.list03 a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -999px;
    z-index: 2;
}

.list03 li {
    padding: 20px 0px;
    width: 90%;
    border-radius: 10px;
    margin: 5px auto;
    background-color: #ffbdcb;
    border: 2px solid #ffd79a;
    text-align: center;
}

.list04 {
    word-break: break-all;
}

#spbig {
    font-size: 1.3em;
    margin-top: 30px;
    text-align: center;
}

#shuzai .center {
    text-align: center;
}

#mail p {
    margin-top: 10px;
}

#line-height1 {
    line-height: 30px;
}

#other p {
    margin-top: 10px;
}

.kiji p {
    padding: 10px;
}

.kiji a {
    color: #F05697;
}

#inuneko {
    font-size: 1.5em;

}

.company {
    padding: 10px;
    vertical-align: top;
    border-top-width: 1px;
    border-right-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-left-style: solid;
    border-top-color: #FF3460;
    border-right-color: #FF3460;
    border-left-color: #FF3460;
}

.company {
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-right-color: #FF3460;
    border-bottom-color: #FF3460;
    border-left-color: #FF3460;
    background-color: #FFFFCC;
    padding: 10px;
    margin: 0px;
    margin-top: 20px;
    border-radius: 35px;
}

.company .more a {
    margin-right: auto;
    margin-left: auto;
    color: #FFFFFF;
    text-align: center;
    width: 70%;
    display: block;
    text-decoration: none;
    font-weight: bold;
    font-size: 27px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    background: rgb(247, 98, 49);
    background: -moz-linear-gradient(top, rgba(247, 98, 49, 1) 21%, rgba(255, 52, 96, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(247, 98, 49, 1) 21%, rgba(255, 52, 96, 1) 100%);
    background: linear-gradient(to bottom, rgba(247, 98, 49, 1) 21%, rgba(255, 52, 96, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f76231', endColorstr='#ff3460', GradientType=0);
    margin-top: 20px;
}

.company span {
    color: #FF3460;
    margin-right: 10px;
}

.company img {
    margin-bottom: 20px;
}

.left1 {
    float: left;
    width: 45%;
    text-align: center;
}

.left1 img {
    padding: 5%;
    width: 70%;
}

.right1 {
    float: right;
    width: 50%;
    padding-top: 5%;
}

.logo span {
    font-size: 2.5em !important;
}

#top-im .left {
    width: 40%;
    float: left;
    text-align: center;
    padding: 5%;
}

#top-im .right {
    width: 40%;
    float: right;
    text-align: center;
    padding: 5%;
}

#top-im {
    overflow: hidden;
}

#news_topic a {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -999px;
    z-index: 2;
}

.w100 {
    width: 100%;
    display: inline-block;
}

/*.....................0718追加.........................*/

#spark .txtbox {

    letter-spacing: 1px;
    line-height: 20px;
}

.btn-s {
    border: 1px solid red;
    border-radius: 10px;
    padding: 10px;
    background: linear-gradient(#de2121, #ffb54c);
    margin-top: 5px;
    text-align: center;
}

.btn-s p {
    font-size: 18px;
    color: white !important;
    margin-bottom: inherit !important;
}

.btn-s a {
    display: inline-block;
    width: 100%;
    height: 100%;
    font-size: 18px;
    color: white !important;
    margin-bottom: inherit !important;
    text-decoration: none;
}


.txtbox {
    padding: 1em;
}

#scrol {
    padding: 10px 0;
}


.wid0 {
    width: inherit;
}

/* redirect */
#redirect {
    padding: 20px;
}

#redirect h1 {
    float: none;
    margin: 0 auto 20px;
    padding-bottom: 20px;
    text-align: center;
    /*border-bottom: solid 1px #ccc;*/
    /*background: url("../../common/img/redirectLine.png") repeat-x bottom;*/
}

#redirect div {
    max-width: 700px;
    margin: 75px auto 0;
    padding: 20px;
    line-height: 1.8;
    text-align: center;
    font-size: 15px;
    border-top: solid 1px #fd3363;
    border-bottom: solid 1px #fd3363;
}

#redirect footer {
    margin: 100px auto 0;
    font-size: 12px;
    text-align: center;
    border-top: solid 1px #999;
}


/*タブ切り替え全体のスタイル*/
.tabs {
    margin-top: 50px;
    padding-bottom: 40px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    margin: 0 auto;
}

/*タブのスタイル*/
.tab_item {
    width: calc(100%/4);
    height: 50px;
    border-bottom: 3px solid #d0436e;
    background-color: #d9d9d9;
    line-height: 50px;
    font-size: 11px;
    text-align: center;
    color: #565656;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    transition: all 0.2s ease;
}

.tab_item:hover {
    opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
    display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
    display: none;
    padding: 40px 40px 0;
    clear: both;
    overflow: hidden;
}


/*選択されているタブのコンテンツのみを表示*/
#all:checked~#all_content,
#programming:checked~#programming_content,
#design:checked~#design_content,
#four:checked~#four_content {
    display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked+.tab_item {
    background-color: #eb5a86;
    color: #fff;
}

.by {
    margin: 0 auto;
    border: 1px solid;
}


.link {
    margin-top: 20px;
}

.planTable2 td {
    width: inherit;
}

.hayami {
    clear: both;
    float: left;
    margin: 20px 0;
}

.hayami td,
.hayami th {
    border: 1px solid #ddd;
    text-align: center;
}

.hayami th {
    background: #f2f2f2;
}






.tab_wrap {
    width: 100%;
    margin: 0 auto;
}

input[type="radio"] {
    display: none;
}

.tab_area {
    font-size: 0;
    border-bottom: solid 1px #ddd;
}

.tab_area label {
    width: 32%;
    display: inline-block;
    padding: 18px 0;
    color: #333;
    background: #fff;
    text-align: center;
    font-size: 13px;
    cursor: pointer;
    transition: ease 0.2s opacity;
    border-left: 1px solid #ddd;
    border-top: solid 1px #ddd;
    border-right: solid 1px #ddd;
    border-radius: 8px 8px 0 0;
    margin-left: 0.6%;
}

.tab_area label:hover {}

.panel_area {
    background: #fff;
    padding-top: 0;
    padding: 3%;
    width: 94%;
}

.tab_panel {
    width: 100%;
    display: none;
}

.tab_panel p {
    font-size: 14px;
    letter-spacing: 1px;
}

.tab_panel p.senior {
    margin: 5px 0;
}

.tab_panel p.senior a {
    position: initial !important;
}

#tab1:checked~.tab_area .tab1_label,
#tab2:checked~.tab_area .tab2_label,
#tab3:checked~.tab_area .tab3_label {
    background: #ffebf1;
    color: #eb5986;
    font-weight: bold;

}

#tab1:checked~.panel_area #panel1 {
    display: block;
}



#tab2:checked~.panel_area #panel2 {
    display: block;
}



#tab3:checked~.panel_area #panel3 {
    display: block;
}








input[name=navinput] {
    display: none;
}

.listnav01:hover,
.listnav02:hover,
.listnav03:hover {
    color: #999;
}


.hid2 {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: 0.5s;
    padding: 0 10px;
}

.top .hid2 {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: 0.5s;
    padding: 0;
}

#nav01:checked~.hid02,
#nav02:checked~.hid02,
#nav03:checked~.hid02 {
    height: auto;
    opacity: 1;
    padding: 10px;
}

#nav01:checked~.title .listnav01,
#nav02:checked~.title .listnav02,
#nav03:checked~.title .listnav03 {
    display: none;
}

#nav01:checked~.title,
#nav02:checked~.title,
#nav03:checked~.title {
    margin: 0;
}

.title {
    margin: 20px auto;
    font-size: 16px !important;
    color: blue;
    text-align: center !important;
}

.last-m {
    text-align: left !important;
    padding: 1em;
}

.company_list ul {
    display: flex;
    flex-wrap: wrap;
}

.company_list li {
    width: calc(100%/7);
}

.company_list li img {
    width: 100%;
}

.company_list {
    border: 1px solid #ee8fb7;
}

.sp_vnr {}

.sp_vnr a {
    margin: 0 auto;
    display: block;
}

.sp_vnr img {
    width: 80%;
    margin: 0 auto;
    display: block;
}

.hokenC img {
    max-width: 28px;
    margin-right: 5px;

}

.rankTable td.td03 {
    text-align: left;
    background: #fff;
}

.rankUl01 {
    overflow: hidden;
    margin: 12px 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    font-size: 12px;
}

.rankUl01 li {
    width: 46%;
    padding: 4px 6px;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}

.rankUl01::after {
    content: "";
    display: block;
    width: 62%;
}

.rankUl01 li.rul01 {
    background: #356aba;
}

.rankUl01 li.rul02 {
    background: #df3054;
}

.rankUl01 li.rul03 {
    background: #108e3f;
}

.rankUl01 li.rul04 {
    background: #cd9e2e;
}

.rankUl02 {
    margin: 0;
    padding: 0;
    list-style: disc;
    text-align: left;
}

.rankUl02 li {
    margin-left: 1.5em;
}

.rank_btn {
    margin-top: 16px;
}

.rank_btn a {
    display: block;
    padding: 16px 10px;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #ed5506;
    border-radius: 16px;
    -moz-border-radius: 16px;
    -webkit-border-radius: 16px;
    box-shadow: 1px 1px 2px #bbb;
    background: -moz-linear-gradient(top, #ff9e15, #ed5506);
    background: -webkit-linear-gradient(top, #ff9e15, #ed5506);
    background: linear-gradient(to bottom, #ff9e15, #ed5506);
}

.td03 {
    background: inherit;
}

.rankt {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin: 0 auto;
    display: inline-block;
    border: 2px solid #ff3860;
    padding: 2% 2%;
    /*    margin-top: 30px;*/
}

.rank_lead {
    padding-bottom: 0;
}

.top_logo {

    width: 200px;
}



.td04 {
    font-weight: bold;
    font-size: 18px;
    background: #ffcccc;
}

.hyou th {
    background-color: #f0f0f0;
    width: inherit !important;
}


.logo {
    width: 200px;
    margin-left: 6px;
    margin-right: auto;
}

.bobun_no dl {
    background-color: #F2F2F3;
    padding: 10px 0;
}

.bobun_no dt {
    float: left;
}

.useful_box {
    display: flex;
}

.useful_box:not(:first-child) {
    margin-top: 10px;
}

.useful_img {
    width: 20%;
    margin-right: 10px;
}

.useful_txt {
    width: 80%;
    font-size: 14px;
    line-height: 1.4;
}

.useful_txt p {
    font-size: 14px !important;
}

/*cpn ペット保険ステーション限定キャンペーン*/

#station_cpn .cpn_company_list {
    width: 100%;
    text-align: center;
}

#station_cpn .cpn_company_list:not(:first-child) {
    margin-top: 20px;
    border-top: 1px solid #ddd;
}

#station_cpn .cpn_company_list div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 90%;
    height: 180px;
    margin: auto;
}

#station_cpn .cpn_company_list .logo {
    width: 38%;
    height: auto;
    margin: 5px auto;
}

#station_cpn .cpn_company_list p:nth-child(2) {
    width: 100%;
}

#station_cpn .cpn_company_list img {
    width: 100%;
}

#station_cpn .order_btn {
    display: block;
    width: 100%;
    padding: 5px 0;
    border-radius: 15px;
    background-color: #FF3366;
    border-bottom: solid 4px #ae1f43;
}

#station_cpn .order_btn {
    text-decoration: none;
    color: #fff;
}

#station_cpn .small {
    display: block;
    font-size: 12px;
}

#station_cpn .number {
    font-size: 10px;
}

.kihon_table table,
.kihon,
.tokuyaku,
.iryohi table,
.hikakubox table {
    border-spacing: 0;
    border-collapse: 0;
}

.iryohi table {
    width: 100%;
}

#search_box table {
    width: 100%;
    border-spacing: 5px;
    border-collapse: 5px;
}

.txt_right {
    text-align: right;
}

.scroll_table {
    overflow: scroll;
    position: relative;
    max-width: 100%;
    margin: 0 auto 10px;
}


/*...............plan_box............*/
.plan_box {
    padding: 20px 2%;
    background: #fcfbf9;
    border-radius: 24px;
    margin-bottom: 0;
}

.plan_box .flex_b {
    position: relative;
    z-index: 1;
}


.flex_b {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.flex_b.rank1::after {
    content: '';
    position: absolute;
    right: 0.5em;
    top: 0;
    display: inline-block;
    width: 40px;
    height: 31px;
    background-image: url(../topimg/ranking-icon/no1.png);
    background-size: contain;
}

.flex_b.rank2::after {
    content: '';
    position: absolute;
    right: 0.5em;
    top: 0;
    display: inline-block;
    width: 40px;
    height: 31px;
    background-image: url(../topimg/ranking-icon/no2.png);
    background-size: contain;
}

.flex_b.rank3::after {
    content: '';
    position: absolute;
    right: 0.5em;
    top: 0;
    display: inline-block;
    width: 40px;
    height: 31px;
    background-image: url(../topimg/ranking-icon/no3.png);
    background-size: contain;
}

.flex_b li img {
    display: inline-block;
    width: auto;
    height: 15.55px;
}

.plan_logo {
    width: 38%;
}

.plan_logo img {
    box-sizing: border-box;
    border: 1px solid #dddddd;
    border-radius: 8px;
}

.plan_contain {
    width: 60%;
    padding-left: 2%;
    line-height: 1.2;
    letter-spacing: 0;
}

.plan_conv li a {
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    padding: 26px 0;
    display: block;
    border-radius: 48px;
    width: 100%;
    text-align: center;
}

.plan_conv li {
    width: 47%;
}

.plan_conv ul {
    display: flex;
    justify-content: space-evenly;
}

body.top .plan_conv ul,
body.inu .plan_conv ul,
body.neko .plan_conv ul,
body.madoguchi .plan_conv ul,
body.kourei .plan_conv ul,
body.ranking .plan_conv ul {
    justify-content: space-between;
    align-items: center;
}

body.top .plan_conv li.plan_order,
body.inu .plan_conv li.plan_order,
body.neko .plan_conv li.plan_order,
body.madoguchi .plan_conv li.plan_order,
body.kourei .plan_conv li.plan_order,
body.ranking .plan_conv li.plan_order,
#company-ranking .plan_conv li.plan_order {
    width: 62%;
    height: 60px;
}

body.top .plan_conv li.plan_siryou,
body.inu .plan_conv li.plan_siryou,
body.neko .plan_conv li.plan_siryou,
body.madoguchi .plan_conv li.plan_siryou,
body.kourei .plan_conv li.plan_siryou,
body.ranking .plan_conv li.plan_siryou,
#company-ranking .plan_conv li.plan_siryou {
    width: 35.5%;
    height: 60px;
}

.plan_contain h3 {
    margin-top: 3px;
    font-size: 22px;
    background-color: inherit;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-left: 0;
}

.plan_table {
    margin: 10px 0;
}

.plan_table table {
    border: 2px solid #dddddd;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
}

.plan_table table {
    width: 100%;
    text-align: center;
    line-height: 1.0;
    letter-spacing: 0;
}

.plan_table table tbody th {
    vertical-align: middle;
    padding: 5px 0;
    background-color: #fff9e5;
    border-right: 2px solid #dddddd;
    border-bottom: 2px solid #dddddd;
}

.plan_table th {
    background: #fff9e5;
    font-size: 12px;
}

.plan_ul li {
    list-style-position: inside;
    list-style-image: url(../../../simulation/common/images/niku.png);
    font-size: 13px;
    font-weight: bold;
    margin-top: 4px;
    line-height: 1.5;
    padding-left: 2em;
    text-indent: -2em;
}

.plan_ul li {
    list-style-image: none;
    font-size: 13px;
    font-weight: normal;
    margin-top: 4px;
    line-height: 1.5;
    padding-left: 2em;
    text-indent: -1em;
    list-style-type: disc;
}

.plan_conv {
    margin-top: 20px;
}

.plan_conv li {
    width: 47%;
    height: 60px;
}

.plan_conv li a {
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    padding: 26px 0;
    display: flex;
    border-radius: 48px;
    width: 100%;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
}

.plan_conv .plan_siryou a {
    background: #0c02cc;
}

.plan_conv .plan_order a {
    background: -moz-linear-gradient(top, #ff0000, #cb0000);
    background: -webkit-linear-gradient(top, #ff0000, #cb0000);
    background: linear-gradient(to bottom, #ff0000, #cb0000);
}

body.top .plan_conv .plan_siryou a,
body.inu .plan_conv .plan_siryou a,
body.neko .plan_conv .plan_siryou a,
body.kourei .plan_conv .plan_siryou a,
body.madoguchi .plan_conv .plan_siryou a,
body.ranking .plan_conv .plan_siryou a,
#company-ranking .plan_conv .plan_siryou a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    font-size: 15px;
    background: #0c02cc;
}

body.top .plan_conv .plan_order a,
body.inu .plan_conv .plan_order a,
body.neko .plan_conv .plan_order a,
body.kourei .plan_conv .plan_order a,
body.madoguchi .plan_conv .plan_order a,
body.ranking .plan_conv .plan_order a,
#company-ranking .plan_conv .plan_order a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    font-size: 15px;
    line-height: 1.4;
    background: #ff0000;
}

body.top .plan_conv .plan_siryou a::before,
body.top .plan_conv .plan_order a::before,
body.inu .plan_conv .plan_siryou a::before,
body.inu .plan_conv .plan_order a::before,
body.neko .plan_conv .plan_siryou a::before,
body.neko .plan_conv .plan_order a::before,
body.kourei .plan_conv .plan_siryou a::before,
body.kourei .plan_conv .plan_order a::before,
body.madoguchi .plan_conv .plan_siryou a::before,
body.madoguchi .plan_conv .plan_order a::before,
body.ranking .plan_conv .plan_siryou a::before,
body.ranking .plan_conv .plan_order a::before,
#company-ranking .plan_conv .plan_order a::before,
#company-ranking .plan_conv .plan_siryou a::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    top: 50%;
    right: 7px;
    margin-top: -4px;
    transform: rotate(45deg);
}

.plan_conv .plan_order.sbipri a {
    background: gray;
    pointer-events: none;
}

.plan_table td {
    font-size: 12px;
    border-right: 2px solid #dddddd;
    border-bottom: none;
    line-height: 1.2em;
    padding: 15px 0 10px;
}

.plan_ul span {
    color: #ff5599;
}

.plan_table td span {
    font-size: 16px;
    font-weight: bold;
    margin-left: 5%;
}

.plan_table td .gendo {
    font-size: 9px;
    letter-spacing: -1px;
    display: block;
    color: #777;
}

.plan_table table tbody td {
    vertical-align: middle;
}

.plan_price span {
    font-size: 20px;
    font-weight: bold;
    margin-left: 3%;
    color: #ff0000;
    font-weight: bold;
}

.plan_box .flex_b a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -999px;
    z-index: 2;
}

.plan_table td img {
    width: 22% !important;
    display: inline-table;
    vertical-align: sub;
}

.note {
    margin-top: 10px;
    font-size: 11px !important;
    line-height: 1.4;
    padding-left: 1em;
    text-indent: -1em;
}

.plan_box .note {
    padding-left: 0;
    text-indent: -0;
}

.plan_table table tbody th:last-child,
.plan_table table tbody td:last-child {
    border-right: none;
}

.panel_area {
    padding: 0 !important;
    width: 100% !important;
}

.plan_box {
    background: #fff !important;
    border-bottom: 8px solid #fff2f6 !important;
    border-radius: 0 !important;
}

.plan_contain li {
    margin-right: 3px !important;
}

.red2 {
    color: red;
}

.plan_select,
.plan_select span {
    margin-top: 6px;
    font-size: 11px;
    color: #777;
}

.select_age {
    margin-left: 4px;
}

.tab_area label span {
    font-size: 16px;
}

.tab_area label img {
    margin-bottom: 5px;
}

/*...............plan_box end............*/

/*TOPページキャンペーン情報*/

/*全体*/
.hidden_box {
    width: 100%;
    margin: 10px 0;
    /*前後の余白*/
    padding: 0;
    text-align: center;
}

/*ボタン装飾*/
.hidden_box label {
    display: inline-block;
    width: 90%;
    padding: 15px 0;
    color: #fff;
    cursor: pointer;
    background: #A5D655;
    /*背景色*/
    border-bottom: solid 2px #769a3d;
    /*少し濃い目の色に*/
    border-radius: 4px;
    /*角の丸み*/
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
    font-weight: bold;
}

.hidden_box label:before,
.hidden_box label:after {
    content: '';
    /*何も入れない*/
    display: inline-block;
    margin: 0 5px;
    /*忘れずに！*/
    width: 25px;
    /*画像の幅*/
    height: 25px;
    /*画像の高さ*/
    background-image: url(../img/cpn_icon.png);
    background-size: contain;
    vertical-align: middle;
}

/*チェックは見えなくする*/
.hidden_box input {
    display: none;
}

/*中身を非表示にしておく*/
.hidden_box .hidden_show {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

.hidden_box .hidden_show .plan_ul,
.hidden_box .hidden_show .note {
    text-align: left;
}

.hidden_box .hidden_show .plan_ul {
    margin-bottom: 12px;
}

.hidden_box .hidden_show .note {
    margin-bottom: 10px;
}

.op_plus {
    position: relative;
    top: -50%;
    right: -20%;
}

.op_plus::before,
.op_plus::after {
    content: '';
    display: block;
    width: 12px;
    height: 2px;
    border-radius: 5px;
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.op_plus::after {
    transform: translateY(-50%) rotate(90deg);
    transition: 0.5s;
}

/*クリックで中身表示*/
.hidden_box input:checked~.hidden_show {
    padding: 10px 0;
    height: auto;
    opacity: 1;
}

.hidden_box input:checked+label>.op_plus::after {
    transform: rotate(0);
    transition: 0.5s;
}



/*キャンペーン一覧ページ*/

.cam_wrap {
    width: 100%;
}

.cam_box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.cam_box:after {
    content: '';
    margin-top: 20px;
    border-bottom: 1px solid #ddd;
}

.cam_box figure {
    margin: auto;
    padding: 0;
    text-align: center;
}

.cam_box figure img {
    max-width: 100%;
    height: auto;
}

.cam_box h4 {
    margin: 10px 0;
    text-align: left;
}

.cam_box .lottery {
    margin: 10px 0;
    font-size: .8rem;
}

.cam_box .lottery span {
    display: inline-block;
    margin: 5px 0;
    padding: 6px;
    background: #ff0b5b;
    color: #fff;
}

.cam_box h5 {
    font-size: .9rem;
}

.cam_box .period {
    font-size: .8rem;
}

.cam_box .period p {
    color: red;
}

.cam_box a {
    text-decoration: none;
    color: #333;
}

.cam_box .btn_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 15px;
}

.cam_box .btn {
    position: relative;
    width: 49%;
    height: 60px;
    border-radius: 18px;
    box-sizing: border-box;
    background: red;
}

.cam_box .btn:after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(135deg);
    position: absolute;
    right: 10px;
    top: 26px;
}

.cam_box .btn a {
    display: inline-block;
    width: 100%;
    height: 100%;
    margin: auto;
    color: #fff;
    font-size: .9em;
    font-weight: bold;
    text-align: center;
}

.cam_box .order_btn {
    padding-top: 16px;
    background: linear-gradient(to bottom, #ff0000, #cb0000);
    box-shadow: 0px 5px 0 #8e0000;
}

.cam_box .shiryou_btn {
    padding-top: 20px;
    background: linear-gradient(to bottom, #0097cd, #0c02cc);
    box-shadow: 0px 5px 0 #0000a0;
}

.cam_box .shiryou_btn.none {
    background: gray;
    box-shadow: 0 5px 0 gray;
}

.cam_box .shiryou_btn.none a {
    pointer-events: none;
}


/*----------------------------------------------------------------------	
取扱保険会社一覧リニューアル	
------------------------------------------------------------------------*/
.insurance_wrap {
    margin-top: 40px;
}

.company {
    background: #fff;
    border: 0;
    border-radius: 0px;
    margin: 0 auto;
    padding: 0 10px;
}

.insurance_wrap .company:first-child::before,
.insurance_wrap .company::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #FF3460;
}

.insurance_wrap .company::before {
    margin-bottom: 20px;
}

.insurance_wrap .company::after {
    margin: 20px 0;
}

.company span {
    margin-right: 0;
}

.company .name {
    width: 100%;
    margin: 0 0 20px 0;
}

.company .name h3 {
    display: inline-block;
    width: 71%;
    margin: 0 0 0 3px;
    padding: 0;
    background: #fff;
    color: #333;
    font-size: 18px;
    text-align: left;
}

.company .name img,
.company .name h3 {
    vertical-align: middle;
}

.company .name img {
    width: 25%;
    margin-bottom: 0;
}

.company dl {
    font-size: 14px;
}

.company dt {
    float: left;
}

.company dd {
    margin-left: 15%;
}

/*safari用 */
.company dt,
.company dd {
    min-height: 24px;
    line-height: 24px;
}

.insurance_wrap .company .more a,
.ex_content .company .more a {
    color: #FFF;
    font-size: 27px;
    background: #FB365E;
    border-bottom: 4px solid #b42643;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
}

.insurance_wrap .company .more a:active {
    border-bottom: 4px solid #FB365E;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}

/*----------------------------------------------------------------------	
犬猫比較 バナー	
------------------------------------------------------------------------*/
.bnr_area {
    margin: 10px 10px 0 10px;
}

/*----------------------------------------------------------------------
Q&Aページ リニューアル
------------------------------------------------------------------------*/
.faq_wrap {
    width: 95%;
    margin: auto;
}

.faq_h3 {
    margin: 15px 0 5px 0;
    padding: 15px 0 15px 8px;
    background: #f2f2f2;
    border-bottom: 0;
    color: #333;
}

/*ボックス全体*/
.faqbox {
    margin: .6em 0 1.8em;
    padding: 0;
    max-width: 100%;
    /*最大幅*/
    font-size: 14px;
}

/*ラベル*/
.faqbox label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    margin-top: 1px;
    padding-right: 28px;
    color: #333;
    background: #ffebf1;
    cursor: pointer;
    transition: all 0.5s;
}

.faqbox label:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: #f2608d 2px solid;
    border-right: #f2608d 2px solid;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 15%;
    margin: auto;
}

/*チェックは隠す*/
.faqbox input {
    display: none;
}

/*中身を非表示にしておく*/
.faqbox .faqshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.cssacc:checked+label+.faqshow {
    height: auto;
    background: #fff;
    opacity: 1;
}

/*開いた状態の矢印描画*/
.cssacc:checked+label:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: #f2608d 2px solid;
    border-right: #f2608d 2px solid;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    right: 10px;
    top: 7%;
    bottom: 0;
    margin: auto;
}

.answer_area {
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    background: #f2f2f2;
}

.answer_no {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 50px;
    height: 100%;
}

.answer_txt {
    width: 100%;
    background: #fff;
    color: #333;
    padding: 15px 10px;
    line-height: 1.7;
}

.number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 15px 0;
    margin-right: 10px;
    width: 50px;
    height: 100%;
    background: #ffc2d2;
    color: #fff;
    text-align: center;
}

.answer_txt table {
    table-layout: fixed;
    margin-top: 10px;
    border: 1px solid #ddd;
}

.answer_txt table tr:nth-child(odd) th,
.answer_txt table tr:nth-child(odd) td {
    background: #fff5f9;
}

.answer_txt table th {
    width: 43%;
    vertical-align: middle;
    border-right: 1px solid #ddd;
}

.answer_txt table th,
.answer_txt table td {
    padding: 8px;
    text-align: left;
}

.answer_txt table .note {
    padding-left: 0;
    text-indent: 0;
}

.inu .faq_link,
.neko .faq_link {
    width: 100%;
    margin: 0 auto;
    font-size: 14px;
    text-align: center;
}


/*----------------------------------------------------------------------
犬猫比較 バナー
------------------------------------------------------------------------*/
.bnr_area {
    margin: 10px;
    text-align: center;
}

.inu .hikaku,
.neko .hikaku {
    margin-top: 0;
}


/*----------------------------------------------------------------------
hikaku02 リニューアル
------------------------------------------------------------------------*/
.example_wrap {
    margin-bottom: 40px;
}

.example {
    width: 98%;
    margin: 0 auto 60px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #FFDEE5;
    line-height: 1.6;
}

.example .logo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 180px;
    margin: auto;
    text-align: center;
    vertical-align: middle;
}

.example .logo img {
    width: 70%;
}

.example .ex_plan {
    display: inline-block;
    margin: 6px 0 10px;
    padding: 8px;
    background: #ea5a86;
    color: #fff;
}

.ex_content .ex_content_ttl {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.ex_content .ex_content_ttl p {
    font-size: 16px;
    font-weight: bold;
}

.ex_content .ex_content_ttl img {
    display: inline-block;
    width: 38%;
    margin-right: 10px;
    border: 2px solid #ffcfd9;
}

.ex_content_sick {
    margin-bottom: 16px;
}

.ex_content_sick table {
    width: 94%;
    margin: auto;
    font-size: 14px;
    text-align: left;
}

.ex_content_sick table th,
.ex_content_sick table td {
    padding: 8px 0;
    border-bottom: 1px solid #ffcfd9;
}

.ex_content_sick table th {
    width: 16%;
    color: #f07197;
}

.ex_content_cost {
    width: 94%;
    margin: auto;
    padding: 0 10px;
    font-size: 14px;
    box-sizing: border-box;
    border: 2px solid #ea5a86;
}

.ex_content_cost .cost {
    display: inline-block;
    width: 36%;
    margin-right: 18px;
    padding: 4px 8px;
    font-size: 16px;
    background: #ffece8;
    color: #000;
    text-align: center;
}

.ex_content_cost .pink {
    color: #ea5a86;
}

.ex_content_cost ul li {
    padding: 10px 0;
}

.ex_content_cost ul li:not(:last-child) {
    border-bottom: 1px solid #bbb;
}

.ex_content_cost ul .price {
    font-size: 20px;
    font-weight: bold;
}

.example .more a {
    color: #fff;
    text-align: center;
    width: 80%;
    margin: 16px auto 8px;
    display: block;
    text-decoration: none;
    font-weight: bold;
    font-size: 27px;
    border-radius: 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    background: #FB365E;
    border-bottom: 4px solid #b42643;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
}

.example .more a:active {
    border-bottom: 4px solid #FB365E;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}


/*----------------------------------------------------------------------
豆知識一覧ページ
------------------------------------------------------------------------*/
.mamechishiki_list .thum img {
    width: 80%;
    height: 107px;
    margin: 10px;
    -o-object-fit: cover;
    object-fit: cover;
}


.mamechishiki_list li {
    box-sizing: border-box;
    float: left;
    width: 50%;
    height: 20em;
    text-align: center;
    padding-top: 1em;
    padding-right: 0.5em;
    padding-bottom: 1em;
    padding-left: 0.5em;
}

.mamechishiki_list li:nth-child(even) {
    border-left: none;
}

.mamechishiki_list li:nth-child(n+3) {
    border-top: none;
}

.mamechishiki_list a img {
    margin-top: 10px;
}

/*----------------------------------------------------------------------
TOP比較表　PR枠
------------------------------------------------------------------------*/
.pr_label {
    display: inline-block;
    padding: 2px 14px;
    background: #BAC0C1;
    color: #fff;
    font-size: 17px;
}

.pr_box {
    background: #FFF4E5 !important;
    padding: 4px 2px 20px;
}

.pr_box .plan_table td {
    background: rgba(255, 255, 255, 0.5);
}

.pr_feature {
    width: auto;
    font-size: 13px;
}

.pr_feature label {
    position: relative;
    display: block;
    width: 35%;
    padding-bottom: 3px;
    margin: 5px auto 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    border-bottom: 1px solid #ff5599;
}

.pr_feature label:before {
    font-family: 'FontAwesome';
    content: ' \f067';
    padding-right: 5px;
    color: #ff5599;
}

.pr_feature input:checked~label:before {
    font-family: 'FontAwesome';
    content: ' \f068';
    color: #ff5599;
}

.pr_feature input {
    display: none;
}

.pr_feature .pr_container {
    position: relative;
    z-index: 10;
    overflow: hidden;
    height: 0;
    margin-top: -1px;
    transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
    background: #FFF4E5 !important;
}

.pr_feature input:checked~div {
    transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
}

/* 続きを読むを押すと表示されるテキストの高さ */
.pr_feature input:checked~div.pr_container {
    height: auto;
    margin-bottom: 10px;
}


/*----------------------------------------------------------------------
犬猫比較 人気の犬種/猫腫
------------------------------------------------------------------------*/

.pop teble {
    width: 100%
}

.pop th {
    width: 50%;
    vertical-align: middle;
}

.pop tr:last-child th {
    border-bottom: 1px solid #333;
}

/*----------------------------------------------------------------------
TOP比較表 アクサ
------------------------------------------------------------------------*/
.axa_ul {
    width: 60%;
    margin-left: 8px;
    box-sizing: border-box;
}

/*----------------------------------------------------------------------
豆知識フッターメニュー（SP）アコーディオン
------------------------------------------------------------------------*/
.mamechishiki_menu {
    width: 96%;
    margin: 28px auto;
}

.mamechishiki_menu h3 {
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 12px;
    padding: s 16px !important;
}

.mamechishiki_section {
    border: 1px solid #f1e4dd;
    border-radius: 8px;
    background: #fff;
    margin: 0 0 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.mamechishiki_toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #fffaf4;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #494949;
    text-align: left;
}

.mamechishiki_toggle_icon {
    width: 10px;
    height: 10px;
    border-right: 2px solid #c75b70;
    border-bottom: 2px solid #c75b70;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.mamechishiki_section.is-collapsed .mamechishiki_toggle_icon {
    transform: rotate(-135deg);
}

.mamechishiki_body {
    padding: 0 6px 10px;
    background: #fff;
}

.mamechishiki_section.is-collapsed .mamechishiki_body {
    display: none;
}

.mamechishiki_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mamechishiki_list li {
    border: 1px solid #f3e7e1;
    width: 100%;
    float: none;
    height: auto;
    border-left: none;
    border-right: none;
    padding: 0;
    box-sizing: border-box;
}

.mamechishiki_list li:last-child {
    border-bottom: none;
}

.mamechishiki_list li a {
    position: relative;
    display: block;
    padding: 12px 16px 12px 44px;
    color: #ff3366;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

.mamechishiki_list li a::before {
    content: '▶';
    position: absolute;
    left: 18px;
    top: 18px;
    font-size: 10px;
    color: #ff8ca7;
}

.mamechishiki_list li a.is-single-line::before {
    top: 50%;
    margin-top: -5px;
}

.mamechishiki_list li a:hover {
    background: rgba(255, 51, 102, 0.08);
}

.mamechishiki_banner {
    margin: 12px auto;
    text-align: center;
}

/*----------------------------------------------------------------------
ペット＆ファミリー損保詳細ページ
------------------------------------------------------------------------*/

.tokucho_box h4 {
    margin-bottom: 3% !important;
    color: #ea4856 !important;
    font-size: 1.2em !important;
}

.tokucho_box h5 {
    margin-bottom: 20px;
    text-align: center !important;
}

.tokucho_box img {
    display: inline-block;
    margin-bottom: 10px;
}


.kourei .tab_wrap {
    margin-top: 20px;
}

.kourei .tab_area {
    text-align: center;
}

.kourei .plan_box p.note {
    font-size: 10px !important;
}

.kourei .tab_area label {
    width: 46%;
}

/*----------------------------------------------------------------------
高齢&窓口ページデザイン変更
------------------------------------------------------------------------*/
.madoguchi .tab_wrap,
.kourei .tab_wrap {
    margin-top: 20px;
}

.madoguchi .tab_area,
.kourei .tab_area {
    text-align: center;
}

.madoguchi .plan_box p.note,
.kourei .plan_box p.note {
    font-size: 10px !important;
}

.madoguchi .tab_area label,
.kourei .tab_area label {
    width: 46%;
}

.cp_box {
    width: auto;
    font-size: 13px;
}

.cp_box label {
    position: relative;
    display: block;
    width: 35%;
    padding-bottom: 3px;
    margin: 15px auto;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    border-bottom: 1px solid #ff5599;
}

.more_icon:before,
.more_icon:after {
    content: '';
    display: block;
    width: 12px;
    height: 3px;
    border-radius: 5px;
    background: #ff5599;
    position: absolute;
    left: 14px;
    top: 35%;
    transform: translateY(-50%);
}

.more_icon:after {
    transform: translateY(-50%) rotate(90deg);
    transition: 0.5s;
}

.more_icon.active::after {
    transform: rotate(0);
    transition: 0.5s;
}

/* 
.active::after {
  transform: rotate(0);
  transition: 0.5s;
}

.cp_box label:before {
    font-family: 'FontAwesome';
    content: ' \f067';
    padding-right: 5px;
    color: #ff5599;
}

.cp_box input:checked~label:before {
    font-family: 'FontAwesome';
    content: ' \f068';
    color: #ff5599;
} */

.cp_box input {
    display: none;
}

.cp_box .cp_container {
    position: relative;
    z-index: 10;
    overflow: hidden;
    height: 0;
    margin-top: -1px;
    transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
    background: rgba(255, 255, 255, 0.5);
}

.cp_box input:checked~div {
    transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
}

/* 続きを読むを押すと表示されるテキストの高さ */
.cp_box input:checked~div.cp_container {
    height: auto;
    margin-bottom: 10px;
}

.top_hidden_box table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    font-size: 13px;
}

.top_hidden_box table th {
    background-color: #ffebf1;
}

.top_hidden_box table th,
.top_hidden_box table td {
    padding: 10px 6px;
    border: solid 1px #ddd;
    vertical-align: middle;
}

.small {
    font-size: 11px;
}

.bold {
    font-weight: bold;
}

.plan_ul .note {
    padding-left: 5px;
}

/*----------------------------------------------------------------------
ランキングリニューアル
------------------------------------------------------------------------*/
#ranking .txtbox {
    padding: 10px;
}

.rankt a {
    text-decoration: none;
}

.rankt h4 {
    color: #333;
}

.rankt .arrow_r {
    position: relative;
    display: inline-block;
    color: #ffa500;
    text-decoration: none;
}

.rankt .arrow_r:before {
    content: '';
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 4px #ddd;
    border-right: solid 4px #ddd;
    position: absolute;
    top: 50%;
    right: -5%;
    margin-top: -4px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#ranking .update {
    display: flex;
    justify-content: flex-end;
    margin: 8px 0 0;
    padding: 0 1em;
    font-size: 12px;
}

.ranking__lead {
    margin-top: 12px;
    margin-bottom: 12px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 12px;
    line-height: 1.4;
    color: #333;
}

.rank_item {
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    border: 2px solid #ff3860;
}

.rank_list .rank_item:not(:last-child) {
    margin-bottom: 24px;
}

#ranking .plan_box {
    border-bottom: none !important;
}

#ranking .plan_box .headlines {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    padding: 6px;
    background: #eee;
}

#ranking .ranking_number {
    display: inline-block;
    width: 14%;
    height: auto;
    margin-right: 2.5%;
    vertical-align: middle;
}

.item_title {
    width: auto;
    min-width: 58%;
    line-height: 1.2;
    letter-spacing: -1px;
}

.item_title span.name {
    display: block;
    margin-left: 10px;
    margin-bottom: 3px;
    font-size: 12px;
}

#ranking .plan {
    font-size: 14px !important;
    letter-spacing: 0px;
}

#ranking .table_of_contents {
    margin: 10px 10px 20px;
    padding: 20px 6px;
    border: 1px solid #f13661;
    border-radius: 4px;
}

.table_of_contents a {
    font-size: 14px;
    letter-spacing: -1px;
}

.table_of_contents .contents_icon {
    display: inline-block;
    width: auto;
    margin-right: 6px;
    padding: 4px 10px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    color: #fff;
}

.table_of_contents .normal_icon {
    display: inline-block;
    width: 40px;
    text-align: center;
    font-size: 14px;
}

.table_of_contents li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.table_of_contents li a {
    display: inline-block;
    line-height: 1.4;
}

.table_of_contents li:not(:last-child) {
    margin-bottom: 6px;
}

.table_of_contents li:first-child .contents_icon {
    background: #f53662;
}

.table_of_contents li:nth-child(2) .contents_icon {
    background: #f19149;
}

.table_of_contents li:nth-child(3) .contents_icon {
    background: #f8b551;
}

/* #ranking .plan_box {
    padding: 0;
} */

/* #ranking .plan_price,
#ranking .new_note,
#ranking .plan_select,
#ranking .senior {
    display: none;
} */

.item_content .logo {
    display: flex;
    align-items: center;
    width: 98px;
    height: 50px;
    margin-right: 10px;
    border: 1px solid #d2d2d2;
}

.item_content .logo img {}

.item_features {
    width: 75%;
    font-size: 12px;
}

.features_list {
    margin-bottom: 20px;
    list-style: none;
    line-height: 1.68;
    list-style-position: inside;
}

.rank_item .features_list:last-child {
    margin-bottom: 0px;
}

.toggle_title {
    position: relative;
    margin: 0;
    padding: 0 0 0 10px;
    cursor: pointer;
    transition: 0.3s;
}

.toggle_title::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #aaa;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    margin-top: -18px;
}

.toggle_title:after {
    content: '';
    width: 5px;
    height: 5px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    top: 50%;
    right: 52.5%;
    margin-top: -13px;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
}

.toggle_title.selected:after {
    transform: translateY(40%) rotate(-45deg);
    transition: 0.2s;
}

.toggle_txt {
    display: none;
    padding-top: 10px;
}

.rank_item .plan_conv {
    margin: 10px 0 6px;
}

.rank_item .plan_conv li a {
    padding: 14px 0;
    font-weight: normal;
}

.ranking_area {
    text-decoration: none;
}

.ranking_mv {
    margin-bottom: 10px;
    border: 1px solid #F43561;
    padding: 0;
    text-align: center;
    background-color: #f7eaed;
}

.ranking_mv .ranking_mv_t3 {
    font-weight: bold;
}

.ranking_mv .ranking_mv_t1 {
    display: block;
    font-weight: bold;
    background-color: #F43561;
    color: #fff;
    padding: 1.8% 3%;
}

.ranking_mv h2.ranking_mv_t2,
.ranking_mv p.ranking_mv_t2 {
    background: transparent;
    margin: 0 0 10px;
    font-weight: bold;
    color: #F43561;
    font-size: 2em;
    line-height: 1.4;
}

.ranking_mv .ranking_mv_t2 span {
    display: block;
    font-size: 0.8em;
}

.ranking_mv .ranking_mv_t3 {
    color: #333;
    font-weight: bold;
    font-size: 0.8em;
}

.ranking_mv .ranking_mv_bnr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    margin: 2% auto 0;
    width: 100%;
    background-color: #fff;
    padding: 2% 5px;
}

.ranking_mv .ranking_mv_bnr img {
    width: 7.5%;
    height: 100%;
}

/*----------------------------------------------------------------------
トップパネル修正
------------------------------------------------------------------------*/

/*
#tab_fixed .tab_area {
position: sticky;
z-index: 999;
top: 0;
background: #fff;
font-size: 0;
border-bottom: solid 1px #ddd;
}
*/

.tab_area label {
    padding: 10px 0;
}

.tab_area label img {
    max-width: 28px;
}

/*----------------------------------------------------------------------
TOP修正
------------------------------------------------------------------------*/

/*・キャンペーンbox小さく*/
.hidden_box label {
    padding: 6px 0;
}


/*・キャンペーンbox開閉時の無駄パディング消し*/
.hidden_box input:checked~.hidden_show {
    padding: 15px 0 0 0;
}

/*・CVボタンの上マージン開けすぎ*/
.plan_conv {
    margin-top: 15px;
}

/*・月払い保険料の文字サイズ上げ、マージン調整*/
.plan_price span {
    font-size: 24px;
    margin-left: 1%;
}

/*・注記の文字サイズ下げ、上マージンいらない*/
.plan_select,
.plan_select span {
    font-size: 10px !important;
    margin-top: 0px;
}

/*・コンテンツboxのサイズ小さく*/
.plan_box {
    padding: 15px 2%;
}

/*・小さくて読みにくいのため、会社のロゴ右側を大きく*/
.plan_contain {
    width: 62%;
}

/*・会社ロゴがあるため、社名は小さくてOK*/
.plan_contain h3 {
    font-size: 13px;
    padding-top: 5px;
}

/*・プラン名大きく*/
.plan_name {
    font-size: 16px !important;
}

/*・保険料に上マージン入れて*/
.plan_price {
    margin-top: 3px;
}

/*・PS保険の説明文「膝蓋骨脱臼・椎間板ヘルニア・ガン・歯科治療」の※調整
.smallに適当にclassつけて*/
.asterisk {
    color: #777;
    font-size: 10px;
    vertical-align: top;
}

/*・注記は小さく、色はグレー統一で*/
.note {
    font-size: 10px !important;
    color: #777;
}

.plan_contain .new_note {
    font-size: 10px !important;
    color: #777;
}


/*----------------------------------------------------------------------
豆知識リニューアル「ペットコラム」
------------------------------------------------------------------------*/

#pet_column {
    font-family: 'ヒラギノ丸ゴ ProN', 'Hiragino Maru Gothic ProN', 'HG丸ｺﾞｼｯｸM-PRO', 'HGMaruGothicMPRO';
    text-align: left;
    color: #333;
    width: 100%;
    margin: auto;
    line-height: 1.43;
    letter-spacing: 0.06em;
}

#pet_column h1 {
    width: 100%;
    background: #ff3861;
    color: #fff;
    font-size: 24px;
    margin: 6px auto 14px;
    padding: 30px 0;
    text-align: center;
    line-height: 1.05;
}

#pet_column .contain {
    width: 94%;
    margin: auto;
}

#pet_column .contain p {
    line-height: 1.6;
}

#pet_column .mamechishiki_tab {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


#pet_column .tab_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#pet_column .tab_wrap li {
    position: relative;
    width: 25%;
    height: auto;
    margin: 22px 0;
    padding: 12px 0;
    background: #eee;
}

#pet_column .tab_wrap h2 {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    height: 100%;
    background-color: transparent;
    color: #888;
    font-family: 'Hiragino Kaku Gothic Pro W6', 'ヒラギノ角ゴ Pro W6',
        Meiryo, メイリオ, sans-serif;
    font-size: 13px;
    text-align: center;
    letter-spacing: -1px;
    line-height: 1.6;
}

#pet_column .tab_wrap li:not(:last-child) {
    margin-right: 2px;
}

#pet_column .tab_wrap li:hover {
    cursor: pointer;
}

#pet_column .tab_wrap li.active {
    background: #ff3861;
}

#pet_column .tab_wrap li.active h2 {
    color: #fff;
}

#pet_column .tab_wrap li.active:after {
    top: 92%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-top-color: #ff3861;
    border-width: 12px;
    margin-left: -12px;
}


#pet_column .tab_wrap li img {
    display: block;
    margin: auto;
    width: 28%;
}

#pet_column .mamechishiki_tab_content {
    width: 94%;
    margin: auto;
}

#pet_column .mamechishiki_tab_content a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    text-decoration: none;
}

#pet_column .mamechishiki_tab_content ul {
    display: none;
}

#pet_column .mamechishiki_tab_content .show {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 16px;
}

#pet_column .mamechishiki_tab_content .show li {
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35);
}

#pet_column .thum {
    width: 100%;
}

#pet_column .thum img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#pet_column .column_data {
    width: 100%;
    padding: 10px;
    line-height: 0;
}

#pet_column .date {
    display: inline-block;
    margin-bottom: 4px;
    color: #ff3861;
    font-size: 0.75rem !important;
    font-weight: bold;
    line-height: 1.1;
}

#pet_column h3.ttl {
    margin: 0;
    padding: 0;
    background: none;
    border: 0;
    color: #333;
    font-size: 16px;
    line-height: 1.43;
    letter-spacing: -1px;
    font-size: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    min-height: 2.5em;
    line-height: 1.5;
}

#kiji .plan_conv {
    margin-bottom: 20px;
}

#kiji .plan_conv li {
    width: 100%;
}

#kiji .plan_conv li a {
    padding: 34px 0;
    font-size: 18px;
}

/*----------------------------------------------------------------------	
SPトップ　比較表検索窓リニューアル	
------------------------------------------------------------------------*/
/* .top p#key_img,
.inu h1#key_img,
.neko h1#key_img {
    width: 94%;
    margin: auto;
} */

.inu .key_wrap,
.neko .key_wrap {
    width: 100%;
    height: 0;
    padding-top: 28.5%;
    position: relative;
}

.inu h1#key_img {
    position: absolute;
    width: 98%;
    height: auto;
    top: 6.9%;
    left: 1%;
}

.neko h1#key_img {
    position: absolute;
    width: 98%;
    height: auto;
    top: 16.5%;
    left: 1%;
}

.search_c {
    width: 100%;
    padding: 12px 0;
    border-radius: 10px 10px 0 0;
    text-align: center;
    font-size: 20px !important;
    font-weight: bold;
    color: #fff;
    background: #ea5a86;
}

.top .search_c,
.inu .search_c,
.neko .search_c {
    padding: 12px 0 12px;
    font-size: 18px !important;
}

.search_c span {}

.select_wrap {
    box-sizing: border-box;
    margin-bottom: 10px;
    text-align: center;
}

.select_wrap .select_box {
    position: relative;
    display: inline;
}

.select_wrap #dynatable-type {
    width: 68%;
    margin-right: 1px;
}

.select_wrap #dynatable-age {
    width: 29%;
}

.select_wrap .select_box::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    right: 8%;
    top: 5px;
    border-bottom: #666 2px solid;
    border-right: #666 2px solid;
    -webkit-transform: rotate(45deg) translateY(-30%);
    -ms-transform: rotate(45deg) translateY(-30%);
    transform: rotate(45deg) translateY(-30%);
}

.select_wrap select {
    height: 55px;
    border: none;
    border-radius: 10px;
    background: #ffeeee;
}

#wrap #search_box {
    /*    padding: 10px;*/
    background: #fff;
}

#search_box .search_box_inner {
    border: 4px solid #ea5a86;
    border-top: none;
}

select {
    outline: none;
    text-indent: 1em;
    text-overflow: '';
    background: none transparent;
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    -webkit-appearance: none;
    /* ベンダープレフィックス(Google Chrome、Safari用) */
    -moz-appearance: none;
    /* ベンダープレフィックス(Firefox用) */
    appearance: none;
    /* 標準のスタイルを無効にする */
}

::-ms-expand {
    /* select要素のデザインを無効にする（IE用） */
    display: none;
}

.switch_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.switch_area li {
    width: 49%;
}

/*----------------------------------------------------------------------
ライター募集
------------------------------------------------------------------------*/
.writer {
    padding: 5%;
}

.writer dt {
    background-color: #f7f7f7;
    color: #e84061;
    padding: 4%;
    font-weight: bold;
    text-align: center;
}

.writer dd {
    margin: 0;
    padding: 2%;
    line-height: 1.8em;
}

/*----------------------------------------------------------------------
TOPもっと見る
------------------------------------------------------------------------*/

.top_hidden_box {
    width: 100%;
    margin: 10px 0;
    /*前後の余白*/
    padding: 0;
    text-align: center;
}

/*ボタン装飾*/
.top_hidden_box label {
    display: inline-block;
    width: 35%;
    padding: 6px 0;
    border-bottom: 1px solid #ff5599;
    color: #333;
    cursor: pointer;
}

/*チェックは見えなくする*/
.top_hidden_box input {
    display: none;
}

/*中身を非表示にしておく*/
.top_hidden_box .hidden_show {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

.top_hidden_box .hidden_show .plan_ul,
.top_hidden_box .hidden_show .note {
    text-align: left;
}

.top_hidden_box .hidden_show .plan_ul {
    margin-bottom: 12px;
}

.top_hidden_box .hidden_show .note {
    margin-bottom: 10px;
}

.top_hidden_box .op_plus {
    position: relative;
    top: -50%;
    left: -75%;
}

.top_hidden_box .op_plus::before,
.top_hidden_box .op_plus::after {
    content: '';
    display: block;
    width: 10px;
    height: 2px;
    border-radius: 5px;
    background-color: #333;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.top_hidden_box .op_plus::after {
    transform: translateY(-50%) rotate(90deg);
    transition: 0.5s;
}

/*クリックで中身表示*/
.top_hidden_box input:checked~.hidden_show {
    padding: 10px 0;
    height: auto;
    opacity: 1;
}

.top_hidden_box input:checked+label>.op_plus::after {
    transform: rotate(0);
    transition: 0.5s;
}

/*----------------------------------------------------------------------
シミュレーションアイコン
------------------------------------------------------------------------*/

.simu_icon {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 0;
    z-index: 100;
}

.simu_icon a {
    display: block;
    padding: 18px 0 16px 11px;
    width: 100%;
    height: 100%;
    color: #fff;
    box-sizing: border-box;
    text-decoration: none;
}

.simu_icon img {
    max-width: 120px;
    -webkit-filter: drop-shadow(0px 0px 4px #ddd);
    filter: drop-shadow(0px 0px 4px #ddd);
}

/*----------------------------------------------------------------------
TOPページ モーダル
------------------------------------------------------------------------*/
/* モーダルCSS */
.openModal .pink {
    color: #FF3366;
}

.modalArea {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.modalBg {
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.9);
}

.modalWrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 70%;
    max-width: 500px;
    padding: 60px 30px;
    background-color: #fff;
}

.modalWrapper.modal01Wrap {
    max-width: 100%;
    max-height: 450px;
    overflow: auto;
}

.modal_cpnTitle {
    width: 100%;
}

.modal_cpnTitle img {
    display: inline-block;
    width: 100%;
}

.closeModal {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    cursor: pointer;
}

.openModal {
    margin: 10px 0;
    padding: 0;
    background: #fff;
    border: none;
    font-size: 14px;
}

.mv_cpnBnr.openModal {
    background: none;
}

.openModal:hover {
    cursor: pointer;
}

.openModal:focus {
    outline: 0;
}

.modalArea .ttl {
    margin-bottom: 10px;
    font-weight: bold;
}

.modalArea p:last-child {
    margin-top: 10px;
}

.exclamation {
    width: 16px;
    vertical-align: text-bottom;
}

.modalContents dt {
    float: left;
}

.modalContents dd {
    margin-left: 68px;
}

button[data-target='modal01'] {
    margin-top: 4px;
    padding: 4px 20px;
    border-radius: 16px;
}

.header_10th {
    display: inline-block;
    width: 14%;
}

/*----------------------------------------------------------------------
広告掲載募集
------------------------------------------------------------------------*/
.ad_tit {
    font-weight: bold;
    margin: 20px auto;
    background-color: #efefef;
    padding: 10px;
}

.ad_txt {
    width: 90%;
    margin: 0 auto;
    line-height: 1.5;
}

.ad_contact {
    width: 90%;
    margin: 0 auto;
    line-height: 1.5;
}

.ad_contact .left_ad ul {
    margin: 10px;
}

.ad_contact .left_ad li {
    list-style-type: decimal;
    list-style-position: inside;
    font-size: 0.9em;
}

.ad_contact .right_ad {
    border: 2px solid #d93c5c;
    padding: 20px 0;
}

.right_ad div {
    text-align: center;
}

.right_ad div p:nth-child(2)::before {
    content: "";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    content: '\f0e0';
    font-weight: 900;
    padding-right: 10px;

}

.right_ad div p:nth-child(2),
.right_ad div p:nth-child(2) a {
    font-weight: bold;
    color: #d93c5c;
}

#simuBnr_area {
    position: absolute;
}

.simu_icon {
    position: fixed;
    top: 110px;
    height: 136px;
    box-sizing: border-box;
    width: 39px;
    margin: 0;
    background-color: #ff5599;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 2px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    transition: all .3s;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

.simu_icon span {
    display: inline-block;
    padding-right: 10px;
}

/*----------------------------------------------------------------------
10周年キャンペーンアイコン
------------------------------------------------------------------------*/
.cpn10th_icon {
    margin: 12px 0;
}


/*----------------------------------------------------------------------
サイトマップ
------------------------------------------------------------------------*/
.sitemap h2 {
    background-color: #fff4f6;
    padding: 3% 0;
    text-indent: 10px;
    font-size: 1.2em;
    color: #e73f60;
    border-bottom: solid 3px #efefef;
    position: relative;
    margin: 0;
}

.sitemap h2:after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 3px #e73f60;
    bottom: -3px;
    width: 20%;
}

.sitemap h3 {
    padding: 3% 2%;
    text-align: center;
    font-size: 1em;
    margin-bottom: 2%;
    color: #e73f60;
    display: block;
}

.sitemap h4 {
    font-size: 1em;
    padding: 3% 0;
    margin-bottom: 2%;
    color: #e73f60;
    background-color: #f6f6f6;
}

.sitemap h4::before {
    content: "";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    content: '\f14b';
    font-weight: 900;
    padding-right: 10px;
    padding-left: 10px;
}

.sitemap .sitemap_list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 5% 0;
}

.sitemap .sitemap_list li {
    width: 48%;
    font-size: 0.9em;
    color: #f60;
    padding-bottom: 3%;
}

.sitemap .sitemap_list li a {
    color: #f60;
    line-height: 1.4;
}

.sitemap .sitemap_list li::after {
    content: "";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    content: '\f105';
    font-weight: 900;
    padding-left: 10px;
}

/*----------------------------------------------------------------------
口コミ voice
------------------------------------------------------------------------*/
.company_detail.voice_box {
    margin-bottom: 50px;
}

.voice_post {
    width: 90%;
    margin: 0 auto;
}

.voice_post p {
    font-size: 0.9em;
    color: #e67c92;
}

.voice_post p.cat::before {
    font-size: 2em;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #e67c92;
    content: "\f6be";
    margin-right: 10px;
}

.voice_post p.dog::before {
    font-size: 2em;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #e67c92;
    content: "\f6d3";
    margin-right: 10px;
}

.voice_post_pro {
    margin: 10px 0;
    font-size: 0.9em;
    font-weight: bold;
    color: #785058;
    width: 90%;
    margin: 0 auto;
}

.voice_post_pro p {
    margin: 10px 0;
    border-bottom: 1px dotted #c0b2b2;
    padding-bottom: 2%;
    display: flex;
    align-items: center;
}

.voice_post_pro span:nth-child(1) {
    background-color: #e6778e;
    margin-right: 10px;
    padding: 1% 2%;
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.8em;
    text-align: center;
    flex: 1;
    /* flex-basis: 20px; */
}

.voice_post_pro span:nth-child(2) {
    margin-left: 10px;
    flex: 2;
}

.voice_post_txt {
    border: 4px solid #fbf1f3;
    padding: 4% 2%;
    border-radius: 4px;
    line-height: 2em;
    margin-bottom: 5%;
    background-image: url(../../../img/voice_bg.png);
    width: 90%;
    margin: 0 auto;
}

.voice_post_txt span {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, #fff799));
    background: linear-gradient(transparent 75%, #fff799 75%);

}

.voice_link {
    display: flex;
    flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 2% 0;
    gap: 0px 10px;
}

.voice_link li {
    width: 48%;
    border-radius: 10px;
    font-size: 0.8em;
    border-radius: 10px;
}

.voice_link li a {
    display: block;
    color: #fe3a60 !important;
    background-color: #ffffff;
    width: 100%;
    text-decoration: none;
    border: 1px solid #e6778e;
    padding: 5% 0;
    text-align: center;
    margin-bottom: 10px;
}

.voice_link li a {
    position: relative;
}

.voice_link li a::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -8px;
    content: "\f107";
}

.voice_link li a:hover {
    color: #fe375e !important;
    background-color: #fff4f4;
    border: 1px solid #fff4f4;
}

.voice_tit {
    display: flex;
    margin: 5% 0;
    align-items: center;
    justify-content: flex-start;
    background-color: #fff4f4;
    padding: 3% 1%;
    flex-direction: column;
}

.voice_tit img {
    width: 100px;
    margin-bottom: 20px;
    border: 1px solid #ffc3cf;
    border-radius: 10px;
}

#pet_column .voice_tit h2 {
    border: none;
    margin: 0;
    padding: 0;
    background: #fff4f4;
    margin: auto;
    padding: 0px 0;
    line-height: normal;
    font-size: 1.2em;
}

#pet_column .voice_tit h2 a {
    color: #e83e61;
}

#pet_column .voice_tit h2 span {
    display: block;
}

.voice_btn {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.voice_btn p {
    margin: 1%;
    width: 90%;
    border-radius: 4px;
    font-size: 1em;
}

.voice_btn a {
    text-align: center;
    display: block;
    color: #fff !important;
    text-decoration: none;
    font-weight: bold;
    padding: 8% 0%;
    width: 100%;
}

.voice_btn .btn_order {
    background-color: #eb4747;
    border: 1px solid #c93c3c;
}

.voice_btn .btn_order {
    background-color: #ff008a;
    border: 1px solid #cc0772;
}

.voice_btn .btn_siryou {
    background-color: #6bccab;
    border: 1px solid #54ad8f;
}

/*----------------------------------------------------------------------
入力補完
------------------------------------------------------------------------*/

.search_tags {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 10px 0 0 6px;
}

.inu .search_tags,
.neko .search_tags {
    justify-content: center;
}

.search_tags input {
    display: none;
}

.search_tags label {
    display: inline-block;
    margin-bottom: 2px;
    padding: 2px 10px;
    color: #ef004c;
    border-radius: 12px;
    background: #fdd4d9;
    font-size: 14px;
}

.search_tags label:not(:last-child) {
    margin-right: 10px;
}

/* パンくず */
.navi {
    width: 94%;
    margin: 10px auto;
    text-align: left;
    font-size: 14px;
}

/* insurance_company */

.com_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 5%;
    flex-direction: column;

}

.com_list .insurance_com {

    width: 90%;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin: 2% auto;
    padding: 5%;
    display: flex;
    flex-direction: column;
}

.com_list .insurance_com img {
    width: 40%;
    margin: 0 auto 5%;
}

.com_list .insurance_com .ico_songai {
    width: max-content;
    text-align: center;
    border: 1px solid #3f89c3;
    color: #3f89c3;
    border-radius: 50px;
    padding: 3% 5%;
    margin: 0 auto 2%;
    font-size: 0.8em;
}

.com_list .insurance_com .ico_shogaku {
    width: max-content;
    text-align: center;
    border: 1px solid #3fc37e;
    color: #3fc37e;
    border-radius: 50px;
    padding: 3% 5%;
    margin: 0 auto 2%;
    font-size: 0.8em;
}

.com_list .insurance_com ul {
    text-align: left;
    flex-grow: 1;
    margin-top: 2%;
}

.com_list .insurance_com ul li {
    border-bottom: 1px dotted #ccc;
    line-height: 1.8;
    padding: 1%;
}

.com_list .insurance_com .insurance_com_more a {
    color: #666 !important;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.4em;
}

.com_list .insurance_com .insurance_com_more a:hover {
    color: #666 !important;
    text-decoration: underline;
}

.com_list .insurance_com .insurance_com_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.com_list .insurance_com .insurance_com_btn p {
    width: 48%;
    display: block;
    padding: 5% 0;
    margin-top: 2%;
    color: #fff;
    text-decoration: none;
}

.com_list .insurance_com .insurance_com_btn p a {
    display: block;
    color: #fff !important;
    text-decoration: none;
}

.com_list .insurance_com .insurance_com_btn p:nth-child(1) {
    background-color: #ff008a;
}

.com_list .insurance_com .insurance_com_btn p:nth-child(2) {
    background-color: #6bccab;
}

/* 外部リンクマーク */
a[target="_blank"].external_link:after {
    font-family: 'Font Awesome 5 Free';
    content: '\f35d';
    font-size: 0.9em;
    margin: 0px 3px;
    font-weight: 900;
    text-decoration: none;
}

/*----------------------------------------------------------------------
フッターメニュー
------------------------------------------------------------------------*/
.footer_menu ul {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: .5rem;
    padding-left: 0.6em;
    font-size: 14px;
    text-align: left;
}

.footer_menu li {
    margin: 0 3px 10px;
}

.footer_menu li:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    margin: 4px 0 0 6px;
    background: #bbb;
}

.footer_menu li a {
    width: 100%;
}

.footer-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .6em .6em 1.2em .6em;
}

.insurance-link {
    width: 54%;
}

.insurance-link__text {
    padding-bottom: 0;
    text-align: left;
}

.insurance-link a {
    margin-left: -.5em;
}

.footer-col__text {
    width: 46%;
    padding-bottom: 0;
}

.tag-links-container {
    margin: 30px 15px;
}

.tag-links-title {
    width: 100%;
    padding: 0;
    background-color: transparent;
    color: #333;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
}

.tag-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-link {
    display: inline-block;
    padding: 8px 15px;
    background: #f5f5f5;
    border-radius: 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

.tag-link:hover {
    background: #e0e0e0;
}

.tag-link::before {
    content: "#";
    margin-right: 2px;
    color: #666;
}

/*----------------------------------------------------------------------
404PAGE
------------------------------------------------------------------------*/
.pc {
    display: none;
}

.sp {
    display: block;
}

.error_page p {
    line-height: 1.6;
}

.notpage {
    padding: 0px;
    width: 90%;
    padding: 0px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    position: relative;
}

.style_404 {
    color: #FF3366;
    font-weight: bold;
    font-size: 32px;
}

.notpage .notpage_box {
    background-color: #fef2f2;
    border-radius: 10px;
    padding: 5%;
    margin-bottom: 20px;
    text-align: center;
}

.notpage h3.linktit {
    font-weight: normal;
    border-bottom: 1px solid #ffa1a5;
    background-color: transparent;
    color: #e83e62;
    margin: 20px 0;
}

.notpage .home_link {
    text-align: center;
}

.notpage .home_link a {
    display: inline-block;
    background-color: #eb5572;
    text-decoration: none;
    text-align: center;
    color: #ffffff !important;
    margin: 20px auto;
    padding: 1% 2%;
    border-radius: 50px;
}

.notpage .link_list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 5%;
}

.notpage .link_list li {
    width: 100%;
    margin-bottom: 5px;
    font-size: 1em;
    color: #f60;
}

.notpage .link_list li a {
    font-weight: normal;
    color: #FF3366 !important;
}

.notpage .link_list li::after {
    content: "";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    content: '\f105';
    font-weight: 900;
    padding-left: 10px;
}

.notpage .link_column li {
    width: 48%;
}

.notpage .link_list li img {
    width: 100%;
    height: 40px;
    object-fit: cover;
    margin-right: 10px;
    vertical-align: top;
    margin-bottom: 10px;
}

/* TOP ペットお役立ちコラム */
.column_box {
    box-sizing: border-box;
    width: 100%;
    margin: auto;
    padding: 0 1em;
    text-align: left;
    font-size: 0.9em !important;
}

.column_list a {
    text-decoration: none;
}

.column_list li {
    width: 100%;
    margin-bottom: 30px;
}

.column_list .thum {
    margin-bottom: 10px;
}

.column_list .thum img {
    width: 100%;
    height: 160px;
    -o-object-fit: cover;
    object-fit: cover;
}

.column_list .ttl {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    letter-spacing: -1px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    color: #ea3b66;
}

.column_tags {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.column_tags li {
    width: auto;
    margin: 0 0 10px 0;
    padding: 2px 8px;
    font-size: 12px;
    border-radius: 10px;
    background: #eeeeee;
    color: #ea3b66;
    text-align: center;
}

.column_tags li:not(:last-child) {
    margin-right: 6px;
}

.column_text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-align: left;
    font-size: 14px;
    color: #333 !important;
}

.column_box .column_btn {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: 18px;
    padding: 20px 0;
    border-radius: 4px;
    background: #ea3b66;
    color: #fff !important;
    font-size: 16px;
    text-align: center;
    text-decoration: none !important;
}

.column_box .column_btn:after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid;
    border-right: 2px solid;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.company_column_box {
    margin-bottom: 28px;
}

.company_ranking .rank_link {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

#ranking .voice_link {
    position: relative;
    display: block;
    margin-left: auto;
    padding-right: 15px;
    color: #f73764;
    font-size: 14px;
    text-align: right;
    text-decoration: none;
}

#ranking .voice_link::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #f73764;
    border-right: solid 2px #f73764;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -4px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*----------------------------------------------------------------------
検索窓ボタン
------------------------------------------------------------------------*/
.hikaku-serch.hikaku-serch-button {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 23px 0;
    border-radius: 100px;
    color: #333;
    background-color: #f5cf00;
    border-bottom: 3px solid #d3af00;
    font-size: 5.6vw;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}

.hikaku-serch.hikaku-serch-button::after {
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    content: '';
    display: inline-block;
    width: 26px;
    height: 26px;
    background-image: url(../topimg/hikaku-serch-icon.png);
    background-size: cover;
}

/* TOP 寄付モーダル */
.donation-modal button {
    width: 100%;
    text-align: center;
}

.donation-modal .modalWrapper {
    width: 75%;
    line-height: 1.5;
}

.donation-modal .modalWrapper p {
    margin-bottom: 1em;
}

.donation-modal .modalWrapper dl {
    margin-bottom: 1em;
    font-size: 14px;
}

.donation-modal .modalWrapper a {
    word-break: break-all;
}

.madoguchi__ipet-button {
    width: 240px;
    margin: 0 auto 24px;
}

.madoguchi__ipet-button a {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
    background-color: #D71317;
    color: #fff;
    font-size: 20px;
    line-height: 1.4;
    border-radius: 50px;
    text-decoration: none;
}

.madoguchi__ipet-button span {
    display: block;
    font-size: 70%;
}

#simuBnr_area {
    display: block;
    width: 100%;
    position: fixed;
    left: 0px;
    bottom: 0px;
    z-index: 9999;
    text-align: center;
}

#simuBnr_area #tabs {
    overflow: hidden;
    width: 100%;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
}

#simuBnr_area #tabs img {
    display: inline-block;
    max-width: 100%;
    width: 100%;
    height: auto;
}

.promotion-card-wrap {
    box-sizing: border-box;
    width: 100%;
    margin: auto;
    padding: 0 1em;
}

.promotion-card {
    width: 100%;
    border-radius: 16px;
    background-color: #fff;
    overflow: hidden;
    border: 1px solid #ddd;
}

.card-header {
    background-color: #FEEEEF;
    padding: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.header-text {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    color: #E03665;
}

.header-text::before {
    content: '';
    display: inline-block;
    margin-right: 4px;
    width: 22px;
    height: 22px;
    background-image: url(../../../images/icon_promotion-card.png);
    background-size: contain;
}

.card-content {
    padding: 10px;
}

.upper-section {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    line-height: 1.6;
    border-bottom: 1px solid #ddd;
}

.company-logo {
    width: 28%;
    height: auto;
    margin-right: 15px;
}

.company-info {
    flex: 1;
}

.company-name {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.product-names {
    font-size: 14px;
    font-weight: normal;
}

.lower-section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.product-logo {
    width: 30%;
    height: 100%;
    margin-right: 15px;
}

.product-description {
    flex: 1;
    font-size: 12px;
    line-height: 1.6;
}

.promotion-card-wrap .action-button {
    display: block;
    background-color: #ff0000;
    color: white;
    text-align: center;
    padding: 8px 12px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    width: 80%;
    margin: 0 auto;
    line-height: 1.3;
    box-sizing: border-box;
}

/* ====================================
   保険の注意書きセクション
   ==================================== */
.insurance-notes {
    padding: 1.5em 1em;
    background-color: #fafafa;
    border-top: 1px solid #e0e0e0;
    margin-bottom: 2em;
}

p.insurance-notes__main {
    margin-bottom: 1.2em;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
    font-size: 14px;
}

.insurance-notes__attention {
    margin-bottom: 16px;
}

.insurance-notes__text {
    margin: 0;
    color: #444;
    line-height: 1.7;
}

.insurance-notes__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.insurance-notes__list li {
    margin-bottom: 0.6em;
    color: #333;
    font-size: 0.75rem;
    line-height: 1.68;
    position: relative;
}

.insurance-notes__list li:last-child {
    margin-bottom: 0;
}

/* ====================================
   まとめセクション
   ==================================== */
.page-summary {
    margin-bottom: 24px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.page-summary__title {
    color: #F63864;
    font-size: 18px;
    font-weight: bold;
    background-color: #fff2f6;
    text-align: center;
    margin-bottom: 0;
}

.page-summary__list {
    list-style: none;
    list-style-position: inside;
    padding: 1em;
    margin-bottom: 20px;
    background-color: #fff;
}

.page-summary__list li {
    position: relative;
    margin-top: 6px;
    padding-left: 1.5em;
    padding-bottom: 0.2em;
    color: #333;
    font-size: 15px;
    line-height: 1.48;
}

.page-summary__list li:first-child {
    margin-top: 0;
}

.page-summary__list li::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: .5em;
    left: 0;
    width: 10px;
    height: 4px;
    border-left: 2px solid #F63864;
    border-bottom: 2px solid #F63864;
    transform: rotate(-45deg);
}

/* ========== mamechishiki list enhancements (shared with PC) ========== */
.mamechishiki_tab_content ul li.mamechishiki-item-hidden,
.written-list li.mamechishiki-item-hidden {
    display: none !important;
}

.mamechishiki-load-more-wrapper {
    display: none;
    text-align: center;
    margin: 24px 0 40px;
}

.mamechishiki-load-more-wrapper.is-active {
    display: block;
}

.mamechishiki-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 240px;
    padding: 14px 32px;
    border: 1px solid #d93c5c;
    border-radius: 999px;
    background: #fff;
    color: #d93c5c;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mamechishiki-load-more:hover:not(:disabled) {
    background: #d93c5c;
    color: #fff;
}

.mamechishiki-load-more:disabled {
    cursor: default;
    opacity: 0.6;
}

.mamechishiki-load-more.is-complete {
    border-color: #ccc;
    color: #555;
    background: #f9f9f9;
}