* {
    font-family: "Zen Kaku Gothic New", sans-serif;
}
.header {
    padding: 0;
}
.heaer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 95%;
}
.header-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: calc(100% - 520px);
}
.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    width: 500px;
}
.logo {
    display: block;
    margin-right: 35px;
    width: 100px;
}
.header-nav__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.header-nav__list li a {
    color: #000;
    font-size: 14px;
    font-weight: 700;
}
.header-tel {
    line-height: 0;
    width: 200px;
}
.header-contact a {
    border: 2px solid #008dbd;
    border-radius: 50px;
    color: #008dbd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 21px;
    font-weight: 700;
    height: 56px;
    padding: 3px 25px 0;
    width: 100%;
    max-width: max-content;
}
.header-linebtn {
    width: 56px;
}
.header-menu {
    display: none;
}
.panel {
    background: #fff;
    height: 100%;
    padding: 90px 25px 50px;
    position: fixed;
    right: -100%;
    top: 0;
    transition-duration: .3s;
    width: 100%;
    max-width: 300px;
    z-index: 10;
}
.panel-bg {
    background: rgb(0 0 0 / 20%);
    display: none;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
}
@media screen and (max-width: 1368px) {
    .header-left {
        width: calc(100% - 360px);
    }
    .header-right {
        width: 351px;
    }
    .logo {
        margin-right: 30px;
    }
    .header-nav__list {
        gap: 15px;
    }
    .header-tel {
        width: 150px;
    }
    .header-contact a {
        font-size: 18px;
        height: 45px;
        padding: 4px 12px 0;
    }
    .header-linebtn {
        width: 35px;
    }
}
@media screen and (max-width: 1168px) {
    .header-left {
        width: calc(100% - 300px);
    }
    .header-right {
        width: 300px;
    }
    .logo {
        margin-right: 5px;
        width: 80px;
    }
    .header-nav__list {
        gap: 10px;
    }
    .header-tel {
        width: 120px;
    }
    .header-contact a {
        font-size: 14px;
        height: 40px;
        padding: 3px 10px 0;
    }
}
@media screen and (max-width: 968px) {
    .header-left {
        width: 80px;
    }
    .header-right {
        width: calc(100% - 100px);
    }
    .header-nav {
        display: none;
    }
    .header-tel {
        display: none;
    }
    /* hamberger */
    .header-menu {
        display: block;
        height: 25px;
        position: relative;
        text-align: center;
        width: 30px;
        z-index: 999999;
    }
    .header-menu span {
        display: block;
    }
    .header-menu___trigger {
        position: relative;
        width: 100%;
        height: 100%;
        cursor: pointer;
        z-index: 3;
    }
    .header-menu___trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #545454;
        border-radius: 4px;
    }
    .header-menu___trigger, .header-menu___trigger span {
        display: inline-block;
        transition: all .5s;
        box-sizing: border-box;
    }
    .header-menu___trigger span:nth-of-type(1) {
        top: 0;
    }
    .header-menu___trigger span:nth-of-type(2) {
        top: 12px;
    }
    .header-menu___trigger span:nth-of-type(3) {
        bottom: 0;
    }
    .header-menu___trigger.active span:nth-of-type(1) {
        top: -6px;
    }
    .header-menu___trigger.active span:nth-of-type(3) {
        bottom: -10px;
    }
    .header-menu___trigger span:nth-of-type(1) {
        animation: header-menu__bar01 .75s forwards;
    }
    @keyframes header-menu__bar01 {
        0% {
            transform: translateY(20px) rotate(45deg);
        }
        50% {
            transform: translateY(20px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .header-menu___trigger span:nth-of-type(2) {
        transition: all .25s .25s;
        opacity: 1;
    }
    .header-menu___trigger span:nth-of-type(3) {
        animation: header-menu__bar03 .75s forwards;
    }
    @keyframes header-menu__bar03 {
        0% {
            transform: translateY(-20px) rotate(-45deg);
        }
        50% {
            transform: translateY(-20px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .header-menu___trigger.active span:nth-of-type(1) {
        animation: active-header-menu__bar01 .75s forwards;
    }
    @keyframes active-header-menu__bar01 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(20px) rotate(0);
        }
        100% {
            transform: translateY(20px) rotate(45deg);
        }
    }
    .header-menu___trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .header-menu___trigger.active span:nth-of-type(3) {
        animation: active-header-menu__bar03 .75s forwards;
    }
    @keyframes active-header-menu__bar03 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(-20px) rotate(0);
        }
        100% {
            transform: translateY(-20px) rotate(-45deg);
        }
    }
    .panel.open {
        right: 0;
    }
    .panel-nav__list {
        display: grid;
        gap: 10px;
    }
    .panel-nav__list li a {
        font-size: 14px;
        font-weight: 600;
    }
}

.sliders {
    overflow: hidden;
}
/* reason */
.reason {
    background: #ebffff;
    background-image: url(https://kansai.wakare-aqa.com/wp-content/themes/emanon-pro-child/img/new/bg.svg);
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center top 4%;
    padding-top: 24%;
    padding-bottom: 75px;
}
.reason-inner {
    margin: 0 auto;
    width: 95%;
    max-width: 1100px;
}
.reason-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 50px;
}
.reason-left {
    width: calc(100% - 340px);
}
.reason-right {
    width: 311px;
}
.reason-left h2 {
    color: #000;
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 25px;
}
.reason-left p {
    color: #000;
    font-size: 24px;
    font-weight: 700;
}
.reason-point {
    margin: 65px 0 0;
}
.reason-point__ttl {
    margin: 0 0 35px;
    text-align: center;
}
.reason-point__ttl h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}
.reason-point__ttl h2 span {
    background: #008dbd;
    color: #fff;
    display: inline-block;
    font-size: 48px;
    font-weight: 700;
    padding: 3px 45px;
    width: max-content;
}
.reason-point__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.reason-point__item {
    background: #fff;
    filter: drop-shadow(0 0 5px rgb(135 135 135 / 75%));
    padding: 10px;
    text-align: center;
}
.reason-point__item h3 {
    border-bottom: 1px dashed #008dbd;
    color: #008dbd;
    display: inline-block;
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 20px;
    padding: 0;
}
.reason-point__image {
    aspect-ratio: 1 / 1;
    line-height: 0;
    height: 138px;
    margin: 0 auto;
}
.reason-point__image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.reason-point__text {
    margin: 10px 0 0;
}
.reason-point__text p {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}
@media screen and (max-width: 968px) {
    .reason {
        background-position: center top 2%;
        padding-top: 28%;
    }
    .reason-flex {
        padding-left: 25px;
    }
    .reason-left {
        width: calc(100% - 250px);
    }
    .reason-right {
        width: 220px;
    }
    .reason-left h2 {
        font-size: 28px;
        margin: 0 0 20px;
    }
    .reason-left p {
        font-size: 20px;
    }
    .reason-point__ttl h2 span {
        font-size: 32px;
        padding: 3px 30px;
    }
    .reason-point__items {
        gap: 15px;
    }
    .reason-point__item h3 {
        font-size: 24px;
    }
}
@media screen and (max-width: 768px) {
    .reason-left h2 {
        font-size: 21px;
    }
    .reason-left p {
        font-size: 16px;
    }
    .reason-point__ttl h2 span {
        font-size: 24px;
        padding: 3px 20px;
    }
    .reason-point__items {
        grid-template-columns: 1fr;
    }
    .reason-point__item h3 {
        font-size: 21px;
    }
}
@media screen and (max-width: 568px) {
    .reason {
        padding-top: 32%;
    }
    .reason-flex {
        flex-direction: column-reverse;
        padding-left: 0;
    }
    .reason-left {
        width: 100%;
    }
    .reason-right {
        width: 100%;
    }
}
@media screen and (max-width: 468px) {
    .reason-point__ttl h2 span {
        font-size: 20px;
        padding: 3px 20px;
    }
}



/* about */
.about {
    background: url(https://kansai.wakare-aqa.com/wp-content/themes/emanon-pro-child/img/new/about-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    padding: 75px 0 200px;
    position: relative;
}
.about::after {
    background: url(https://kansai.wakare-aqa.com/wp-content/themes/emanon-pro-child/img/new/about-text.svg) no-repeat;
    background-position: center top;
    background-size: contain;
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    top: 25px;
    width: 250px;
}
.about-inner {
    margin: 0 auto;
    width: 95%;
    max-width: 1000px;
}
.about-head {
    margin: 0 0 45px;
}
.about-head h2 {
    border-left: 4px solid #fff;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1em;
    padding-left: 10px;
}
.about-sub__ttl {
    margin: 0 0 60px;
}
.about-sub__ttl h3 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
}
.about-text {
    width: 85%;
}
.about-text p {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 2.2em;
}
.about-text p span {
    background: #ffff00;
    color: #000;
    display: inline;
    padding: 3px;
}
@media screen and (max-width: 968px) {
    .about::after {
        width: 200px;
    }
    .about-head h2 {
        font-size: 32px;
    }
    .about-sub__ttl {
        margin: 0 0 45px;
    }
    .about-sub__ttl h3 {
        font-size: 32px;
    }
    .about-text p {
        font-size: 20px;
    }
}
@media screen and (max-width: 768px) {
    .about::after {
        width: 180px;
    }
    .about-head h2 {
        font-size: 28px;
    }
    .about-sub__ttl {
        margin: 0 0 35px;
    }
    .about-sub__ttl h3 {
        font-size: 26px;
    }
    .about-text {
        width: 100%;
    }
    .about-text p {
        font-size: 15px;
    }
}
@media screen and (max-width: 568px) {
    .about::after {
        width: 100px;
    }
}

/* osaka */
.osaka {
    background: #fff;
    padding: 75px 0;
    position: relative;
}
.osaka-inner {
    margin: 0 auto;
    width: 95%;
    max-width: 1000px;
}
.osaka-head {
    margin: 0 0 45px;
}
.osaka-head h2 {
    border-left: 4px solid #000;
    color: #000;
    font-size: 36px;
    font-weight: 700;
    line-height: 1em;
    padding-left: 10px;
}
.osaka-body {
    display: grid;
    gap: 65px;
}
.osaka-content__ttl {
    margin: 0 0 25px;
}
.osaka-content__ttl h3 {
    color: #000;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.8em;
}
.osaka-content__txt {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    line-height: 2.2em;
}
.osaka-content__txt span {
    background: #ffff00;
    color: #000;
    display: inline;
    padding: 3px;
}
.osaka-content__image {
    overflow: hidden;
}
.osaka-content__image .half {
    float: right;
    margin-left: 35px;
    width: 50%;
}
.osaka-voice__content {
    display: grid;
    gap: 50px;
    margin-top: 65px;
}
.osaka-voice__item {
    background: #ebffff;
    border-radius: 20px;
    padding: 35px 25px;
    position: relative;
}
.osaka-voice__item::before,
.osaka-voice__item::after {
    background: url(../img/new/comment-icon.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 61px;
    position: absolute;
    width: 71px;
}
.osaka-voice__item::before {
    left: -35px;
    top: -30px;
}
.osaka-voice__item::after {
    right: -35px;
    bottom: -30px;
    transform: rotate(180deg);
}
.osaka-voice__item .txt {
    color: #000;
    font-size: 24px;
    font-weight: 700;
}
.osaka-voice__item .name {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    margin: 10px 0 0;
    text-align: right;
}
@media screen and (max-width: 1168px) {
    .osaka-voice__item {
        padding: 35px 25px;
    }
    .osaka-voice__item::before,
    .osaka-voice__item::after {
        height: 39px;
        width: 45px;
    }
    .osaka-voice__item::before {
        left: -10px;
        top: -15px;
    }
    .osaka-voice__item::after {
        right: -10px;
        bottom: -15px;
    }
    .osaka-voice__item .txt {
        font-size: 21px;
    }
    .osaka-voice__item .name {
        font-size: 21px;
    }
}
@media screen and (max-width: 968px) {
    .osaka-head h2 {
        font-size: 32px;
    }
    .osaka-body {
        gap: 45px;
    }
    .osaka-content__ttl {
        margin: 0 0 20px;
    }
    .osaka-content__ttl h3 {
        font-size: 32px;
    }
    .osaka-content__txt {
        font-size: 20px;
    }
    .osaka-content__image .half {
        margin-left: 25px;
        width: 50%;
    }
}
@media screen and (max-width: 768px) {
    .osaka-head {
        margin: 0 0 35px;
    }
    .osaka-head h2 {
        font-size: 28px;
    }
    .osaka-body {
        gap: 35px;
    }
    .osaka-content__ttl {
        margin: 0 0 15px;
    }
    .osaka-content__ttl h3 {
        font-size: 26px;
    }
    .osaka-content__txt {
        font-size: 15px;
    }
    .osaka-content__image .half {
        margin-left: 25px;
        width: 50%;
    }
    .osaka-voice__item {
        padding: 35px 15px;
    }
    .osaka-voice__item::before,
    .osaka-voice__item::after {
        height: 26px;
        width: 30px;
    }
    .osaka-voice__item::before {
        left: -2px;
        top: -5px;
    }
    .osaka-voice__item::after {
        right: -2px;
        bottom: -5px;
    }
    .osaka-voice__item .txt {
        font-size: 18px;
    }
    .osaka-voice__item .name {
        font-size: 18px;
    }
}
@media screen and (max-width: 568px) {
    .osaka-content__image .half {
        float: none;
        margin-left: 0;
        width: 100%;
    }
}
/* price-wrap */
.price-wrap {
    background: #b1cfdd;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}