@charset "utf-8";

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', YuGothic, "Yu Gothic Medium", "Yu Gothic", 'ヒラギノ角ゴシック', 'メイリオ', Meiryo, sans-serif;
    font-style: normal;
    letter-spacing: 0.05rem;
    font-size: 15px;
    color: #3F4E4F;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
}

/*=====================================*/
/* header */
/*=====================================*/
.pc_logo_noriko {
    position: fixed;
    top: 8px;
    left: 25px;
    width: 85px;
    z-index: 50;
}

.sp_navi,
.toggle {
    display: none;
}

.pc_navi_flex {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 33px;
    right: 60px;
    gap: 130px;
    z-index: 50;
}

.pc_ul {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.pc_ul li {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.pc_ul li:hover {
    color: #3F4E4F;
    transition: 0.2s;
}

.pc_sns img {
    width: 32px;
}

.pc_sns img:hover {
    filter: invert(80%);
    transition: 0.2s;
}

.header_wrapp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: rgba(168, 135, 113, 0.8);
    z-index: 10;
    display: none;
}


/*=====================================*/
/* main----top */
/*=====================================*/
.button {
    position: fixed;
    bottom: 50px;
    right: 0;
    font-size: 18px;
    font-weight: 600;
    writing-mode: vertical-rl;
    line-height: 1.6rem;
    background: #CA8B2C;
    color: #fff;
    height: 310px;
    padding: 20px 14px;
    z-index: 30;
    border-radius: 14px 0 0 14px;
}

.button:hover {
    opacity: 0.7;
    transition: 0.3s;
}

/*=== scroll down ====*/
.scrolldown {
    position: fixed;
    bottom: 90px;
    /* left: 70px; */
    animation: arrowmove 2s ease-in-out infinite;
    z-index: 30;
}

@keyframes arrowmove {
    0% {
        right: 12px;
    }

    50% {
        right: 30px;
    }

    100% {
        right: 12px;
    }
}

.scrolldown:before {
    content: "";
    position: absolute;
    bottom: 5px;
    right: -2px;
    /* arrow */
    width: 18px;
    height: 1px;
    background: #fff;
    transform: skewY(30deg);
}

.scrolldown:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    /* arrow */
    width: 42px;
    height: 1px;
    background: #fff;
}

#click {
    position: absolute;
    left: -43px;
    bottom: -20px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.15rem;
}

/* top_slider */
.top_slider {
    width: 100%;
}

h1 {
    position: absolute;
    top: 14%;
    left: 5%;
    font-size: 90px;
    font-weight: 600;
    letter-spacing: 0.17rem;
    color: #fff;
    line-height: 1.25;
}

#title_nobi {
    letter-spacing: 0.5rem;
}

.sub_title {
    position: absolute;
    top: 20%;
    right: 13%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px 15px;
}

.sub_title h2 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 29px;
    writing-mode: vertical-rl;
    line-height: 3rem;
}

#kakeru {
    position: relative;
    margin-top: 6px;
    margin-bottom: 40px;
}

#kakeru::after {
    position: absolute;
    content: "";
    top: -25px;
    left: 15px;
    width: 50px;
    height: 50px;
    border-bottom: #3F4E4F 1.4px solid;
    transform: rotate(45deg);
}

#kakeru::before {
    position: absolute;
    content: "";
    top: -17px;
    right: 9px;
    width: 50px;
    height: 40px;
    border-bottom: #3F4E4F 1.4px solid;
    transform: rotate(-45deg);
}

#kenkoubi {
    font-size: 45px;
    color: #007DB1;
}

.line {
    width: 100%;
    height: 20px;
    background-color: #DCD7C9;
}

/*=====================================*/
/* main----about_method */
/*=====================================*/
.about_method {
    margin-top: 80px;
    margin-bottom: 150px;
}

#about_bg_sp {
    display: none;
}

h3 {
    font-size: 36px;
    font-family: 'Zen Old Mincho', serif;
    line-height: 1;
    text-align: center;
}

.h3_space {
    letter-spacing: -0.25rem;
}

.about_method h3 {
    position: relative;
    width: 400px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.about_method h3::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 400px;
    height: 400px;
    background-image: url(../images/sub_aboutnobi.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: -60px;
    right: -350px;
}

.about_bg {
    margin-top: 40px;
    background-color: #DFCBBC;
    padding-top: 90px;
    padding-bottom: 90px;
}

.about_bg img {
    display: block;
    max-width: 860px;
    padding: 20px;
    margin: auto;
}

.nobi_contents {
    width: 1100px;
    margin-top: 100px;
    margin-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
}

.nobi_item_flex {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.nobi_item_flex:nth-of-type(2) {
    flex-direction: row-reverse;
}

.nobi_item_p {
    text-align: center;
}

.nobi_title {
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

.nobi_title::before {
    content: "";
    width: 80px;
    height: 80px;
    border-top: #AD8B73 solid 1.4px;
    border-left: #AD8B73 solid 1.4px;
    position: absolute;
    top: -15px;
    left: -45px;
}

.nobi_title::after {
    content: "";
    width: 80px;
    height: 80px;
    border-right: #AD8B73 solid 1.4px;
    border-bottom: #AD8B73 solid 1.4px;
    position: absolute;
    bottom: -15px;
    right: -45px;
}

.nobi_subtitle {
    font-size: 22px;
    font-family: 'Zen Old Mincho', serif;
    line-height: 1;
    letter-spacing: -0.1rem;
    margin-bottom: 6px;
}

.nobi_maintitle {
    font-size: 53px;
    font-family: fot-tsukuaoldmin-pr6n, serif;
    font-weight: 300;
    font-style: normal;
    line-height: 1;
}

.nobi_copy {
    line-height: 2.3;
}

.tab_br {
    display: none;
}

.nobi_item_img {
    width: 460px;
    height: 250px;
    overflow: hidden;
}

.nobi_item_img img {
    transition: 0.8s all;
}

.nobi_item_img img:hover {
    transform: scale(1.15);
    transition: 0.8s all;
}

/*=====================================*/
/* main----please */
/*=====================================*/
.please_bg {
    background-color: #F9F4EB;
    padding-top: 70px;
    padding-bottom: 70px;
}

.please {
    background-image: url(../images/pleasebg.jpg);
    background-size: cover;
    background-position: center top;
    width: 780px;
    height: 540px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    outline: 1.2px solid #3F4E4F;
    outline-offset: 5px;
}

.please h6 img {
    position: absolute;
    top: 140px;
    left: 5%;
    display: block;
    width: 230px;
}

.please ul {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 17px;
    line-height: 1.4;
    padding: 20px 20px 10px;
    background-color: rgba(78, 76, 76, 0.5);
}

.please ul li {
    margin-bottom: 13px;
    list-style-image: url(../images/please_check.png);
    list-style-position: inside;
    padding-left: 1em;
    text-indent: -1em;
}

/*=====================================*/
/* main----why nobi */
/*=====================================*/
.why_nobi_bg {
    background-color: #F9F4EB;
    padding-top: 120px;
    padding-bottom: 80px;
}

.why_nobi_contents {
    width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why_nobi_contents h3 {
    position: relative;
    width: 700px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 80px;
}

.why_br {
    display: none;
}

.why_nobi_contents h3::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 400px;
    height: 400px;
    background-image: url(../images/sub_whynobi.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: -10px;
    right: -200px;
}

.why_nobi_contents p {
    margin-top: 20px;
    font-size: 16px;
    text-align: justify;
    line-height: 2.5;
    letter-spacing: 0.01rem;
}

.why_important {
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(transparent 50%, #F8F0BE 50%);
}

.why_img {
    margin: 50px;
    display: flex;
    justify-content: center;
}

.why_img img {
    width: 266px;
    height: 140px;
}

/*=====================================*/
/* main----customer */
/*=====================================*/
.customer {
    margin-top: 170px;
}

.customer h3 {
    position: relative;
    width: 300px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 90px;
}

.customer h3::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 400px;
    height: 400px;
    background-image: url(../images/sub_costomer.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: -10px;
    right: -300px;
}

#review_sp {
    display: none;
}

.customer p {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

.customer_br {
    display: none;
}

.review img {
    display: block;
    max-width: 920px;
    padding: 20px;
    height: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
}

.customer_slider img {
    width: auto;
    height: 230px;
    object-fit: cover;
}

.google_map {
    max-width: 920px;
    padding-left: 20px;
    padding-right: 20px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 90px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 13px;
}

.address img {
    max-width: 375px;
    margin-bottom: 160px;
}

address {
    width: 420px;
    font-size: 14px;
    text-align: right;
    line-height: 1.4;
}

iframe {
    width: 100%;
    aspect-ratio: 15/10;
    border-radius: 14px;
}

/*=====================================*/
/* main----service */
/*=====================================*/
.service {
    width: 1080px;
    margin-top: 200px;
    margin-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
    background-color: #F3E9DB;
    padding: 80px 66px;
    position: relative;
}

.service::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 90px;
    border-left: #AD8B73 solid 1.3px;
    transform: rotate(-30deg);
    top: 45px;
    left: 210px;
}

.service::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 90px;
    border-right: #AD8B73 solid 1.3px;
    transform: rotate(30deg);
    top: 45px;
    right: 210px;
}

.service h3 {
    position: relative;
    width: 600px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 90px;
}

.service h3::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 245px;
    height: 200px;
    background-image: url(../images/sub_service.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: -130px;
    right: -200px;
}

.h3_space_service {
    font-size: 34px;
    letter-spacing: 0rem;
}

.service_flex {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 95px 16px;
}

.service_item {
    width: 300px;
    height: 140px;
    background-color: #fff;
    position: relative;
}

.service_item img {
    position: absolute;
    width: 32px;
    top: -30px;
    left: 10px;
}

.service_item_p {
    position: absolute;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    width: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service_br {
    display: none;
}

.service_item_p sup {
    color: #B1244D;
}

.s_important {
    font-size: 21px;
    color: #B1244D;
}

.service_item:nth-of-type(7) {
    width: 610px;
}

.service_item:nth-of-type(7) p {
    width: 610px;
    font-size: 18px;
}

.service_item:nth-of-type(7) img {
    width: 130px;
    top: -30px;
    left: -90px;
}

.mail_link_p {
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: 350px;
    left: 85px;
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.2;
    letter-spacing: normal;
}

.mail_link_p_lh {
    line-height: 1.4;
}

.mail_link {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.08rem;
    color: #CA8B2C;
}

.mail_link:hover {
    opacity: 0.6;
}

/*=====================================*/
/* main----price */
/*=====================================*/
.price {
    width: 600px;
    margin: 150px auto 0;
    font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic, sans-serif";
}

.price h3 {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 36px;
    width: 400px;
}

.price h3::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 180px;
    height: 110px;
    background-image: url(../images/sub_price.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: -25px;
    right: -50px;
}

.price_content {
    padding: 26px 0;
    border-top: #3F4E4F solid 1px;
    border-bottom: #3F4E4F solid 1px;
}

.price_content .date {
    font-size: 25px;
    font-weight: 600;
    padding: 5px;
    color: #fff;
    text-align: center;
    background-color: #A27B5C;
    margin-bottom: 18px;
    letter-spacing: normal;
}

.price_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3px;
    vertical-align: middle;
}

#price_flex_1 {
    font-size: 31px;
    font-weight: 600;
    color: #A27B5C;
    margin-right: 4px;
}

.price_flex_2 {
    font-size: 26px;
    margin-right: 3px;
}

#price_flex_3 {
    font-size: 31px;
    font-weight: 600;
    text-decoration: line-through 4px solid #A27B5C;
}

#price_flex_4 {
    font-size: 21px;
    margin-right: -3px;
}

.price_flex_5 {
    font-size: 15px;
}

.price_flex img {
    width: 45px;
}

#price_flex_6 {
    font-size: 46px;
    font-weight: 600;
    color: #C56519;
    margin-right: -3px;
}

#price_flex_7 {
    font-size: 30px;
    color: #C56519;
    margin-right: -3px;
}

.annotation {
    font-size: 14px;
    text-align: right;
    margin-top: 4px;
}

.present {
    margin-top: 80px;
    text-align: center;
    color: #BF5666;
}

.present .present_title {
    font-size: 24px;
    font-weight: 600;
    position: relative;
}

.present .present_title::after {
    content: "";
    display: inline-block;
    background-image: url(../images/price_pika.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 60px;
    height: 60px;
    top: -45px;
    right: 200px;
}

.present .present_copy {
    margin-top: 5px;
    padding: 13px;
    font-size: 25px;
    font-weight: 600;
    border: #BF5666 solid 1px;
    border-radius: 30px;
    position: relative;
}

.present .present_copy::after {
    content: "";
    position: absolute;
    display: inline-block;
    background-image: url(../images/boul.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 140px;
    height: 140px;
    bottom: 10px;
    right: -10px;
    transform: rotate(32deg);
}

.kochira_mail_link_sp {
    display: none;
}

/* ==================================== */
/* kochira button 1*/
/* ==================================== */
.kochira_button {
    display: block;
    margin: 110px auto 20px;
    width: 400px;
    background-color: #CA8B2C;
    border-radius: 60px;
    padding: 20px 35px;
    box-shadow: 4px 4px 7px 1px #d1c29d;
    position: relative;
}

.kochira_button:hover {
    opacity: 0.6;
    transition: 0.4s;
}

.kochira_button p {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
}

.kochira_button::after {
    position: absolute;
    display: inline-block;
    content: "";
    background-image: url(../images/arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 54px;
    height: 20px;
    top: 35px;
    right: 25px;
}

.kochira_button:hover::after {
    transform: translateX(12px);
    transform-origin: left;
    transition: 0.3s;
}

.kochira_mail_link {
    width: 700px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: normal;
    padding-left: 1em;
    text-indent: -1em;
    margin-left: auto;
    margin-right: auto;
}

.kochira_mail_link .mail_link {
    font-size: 18px;
    letter-spacing: 0.08rem;
}

.main_kochira_button_sp {
    display: none;
}

/* ==================================== */



/*=====================================*/
/* main----profile */
/*=====================================*/
.profile_wrapper {
    width: 100%;
    background-color: #F5F3EF;
    padding: 100px 20px;
    margin-top: 200px;
}

.profile {
    max-width: 920px;
    margin: auto;
}

.profile_h4 {
    background-image: url(../images/profile_title.png);
    background-size: 920px;
    background-repeat: no-repeat;
    padding: 30px;
    position: relative;
}

h4 {
    font-size: 26px;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 400;
    color: #fff;
}

.profile_h4 .instructor {
    max-width: 460px;
    max-height: 460px;
    object-fit: contain;
    position: absolute;
    top: 30px;
    right: -30px;
}

.profile_h4_img {
    width: 180px;
    position: absolute;
    top: 0;
    right: 300px;
}

.profile_title {
    margin-top: 56px;
    margin-bottom: 50px;
    padding-bottom: 13px;
    border-bottom: 1px solid #A27B5C;
}

.profile_title .alphabet {
    font-family: 'Zen Old Mincho', serif;
    font-size: 28px;
    color: #A27B5C;
    line-height: 1;
    letter-spacing: 0.1rem;
    margin-bottom: 10px;
}

.profile_title .name {
    font-family: 'Zen Old Mincho', serif;
    font-size: 46px;
    line-height: 1;
    margin-bottom: 20px;
}

.profile_title .duties {
    font-size: 16px;
}

.profile_text p {
    line-height: 2;
    margin-bottom: 20px;
}

.p_continue,
.title {
    display: none;
}

.pro_text_bold {
    font-weight: 600;
}

.profile_text_br,
.profile_text_br_sp {
    display: none;
}

.profile_text_emphasize {
    margin-top: 40px;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.7;
    color: #A27B5C;
    text-align: center;
    position: relative;
}

.profile_text_emphasize::before {
    position: absolute;
    content: "";
    display: inline-block;
    background-image: url(../images/pro_tenten1.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
    top: 0;
    left: -30px;
}

.profile_text_emphasize::after {
    position: absolute;
    content: "";
    display: inline-block;
    background-image: url(../images/pro_tenten2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
    top: 0;
    right: -20px;
}

/* ==================================== */
/* kochira button 2*/
/* ==================================== */
.main_kochira_button_2 {
    margin-bottom: 200px;
}


/* ==================================== */
/* Q&A*/
/* ==================================== */

.q_a {
    width: 920px;
    padding: 50px 60px 80px;
    border: #A27B5C 1px solid;
    margin-right: auto;
    margin-left: auto;
}

.q_a h5 {
    font-size: 53px;
    font-family: fot-tsukuaoldmin-pr6n, serif;
    font-weight: 300;
    font-style: normal;
    text-align: center;
    line-height: 1.5;
}

.q_a p {
    font-size: 26px;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
}

.q_a_contents dl dt {
    font-size: 21px;
    font-weight: 600;
    color: #A27B5C;
    margin-top: 65px;
    margin-bottom: 18px;
    text-indent: -1em;
    padding-left: 1.3em;
}

.q_a_contents dl dd {
    font-size: 16px;
    text-align: justify;
    line-height: 1.7;
    text-indent: -2.5em;
    padding-left: 3.5em;
}

.q_a_contents dl dd a {
    color: #CA8B2C;
    font-weight: 600;
}

.q_a_contents dl dd a:hover {
    opacity: 0.6;
}

.q_icon {
    font-size: 36px;
    font-weight: 300;
    margin-right: 0.3em;
}

.a_icon {
    font-size: 20px;
    font-weight: 300;
    margin-right: 13px;
}

.logo_online {
    display: block;
    width: 100px;
    margin-top: 160px;
    margin-bottom: 50px;
    margin-right: auto;
    margin-left: auto;
}

/*=====================================*/
/* footer */
/*=====================================*/

footer {
    width: 100%;
    background-color: #A27B5C;
    color: #fff;
    text-align: center;
    padding: 20px;
}


/* ================================ タブレット ================================== */
@media only screen and (max-width: 1200px) and (min-width: 767px) {

    /*=====================================*/
    /* header */
    /*=====================================*/
    .pc_logo_noriko {
        top: 7.5px;
        left: 20px;
        width: 65px;
    }

    .pc_navi_flex {
        top: 26px;
        right: 40px;
        gap: 80px;
    }

    .pc_ul {
        gap: 50px;
    }

    .pc_ul li {
        font-size: 14px;
    }

    .pc_sns img {
        width: 25px;
    }

    .header_wrapp {
        height: 80px;
    }

    /*=====================================*/
    /* main----top */
    /*=====================================*/
    .button {
        bottom: 30px;
        right: 0;
        font-size: 16px;
        font-weight: 600;
        writing-mode: vertical-rl;
        line-height: 1.4rem;
        background: #CA8B2C;
        color: #fff;
        height: 270px;
        padding: 20px 11px;
        border-radius: 14px 0 0 14px;
    }

    /*=== scroll down ====*/
    .scrolldown {
        bottom: 60px;
        animation: arrowmove 2s ease-in-out infinite;
    }

    @keyframes arrowmove {
        0% {
            right: 11px;
        }

        50% {
            right: 23px;
        }

        100% {
            right: 11px;
        }
    }

    .scrolldown:before {
        content: "";
        position: absolute;
        bottom: 4px;
        right: -1px;
        /* arrow */
        width: 15px;
        height: 1.2px;
        background: #fff;
        transform: skewY(30deg);
    }

    .scrolldown:after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        /* arrow */
        width: 36px;
        height: 1px;
        background: #fff;
    }

    #click {
        position: absolute;
        left: -36px;
        bottom: -16px;
        font-size: 12px;
    }

    /* top_slider */
    h1 {
        top: 12.5%;
        left: 5%;
        font-size: 70px;
        line-height: 1.25;
    }

    .sub_title {
        position: absolute;
        top: 12%;
        right: 10%;
        padding: 15px 5px;
    }

    .sub_title h2 {
        font-size: 22px;
        line-height: 2.5rem;
    }

    #kakeru {
        margin-top: 6px;
        margin-bottom: 35px;
    }

    #kakeru::after {
        position: absolute;
        content: "";
        top: -19px;
        left: 13px;
        width: 40px;
        height: 40px;
        border-bottom: #3F4E4F 1.4px solid;
        transform: rotate(45deg);
    }

    #kakeru::before {
        position: absolute;
        content: "";
        top: -11px;
        right: 5px;
        width: 40px;
        height: 30px;
        border-bottom: #3F4E4F 1.4px solid;
        transform: rotate(-45deg);
    }

    #kenkoubi {
        font-size: 34px;
    }

    .line {
        height: 16px;
    }

    /*=====================================*/
    /* main----about_method */
    /*=====================================*/
    .about_method {
        margin-top: 70px;
        margin-bottom: 100px;
    }

    h3 {
        font-size: 30px;
    }


    .about_method h3 {
        width: 300px;
    }

    .about_method h3::before {
        width: 280px;
        height: 200px;
        top: -40px;
        right: -230px;
    }

    .about_bg {
        margin-top: 30px;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .about_bg img {
        max-width: 860px;
    }

    .nobi_contents {
        width: 700px;
        margin-top: 80px;
        margin-bottom: 100px;
    }

    .nobi_item_flex {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 30px;
        margin-bottom: 70px;
    }

    .nobi_item_flex:nth-of-type(2) {
        flex-direction: row-reverse;
    }

    .nobi_item_p {
        text-align: center;
    }

    .nobi_title {
        position: relative;
        display: inline-block;
        margin-bottom: 40px;
    }

    .nobi_title::before {
        content: "";
        width: 60px;
        height: 60px;
        border-top: #AD8B73 solid 1.4px;
        border-left: #AD8B73 solid 1.4px;
        position: absolute;
        top: -15px;
        left: -45px;
    }

    .nobi_title::after {
        content: "";
        width: 60px;
        height: 60px;
        border-right: #AD8B73 solid 1.4px;
        border-bottom: #AD8B73 solid 1.4px;
        position: absolute;
        bottom: -15px;
        right: -45px;
    }

    .nobi_subtitle {
        font-size: 17px;
        margin-bottom: 5px;
    }

    .nobi_maintitle {
        font-size: 45px;
    }

    .nobi_copy {
        font-size: 13px;
        line-height: 2;
    }

    .tab_br {
        display: inline;
    }

    .nobi_item_img {
        width: 300px;
        height: 140px;
        object-fit: contain;
    }

    /*=====================================*/
    /* main----please */
    /*=====================================*/
    .please_why_bg {
        padding-top: 70px;
        padding-bottom: 80px;
    }

    .please {
        width: 640px;
        height: 480px;
        object-fit: cover;
        outline-offset: 4px;
    }

    .please h6 img {
        top: 130px;
        left: 3%;
        display: block;
        width: 190px;
    }

    .please ul {
        top: 15px;
        right: 15px;
        font-size: 16px;
        line-height: 1.46;
        padding: 15px 15px 10px;
    }

    .please ul li {
        margin-bottom: 10px;
        list-style-image: url(../images/please_check.png);
        list-style-position: inside;
        padding-left: 1em;
        text-indent: -1em;
    }

    /*=====================================*/
    /* main----why nobi */
    /*=====================================*/
    .why_nobi_bg {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .why_nobi_contents {
        width: 600px;
    }

    .why_nobi_contents h3 {
        width: 500px;
        margin-bottom: 70px;
    }

    .why_nobi_contents h3::before {
        content: "";
        position: absolute;
        display: inline-block;
        width: 300px;
        height: 200px;
        background-image: url(../images/sub_whynobi.png);
        background-size: contain;
        background-repeat: no-repeat;
        top: 10px;
        right: -100px;
    }

    .why_nobi_contents p {
        margin-top: 17px;
        font-size: 15px;
        line-height: 2.5;
        letter-spacing: -0.02rem;
    }

    .why_important {
        font-size: 17px;
    }

    .why_img {
        margin: 40px;
        display: flex;
        justify-content: center;
    }

    .why_img img {
        width: 230px;
        height: 100px;
    }

    /*=====================================*/
    /* main----customer */
    /*=====================================*/
    .customer {
        margin-top: 135px;
    }

    .customer h3 {
        position: relative;
        width: 300px;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 90px;
    }

    .customer h3::before {
        width: 300px;
        height: 200px;
        top: 0px;
        right: -150px;
    }

    .customer p {
        font-size: 16px;
    }

    .review img {
        max-width: 920px;
        padding: 20px;
        margin-top: 40px;
        margin-bottom: 5px;
    }

    .customer_slider img {
        height: 200px;
    }

    .address img {
        max-width: 320px;
        margin-bottom: 100px;
    }

    address {
        width: 300px;
        font-size: 13px;
    }

    iframe {
        width: 100%;
        aspect-ratio: 15/10;
    }

    /*=====================================*/
    /* main----service */
    /*=====================================*/
    .service {
        width: 700px;
        margin-top: 150px;
        margin-bottom: 60px;
        padding: 40px;
        position: relative;
    }

    .service::before {
        position: absolute;
        content: "";
        width: 40px;
        height: 65px;
        transform: rotate(-30deg);
        top: 17px;
        left: 90px;
    }

    .service::after {
        position: absolute;
        content: "";
        width: 40px;
        height: 65px;
        transform: rotate(30deg);
        top: 17px;
        right: 90px;
    }

    .service h3 {
        font-size: 27px;
        position: relative;
        width: 500px;
        margin-bottom: 74px;
    }

    .service h3::before {
        content: "";
        position: absolute;
        display: inline-block;
        width: 180px;
        height: 100px;
        top: -90px;
        right: -100px;
    }

    .h3_space_service {
        font-size: 27px;
        letter-spacing: 0rem;
    }

    .service_flex {
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 70px 16px;
    }

    .service_item {
        width: 300px;
        height: 120px;
        position: relative;
    }

    .service_item img {
        position: absolute;
        width: 30px;
        top: -15px;
        left: 10px;
    }

    .service_item_p {
        position: absolute;
        font-size: 17px;
        font-weight: 600;
        text-align: center;
        line-height: 1.3;
        width: 280px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .s_important {
        font-size: 21px;
    }

    .service_item:nth-of-type(7) {
        width: 610px;
    }

    .service_item:nth-of-type(7) p {
        width: 610px;
        font-size: 18px;
    }

    .service_item:nth-of-type(7) img {
        width: 120px;
        top: -15px;
        left: -30px;
    }

    .mail_link_p {
        font-size: 13.5px;
        top: 267px;
        left: 44px;
    }

    .mail_link {
        font-size: 16px;
    }

    /*=====================================*/
    /* main----price */
    /*=====================================*/
    .price {
        width: 600px;
        margin: 100px auto 0;
    }

    /* ==================================== */
    /* kochira button 1*/
    /* ==================================== */
    .kochira_button {
        display: block;
        margin: 90px auto 20px;
        width: 350px;
        border-radius: 60px;
        padding: 15px 25px;
        box-shadow: 4px 4px 7px 1px #d1c29d;
        position: relative;
    }

    .kochira_button:hover {
        opacity: 0.6;
        transition: 0.4s;
    }

    .kochira_button p {
        font-size: 18px;
        line-height: 1.3;
    }

    .kochira_button::after {
        position: absolute;
        display: inline-block;
        content: "";
        background-image: url(../images/arrow.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 44px;
        height: 20px;
        top: 28px;
        right: 22px;
    }

    .kochira_button:hover::after {
        transform: translateX(12px);
        transform-origin: left;
        transition: 0.3s;
    }

    .kochira_mail_link {
        width: 640px;
        font-size: 15px;
    }

    .kochira_mail_link .mail_link {
        font-size: 16.5px;
        letter-spacing: 0.08rem;
    }

    /* ==================================== */


    /*=====================================*/
    /* main----profile */
    /*=====================================*/
    .profile_wrapper {
        padding: 60px 20px;
        margin-top: 110px;
    }

    .profile {
        max-width: 920px;
        margin: auto;
    }

    .profile_h4 {
        background-image: url(../images/profile_title.png);
        background-size: 920px;
        padding: 30px;
        position: relative;
    }

    h4 {
        font-size: 22px;
    }

    .profile_h4 .instructor {
        max-width: 330px;
        max-height: 330px;
        top: 20px;
        right: 20px;
    }

    .profile_h4_img {
        width: 150px;
        top: 20px;
        right: 230px;
    }

    .profile_title {
        margin-top: 40px;
        margin-bottom: 40px;
        padding-bottom: 8px;
    }

    .profile_title .alphabet {
        font-size: 23px;
        color: #A27B5C;
        margin-bottom: 8px;
    }

    .profile_title .name {
        font-size: 37px;
        margin-bottom: 20px;
    }

    .profile_title .duties {
        font-size: 15px;
    }

    .profile_text p {
        font-size: 15px;
        line-height: 2;
        margin-bottom: 20px;
    }

    .pro_text_bold {
        font-weight: 600;
    }

    .profile_text_br {
        display: inline;
    }

    .profile_text_emphasize {
        width: 100%;
        margin-top: 45px;
        font-size: 17px;
    }

    .profile_text_emphasize::before {
        width: 30px;
        height: 30px;
        top: 0;
        left: 16%;
    }

    .profile_text_emphasize::after {
        width: 30px;
        height: 30px;
        top: 0;
        right: 16%;
    }

    /* ==================================== */
    /* kochira button 2*/
    /* ==================================== */
    .main_kochira_button_2 {
        margin-bottom: 130px;
    }


    /* ==================================== */
    /* Q&A*/
    /* ==================================== */

    .q_a {
        max-width: 700px;
        padding: 40px 40px 60px;
    }

    .q_a h5 {
        font-size: 43px;
    }

    .q_a p {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .q_a_contents dl dt {
        font-size: 18px;
        margin-top: 55px;
        margin-bottom: 15px;
        text-indent: -1em;
        padding-left: 1.3em;
    }

    .q_a_contents dl dd {
        font-size: 15px;
        text-indent: -2.5em;
        padding-left: 3.5em;
    }

    .q_icon {
        font-size: 30px;
        margin-right: 0.4em;
    }

    .a_icon {
        font-size: 17px;
        margin-right: 13px;
    }

    .logo_online {
        width: 70px;
        margin-top: 120px;
        margin-bottom: 50px;
    }

    /*=====================================*/
    /* footer */
    /*=====================================*/

    footer {
        padding: 14px;
    }
}


/* ============================ SP ============================= */
@media only screen and (max-width: 767px) {

    /*=====================================*/
    /* header */
    /*=====================================*/
    .pc_logo_noriko {
        top: 8px;
        left: 10px;
        width: 60px;
    }

    .pc_navi_flex {
        display: none;
    }

    /* --------------- navi --------------- */
    .sp_navi {
        display: block;
        position: fixed;
        top: 0;
        left: -165px;
        padding: 50px 35px;
        width: 165px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.85);
        z-index: 100;
        transition: all 0.6s;
    }

    .sp_navi.panelactive {
        left: 0;
    }

    .sp_ul li {
        font-size: 17px;
        line-height: 1;
        margin-bottom: 45px;
    }

    .header_wrapp {
        height: 76px;
    }

    .toggle {
        display: block;
        position: fixed;
        top: 10px;
        right: 15px;
        z-index: 100;
        width: 65px;
    }

    .openbtn {
        position: relative;
        cursor: pointer;
        width: 65px;
        height: 60px;
    }

    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        right: 20px;
        height: 1.2px;
        border-radius: 1px;
        background: #fff;
        width: 55%;
    }

    .openbtn span:nth-of-type(1) {
        top: 18px;
    }

    .openbtn span:nth-of-type(2) {
        top: 27px;
    }

    .openbtn span:nth-of-type(3) {
        top: 36px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 21px;
        right: 24px;
        transform: translateY(6px) rotate(-45deg);
        width: 40%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 33px;
        right: 24px;
        transform: translateY(-6px) rotate(45deg);
        width: 40%;
    }

    /*=====================================*/
    /* main----top */
    /*=====================================*/
    .button,
    .scrolldown {
        display: none;
    }

    .line {
        display: none;
    }

    /* top_slider */
    h1 {
        top: 140px;
        left: 15px;
        font-size: 55px;
        line-height: 1.2;
    }

    .sub_title {
        width: 100%;
        position: absolute;
        top: 370px;
        left: 0px;
        background-color: #ebe5d8;
        padding: 20px;
    }

    .sub_title h2 {
        font-size: 20px;
        writing-mode: inherit;
        line-height: 2.2rem;
        text-align: center;
    }

    #kakeru {
        margin-top: 0px;
        margin-right: 40px;
    }

    #kakeru::after {
        top: -19px;
        left: 14px;
        width: 40px;
        height: 40px;
    }

    #kakeru::before {
        top: -19px;
        right: -26px;
        width: 40px;
        height: 40px;
    }

    #kenkoubi {
        font-size: 28px;
    }

    .top_slider img {
        height: 370px;
        width: auto;
        object-fit: cover;
    }

    /*=====================================*/
    /* main----about_method */
    /*=====================================*/
    .about_method {
        margin-top: 200px;
        margin-bottom: 0px;
    }

    #about_bg_pc {
        display: none;
    }

    #about_bg_sp {
        display: block;
    }

    h3 {
        font-size: 23px;
    }


    .about_method h3 {
        width: 210px;
    }

    .about_method h3::before {
        width: 200px;
        height: 120px;
        top: -80px;
        right: -32px;
    }

    .about_bg {
        margin-top: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .about_bg img {
        max-width: 860px;
    }

    .nobi_contents {
        width: 100%;
        margin-top: 50px;
        margin-bottom: 0px;
        padding: 20px 20px 0px;
    }

    .nobi_item_flex {
        display: block;
        margin-bottom: 70px;
    }

    .nobi_title {
        margin-bottom: 30px;
    }

    .nobi_title::before {
        content: "";
        width: 40px;
        height: 40px;
        top: -12px;
        left: -30px;
    }

    .nobi_title::after {
        content: "";
        width: 40px;
        height: 40px;
        bottom: -12px;
        right: -30px;
    }

    .nobi_subtitle {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .nobi_maintitle {
        font-size: 36px;
    }

    .nobi_copy {
        text-align: justify;
        font-size: 13px;
        line-height: 2;
    }

    .nobi_copy br {
        display: none;
    }

    .nobi_item_img {
        margin-top: 20px;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    /*=====================================*/
    /* main----please */
    /*=====================================*/

    .please_bg {
        padding-top: 20px;
        padding-bottom: 50px;
    }

    .please {
        background-size: 100%;
        background-position: left bottom;
        background-repeat: no-repeat;
        width: 90%;
        height: 130px;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 350px;
        position: relative;
        outline: 1.2px solid #3F4E4F;
        outline-offset: 3px;
    }

    .please h6 img {
        position: absolute;
        top: 29%;
        left: 34%;
        display: block;
        width: 200px;
    }

    .please ul {
        background-color: rgba(168, 135, 113, 0);
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        font-size: 15px;
        position: absolute;
        top: 430px;
        left: 50%;
        transform: translate(-50%, -50%);
        line-height: 1.46;
        padding: 0px;
    }

    .please ul li {
        color: #3F4E4F;
        margin-bottom: 13px;
        text-align: justify;
        padding-left: 1.25em;
        text-indent: -1.25em;
        list-style-image: url(../images/please_check_sp.png);
    }

    .please ul li:nth-last-of-type(1) {
        margin-bottom: 100px;
    }

    /*=====================================*/
    /* main----why nobi */
    /*=====================================*/
    .why_nobi_bg {
        padding-top: 140px;
        padding-bottom: 0px;
    }

    .why_nobi_contents {
        width: 100%;
        padding: 50px 20px;
    }

    .why_nobi_contents h3 {
        width: 280px;
        line-height: 1.3;
        margin-bottom: 50px;
    }

    .why_nobi_contents p br {
        display: none;
    }

    .why_br {
        display: block;
    }

    .why_nobi_contents h3::before {
        width: 220px;
        height: 100px;
        top: -50px;
        right: 10px;
    }

    .why_nobi_contents p {
        margin-top: 15px;
        font-size: 14px;
        line-height: 2;
    }



    .why_important {
        font-size: 15px;
    }

    .why_img {
        width: 80%;
        height: auto;
        margin: 20px auto;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .why_img img {
        object-fit: cover;
    }

    /*=====================================*/
    /* main----customer */
    /*=====================================*/
    .customer {
        margin-top: 70px;
    }

    .customer h3 {
        width: 250px;
        margin-bottom: 30px;
    }

    .customer h3::before {
        width: 220px;
        height: 150px;
        top: 12px;
        right: -10px;
    }

    #review_pc {
        display: none;
    }

    #review_sp {
        display: block;
    }

    .customer p {
        font-size: 15px;
        line-height: 1.4;
    }

    .customer_br {
        display: inline;
    }

    .review img {
        width: 100%;
        padding: 20px;
        margin-top: 0px;
        margin-bottom: 3px;
    }

    .customer_slider img {
        width: 200px;
        height: 100px;
    }

    .google_map {
        display: block;
        margin-top: 40px;
    }

    .address img {
        max-width: 260px;
        margin: 0 auto 20px;
    }

    address {
        width: 100%;
        font-size: 13px;
        margin-bottom: 5px;
    }

    /*=====================================*/
    /* main----service */
    /*=====================================*/
    .service {
        width: 100%;
        margin-top: 60px;
        margin-bottom: 30px;
        padding: 80px 20px 30px;
    }

    .service::before {
        width: 40px;
        height: 65px;
        transform: rotate(-25deg);
        top: 65px;
        left: 50px;
    }

    .service::after {
        width: 40px;
        height: 65px;
        transform: rotate(25deg);
        top: 65px;
        right: 50px;
    }

    .service h3 {
        font-size: 22px;
        width: 250px;
        margin-bottom: 35px;
        line-height: 1.2;
    }

    .service h3::before {
        width: 150px;
        height: 100px;
        top: -70px;
        right: -20px;
    }

    .h3_space_service {
        font-size: 22px;
        letter-spacing: 0rem;
    }

    .service_br {
        display: inline;
    }

    .service_flex {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0;
    }

    .service_item {
        width: 100%;
        height: 100px;
        position: relative;
        margin-bottom: 20px;
    }

    .service_item:nth-of-type(1) {
        margin-bottom: 90px;
    }

    .service_item img {
        position: absolute;
        width: 30px;
        top: -0px;
        left: 10px;
    }

    .service_item_p {
        position: absolute;
        font-size: 17px;
        font-weight: 600;
        text-align: center;
        line-height: 1.4;
        width: 270px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .s_important {
        font-size: 19px;
    }

    .service_item:nth-of-type(7) {
        width: 100%;
        height: 150px;
    }

    .service_item:nth-of-type(7) p {
        padding-top: 30px;
        width: 100%;
        font-size: 17px;
    }

    .service_item:nth-of-type(7) img {
        width: 120px;
        top: 0px;
        left: 10px;
    }

    .mail_link_p {
        padding-left: 15px;
        padding-right: 20px;
        font-size: 13px;
        top: 275px;
        left: 20px;
    }

    .mail_link_p_br {
        display: inline;
    }

    .mail_link {
        font-size: 16px;
    }


    /*=====================================*/
    /* main----price */
    /*=====================================*/
    .price {
        width: 100%;
        margin: 70px auto 0;
        padding: 20px 20px 0px;
    }

    .price h3 {
        margin-bottom: 36px;
        width: 200px;
    }

    .price h3::before {
        width: 140px;
        height: 90px;
        top: 3px;
        right: -30px;
    }

    .price_content {
        padding: 20px 0;
    }

    .price_content .date {
        font-size: 20px;
        line-height: 1.3;
        padding: 5px;
        color: #fff;
        text-align: center;
        background-color: #A27B5C;
        margin-bottom: 18px;
        letter-spacing: normal;
    }

    .price_flex {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 13px;
        vertical-align: middle;
    }

    #price_flex_1 {
        font-size: 25px;
        margin-right: 4px;
    }

    .price_flex_2 {
        font-size: 20px;
        margin-right: 3px;
    }

    #price_flex_3 {
        font-size: 30px;
        font-weight: 600;
        text-decoration: line-through 4px solid #A27B5C;
        margin-right: 5px;
    }

    #price_flex_4 {
        font-size: 18px;
        margin-right: -3px;
    }

    .price_flex_5 {
        font-size: 15px;
    }

    .price_flex img {
        width: 36px;
        transform: rotate(90deg);
    }

    #price_flex_6 {
        font-size: 38px;
        font-weight: 600;
        color: #C56519;
        margin-right: -3px;
    }

    #price_flex_7 {
        font-size: 20px;
        color: #C56519;
        margin-right: -3px;
    }

    .annotation {
        font-size: 13px;
        text-align: right;
        margin-top: 4px;
    }

    .present {
        margin-top: 60px;
    }

    .present .present_title {
        font-size: 21px;
        display: inline-block;
    }

    .present .present_title::after {
        width: 50px;
        height: 50px;
        transform: rotate(-85deg);
        top: -40px;
        left: -40px;
    }

    .present .present_copy {
        margin-top: 5px;
        padding: 13px;
        font-size: 20px;
        border-radius: 60px;
        line-height: 1.3;
    }

    .present .present_copy::after {
        width: 100px;
        height: 100px;
        bottom: 40px;
        right: 10px;
        transform: rotate(28deg);
    }

    .main_kochira_button_1 {
        margin-top: -50px;
    }

    /* ==================================== */


    /* ==================================== */
    /* kochira button スマホ*/
    /* ==================================== */
    .main_kochira_button_sp {
        display: block;
        width: 100%;
        position: fixed;
        bottom: -87px;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 80;
    }

    .kochira_button {
        width: 260px;
        border-radius: 60px;
        padding: 10px 20px;
        box-shadow: none;
    }

    .kochira_button p {
        font-size: 16px;
        line-height: 1.3;
    }

    .kochira_button::after {
        position: absolute;
        display: inline-block;
        content: "";
        background-image: url(../images/arrow.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 34px;
        height: 15px;
        top: 23px;
        right: 10px;
    }

    .kochira_button:hover::after {
        transform: translateX(0px);
        transform-origin: left;
        transition: 0s;
    }

    .kochira_mail_link {
        margin-top: -10px;
        width: 90%;
        font-size: 14px;
    }

    .kochira_mail_link .mail_link {
        font-size: 15px;
    }

    /* ==================================== */


    /*=====================================*/
    /* main----profile */
    /*=====================================*/
    .profile_wrapper {
        padding: 30px 20px;
        margin-top: 70px;
    }

    .profile {
        width: 100%;
        margin: auto;
    }

    .profile_h4 {
        background-size: cover;
        padding: 15px;
    }

    h4 {
        font-size: 20px;
    }

    .profile_h4 .instructor {
        width: 220px;
        height: 220px;
        top: 65px;
        left: 0px;
    }

    .profile_h4_img {
        width: 150px;
        top: 70px;
        right: 10px;
    }

    .profile_title {
        margin-top: 250px;
        margin-bottom: 30px;
        padding-bottom: 5px;
    }

    .profile_title .alphabet {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .profile_title .name {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .profile_title .duties {
        font-size: 14px;
    }

    .profile_text p:not(:last-child) {
        font-size: 13px;
        line-height: 2;
        margin-bottom: 10px;
        text-align: justify;
    }

    .pro_text_br_sp {
        display: none;
    }

    .p_continue {
        display: block;
        font-size: 11px;
        padding-left: 12px;
        text-align: center;
    }

    .title {
        display: block;
        position: relative;
        cursor: pointer;
        font-size: 0.9rem;
        font-weight: normal;
        transition: all .5s ease;
        width: 30px;
        margin: 12px auto 40px;
    }

    .title::before,
    .title::after {
        position: absolute;
        content: '';
        width: 15px;
        height: 1px;
        background-color: #333;
    }

    .title::before {
        top: 48%;
        left: 15px;
        transform: rotate(0deg);
    }

    .title::after {
        top: 48%;
        left: 15px;
        transform: rotate(90deg);
    }

    .title.close::before {
        transform: rotate(45deg);
    }

    .title.close::after {
        transform: rotate(-45deg);
    }

    .sp_box {
        display: none;
    }

    .profile_text_br,
    .profile_text_br_sp {
        display: inline;
    }

    .profile_text_emphasize {
        width: 100%;
        margin-top: 30px;
        font-size: 15px;
        letter-spacing: normal;
        text-align: center;
    }

    .profile_text_emphasize::before {
        width: 30px;
        height: 30px;
        top: 0;
        left: 3%;
    }

    .profile_text_emphasize::after {
        width: 30px;
        height: 30px;
        top: 0;
        right: 3%;
    }

    /* ==================================== */
    /* kochira button 2*/
    /* ==================================== */
    .main_kochira_button_2 {
        margin-top: -40px;
        margin-bottom: 80px;
    }


    /* ==================================== */
    /* Q&A*/
    /* ==================================== */

    .q_a {
        width: 90%;
        padding: 20px 10px 30px;
        margin-top: 50px;
        letter-spacing: normal;
        text-align: justify;
    }

    .q_a h5 {
        font-size: 35px;
    }

    .q_a p {
        font-size: 18px;
        margin-bottom: 0px;
    }

    .q_a_contents dl dt {
        font-size: 16px;
        margin-top: 30px;
        margin-bottom: 10px;
        text-indent: -2.1em;
        padding-left: 2.3em;
    }

    .q_a_contents dl dd {
        font-size: 13px;
        line-height: 1.7;
        text-indent: -2.2em;
        padding-left: 2.7em;
    }

    .q_icon {
        font-size: 23px;
        margin-right: 0.4em;
    }

    .a_icon {
        font-size: 16px;
        margin-right: 10px;
    }

    .logo_online {
        width: 70px;
        margin-top: 30px;
        margin-bottom: 100px;
    }

    /*=====================================*/
    /* footer */
    /*=====================================*/

    footer {
        padding: 10px;
    }
}