@charset "UTF-8";
:root{
    --text-color: hsl(133, 77%, 5%);
    --logo-color: hsl(133,77%,32%);
    --background-white: hsl(133, 77%, 98%);
    --background-green: hsl(133, 77%, 90%);
    --sub-background: hsl(133, 77%, 80%);
    --shadow: #CCC;
    --hovered: hsl(133, 77%, 80%);
    --sub-color: hsl(133,77%,50%);
    --max-width: 1100px;
    --red: hsl(0, 77%, 50%);
    --deep-red: hsl(0,77%,40%);
    --pink: #c71585;
}
.contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.keikoupen {
    background:linear-gradient(var(--background-green) 60%, #ffbf7f 80%);
  }
.keikoupen_bw {
    background:linear-gradient(var(--background-white) 60%, #ffbf7f 30%);
  }
.sp_br {
    display: none;
}
.sp_br1 {
    display: none;
}
.tb_br {
    display: none;
}

.flowlist {
    margin: 1rem 0 ;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fl-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.mt-1 {
    margin-top: 1em;
}
/* 利用までの流れ */
.fl-des {
    position: relative;
    width: 100%;
    background-color: var(--background-white);
    text-align: center;
    border: 5px solid var(--logo-color);
    border-radius: 15px;
    padding: 30px 0;
    margin: 15px auto;
}

.fl-des::before {
    position: absolute;
    content: '';
    border-style: solid;
    border-width: 30px 30px 0px;
    border-color:var(--logo-color) transparent transparent;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.fl-des:last-child:before {
    display: none;
}

.bold {
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.5;
    
}
.mdi {
    margin: 0 0.5em;
    color: #009933;
    font-weight: bold;
    font-size: 1.1em;
}
.mdi-checkbox-outline {
    font-weight: 900;
    font-size: 1.2em;
}

.to_contact h4{
    color: var(--text-color);
    font-size: 20px;
    text-align: center;
    position: relative;
    margin: 1rem;
    padding: 8px 1em;
    border-bottom: none;
}
/* \/マークの配置 */
.to_contact h4::before {
    position: absolute;
    content: '';
    width: 0.1em;
    height: 100%;
    background-color: var(--text-color);
    transform: rotate(-35deg);
    left: 1em;
    bottom:0;
    margin-right: 1em;
}
.to_contact h4::after {
    position: absolute;
    content: '';
    width: 0.1em;
    height: 100%;
    background-color: var(--text-color);
    transform: rotate(35deg);
    right: 1em;
    bottom:0;
    margin-left: 1em;
}

/* 問い合わせへのリンク */
.to_contact_button a {
    width: 30vw;
    max-width: 400px;
    height: 80px;
    padding: 0.75em;
    margin: 22px auto;
    background-color: var(--hovered);
    box-shadow:  -0.25em 0.25em 0.5em #689973,
                0.25em -0.25em 0.5em #e2fff9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 1em;
    /*影の基点とするためrelativeを指定*/
    position: relative;
    transition: all 0.2s ease;
}

.to_contact_button a:hover {
    background-color: var(--sub-color);
    cursor: pointer;
    /*hoverの際にY軸に6pxずらす*/
    transform: translateY(6px);
    border-color:transparent;
}

.number {
    line-height: 1.2;
    font-size: 1.8em;
}
.small {
    font-size: small;
    margin:0
}
.txtbox {
    z-index: 2;
    transition: all 0.2s ease;
}
.txt { 
    font-size: 1.2em;
}
.txtbox p {
    color: #333;
    text-align: center;
}

.txtbox p:hover {
    color:#fff;
}

.number,#n_hover{
    font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic","Helvetica",sans-serif;
}

#n_hover:hover {
    color: #333;
}

.mdi_to_contact {
    color:#fff;
    font-size: 2.2em;
    margin-left: 0;
}

.mdi-phone {
    transform: rotate(15deg);
}

.mdi-copyright {
    color:#fff;
    margin: 0;
}

@media screen and (max-width: 912px) {
    .tb_br {
        display: block;
      }
    .to_contact_button a {
        width: 45vw;
    }
    .to_contact h4::before {
        margin-right: 0;
    }
    .to_contact h4::after {
        margin-left: 0;
    }
}
@media screen and (max-width: 656px) {
    .bold {
        letter-spacing:0;
    }
    .sp_br {
        display: block;
    }
    .sp_none {
        display: none;
    }
    .fl-title {
        font-size: 1.05em;
    }
    .text {
        font-size: 0.9em; 
    }
    .to_contact_button a {
        width: 84vw;
        padding: 0.2em;
    }
    .mdi {
        margin:0 0.2em 0 0;
    }
    
    .mdi-phone {
        margin-right: 0.2em;
    }
    .mail {
        margin-right: 0.75em;
    }
    
    .to_contact h4 {
        font-size: 19px;
    }
    .to_contact h4::before {
        transform: rotate(-16deg);
    }
    .to_contact h4::after {
        transform: rotate(16deg);
    }
}
@media screen and (max-width: 459px) {
    .sp_br1 {
        display: block;
    }
    .sp_bl {
        margin-left: 1.25em;
    }
    .to_contact h4 {
        font-size: 18px;
    }
}
@media screen and(max-width: 376px) {
    .to_contact h4 {
        font-size: 16px;
    }
    .to_contact h4::before {
        rotate:(-13deg);
    }
    .to_contact h4::after {
        rotate:(13deg);
    }
}

@media print {
    .to_contact_button {
        display:none;
    } 
    _:lang(x)+_:-webkit-full-screen-document,.to_contact_button {
        display:none;
    }
}
