*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Noto Serif JP";
    color: #113D53;
}

/* header */
header{
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    background-color: #DDFFFF;
    z-index: 100;
}
.header_container{
    display: block;
}
#rogo{
    max-width: 380px;
    height: auto;
}
#hop{
    max-width: 60px;
    height: auto;
}
#phone{
    max-width: 50px;
    height: auto;
}
.header_top,
.header_menu_container{
    display: flex;
    justify-content: space-evenly;
    max-width: 1200px;
    margin: auto;
}
.header_top{
    margin-top: 10px;
    margin-bottom: 10px;
    align-items: center;
}
.header_top_left{
    display: flex;
    gap: 10px;
}
.header_top_left p{
    font-family: "Noto Sans JP";
    font-weight: bold;
    text-align: center;
    border-bottom: 3px solid #113D53;
    width: 236px;
}
.tel{
    display: flex;
    align-items: center;
}
.tel_sp{
    display: none;
}
.tel a{
    font-size: 60px;
    font-weight: bold;
    color: #113D53;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.tel a:hover {
    color: #F94E06;
    transform: scale(1.02);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header_menu{
    background-color: rgba(255, 255, 255, 0.5);
}
.header_menu a{
    text-decoration: none;
    color: #113D53;
    line-height: 60px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: inline-block;
}
.header_menu a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #F94E06;
    transition: width 0.3s ease;
}
.header_menu a:hover {
    color: #F94E06;
    transform: translateY(-2px);
}
.header_menu a:hover::after {
    width: 100%;
}
.hamburger{
    display: none;
}
.hamburger_menu {
    width: 50px;
    height: 50px;
    position: relative;
    border: none;
    background: transparent;
    appearance: none;
    padding: 0;
    cursor: pointer;
    display: block;
    transition: all 0.3s ease;
    border-radius: 8px;
}
.hamburger_menu:hover {
    background-color: rgba(249, 78, 6, 0.1);
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.hamburger_menu_bar {
    display: inline-block;
    width: 44%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}
.hamburger_menu:hover .hamburger_menu_bar {
    background: #F94E06;
    height: 2px;
}
.hamburger_menu_bar:first-child {
    top: 16px;
}
.hamburger_menu_bar:nth-child(2) {
    top: 24px;
}
.hamburger_menu_bar:last-child {
    top: 32px;
}
.hamburger_menu--open .hamburger_menu_bar {
    top: 50%;
}
.hamburger_menu--open .hamburger_menu_bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger_menu--open .hamburger_menu_bar:last-child {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger_menu--open .hamburger_menu_bar:nth-child(2) {
    display: none;
}
.navigation {
    position: fixed;
    width: 100%;
    z-index: 2;
    display: none;
    background-color: #DDFFFF;
    margin: 0 auto;
    margin-top: 380px;
}
.navigation_list {
    display: block;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}
.navigation_list_item{
    text-align: center;
    line-height: 40px;
    position: relative;
}
.navigation_list_item a{
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: inline-block;
}
.navigation_list_item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #F94E06;
    transition: width 0.3s ease;
}
.navigation_list_item a:hover {
    color: #F94E06;
    transform: translateY(-2px);
}
.navigation_list_item a:hover::after {
    width: 100%;
}

/* kv */
.kv{
    background-image: url(../img/bg_kv.jpg);
    background-repeat: no-repeat;
    background-position: center;
}
.kv_content{
    max-width: 1200px;
    margin: auto;
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    padding: 100px 0px;
}
.kv_left_inner{
    text-align: center;
}
.kv_left h2{
    font-size: 32px;    
}
.kv_left h1{
    font-size: 60px;
    font-family: "Zen Kaku Gothic Antique";
}
.kv img{
    width: 300px;
    height: auto;
}
#jinsoku{
    width: 700px;
}
.kv_center{
    display: flex;
    justify-content: space-evenly;
}
.kv_center p{
    font-size: 50px;
    font-weight: bold;
    text-align: center;
}
.kv_small_windows{
    display: flex;
    justify-content: space-evenly;
}
.kv_small_window{
    text-align: center;
}
.kv_small_window img{
    width: 200px;
    height: auto;
}
.kv_right{
    position: relative;
}
.kv_right_comment{
    position: absolute;
    top: 15%;
    left: -50%;
}
.kv_right_comment p{
    font-size: 12px;
    font-weight: bold;
}
.kv_right_comment h2{
    font-size: 24px;
    font-family: "Zen Kaku Gothic Antique";
    position: relative;
}
.kv_right_comment h2::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #FFD700;
    border-radius: 2px;
}
.kv_right_mokumoku{
    position: absolute;
    top: 5%;
    left: -65%;
}
.kv_right_mokumoku img{
    width: 250px;
    height: auto;
}
.kv_right_img{
    position: absolute;
    top: 40%;
    left: -50%;
}
.kv_right_img img{
    width: 30%;
    height: auto;
}

/* contact */
.contact{
    padding: 70px 0px;
    background-image: url(../img/bg_contact.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.contact_content{
    max-width: 1200px;
    margin: auto;
    text-align: center;
}
.contact_content h2{
    display: inline-block;
    background-image: linear-gradient(to bottom, transparent 70%, #FFEF09 70%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    font-family: "Zen Kaku Gothic Antique";
    font-size: 60px;
    text-align: center;
    margin-bottom: 50px;
}
.contact_content_inner{
    display: flex;
    justify-content: space-evenly;
}
.contact_content_left{
    width: 300px;
    height: auto;
}
.contact_content_left img{
    width: 100%;
    height: auto;
}
.contact_content_right{
    display: block;
}
.contact_content_right_tel{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 40px;
}
.contact_content_right_tel a{
    font-family: "Zen Kaku Gothic Antique";
    font-size: 80px;
    font-weight: bold;
    color: #113D53;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.contact_content_right_tel a:hover {
    color: #F94E06;
    transform: scale(1.02);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.contact_content_right_tel img{
    width: 80px;
    height: auto;
}
.contact_content_right_line img{
    width: 400px;
    height: auto;
    transition: all 0.3s ease;
    cursor: pointer;
}
.contact_content_right_line img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* problem */
.problem{
    padding: 100px 0px;
    background-image: url(../img/bg_problem.jpg);
}
.problem_content{
    max-width: 1200px;
    margin: auto;
}
.problem_content h1,
.price_content h1,
.line_talk_content h1,
.point_content h1,
.trouble_content h1,
.form_content h1,
.about_content h1{
    font-family: "Zen Kaku Gothic Antique";
    font-size: 60px;
    font-weight: bold;
    text-align: center;
    position: relative;
    margin-bottom: 100px;
}
.problem_content h1::after,
.price_content h1::after,
.line_talk_content h1::after,
.point_content h1::after,
.trouble_content h1::after,
.form_content h1::after,
.about_content h1::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background-color: #F94E06;
}
.problem_item{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
}
.problem_item_img{
    display: block;
    width: 370px;
    height: 370px;
    text-align: center;
    border: solid 1px #FFFFFF;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    position: relative;
}
.problem_item_img_child{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.problem_item_img p{
    margin-bottom: 10px;
}
.problem_item_img span{
    font-size: 32px;
    position: relative;
}
.problem_item_img span::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background-color: #FFEF09;
}
.problem_item_img img{
    width: 150px;
    height: 200px;
}

/* pr */
.pr{
    padding: 100px 0px;
    background-image: url(../img/bg_pr.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.pr_content{
    max-width: 1200px;
    margin: auto;
}
.pr_content_inner{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 90%;
    margin: auto;
    margin-bottom: 32px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 60px 0px;
    border-radius: 30px;
}
.pr_content_inner_sp{
    display: none;
}
.pr_content_inner img{
    width: 30%;
    height: auto;
}
.pr_content_text{
    width: 50%;
}
.pr_content_text img{
    width: 100%;
    height: auto;
}
.pr_content_text h2{
    font-size: 50px;
    margin-bottom: 16px;
}
.pr_content_text p{
    font-size: 16px;
    font-weight: bold;
}
.pr_content h2{
    text-align: center;
}
.pr_content span{
    font-size: 50px;
    position: relative;
}
.pr_content span::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 10px;
    background-color: #FFEF09;
}
.pr_content_tel{
    display: flex;
    justify-content: center;
    align-items: center;
}
.pr_content_tel img{
    width: 45px;
    height: auto;
}
.pr_content_tel a{
    font-family: "Zen Kaku Gothic Antique";
    font-size: 50px;
    font-weight: bold;
    text-decoration: none;
    color: #113D53;
    transition: all 0.3s ease;
    cursor: pointer;
}
.pr_content_tel a:hover {
    color: #F94E06;
    transform: scale(1.02);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* price */
.price{
    padding: 100px 0px;
}
.price_content{
    max-width: 1200px;
    margin: auto;
}
.price_content_inner img{
    width: 100%;
}
.price_content_inner_sp{
    display: none;
}

/* line_talk */
.line_talk{
    padding: 100px 0px;
}
.line_talk_content{
    max-width: 1200px;
    margin: auto;
}
.line_talk_content_flex{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.line_talk_content_block{
    display: block;
}
.line_talk_content_block li{
    list-style: none;
}
.line_talk_content_inner{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.line_talk_content_inner img {
    max-width: 30%;
    height: auto;
    object-fit: contain;
}

/* point */
.point{
    padding: 100px 0px;
    background-color: #2A90E5;
}
.point_content{
    max-width: 1200px;
    margin: auto;
}
.sp_only{
    display: none;
}
.point_content_inner{
    display: flex;
    justify-content: space-evenly;
}
.point_item{
    width: 30%;
    height: auto;
    text-align: center;
    background-image: url(../img/bubble.jpg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.point_item h2{
    font-size: 36px;
    font-weight: bold;
    color: #FFEF09;
}
.point_item h3{
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 20px;
}
.point_item p{
    font-size: 16px;
    font-weight: bold;
    color: #FFFFFF;
}
/* trouble */
.trouble{
    padding: 100px 0px;
}
.trouble_content{
    max-width: 1200px;
    margin: auto;
}
.trouble_item{
    text-align: center;
    max-width: 920px;
    margin: auto;
    padding: 40px 32px;
    background-image: url(../img/trouble_base.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 80px;
}
.trouble_item:last-child {
    margin-bottom: 0;
}
.trouble_item h2{
    display: inline-block;
    color: #FFFFFF;
    font-family: "Zen Kaku Gothic Antique";
    border-bottom: solid 8px #FFEF09;
    margin-bottom: 40px;
}
.trouble_img{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.trouble_img_left,
.trouble_img_right{
    width: 45%;
    height: auto;
}
.yajirushi{
    width: 10%;
}
.trouble_item h3{
    color: #FFFFFF;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.trouble_item p{
    font-size: 16px;
    color: #FFFFFF;
}
/* form */
.form{
    padding: 100px 20px;
}
.form_content{
    max-width: 1200px;
    margin: auto;
    text-align: center;
}
.form_item{
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: auto;
}
.form_item label{
    display: block;
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: bold;
}
.form_item input[type="text"],
.form_item input[type="email"],
.form_item input[type="tel"],
.form_item textarea{
    width: 650px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #113D53;
    border-radius: 4px;
    font-size: 24px;
    box-sizing: border-box;
}
button[type="submit"] {
    background-color: #113D53;
    color: #FFFFFF;
    padding: 12px 20px;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 200px;
    transition: background-color 0.3s ease;
    margin-top: 40px;
}
button[type="submit"]:hover {
    background-color: #2A90E5;
}

/* footer */

/* about */
.about_content{
    max-width: 1200px;
    margin: auto;
    text-align: center;
    margin-bottom: 100px;
}
.about_content img{
    width: 600px;
    height: auto;
}
.about_item{
    display: flex;
    max-width: 600px;
    margin: auto;
    border-bottom: solid 1px #113D53;
    padding-bottom: 10px;
    margin-bottom: 20px;
    align-items: center;
}
.about_item h2{
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    width: 200px;
}
.about_item p{
    font-size: 24px;
    text-align: left;
    width: 400px;
}

/* character */
.character{
    padding: 100px 0px;
}
.character_content{
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 70px 40px;
    align-items: center;
    border: solid 1px #FFFFFF;
    border-radius: 30px;
    background-color: #FFFFFF;
}
.character_content img{
    width: 300px;
    height: 300px;
}
.character_text{

}
.character_text h2{
    font-family: "Zen Kaku Gothic Antique";
    font-size: 24px;
}
.character_text h1{
    font-family: "Zen Kaku Gothic Antique";
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 24px;
}
.character_text_light{
    font-size: 16px;
    margin-bottom: 8px;
}
.character_text_heavy{
    font-size: 16px;
    font-weight: bold;
}

@media screen and (max-width:1220px){
    .tel a{
        font-size: 40px;
    }
    .kv_content{
        padding: 100px 10px;
    }
    #jinsoku {
        width: 500px;
    }
}

@media screen and (max-width:1130px){
    #rogo{
        max-width: 300px;
    }
    .kv_content{
        padding: 100px 0px;
        justify-content: space-around;
    }
    .kv_left h1 {
        font-size: 56px;
    }
    #jinsoku {
        width: 420px;
    }
    .kv_small_window img {
        width: 150px;
    }
    .kv_right img{
        width: 200px;
    }
    .kv_right_comment {
        top: 10%;
        left: -55%;
    }
    .kv_right_comment h2 {
        font-size: 18px;
    }
    .kv_right_mokumoku {
        top: 0%;
        left: -70%;
    }
    .kv_right_img img{
        width: 30%;
    }
    .problem_item_img{
        width: 300px;
        height: 300px;
    }
    .pr_content_text h2{
        font-size: 40px;
    }
    .pr_content_text p{
        font-size: 14px;
    }
    .point_item h2{
        font-size: 30px;
    }
    .point_item h3{
        font-size: 20px;
    }
    .point_item p{
        font-size: 12px;
    }
}

@media screen and (max-width:980px){
    .tel a{
        font-size: 32px;
    }
    .kv_left h2 {
        font-size: 28px;
    }
    .kv_left h1 {
        font-size: 48px;
    }
    #jinsoku {
        width: 380px;
    }   
    .kv_center p {
        font-size: 40px;
    }
    .kv_small_window img {
        width: 130px;
    } 
}

@media screen and (max-width:900px){
    .header_top_left p{
        font-size: 12px;
        align-content: center;
        width: 190px;
    }
    #rogo {
        max-width: 250px;
    }
    .header_menu a{
        font-size: 14px;
    }
    .kv_content {
        padding: 100px 5px;
        justify-content: space-between;
    }
    .contact_content h2{
        font-size: 46px;
    }
    .contact_content_left{
        width: 200px;
    }
    .contact_content_right_tel a{
        font-size: 60px;
    }
    .contact_content_right_line img{
        width: 300px;
    }
    .problem_item_img{
        width: 250px;
        height: 250px;
    }
    .problem_item_img span{
        font-size: 28px;
    }
    .problem_item_img img{
        width: 120px;
        height: 130px;
    }
    .pr_content_text h2{
        font-size: 32px;
    }
    .pr_content_text p{
        font-size: 12px;
    }
    .form_item input[type="text"],
    .form_item input[type="email"],
    .form_item input[type="tel"],
    .form_item textarea{
        width: 500px;
    }
}

@media screen and (max-width:800px){
    #rogo {
        max-width: 200px;
    }
    .tel a {
        font-size: 28px;
    }
    .kv_right img {
        width: 190px;
    }
    .kv_right_img img{
        width: 30%;
    }
}

@media screen and (max-width:768px){
    .tel{
        display: none;
    }
    .tel_sp{
        display: block;
        width: 10%;
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 8px;
    }
    .tel_sp:hover {
        background-color: rgba(249, 78, 6, 0.1);
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    .tel_sp img {
        transition: all 0.3s ease;
    }
    .tel_sp:hover img {
        filter: brightness(1.2) saturate(1.2);
    }
    #phone{
        width: 100%;
    }
    .header_menu_container{
        display: none;
    }
    .hamburger{
        display: block;
        width: 10%;
    }
    .kv_content{
        display: block;
        padding-top: 30px;
        padding-bottom: 0px;
        margin-top: 50px;
    }
    .kv_right{
        text-align: center;
    }
    .kv_right_mokumoku {
        top: 5%;
        left: 15%;
        width: 25%;
    }
    .kv_right_mokumoku img{
        width: 100%;
    }
    .kv_right_comment {
        top: 20%;
        left: 18%;
    }
    .kv_right_img {
        top: 40%;
        left: 70%;
        width: 18%;
    }
    .kv_right_img img {
        width: 100%;
    }
    .problem_item{
        justify-content: center;
    }
    .problem_item_img{
        margin-bottom: 20px;
    }
    .problem_item_img img{
        width: 200px;
        height: 150px;
    }
    .pc_only{
        display: none;
    }
    .pr_content_inner{
        display: none;
    }
    .pr_content_inner_sp{
        display: block;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.5);
        padding: 30px;
        border-radius: 30px;
        max-width: 90%;
        margin: auto;
    }
    .pr_content_inner_sp img{
        width: 70%;
    }
    .pr_content_inner_sp_right h2{
        font-size: clamp(20px, 2vw, 36px);
    }
    .pr_content_inner_sp p{
        font-size: clamp(12px, 2vw, 16px);
    }
    .pr_content_text_sp{
        display: flex;
        justify-content: space-evenly;
        text-align: left;
        align-items: center;
    }
    .pr_content_text_sp img{
        width: 30%;
        height: auto;
    }
    .price_content_inner{
        display: none;
    }
    .price_content_inner_sp{
        display: block;
        text-align: center;
    }
    .price_content_inner_sp img{
        width: 50%;
    }
    .line_talk_content_inner {
        justify-content: space-evenly;
        align-items: center;
    }
    .sp_only{
        display: block;
    }
    .point_content_inner{
        display: block;
    }
    .point_item{
        margin: auto;
        margin-bottom: 60px;
        width: 100%;
    }
    .point_item h2 {
        font-size: 24px;
    }
    .point_item h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .point_item p {
        font-size: 10px;
    }
    .trouble_item{
        max-width: 50%;
        background-image: url(../img/trouble_phone.png);
        background-size: auto;
        margin-bottom: 20px;
    }
    .trouble_item h2{
        border-bottom: solid 5px #FFEF09;
        font-size: 20px;
    }
    .trouble_img_left, .trouble_img_right {
        width: 40%;
    }
    .form_item{
        display: block;
    }
    .form_item label{
        width: 80%;
        margin: auto;
        text-align: left;
        margin-bottom: 5px;
    }
    .form_item input[type="text"],
    .form_item input[type="email"],
    .form_item input[type="tel"],
    .form_item textarea{
        width: 80%;
    }
    .problem_content h1,
    .price_content h1,
    .line_talk_content h1,
    .point_content h1,
    .trouble_content h1,
    .form_content h1,
    .about_content h1{
        margin-bottom: 50px;
        font-size: 50px;
    }
    .contact,
    .problem,
    .pr,
    .price,
    .line_talk,
    .point,
    .trouble,
    .form,
    .about,
    .character{
        padding: 10px 0px;
    }
    .character_content{
        flex-wrap: wrap;
        flex-direction: column-reverse;
        padding: 10px 40px;
    }
}

@media screen and (max-width:700px){
    .kv_right_comment p{
        font-size: 10px;
    }
    .kv_right_comment h2{
        font-size: 16px;
    }
    .contact_content h2 {
        font-size: 42px;
    }
    .contact_content_left{
        width: 30%;
    }
    .contact_content_right_tel img{
        width: 15%;
    }
    .contact_content_right_tel a{
        font-size: 50px;
    }
    .contact_content_right_line img {
        width: 80%;
    }
    .problem_content h1,
    .price_content h1,
    .line_talk_content h1,
    .point_content h1,
    .trouble_content h1,
    .form_content h1,
    .about_content h1{
        font-size: 40px;
    }
}
@media screen and (max-width:640px){
    .kv_right_comment p{
        font-size: 8px;
    }
    .kv_right_comment h2{
        font-size: 14px;
    }
    .kv_right_comment h2::after{
        height: 3px;
    }
    .pr_content span{
        font-size: 40px;
    }
    .pr_content span::after{
        height: 8px;
    }
    .pr_content_tel img{
        width: 10%;
    }
    .pr_content_tel a{
        font-size: 40px;
    }
    .trouble_item h3 {
        font-size: 20px;
    }
    .trouble_item p{
        font-size: 12px;
    }
}
@media screen and (max-width:600px){
    .header_top_left p{
        font-size: 10px;
        width: 168px;
    }
    #rogo {
        max-width: 180px;
    }
    .about_content{
        padding: 0px 10px;
    }
    .about_content img {
        width: 70%;
    }
}
@media screen and (max-width:580px){
    .kv_right_comment {
        top: 18%;
    }
    .kv_right_comment p{
        font-size: 8px;
    }
    .kv_right_comment h2{
        font-size: 12px;
    }
    .contact_content h2 {
        font-size: 36px;
    }
    .contact_content_right_tel a {
        font-size: 40px;
    }
    .problem_content h1,
    .price_content h1,
    .line_talk_content h1,
    .point_content h1,
    .trouble_content h1,
    .form_content h1,
    .about_content h1{
        font-size: 35px;
    }
}
@media screen and (max-width:500px){
    .header_top_left p {
        font-size: 8px;
        width: 136px;
    }
    #rogo {
        max-width: 150px;
    }
    #hop {
        max-width: 10%;
    }
    .kv_right_comment {
        top: 16%;
    }
    .kv_right_comment p{
        font-size: 6px;
    }
    .kv_right_comment h2{
        font-size: 10px;
    }
    .kv_right_img{
        left: 72%;
    }
    .contact_content h2{
        margin-bottom: 24px;
    }
    .contact_content_right_tel{
        margin-bottom: 24px;
    }
    .problem_item_img {
        width: 150px;
        height: 150px;
    }
    .problem_item_img img{
        width: 100px;
        height: 100px;
    }
    .problem_item_img span {
        font-size: 12px;
    }
    .pr_content span {
        font-size: 30px;
    }
    .pr_content span::after {
        height: 5px;
    }
    .pr_content_tel a {
        font-size: 32px;
    }
    .trouble_img{
        gap: 8px;
    }
    .trouble_item h2{
        margin-bottom: 20px;
    }
    .trouble_item h3{
        font-size: 16px;
        margin-bottom: 8px;
    }
    .problem_content h1,
    .price_content h1,
    .line_talk_content h1,
    .point_content h1,
    .trouble_content h1,
    .form_content h1,
    .about_content h1{
        font-size: 30px;
        margin-bottom: 30px;
    }
    .about_content{
        margin-bottom: 20px;
    }
    .character_content img {
        width: 70%;
        height: auto;
    }
    .character_text h2{
        font-size: 20px;
    }
    .character_text h1{
        font-size: 40px;
        margin-bottom: 12px;
    }
    .character_text_light{
        font-size: 12px;
    }
    .character_text_heavy{
        font-size: 12px;
    }
}
@media screen and (max-width:470px){
    .kv img{
        width: 70%;
    }
    .kv_left h2 {
        font-size: 24px;
    }
    .kv_left h1 {
        font-size: 40px;
    }
    #jinsoku {
        width: 320px;
    }
    .kv_center p {
        font-size: 32px;
    }
    .kv_small_window{
        width: 35%;
    }
    .kv_small_window img{
        width: 80%;
    }
    .kv_right img {
        width: 190px;
    }
    .kv_right_mokumoku img,
    .kv_right_img img{
        width: 100%;
    }
    .problem_item{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .problem_item_img{
        margin-bottom: 0px;
    }
}
@media screen and (max-width:450px){
    .kv_center p {
        font-size: 24px;
    }
    .contact_content h2 {
        font-size: 32px;
        background-image: linear-gradient(to bottom, transparent 80%, #FFEF09 70%);
    }
    .trouble_item{
        max-width: 100%;
    }
}
@media screen and (max-width:400px){
    .kv_left h2 {
        font-size: 20px;
    }
    .kv_left h1 {
        font-size: 32px;
    }
    #jinsoku {
        width: 250px;
    }
    .kv_center p {
        font-size: 20px;
    }
    .kv_small_window img {
        width: 60%;
    }
    .kv_right img {
        width: 120px;
    }
    .kv_right_comment {
        top: 14%;
    }
    .kv_right_img {
        left: 76%;
    }
    .kv_right_mokumoku img,
    .kv_right_img img {
        width: 100%;
    }
    .contact_content_left {
        width: 20%;
    }
    .contact_content_right_tel a {
        font-size: 32px;
    }
    .contact_content h2 {
        font-size: 26px;
        background-image: linear-gradient(to bottom, transparent 85%, #FFEF09 70%);
    }
    .contact_content_right_line img {
        width: 70%;
    }
    .problem_item_img {
        width: 130px;
        height: 130px;
    }
    .problem_item_img img {
        width: 85px;
        height: 60px;
    }
    .pr_content span {
        font-size: 24px;
    }
    .trouble_item h3 {
        font-size: 15px;
    }
    .trouble_item p {
        font-size: 10px;
    }
    .about_item h2 {
        font-size: 20px;
    }
    .about_item p{
        font-size: 20px;
    }
    .character_text h2 {
        font-size: 16px;
    }
    .character_text h1 {
        font-size: 32px;
        margin-bottom: 8px;
    }
}