/*-----------------------------------------
メインカラー

背景色　薄茶色：#F4E8D0, #f9f3e7(50%)
文字色　濃い茶色：#8C602A, #523818
差し色　オレンジ：#F2620F, #f69157(70%), #fbd0b7(30%), #feefe7(10%)
飾り色　黄緑：#93A603, #dee4b3(30%)
飾り色　水色：#A7C8F2

---------------------------------------------*/


/*
=======================================================
全体レイアウト
=======================================================
*/

#wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

#search_margin {
    margin: 1rem;
    margin-top: 0;
}

/* 
SPでは改行し、PCでは改行しない
=======================================================
*/
.indention {
    display: none;
}

@media screen and (max-width: 480px) {
    .indention {
        display: block;
    }
}

/* 
PCでは改行し、SPでは改行しない
=======================================================
*/
/* .indention_pc {
    display: block;
} */

@media screen and (max-width: 480px) {
    .indention_pc {
        display: none;
    }
}

/* 
=======================================================
GENERAL
=======================================================
*/

body,
p {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-style: normal;
    font-size: 1rem;
    max-width: 1000px;
    margin: auto;
}

body {
    background-color: #F4E8D0;
}

h1 {
    font-size: 1.8rem;
}

p {
    line-height: 1.8;
}

a {
    text-decoration: none;
}

sup {
    vertical-align: top;
    font-size: xx-small;
}

.annotation {
    font-size: xx-small;
    text-align: right;
    padding-top: 0.2rem;
}

.note {
    padding: 1rem 0;
}

.note p {
    text-align: right;
    font-size: small;
}

/* under 480 */
@media screen and (max-width: 480px) {
    body {
        font-size: 1rem;
    }

    #all_margin {
        margin: 1rem;
    }

    h1 {
        font-size: 1.3rem;
    }

    p {
        font-size: 1rem;
    }
}

/* 
=======================================================
LOGO
=======================================================
*/

#top_nav li {
    list-style: none;
}

.logo {
    margin-left: 1rem;
    max-width: 200px;
}

@media screen and (max-width: 480px) {
    .logo {
        padding: 0;
        margin: 1rem;
        margin-bottom: 0;
        width: 35%;
        max-width: 150px;
    }

}

/* 
=======================================================
FV
=======================================================
*/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */

.pc {
    display: block !important;
    background-color: #F4E8D0;
}

.sp {
    display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
        padding-bottom: 1em;
    }

}

/* 
=======================================================
強調
=======================================================
*/
.highlighter_green {
    background: linear-gradient(transparent 40%, #dee4b3 40% 90%, transparent 90%);
}

.highlighter_yellow {
    background: linear-gradient(transparent 40%, #fff462 40% 90%, transparent 90%);
}

.dotted_white {
    border-bottom: #fff dotted 3px;
}

.bold_green {
    font-size: larger;
    font-weight: bold;
    color: #93A603;
}

/* 
=======================================================
見出し設定 
=======================================================
*/
/* 
共通
=======================================================
*/
.headline {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

/* 
犬の足跡見出し 
=======================================================
*/
.footprint_headline {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 2rem 0;
}

.footprint_headline h1 {
    color: #8C602A;
    text-align: center;
    background: linear-gradient(transparent 50%, #f9f3e7 40% 90%, transparent 90%);
    padding: 10px 20px;
}

.footprint_headline::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(/common/img/asset/common/feetprint-orange.webp);
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
}

.footprint_headline::after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(/common/img/asset/common/feetprint-orange.webp);
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 5px;
}

@media screen and (max-width: 480px) {
    .footprint_headline {
        margin: 1.5rem 0;
    }

    .footprint_headline h1 {
        font-size: 1.3rem;
        padding: 5px 10px;
    }

    .footprint_headline::before {
        width: 30px;
        margin-right: 5px;
    }

    .footprint_headline::after {
        width: 30px;
        margin-left: 5px;
    }
}

/* 
リボン見出し 
=======================================================
*/
.ribbon_headline {
    position: relative;
    display: inline-block;
    line-height: 150%;
    padding: 0 2rem;
    box-shadow: 0px -5px #f69157, 0px 5px #f69157;
    border-top: 3px dashed #fff;
    border-bottom: 3px dashed #fff;
    background-color: #f69157;
    color: #fff;
    font-size: 1.7rem;
    font-weight: bold;
    text-align: center;
}

.ribbon_headline::before,
.ribbon_headline::after {
    position: absolute;
    top: -5px;
    width: 0px;
    height: 0px;
    border-color: transparent #F4E8D0;
    border-style: solid;
    content: '';
}

.ribbon_headline::before {
    left: 0;
    border-width: 1em 0 1em 0.3em;
}

.ribbon_headline::after {
    right: 0;
    border-width: 1em 0.3em 1em 0;
}

@media screen and (max-width: 480px) {
    .ribbon_headline {
        font-size: 1.3rem;
    }
}

/* 
フォーム見出し 
=======================================================
*/
.form_headline {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    color: #523818;
}

.form_headline::before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 30px;
    background: url(/common/img/asset/common/headline_line_left.webp);
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
}

.form_headline::after {
    content: "";
    display: inline-block;
    width: 50px;
    height: 30px;
    background: url(/common/img/asset/common/headline_line_right.webp);
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 15px;
}

@media screen and (max-width: 480px) {

    .form_headline h1 {
        font-size: 1.1rem;
        padding: 5px 10px;
    }

    .form_headline::before {
        width: 30px;
        margin-right: 5px;
    }

    .form_headline::after {
        width: 30px;
        margin-left: 5px;
    }
}

/* 
コメント見出し 
=======================================================
*/
.comment_headline {
    width: 100%;
    text-align: center;
    background-color: #fff;
    padding: 0.5rem 0;
}


/* 
編集部コメント
=======================================================
*/
.editor {
    position: relative;
    padding: 0.8rem 2rem;
    margin-bottom: 1rem;
    border-bottom: 5px solid #F2620F;
    color: #523818;
    font-weight: bold;
    font-size: 26px;
    text-align: left;
}

.editor::before,
.editor::after {
    position: absolute;
    top: 100%;
    left: 50%;
    content: "";
    height: 0;
    width: 0;
}

.editor::before {
    border: 16px solid;
    border-color: transparent;
    border-top-color: #F2620F;
    margin-left: -16px;
}

.editor:after {
    border: 10px solid;
    border-color: transparent;
    border-top-color: white;
    margin-left: -10px;
}

/* 
利用者の口コミ
=======================================================
*/
.review {
    position: relative;
    padding: 0.8rem 2rem;
    margin-bottom: 1rem;
    border-bottom: 5px solid #93A603;
    color: #523818;
    font-weight: bold;
    font-size: 26px;
    text-align: left;
}

.review::before,
.review::after {
    position: absolute;
    top: 100%;
    left: 50%;
    content: "";
    height: 0;
    width: 0;
}

.review::before {
    border: 16px solid;
    border-color: transparent;
    border-top-color: #93A603;
    margin-left: -16px;
}

.review:after {
    border: 10px solid;
    border-color: transparent;
    border-top-color: white;
    margin-left: -10px;
}


/* 
=======================================================
BUTTON
=======================================================
*/

/* Default button background color is #EFEFEF, reset the color */
button {
    width: 100%;
    background-color: transparent;
}

/* 
上部TOP3下の公式への誘導ボタン
=======================================================
*/
.to_official {
    display: flex;
    width: 100%;
    padding-top: 0.3rem;
}

.to_official a {
    background: #93A603;
    border-radius: 3px;
    position: relative;
    text-align: center;
    text-decoration: none;
    width: 100%;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    padding: 1rem;
}

.to_official a:after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 2rem;
    font-size: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s;
    width: 6px;
    height: 6px;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.to_official a:hover,
.to_official a:active {
    background: #fff;
    color: #93A603;
}

.to_official a:hover:after,
.to_official :active:after {
    right: 1.4rem;
}

@media screen and (max-width: 480px) {
    .to_official {
        width: 80%;
    }

    .to_official a:after {
        right: 1rem;
    }

}

/* 
輝くボタン
=======================================================
*/
.shiny_button {
    margin-top: 0.5rem;
}

.shiny_button p {
    background: #E35E55;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    width: 100%;
    margin-top: 10px;
    padding: 1rem;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    border-radius: 5px;
    border-bottom: 4px solid #CD443C;
    overflow: hidden;
}

@media screen and (max-width:480px) {
    .shiny_button p {
        margin-top: 0;
        padding: .5em;
    }
}

.shiny_button p:active {
    transform: translateY(4px);
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
    border-bottom: none;
}

.shiny_button p:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 55%);
    animation: shine 3s infinite;
}

@keyframes shine {
    33% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.shiny_button p:after {
    content: '»';
    display: inline-block;
    color: #fff;
    padding-left: 10px;
    font-size: 20px;
}

.button_text {
    font-size: 1.5rem;
    font-weight: bolder;
}

/* 
段差あり四角ボタン
=======================================================
*/
.step_button a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 1rem;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #f69157;
    border-radius: 8px;
    border-bottom: solid 5px #F2620F;
}

.step_button a:active {
    border-bottom: solid 2px #F2620F;
    transform: translateY(3px);
}

.heartbeat {
    animation-name: heartbeat;
    /* アニメーション名の指定 */
    animation-delay: 0s;
    /* アニメーションの開始時間指定 */
    animation-duration: 3s;
    /* アニメーション動作時間の指定 */
    animation-timing-function: ease-in-out;
    /* アニメーションの動き（徐々に早く徐々に遅く）*/
    animation-iteration-count: infinite;
    /* アニメーションをループさせる */
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    60% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

/* 
段差あり丸ボタン
=======================================================
*/
.rank_button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.highly_recommend .rank_button {
    margin-top: 1rem;
}

a.btn_design {
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    padding: 1rem 4rem;
    margin-bottom: 1.3em;
    font-weight: bold;
    color: #FFF;
    background-color: #f69157;
    transition: 0.3s ease-in-out;
    box-shadow: 5px 5px 0 #F2620F;
    border-radius: 100vh;
    transition: 0.5s;
}

a.btn_design:hover {
    color: #fff;
    background: #F2620F;
    box-shadow: 0 0 0;
    transform: translate(5px, 5px);
}

.brand_name {
    font-size: 1.7rem;
}

@media screen and (max-width: 480px) {
    a.btn_design {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

/* 
詳細への誘導ボタン
=======================================================
*/
.detail_button {
    color: #3CD0BB;
    border-bottom: #40281F dashed 3px;
}

.detail_button:hover,
.detail_button:active {
    border-bottom: #93A603 dashed 3px;
}

/* 
=======================================================
TOP 3 
=======================================================
*/

.top3_wrap {
    margin-top: 3rem;
}

.top3 {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.top3 .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    width: 100%;
}

.top3 .item:last-child {
    margin: 0;
}

.top3 .item img {
    width: 100vw;
    border-radius: 0.3rem;
}

.top3 .item img:hover,
.top3 .item img:active {
    opacity: 0.5;
    transition: 0.3s;
}

.top3 .item .crown {
    width: 70px;
    height: auto;
    margin: 0.5rem 0;
}

@media screen and (max-width: 480px) {
    .top3_wrap {
        margin: 0;
    }

    .top3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #fff;
        padding: 1rem;
        border-radius: 0.3rem;
    }

    .top3 .item {
        width: 100%;
        margin-right: 0;
        margin: 1.5rem 0;
    }

    .top3 .item:first-child {
        margin-top: 2rem;
    }

    .top3 .item:last-child {
        margin: 1.5rem;
    }

    .top3 .item .crown {
        display: none;
    }

    .top3 .item .no_1,
    .top3 .item .no_2,
    .top3 .item .no_3 {
        position: relative;
    }

    .top3 .item .no_1::before {
        content: "";
        position: absolute;
        width: 100px;
        height: 70px;
        top: -30px;
        background-image: url(/common/img/asset/ranking/medal1.webp);
        background-repeat: no-repeat;
        background-size: contain;
        margin-right: 5px;
    }

    .top3 .item .no_2::before {
        content: "";
        position: absolute;
        width: 70px;
        height: 70px;
        top: -30px;
        background-image: url(/common/img/asset/ranking/medal2.webp);
        background-repeat: no-repeat;
        background-size: contain;
        margin-right: 5px;
    }

    .top3 .item .no_3::before {
        content: "";
        position: absolute;
        width: 70px;
        height: 70px;
        top: -30px;
        background-image: url(/common/img/asset/ranking/medal3.webp);
        background-repeat: no-repeat;
        background-size: contain;
        margin-right: 5px;
    }

}

/* 
=======================================================
Form
=======================================================
*/
.form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f9f3e7;
    padding-bottom: 1rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.form_wrap {
    width: 100%;
    padding: 1rem;
    padding-bottom: 0;
}

.form .item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-self: center;
    width: 100%;
    background-color: #fff;
    margin-bottom: 0.1rem;
}

.form .item:first-child {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.form .item:last-of-type {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom: none;
    margin: 0;
}

.form .item .condition {
    display: flex;
    width: 30%;
    background-color: #8C602A;
    color: #fff;
    text-align: center;
}

@media screen and (max-width: 480px) {
    .form .item {
        border-bottom: #8C602A 3px solid;
    }


    .form .item .condition {
        width: 25%;
    }
}

.form .item .top_left_radius {
    border-top-left-radius: 10px;
}

.form .item .bottom_left_radius {
    border-bottom-left-radius: 10px;
}

/* Choice Area*/
.form .item .choices {
    display: flex;
    flex-wrap: wrap;
    width: 70%;
    justify-content: space-evenly;
    margin: 0.8rem;
}

.form .item .choice,
.form .item .choice.two_col {
    margin: 0.2rem 0;
}



.form .item .choice {
    width: calc((100% / 3) - 20px);
}

.form .item .choice.two_col {
    width: calc((100% / 2) - 20px);
}

.form .item .choices input[type='checkbox'] {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.form .item .choices label {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    padding-right: 10px;
    padding-left: 35px;
    cursor: pointer;
    line-height: 200%;
    width: 100%;
    text-align: center;
}

.form .item .choices label::before {
    position: absolute;
    top: 5px;
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    content: ' ';
    border: 2px solid #F2620F;
}

.form .item .choices input[type='checkbox']+label::before {
    border-radius: 4px;
}

/* Checkしたときの全体のラベル */
.form .item .choices input[type='checkbox']:checked+label {
    padding-left: 10px;
    color: #fff;
    z-index: 999;
}

/* Checkしたとき四角の中の文字 */
.form .item .choices input[type='checkbox']:checked+label::before {
    top: 0;
    width: 100%;
    height: 100%;
    background: #F2620F;
    z-index: -2;
}

/* Transition */
.form .item .choices label,
.form .item .choices label::before {
    -webkit-transition: 0.25s all ease;
    transition: 0.25s all ease;
}

@media screen and (max-width: 480px) {
    .form {
        margin-top: 1rem;
    }

    .form_wrap {
        padding-top: 0;
        padding-bottom: 0;
    }

    .form .item .choices {
        flex-direction: column;
        justify-content: center;
        margin: 0.5rem 1rem;
    }

    .form .item .choice,
    .form .item .choice.two_col {
        width: 100%;
    }

    .form .item .choices input[type='checkbox']+label {
        margin-bottom: 0.5rem;
    }

    .form .item .choices input[type='checkbox']:checked+label {
        padding: 0;
        margin: 0;
        padding: 3px;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .form .item .choices input[type='checkbox']+label:last-child {
        margin-bottom: 0;
    }

    .form .item .choices input[type='checkbox']:checked+label:last-child {
        margin-bottom: 0;
    }
}

/* 
=======================================================
How to chose the dogfood
=======================================================
*/
.how_to_chose {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.how_to_chose_wrap {
    background-color: #f9f3e7;
    border-radius: 10px;
}

.how_to_chose .item {
    margin: 1rem;
    background-color: #fff;
    border-radius: 10px;
}

.how_to_chose h2 {
    font-size: 1.5em;
}

.how_to_chose .point_1,
.how_to_chose .point_2,
.how_to_chose .point_3 {
    position: relative;
}

.how_to_chose .point_1::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url(/common/img/asset/common/1_point.webp);
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
    vertical-align: bottom;
}

.how_to_chose .point_2::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url(/common/img/asset/common/2_point.webp);
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
    vertical-align: bottom;
}

.how_to_chose .point_3::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url(/common/img/asset/common/3_point.webp);
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
    vertical-align: bottom;
}

.how_parent {
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: space-evenly;
}

.how_text_wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem;
    width: 70%;
}

.how_text {
    text-align: left;
    margin: 0;
    margin-top: 1rem;
}

.how_img {
    text-align: center;
    margin: 1rem auto;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    padding: 1rem;
}

.rank_table .how_img {
    padding: 0;
    margin: 0.6rem auto;
}

@media screen and (max-width: 480px) {
    .how_to_chose h2 {
        font-size: 1.1rem;
        padding-right: 1rem;
    }

    .how_parent {
        display: flex;
        flex-direction: column;
    }

    .how_text_wrap {
        width: 100%;
        padding-bottom: 0;
    }

    .how_img {
        padding: 0;
    }

}


/* 
=======================================================
Real time
=======================================================
*/

.realtime_rank {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.realtime_rank p {
    font-size: 2rem;
    text-align: center;
    padding: 0 1rem;
    background: linear-gradient(transparent 60%, #fef49b 60% 90%, transparent 90%);
}

/* 点滅 */
.strong_b2 {
    font-weight: bold;
    color: #F2620F;
    font-size: 3rem;
    text-align: right;
}

@media screen and (max-width: 480px) {

    .realtime_rank {
        margin-top: 1rem;
    }

    .realtime_rank p {
        font-size: 1.1rem;
    }

    /*　画面サイズが480pxまではここを読み込む　*/
    .strong_b2 {
        font-size: 1.7rem;
    }
}

.circle {
    width: 100px;
    height: 100px;
    margin: 50px auto;
    border-radius: 50px;
    background: #ed93b0;
    animation: mochimochi 3s infinite;
}

/* 点滅 */
.fuwafuwa {
    -webkit-animation: fuwafuwa 2s infinite;
    -moz-animation: fuwafuwa 2s infinite;
    animation: fuwafuwa 2s infinite;

}



@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes mochimochi {
    0% {
        transform: scale(1, 0.8);
    }

    20% {
        transform: scale(0.8, 1.1);
    }

    90% {
        transform: scale(1, 1);
    }

    100% {
        transform: scale(1, 0.8);
    }
}

@-moz-keyframes mochimochi {
    0% {
        transform: scale(1, 0.8);
    }

    20% {
        transform: scale(0.8, 1.1);
    }

    90% {
        transform: scale(1, 1);
    }

    100% {
        transform: scale(1, 0.8);
    }
}

@keyframes mochimochi {
    0% {
        transform: scale(1, 0.8);
    }

    20% {
        transform: scale(0.8, 1.1);
    }

    90% {
        transform: scale(1, 1);
    }

    100% {
        transform: scale(1, 0.8);
    }
}

@-webkit-keyframes fuwafuwa {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@-moz-keyframes fuwafuwa {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes fuwafuwa {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@-webkit-keyframes pikopiko {
    0% {
        transform: rotate(20deg);
    }

    to {
        transform: rotate(-10deg);
    }
}

@-moz-keyframes pikopiko {
    0% {
        transform: rotate(20deg);
    }

    to {
        transform: rotate(-10deg);
    }
}

@keyframes pikopiko {
    0% {
        transform: rotate(20deg);
    }

    to {
        transform: rotate(-10deg);
    }
}

/* 
=======================================================
Compare Table
=======================================================
*/

.compare_table_wrap {
    margin: 2rem auto;
    margin-bottom: 0;
}

@media screen and (max-width: 480px) {
    .compare_table_wrap {
        margin-top: 0;
    }
}

/* Ranking image */
.th_no1,
.th_no2,
.th_no3 {
    position: relative;
}

.th_no1 a,
.th_no2 a,
.th_no3 a {
    color: #000000;
}

.th_no1::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    top: -1.3rem;
    left: -0.7rem;
    background-image: url(/common/img/asset/ranking/no1.webp);
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
}

.th_no2::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    top: -1.3rem;
    left: -0.7rem;
    background-image: url(/common/img/asset/ranking/no2.webp);
    background-repeat: no-repeat;
    background-size: contain;

}

.th_no3::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    top: -1.3rem;
    left: -0.7rem;
    background-image: url(/common/img/asset/ranking/no3.webp);
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
}

@media screen and (max-width: 480px) {
    .th_no1::before {
        width: 40px;
        height: 40px;
        top: -1.3rem;
    }

    .th_no2::before {
        width: 40px;
        height: 40px;
        top: -1.3rem;
    }

    .th_no3::before {
        width: 40px;
        height: 40px;
        top: -1.3rem;
    }

}

/* Make img centering in table */
table img {
    display: block;
    margin: 0 auto;
}

.compare_table {
    width: 100%;
    border-right: #F2620F solid 2px;
    border-bottom: #F2620F solid 2px;
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
    color: #353535;
    margin-top: 1rem;
    table-layout: fixed;
}

.compare_table .tbl_product {
    width: 50%;
}

.compare_table th,
.compare_table td {
    border: 2px solid #F2620F;
    padding: 1em;
    vertical-align: middle;
    text-align: center;
}

.ingredient td {
    text-align: left;
}

.compare_table thead th {
    background: #feefe7;
    border-right: #F2620F solid 2px;
}

.compare_table th {
    background-color: #fffcf2;
    border: #F2620F solid 2px;
}

.compare_table td {
    background-color: #FFF;

}

.compare_table td:first-child {
    background-color: #FAE1E3;
    border-top: #f67481 solid 2px;
    border-right: #f67481 solid 2px;
    border-bottom: #f67481 solid 2px;
}

.compare_table .item {
    width: 20%;
}

.compare_table tbody th:first-of-type {
    width: 15%;
}

/* 総合評価部分の画像を大きくしすぎないようにする */
.evaluation {
    max-width: 50%;
}

.unit_tag {
    font-size: x-small;
}

.emphasis_grad_pink {
    font-size: 1.8em;
    text-align: center;
    line-height: 0.95em;
    font-weight: bold;
    color: transparent;
    background: linear-gradient(90deg, #E274A0 0% 30%, #f67481 40% 60%, #f79d98 70% 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.emphasis_grad_gold {
    font-size: 1.8em;
    text-align: center;
    line-height: 0.95em;
    font-weight: bold;
    color: transparent;
    background: linear-gradient(111.4deg, rgba(238, 113, 113, 1) 1%, rgba(246, 215, 148, 1) 58%);
    background-clip: text;
    -webkit-background-clip: text;
}

.good_deal {
    display: inline-block;
    background-color: #3CD0BB;
    color: #FFF;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 5px 20px;
    margin-top: 5px;
    border-radius: 30px;
}

@media screen and (max-width: 480px) {

    .compare_table .item {
        width: 10%;
    }

    .compare_table .tbl_product {
        width: 100%;
    }

    .good_deal {
        font-size: 1rem;
        padding: 10px 15px;
        border-radius: 20px;
    }

    .evaluation {
        max-width: 100%;
    }
}


.emphasis_line,
.emphasis_web {
    font-size: 1.3rem;
    font-weight: 700;
}

.emphasis_line {
    color: #06C755;
}

.emphasis_web {
    color: #5598E8;
}

@media screen and (max-width: 480px) {

    .compare_table th,
    .compare_table td {
        padding: 10px;
    }

}

/* 
=======================================================
Ranking
=======================================================
*/
/* Wrapping all of ranking components */


@media screen and (max-width: 480px) {}

/* Wrapping rank header, editor comment, review */
.each_rank_content {
    padding: 1em;
    border-radius: 8px;
    background-color: #fff;
    background-image: radial-gradient(#f9f3e7 10%, transparent 20%), radial-gradient(#f9f3e7 10%, transparent 20%);
    background-position: 0 0, 10px 10px;
    background-size: 20px 20px;
    margin: 0 auto;
    margin-bottom: 2.5rem;
}

.each_rank_content:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 480px) {
    .each_rank_content {
        margin-bottom: 2rem;
    }

    .each_rank_content:last-child {
        margin-bottom: 0;
    }
}

/* 
Ranking Header
-------------------------------------------------------
*/
/* Wrapping rank_name, rank_header */
.rank_main {
    background-color: #fef9f9;
}

.rank_name {
    position: relative;
    padding-left: 70px;
    padding-bottom: 10px;
    color: #402921;
    border-bottom: dashed 6px #8C602A;
    margin-bottom: 1rem;
}

.no1.rank_name::before {
    content: "";
    position: absolute;
    left: 0;
    top: -45px;
    display: inline-block;
    width: 100px;
    height: 80px;
    background: url(/common/img/asset/ranking/medal1.webp);
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
}

.no2.rank_name::before {
    content: "";
    position: absolute;
    left: 0;
    top: -45px;
    display: inline-block;
    width: 100px;
    height: 80px;
    background: url(/common/img/asset/ranking/medal2.webp);
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
}

.no3.rank_name::before {
    content: "";
    position: absolute;
    left: 0;
    top: -45px;
    display: inline-block;
    width: 100px;
    height: 80px;
    background: url(/common/img/asset/ranking/medal3.webp);
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
}

@media screen and (max-width: 480px) {
    .rank_name {
        margin-bottom: 10px;
    }

    .rank_name::before {
        width: 40px;
        height: 25px;
    }
}

/* Including ranking left and right */
.rank_header {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    width: 100%;
}

/* including rating and banner */
.rank_header .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin-right: 1rem;
}

/* including the table */
.rank_header .right {
    flex: 1;
}

/* Wrapping recommendation bar(rating), rank_ponints */
.rank_discription {
    width: 60%;
}

/* rank banner, dicription become one colomn when display witdth under 480 */
@media screen and (max-width: 480px) {
    .rank_header {
        flex-direction: column;
        padding: 0;
    }

    .rank_header .left {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .rank_header .right {
        margin-bottom: 1rem;
    }

    .rank_discription {
        width: 100%;
        padding: 0;
    }
}

/* Recommendation bar */
.rating {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding-bottom: 1rem;
}

.rate_left {
    padding: 10px 20px;
    background-color: #f69157;
    border: 3px solid #f69157;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.rate_right {
    display: flex;
    background-color: #fff;
    padding: 10px 20px;
    border: 3px solid #f69157;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.rate {
    position: relative;
    display: inline-block;
    width: 150px;
    height: 30px;
    font-size: 30px;
    margin-right: 20px;
}

.rate::before,
.rate::after {
    position: absolute;
    display: inline-block;
    height: 30px;
    content: '★★★★★';
    line-height: 30px;
}

.rate::before {
    color: #c4c4c4;
}

.no1_rate .rate::after {
    overflow: hidden;
    /* fomula: rating * font size */
    /* font-size = 30px*/
    /* ex: rating 5 * 30 = 150px */
    width: 150px;
    color: #ffeb00;
}

.no2_rate .rate::after {
    overflow: hidden;
    /* fomula: rating * font size */
    /* font-size = 30px*/
    /* ex: rating 4.5 * 30 = 135px */
    width: 135px;
    color: #ffeb00;
}

.no3_rate .rate::after {
    overflow: hidden;
    /* fomula: rating * font size */
    /* font-size = 30px*/
    /* ex: rating 4.5 * 30 = 135px */
    width: 126px;
    color: #ffeb00;
}

.recotext {
    font-weight: 700;
    font-size: 18px;
}

.recommend_level {
    color: #fff;
}

.rate-wrap {
    display: flex;
    width: 330px;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    border: 1.5px solid #e8d8b0;
    margin: 20px auto 0;
    font-weight: bold;
}

@media screen and (max-width: 480px) {
    .rating {
        justify-content: center;
        margin: .5rem 0;
        margin-top: 0;
        padding: 0;
    }

    .rate_left {
        border: none;
        padding: 5px 10px;
    }

    .rate_right {
        border: none;
        padding: 5px 10px;
    }

    .recotext {
        font-size: 0.9rem;
    }
}

.rank_point {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* Rank points */
.rank_points_wrap {
    position: relative;
    margin: 1rem 0;
    background-color: #fffcf2;
    border-radius: 10px;
    width: 70%;
}

.rank_points_wrap:after {
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    border-color: rgba(0, 153, 255, 0);
    border-top-width: 25px;
    border-bottom-width: 25px;
    border-left-width: 25px;
    border-right-width: 25px;
    margin-top: -10px;
    border-left-color: #fffcf2;
    left: 100%;
    top: 50%;
}

.rank_title {
    padding: 5px;
    font-size: 20px;
    background-color: #A7C8F2;
    text-align: center;
    color: #fff;
    font-weight: 700;
    border-bottom: #fff 3px dotted;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

ul.rank_points {
    list-style: none;
    margin: 0 auto;
    width: 70%;
    padding: 10px;
    padding-bottom: 0;
}

.rank_points>li {
    background: url(/common/img/asset/common/feetprint-green.webp) no-repeat 0;
    background-size: auto 20px;
    padding-left: 30px;
    margin-bottom: 10px;
}

.rank_points>li:nth-child(even) {
    background: url(/common/img/asset/common/feetprint-brown.webp) no-repeat 0 0;
    background-size: auto 20px;
    padding-left: 30px;
    margin-bottom: 10px;
}

.dog_img {
    max-width: 230px;
}

.superscript {
    font-size: 12px;
    vertical-align: super;
}

@media screen and (max-width: 480px) {
    .rank_point {
        flex-direction: column;
        margin-bottom: 0;
    }

    .rank_points_wrap {
        margin: 0;
        margin-bottom: 1rem;
        width: 100%;
    }

    ul.rank_points {
        width: 100%;
    }

    .rank_points_wrap:after {
        display: none;
    }


    .dog_img {
        display: none;
    }
}

/* 
Ranking Table
-------------------------------------------------------
*/
.rank_table_wrap {
    background-color: #fef9f9;
    height: 100%;
}

.rank_table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px;
    height: 100%;
}

.rank_table th,
.rank_table td {
    padding: 0.6rem;
    border: 2px solid #fbd0b7;
    vertical-align: middle;

}

.rank_table td {
    background-color: #FFF;
}

.rank_table th {
    color: #402921;
    background: #feefe7;
    width: 30%;
}

@media screen and (max-width: 480px) {
    .rank_table_wrap {
        padding: 0;
    }

    .rank_table th,
    .rank_table td {
        display: block;
        width: auto;
        border-bottom: none;
        text-align: center;
        padding: 0.2rem;
    }

    .rank_table tr:last-child {
        border-bottom: 1px solid #F2620F;
    }
}


/* 
Ranking comment
-------------------------------------------------------
*/
.rank_comment_wrap {
    margin-bottom: 1.5rem;
}

/* Wraping admin_img, arrow_box */
.rank_comment {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.admin_img {
    background-size: 100%;
    background-repeat: no-repeat;
    width: 30%;
    max-width: 200px;
    height: auto;
    position: relative;
    bottom: 0px;
    left: 45px;
}

/* 編集者コメント
=======================================================*/
.arrow_box {
    z-index: 1;
    position: relative;
    background: #FFFFFF;
    padding: 20px;
    text-align: left;
    border: 6px solid #f8b296;
    color: #333333;
    width: 70%;
    border-radius: 22px;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
}

.arrow_box:after,
.arrow_box:before {
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    right: 100%;
    top: 77%;
}

.arrow_box:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 20px;
    border-right-width: 20px;
    margin-top: -9px;
    border-right-color: #FFFFFF;
}

.arrow_box:before {
    border-color: rgba(253, 240, 198, 0);
    border-top-width: 15px;
    border-bottom-width: 15px;
    border-left-width: 30px;
    border-right-width: 30px;
    margin-top: -15px;
    margin-right: 6px;
    border-right-color: #f8b296;
}

@media screen and (max-width: 480px) {
    .rank_comment_wrap {
        padding: 0;
        margin: 1rem 0;
    }

    .rank_comment {
        flex-direction: column-reverse;
        align-items: flex-end;
        padding: 0;
    }

    .admin_img {
        width: 150px;
        height: 60px;
        z-index: 2;
        top: -50px;
        left: -5px;
        transform: scale(-1, 1);
    }

    .arrow_box {
        width: 100%;
    }

    .arrow_box:after {
        content: none;
    }

    .arrow_box:before {
        content: none;
    }

}

/* 利用者の口コミ
=======================================================*/
.card_wrap {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 1rem;
    padding: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.card:last-child {
    margin-right: 0;
}

.card_header {
    width: 30%;
    margin: 1rem 0;
}

.card_text {
    height: 70%;
    padding: 1rem 2rem;
    background-color: #dee4b3;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.dog_detail {
    margin-top: 0.3rem;
    text-align: right;
}

@media screen and (max-width: 480px) {
    .card_wrap {
        flex-direction: column;
    }

    .card {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .card:last-child {
        margin-right: 0;
        margin-bottom: 0;
    }
}

/* 
Ranking review
-------------------------------------------------------
*/
/* Wrapping headline, review_main */
/* .rank_reviews_wrap {
    padding: 20px 0;
} */

/* Wrapping review_icon, review_text */
.review_main {
    display: flex;
    background: #fff;
    /* border: 4px solid #EDF2E9; */
    border-radius: 20px;
    padding: 1rem 1.6rem;
    line-height: 1.8rem;
    margin-bottom: 0.5rem;
}

.review_main:last-child {
    margin-bottom: 0;
}

.review_title {
    padding: .3rem .7rem;
    margin-bottom: 10px;
    border-left: 5px dotted #93A686;
    font-size: 20px;
}

.review_sentence {
    padding-left: 20px;
}

.post_person {
    text-align: right;
}

@media screen and (max-width: 480px) {
    .rank_reviews_wrap {
        padding: 0;
        margin-top: 1rem;
    }

    .review_main {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .review_icon {
        width: 30%;
        padding: 0;
        margin: 0;
    }

    .review_title {
        font-size: 18px;
    }

    .review_text {
        width: 100%;
    }
}

/* 
=======================================================
Highly recommend
=======================================================
*/
/* Wrapping all of ranking components */
.highly_recommend {
    margin: 1rem auto;
}

.highly_recommend .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 10px;
    padding: 1rem;
}

.highly_recommend .wrap .text {
    background-color: #f9f3e7;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background-image:
        linear-gradient(to right, #8C602A 2px, transparent 2px),
        linear-gradient(to bottom, #8C602A 2px, transparent 2px),
        linear-gradient(to left, #8C602A 2px, transparent 2px),
        linear-gradient(to top, #8C602A 2px, transparent 2px);
    background-size: 10px 2px, 2px 10px, 10px 2px, 2px 10px;
    background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
    background-position: left top, right bottom, right bottom, left top;
}

.highly_recommend .static {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin: 2rem auto;
    margin-bottom: 0;
}

.highly_recommend .static img {
    box-sizing: border-box;
    padding: 0 1rem;
    width: 50%;
}

.highly_recommend .wrap .all_dog {
    height: 200px;
    object-fit: contain;
}


@media screen and (max-width: 480px) {
    .highly_recommend .static {
        margin-bottom: 1rem;
    }

    .highly_recommend .wrap .all_dog {
        height: auto;
        width: 100%;
    }
}


/* 
=======================================================
Search
=======================================================
*/
/* 
=======================================================
Search_result
=======================================================
*/
.search_result_wrap {
    background-color: white;
    color: #40281F;
    border: #f8b296 solid 3px;
    border-radius: 10px;
    margin-bottom: 2.5rem;
}

.search_result_wrap .footprint_headline {
    margin-top: 0;
    margin-bottom: 0;
}

.search_result_title {
    text-align: center;
    position: relative;
    padding: 1rem;
    background: repeating-linear-gradient(to right, #FFFAEC, #FFFAEC 6px, #fff8de 6px, #fff8de 20px);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-weight: bold;
    font-size: 2rem;
}

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

.result_text_wrap {
    width: 80%;
    font-size: 30px;
    padding: 0.5rem;
    margin: 0 2rem;
    padding-top: 0;
}

.search_result_img {
    width: 20%;
    position: relative;
    top: 40px;
    z-index: 2;
    right: 40px;
    transform: scale(-1, 1);
}

@media screen and (max-width: 480px) {
    .search_result {
        flex-direction: column;
        align-items: flex-end;
        padding: 0;
        margin: 0;
    }

    .search_result_wrap {
        margin: 0;
        margin: 1rem 0;
        margin-bottom: 2rem;
    }

    .search_result_title {
        font-size: 1.5rem;
    }

    .search_result_title::before {
        top: 80%;
    }

    .result_text_wrap {
        padding: 1rem;
        padding-bottom: 2rem;
        margin: 0;
        width: 100%;
    }

    .search_result_img {
        position: relative;
    }

    .search_result_img img {
        position: absolute;
        width: 100%;
        top: -80px;
        left: -20px;
    }
}

/* 
=======================================================
Footer
=======================================================
*/
.footer {
    color: white;
    background: #8C602A;
    text-align: center;
    padding: 30px;
    margin-top: 30px;
    font-weight: bolder;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer .menu li {
    margin: 0;
    padding: 0 0px;
}

.menu li::before {
    content: "｜";
    padding-right: 30px;
    padding-left: 30px;
    color: white;
    position: relative;
}

.menu .after_line ::after {
    content: "｜";
    padding: 0 30px 0;
}

.footer .copyright {
    margin: auto;
    padding: 20px 0 0 0;
}

@media screen and (max-width:480px) {
    .footer {
        margin: 0;
    }

    .footer .menu {
        margin: 0;
        padding: 0;
        display: block;
    }

    .footer .menu li {
        margin: 0 0 10px 0;
        padding: 0 20px;
    }

    .menu li::before {
        content: "";
        padding: 0;
    }

    .menu .after_line ::after {
        content: "\A";
        padding: 0;
    }
}

.footer_logo img {
    width: 10%;
    display: block;
    margin: 0 auto;
}

@media screen and (max-width:480px) {
    .footer_logo img {
        width: 60%;
        display: block;
        margin: 50px auto 0;
    }
}

/* 
=======================================================
プライバシーポリシー
=======================================================
*/

.privacy_title {
    text-align: center;
    margin: 20px auto;
}

.privacy_wrap {
    margin: 30px auto;
}

.privacy01 {
    margin: 15px auto;
}

.privacy01 ol {
    margin: 15px auto;
    list-style-type: decimal;
    /* 数字形式（1, 2, 3, ...） */
}

.privacy01 li {
    margin: 20px 0px 10px auto;
}

.privacy01 h2 {
    margin-bottom: 10px;
}

@media screen and (max-width:480px) {
    .privacy_wrap {
        margin: 30px 20px;
    }
}

/* 
=======================================================
ランキングの根拠
=======================================================
*/

.ranking_title {
    text-align: center;
    margin: 20px auto;
}

.ranking_wrap {
    margin: 30px auto;
}

.ranking_rate h1 {
    background-color: #8C602A;
    color: white;
    text-align: center;
    padding: 5px;
    border: 1px solid gray;
    border-bottom: 0px;
}

.ranking_rate table {
    border: 1px solid gray;
    width: 100%;
    border-collapse: collapse;
    font-size: 20px;
    text-align: center;
}

.ranking_rate td {
    border: 1px solid gray;
    padding: 10px;
}

.ranking_evidence h1 {
    text-align: center;
    margin: 30px 0 0px 0;
    padding: 5px;
    border: 1px solid gray;
    border-bottom: 0;
    background-color: #8C602A;
    color: white;
}

.ranking_evidence p {
    border: 1px solid gray;
    padding: 10px;
}

@media screen and (max-width:480px) {
    .ranking_wrap {
        margin: 10px 15px 0px 15px;

    }

    .ranking_rate table {
        font-size: 15px;
        vertical-align: middle;
    }

    .ranking_rate td {
        vertical-align: middle;
    }

    .ranking_evidence p {
        font-size: 15px;
        margin-bottom: 20px;
    }

}

/* 
=======================================================
運営者情報
=======================================================
*/

.company_title {
    text-align: center;
    margin: 20px auto;
}

.company_wrap {
    margin: 30px auto;
}

.company_info {
    display: flex;
    justify-content: center;
    margin: 40px auto;

}

.company_text {
    text-align: left;
}

@media screen and (max-width:480px) {
    .company_info {
        padding: 15px;
        font-size: 15px;
    }
}

/*ローディング
------------------------------------------*/
#re-load {
    text-align: center;
    justify-content: center;
    display: flex;
    padding: 50px 50px;
    background-color: white;
}

#re-load-in {
    padding: inherit;
}

#re-load-logo img {
    width: 50%;
}

#re-load-text {
    font-size: 2vmin;
}

#re-load-title {
    padding: 10px 10px;
    font-size: 3vmin;

}

#re-load-link span {
    font-size: 2vmin;
    color: blue;
    text-decoration: underline;
}

.loader {
    margin: 100px auto;
    font-size: 25px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    -webkit-animation: load5 1.1s infinite ease;
    animation: load5 1.1s infinite ease;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

@-webkit-keyframes load5 {

    0%,
    100% {
        box-shadow: 0em -2.6em 0em 0em #53ad5c, 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2), 2.5em 0em 0 0em rgba(83, 173, 92, 0.2), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.2), 0em 2.5em 0 0em rgba(83, 173, 92, 0.2), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.2), -2.6em 0em 0 0em rgba(83, 173, 92, 0.5), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.7);
    }

    12.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.7), 1.8em -1.8em 0 0em #53ad5c, 2.5em 0em 0 0em rgba(83, 173, 92, 0.2), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.2), 0em 2.5em 0 0em rgba(83, 173, 92, 0.2), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.2), -2.6em 0em 0 0em rgba(83, 173, 92, 0.2), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.5);
    }

    25% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.5), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.7), 2.5em 0em 0 0em #53ad5c, 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.2), 0em 2.5em 0 0em rgba(83, 173, 92, 0.2), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.2), -2.6em 0em 0 0em rgba(83, 173, 92, 0.2), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2);
    }

    37.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.2), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.5), 2.5em 0em 0 0em rgba(83, 173, 92, 0.7), 1.75em 1.75em 0 0em #53ad5c, 0em 2.5em 0 0em rgba(83, 173, 92, 0.2), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.2), -2.6em 0em 0 0em rgba(83, 173, 92, 0.2), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2);
    }

    50% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.2), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2), 2.5em 0em 0 0em rgba(83, 173, 92, 0.5), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.7), 0em 2.5em 0 0em #53ad5c, -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.2), -2.6em 0em 0 0em rgba(83, 173, 92, 0.2), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2);
    }

    62.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.2), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2), 2.5em 0em 0 0em rgba(83, 173, 92, 0.2), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.5), 0em 2.5em 0 0em rgba(83, 173, 92, 0.7), -1.8em 1.8em 0 0em #53ad5c, -2.6em 0em 0 0em rgba(83, 173, 92, 0.2), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2);
    }

    75% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.2), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2), 2.5em 0em 0 0em rgba(83, 173, 92, 0.2), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.2), 0em 2.5em 0 0em rgba(83, 173, 92, 0.5), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.7), -2.6em 0em 0 0em #53ad5c, -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2);
    }

    87.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.2), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2), 2.5em 0em 0 0em rgba(83, 173, 92, 0.2), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.2), 0em 2.5em 0 0em rgba(83, 173, 92, 0.2), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.5), -2.6em 0em 0 0em rgba(83, 173, 92, 0.7), -1.8em -1.8em 0 0em #53ad5c;
    }
}

@keyframes load5 {

    0%,
    100% {
        box-shadow: 0em -2.6em 0em 0em #53ad5c, 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2), 2.5em 0em 0 0em rgba(83, 173, 92, 0.2), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.2), 0em 2.5em 0 0em rgba(83, 173, 92, 0.2), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.2), -2.6em 0em 0 0em rgba(83, 173, 92, 0.5), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.7);
    }

    12.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.7), 1.8em -1.8em 0 0em #53ad5c, 2.5em 0em 0 0em rgba(83, 173, 92, 0.2), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.2), 0em 2.5em 0 0em rgba(83, 173, 92, 0.2), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.2), -2.6em 0em 0 0em rgba(83, 173, 92, 0.2), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.5);
    }

    25% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.5), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.7), 2.5em 0em 0 0em #53ad5c, 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.2), 0em 2.5em 0 0em rgba(83, 173, 92, 0.2), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.2), -2.6em 0em 0 0em rgba(83, 173, 92, 0.2), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2);
    }

    37.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.2), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.5), 2.5em 0em 0 0em rgba(83, 173, 92, 0.7), 1.75em 1.75em 0 0em #53ad5c, 0em 2.5em 0 0em rgba(83, 173, 92, 0.2), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.2), -2.6em 0em 0 0em rgba(83, 173, 92, 0.2), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2);
    }

    50% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.2), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2), 2.5em 0em 0 0em rgba(83, 173, 92, 0.5), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.7), 0em 2.5em 0 0em #53ad5c, -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.2), -2.6em 0em 0 0em rgba(83, 173, 92, 0.2), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2);
    }

    62.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.2), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2), 2.5em 0em 0 0em rgba(83, 173, 92, 0.2), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.5), 0em 2.5em 0 0em rgba(83, 173, 92, 0.7), -1.8em 1.8em 0 0em #53ad5c, -2.6em 0em 0 0em rgba(83, 173, 92, 0.2), -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2);
    }

    75% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.2), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2), 2.5em 0em 0 0em rgba(83, 173, 92, 0.2), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.2), 0em 2.5em 0 0em rgba(83, 173, 92, 0.5), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.7), -2.6em 0em 0 0em #53ad5c, -1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2);
    }

    87.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(83, 173, 92, 0.2), 1.8em -1.8em 0 0em rgba(83, 173, 92, 0.2), 2.5em 0em 0 0em rgba(83, 173, 92, 0.2), 1.75em 1.75em 0 0em rgba(83, 173, 92, 0.2), 0em 2.5em 0 0em rgba(83, 173, 92, 0.2), -1.8em 1.8em 0 0em rgba(83, 173, 92, 0.5), -2.6em 0em 0 0em rgba(83, 173, 92, 0.7), -1.8em -1.8em 0 0em #53ad5c;
    }
}