<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*/////////////////////リセット////////////////////////////*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
    width: 100%;
    font-size: 16px;
    max-width: 1920px;
    margin: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: 'Noto Sans JP', sans-serif;
}
body {
	width: 100%;
	min-width: 250px;
	position: relative;
	overflow-x: hidden;
}

a {
	text-decoration: none;
    color: #fff;
}

h1,h2,h3,h4,p,li,small,td,th,tr {
	line-height: 1.5;
}
header,section {
	width: 100%;
}
picture, img {
    width: 100%;
}
li {
    list-style-type: none;
}
div {
    display: flex;
}
.tb {
    display: flex;
}
.sp {
    display: none;
}
@media screen and (max-width: 1020px) {
    .pc {
        display: none;
    }
}
@media screen and (max-width: 650px) {
    .tb {
        display: none;
    }
    .sp {
        display: flex;
    }
}

/*/////////////////////スタイル////////////////////////////*/

/* --- Gnav --- */
.gnav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    color: #fff;
    flex-direction: column;
    display: flex;
}
.gnav-top {
    width: 100%;
    height: 76px;
    justify-content: space-between;
    padding: 10px 2vw 10px 35px;
    background-color: #1F1F1F;
}
.gnav-btm {
    position: fixed;
    top: 75px;
    right: 0;
    width: auto;
    margin: 0 0 0 auto ;
    background-color: #17213C;
    border-radius: 0 0 0 15px;
    transition: 0.1s ease;
    z-index: 10000;
}
.gnav-logo {
    width: 135px;
}
.gnav ul {
    display: flex;
    align-items: flex-end;
}
.gnav ul li {
    margin-right: 20px;
}
.gnav ul li a {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}
.gnav ul li::after {
    content: "|";
    margin-left: 20px;
}
.gnav ul li:last-child::after {
    display: none;
}
.gnav-tel {
    flex-direction: column;
}
.gnav-tel-top {
    color: #fff;
    text-align: center;
    font-size: 16px;
    padding: 5px;
    background-color: #17213C;
}
.gnav-tel-btm {
    height: 42px;
    justify-content: center;
    align-items: center;
    background-color: #233A7B;
    padding: 15px 20px;
    border-radius: 0 0 0 15px;
    transition: 0.1s ease;
}
.gnav-tel-btm img {
    width: 230px;
}
.gnav-tel-azabu {
    margin-right: 30px;
}
.gnav-tel-azabu::after {
    content: "/";
    margin-left: 30px;
}
.gnav-contact {
    width: 100%;
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: linear-gradient(#B7007A, #FF00AA, #B7007A);
}
.gnav-contact a {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0 30px;
    text-align: center;
    align-items: center;
    line-height: 1.2;
}


/* Gnav animation */
.gnav.active ul {
    display: none;
}
.gnav.active .gnav-tel-btm {
    border-radius: 0;
}
.gnav.active .gnav-btm {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10000;
}

@media screen and (max-width: 1020px) {
    .gnav-top {
        height: 125px;
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }
    .gnav ul {
        height: 30px;
    }
    .gnav .gnav-tel-btm {
        border-radius: 0;
    }
    .gnav .gnav-btm {
        width: 100%;
        position: fixed;
        top: 125px;
        right: 0;
        z-index: 10000;
    }
    .gnav-tel {
        width: calc(100% - 230px);
    }
    .gnav-contact {
        width: 230px;
    }
    .gnav.active {
        position: relative;
    }
}
@media screen and (max-width: 860px) {
    .gnav ul {
        height: auto;
        font-size: 12px;
    }
    .gnav-top {
        height: 80px;
    }
    .gnav .gnav-btm {
        flex-wrap: wrap;
        top: 80px;
    }
    .gnav-contact {
        width: 100%;
        font-size: 16px;
        padding: 0;
    }
    .gnav-contact a {
        padding: 0;
        margin: auto;
        justify-content: center;
    }
    .gnav ul {
        display: none;
    }
    .gnav-tel {
        width: 100%;
        background-color: #17213C;
    }
    .gnav-tel-top {
        display: none;
    }
    .gnav .gnav-tel-btm {
        width: 100%;
        height: 60px;
        background-color: #17213C;
    }
    .gnav-tel-azabu::after {
        display: none;
    }
    .gnav-tel-azabu {
        margin-right: 0;
        width: 48%;
        padding-right: 5vw;
        border-right: 1px solid #fff;
        box-sizing: content-box;
        max-width: 190px;
    }
    .gnav-tel-yoga {
        margin-left: 5vw;
        width: 48%;
        max-width: 190px;
    }
    .gnav-tel img {
        width: 100%;
    }
    .gnav-contact a {
        height: 50px;
    }
}

#top_btn {
    display: flex;
    width: 60px;
    height: 60px;
    position: fixed;
    right: 15px;
    bottom: -100px;
    background: #be0781;
    border-radius: 50%;
    z-index: 10000;
}
#top_btn a {
    position: relative;
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
}
#top_btn a img {
    width: 40px;
    margin: auto;
}

/* --- MV --- */
.mv {
    width: 100%;
    justify-content: center;
    transition: .1s ease;
}
.mv img {
    width: 100%;
}
@media screen and (max-width: 1020px) {
    .mv {
        margin-top: 110px;
    }
    .mv.active {
        margin-top: -50px;
    }
}
@media screen and (max-width: 650px) {
    .mv {
        margin-top: 110px;
    }
    .mv img {
        height: calc(100vh - 110px);
        max-height: 650px;
        object-fit: cover;
        object-position: center;
    }
    .mv.active {
        margin-top: 20px;
    }
}

/* --- CONTENTS --- */

.section-inner {
    max-width: 1500px;
    margin: auto;
    flex-direction: column;
    position: relative;
}
.contents-wrapper {
    padding: 0 5vw;
}
.campaign .contents-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 620px;
    padding: 0 10px;
    background: url(../img/campaign_bg.png) no-repeat;
    background-size: cover;
    background-position: right top;
}

.campaign .contents-wrapper img{
    max-width: 550px;
	margin-bottom: 20px;
}
.campaign p {
    font-size: 28px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}
.campaign h2 {
    font-size: 48px;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}
.conversion-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    width: 80%;
    max-width: 550px;
    height: 60px;
    background: linear-gradient(#B7007A, #FF00AA, #B7007A);
}

.ems {
    background-color: #eee;
    position: relative;
    overflow: hidden;
}
.ems-top {
    width: 100%;
    background: #E0E0E0;
    padding: 30px 5vw;
}
.ems-top p {
    font-size: 24px;
    font-weight: 700;
    position: relative;
    z-index: 100;
}
.ems-mid {
    width: 100%;
    background: #fff;
    padding: 30px 5vw;
}
.ems-mid img {
    position: relative;
    z-index: 100;
}
.ems-btm {
    width: 100%;
    flex-direction: column;
    background: #E0E0E0;
    padding: 30px 5vw;
}
.ems-btm p {
    font-size: 16px;
    position: relative;
    z-index: 100;
}
.ems-btm p span {
    display: flex;
    font-size: 14px;
    margin-top: 15px;
}
.ems-btm img {
    width: 700px;
    margin-top: 15px;
    position: relative;
    z-index: 100;
}
.ems-suit {
    width: 600px;
    position: absolute;
    top: 30px;
    right: 0;
}
.ems-sub {
    background-color: #fff;
    padding: 30px 10vw;
    position: relative;
    z-index: 100;
    justify-content: space-between;
    align-items: center;
}
.ems-sub-left {
    justify-content: center;
    flex-direction: column;
    border-left: 10px solid #555;
    padding: 10px 20px;
}
.ems-sub-left h3 {
    font-size: 24px;
    margin-bottom: 15px;
}
.ems-sub-left p {
    font-size: 16px;
}
.ems-sub-right {
    width: 460px;
}
.monitor {
    background-color: #18205C;
}
.fz24 {
    font-size: 24px;
    padding: 30px 5vw;
    text-align: center;
}
.monitor h2 {
    color: #fff;
}
.ba-container {
    width: 100%;
    justify-content: space-between;
    background-color: #F6FAFF;
    padding: 100px 5vw;
}
.ba-container img {
    width: 31%;
    max-width: 400px;
}
.ba-container img:last-child {
    margin-right: 0;
}

.koe-top{
    padding: 50px 5vw 150px 5vw;
    flex-direction: column;
    background: #EAF5FF;
    justify-content: center;
    align-items: center;
    border-top: 60px solid #18205C;
}
.ttl-border {
    width: 100px;
    height: 3px;
    background-color: #18205C;
    margin: auto;
}
.koe-ttl-wrapper .fz24 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 15px;
}
.fz24 img {
    width: 230px;
}
.koe-btm {
    padding: 0 5vw 100px 5vw;
    justify-content: space-between;
}
.koe-item {
    width: 30%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.koe-item img {
    width: 180px;
    margin-top: -100px;
}
.fukidashi {
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 30px solid #EAF5FF;
    margin-top: 5px;
}
.fukidashi-p {
    min-height: 130px;
    font-size: 16px;
    padding: 20px;
    background-color: #EAF5FF;
    border-radius: 13px;
    text-align: center;
}

.campaign.campaign2 .contents-wrapper {
    background: url(../img/campaign_bg_2.png) no-repeat;
    background-size: cover;
    background-position: center top;
}
.campaign.campaign2 h2 {
    font-size: 38px;
    color: #000;
    text-shadow: 0 0 5px #fff;
}
.campaign-content-bg {
    width: 800px;
    height: 600px;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    background-color: rgba( 255,255,255,.6);
}
.campaign2 .conversion-btn {
    background: linear-gradient(#003E90, #3B71BA, #003E90);
}
#nagare {
    background-color: #0F1138;
}
#nagare .contents-wrappe {
    padding: 50px 5vw 100px 5vw;
    flex-direction: column;
}
.box-ttl {
    padding: 10px 20px;
    width: 530px;
    border-top: 55px solid #D27700;
    border-right: 40px solid transparent;
    margin: 50px 0 15px 0;
}
.box-ttl h2 {
    font-size: 21px;
    color: #fff;
    margin-top: -55px;
}
.nagare-wrapper {
    width: 100%;
    justify-content: space-between;
}
.nagare-item {
    width: 30%;
    flex-direction: column;
}
.nagare-item p {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    margin-top: 10px;
}
.nagare-wrapper_2 .nagare-item {
    width: 24%;
}
.nagare-wrapper_2 .nagare-item p {
    font-size: 16px;
    font-weight: 500;
}
.nagare-item h3 {
    display: flex;
    align-items: center;
    font-size: 26px;
    color: #B4D4FF;
    margin-top: 15px;
}
.nagare-item h3 img {
    width: 30px;
}

#price h2 {
    padding-bottom: 15px;
}
.price-ttl-sub {
    font-size: 16px;
    text-align: center;
    margin-top: 15px;
    padding: 0 5vw;
}
#price .contents-wrapper {
    padding: 50px 5vw;
    flex-direction: column;
}
.price-box-wrapper {
    width: 100%;
    justify-content: center;
}
.price-box {
    width: 17.2vw;
    max-width: 375px;
    padding: 30px 10px;
    background-color: #dfdfdf;
    flex-direction: column;
    margin-right: 10px;
}
.last-price-box {
    margin-right: 0;
}
.price-box h3 {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
    white-space: pre-wrap;
}
.price-info {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}
.tax {
    font-size: 14px;
    text-align: center;
}
#price ul {
    width: 100%;
    margin-top: 20px;
}
#price li {
    display: flex;
    margin-top: 5px;
    font-size: 14px;
}
#price li::before {
    content: "●";
    margin-right: 5px;
}

.plan {
    background-color: #e0e0e0;
}
.plan .contents-wrapper {
    flex-direction: column;
    padding: 0 5vw 50px 5vw;
}
.plan .box-ttl {
    border-top: 55px solid #18205C;
    border-right: 40px solid transparent;
    margin-bottom: 0;
}
.plan .box-ttl h3 {
    color: #fff;
    margin-top: -55px;
    display: flex;
}
.plan .box-ttl h3 span {
    width: 60px;
    height: 30px;
    background: url(../img/new.png) no-repeat;
    background-size: contain;
    background-position: center;
    margin-right: 10px;
}
.plan-contact {
    width: 100%;
    height: 600px;
    background-color: #222;
    padding: 30px 5vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.plan-contact img{
    max-width: 550px;
	margin-bottom: 20px;
}
.plan-contact p {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.anshin {
    padding: 50px 0;
    background-color: #FFEAEF;
}
.anshin .contents-wrapper {
    flex-direction: column;
}
.anshin-ttl  {
    width: 100%;
    align-items: center;
    justify-content: center;
}
.anshin-ttl h2 {
    display: flex;
    align-items: center;
    font-size: 28px;
    color: #CC0091;
    text-align: center;
    margin: auto;
}
.anshin-ttl h2 span {
    font-size: 18px;
    margin-right: 10px;
}
.anshin-item-wrapper {
    width: 100%;
    justify-content: space-between;
    margin-top: 30px;
}
.anshin-item {
    flex-direction: column;
    width: 23%;
}
.anshin-item h3 {
    font-size: 21px;
    color: #CC0091;
    margin-top: 10px;
}
.anshin-item p {
    font-size: 16px;
    margin-top: 5px;
}

.no1 {
    background-color: #D3E9FF;
    padding: 80px 5vw;
    align-items: center;
    justify-content: center;
}
.no1 h2 {
    display: flex;
    align-items: center;
    font-size: 28px;
    color: #001F85;
    justify-content: center;
}
.no1 h2::before {
    content: "";
    width: 30px;
    height: 30px;
    background: url(../img/title-before.png) no-repeat;
    background-size: contain;
    background-position: center;
    margin-right: 15px;
}
.no1 h2::after {
    content: "";
    width: 30px;
    height: 30px;
    background: url(../img/title-before.png) no-repeat;
    background-size: contain;
    background-position: center;
    margin-left: 15px;
    transform: scale(-1, 1);
}
.no1-container {
    width: 100%;
    max-width: 800px;
    padding: 0 10px 50px 10px;
    justify-content: center;
    background-color: #fff;
    margin: 130px auto 0 auto;
}
.no1-container img {
    width: 280px;
    margin-top: -80px;
}
.no1-container img:first-child {
    margin-right: 40px;
}
.no1-sub {
    font-size: 14px;
    text-align: center;
    margin-top: 30px;
}

.tokuten {
    padding: 50px 5vw;
}
.tokuten-ttl-sub {
    font-size: 18px;
    text-align: center;
    font-weight: 700;
}
.tokuten h2 {
    font-size: 38px;
    color: #001F85;
    text-align: center;
    margin-top: 10px;
}
.tokuten_1 {
    width: 100%;
    margin: 30px auto;
}
.tokuten-banner_wrapper {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}
.tokuten-banner_wrapper img {
    width: 48%;
    margin-bottom: 30px;
}

#taiken {
    padding: 50px 0;
    background-color: #161958;
}
#taiken .fz24 {
    color: #fff;
    padding-bottom: 15px;
}
#taiken .ttl-border {
    background-color: #fff;
    margin-bottom: 50px;
}
.taiken-step {
    width: 100%;
    padding: 20px 30px;
    justify-content: center;
    align-items: center;
    background-color: #000459;
}
.step2, .step4 {
    background-color: #0A0F7A;
}
.step-num {
    width: 90px;
}
.taiken-step p {
    max-width: 700px;
    width: calc(100% - 380px);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-left: 30px;
    margin-right: 15px;
}
.taiken-step p span {
    display: block;
    font-size: 14px;
    margin-top: 10px;
}
.step-img {
    width: 240px;
}

#qa {
    padding: 50px 5vw;
    background-color: #E8E8E8;
}
#qa .fz24 {
    padding-bottom: 15px;
}
.qa-container {
    width: 100%;
    flex-direction: column;
    margin-top: 50px;
}
.qa-container img {
    width: 30px;
}
.q-text {
    width: 100%;
    background-color: #E6EEF3;
    align-items: center;
    padding: 30px;
}
.a-text {
    width: 100%;
    background-color: #fff;
    align-items: center;
    padding: 30px;
}
.qa-container p {
    margin-left: 30px;
}

#info {
    padding: 50px 5vw;
    background-color: #0F1138;
}
#info .fz24 {
    color: #fff;
    padding-bottom: 15px;
}
#info {
    background: #0F1138;
}
#info .ttl-border {
    background-color: #fff;
}
.shop-container {
    padding: 0 5vw 0 30px;
    border-left: 15px solid #fff;
    background-color: #292B48;
    margin-top: 50px;
    justify-content: space-between;
}
.shop-left {
    min-width: 520px;
    flex-direction: column;
    justify-content: center;
}
.shop-left-img {
    width: 360px;
}
.shop-left table {
    margin-top: 30px;
}
.shop-left tr {
    display: flex;
    margin-bottom: 10px;
}
.shop-left th, .shop-left td {
    color: #fff;
    vertical-align: top;
}
.shop-left th {
    width: 84px;
    min-width: 84px;
    display: flex;
    justify-content: space-between;
}
.shop-left td {
    display: flex;
    padding-left: 15px;
}
.shop-left th::after {
    content: "|";
    width: 15px;
    text-align: right;
}
.shop-right {
    width: calc(100% - 520px);
    max-width: 500px;
    margin-left: 20px;
    align-items: center;
}
.shop-right iframe {
    width: 100%;
}
footer {
    background-color: #000;
    padding: 10px;
}
small {
    display: flex;
    color: #fff;
    text-align: center;
    font-size: 12px;
    justify-content: center;
}


@media screen and (max-width: 1200px) {
    .nagare-wrapper_2 {
        flex-wrap: wrap;
    }
    .nagare-wrapper_2 .nagare-item {
        width: 48%;
    }
    .nagare-wrapper_2 .nagare-item:first-of-type {
        margin-bottom: 30px;
    }
    .ems-sub {
        padding: 30px 5vw;
    }
}

@media screen and (max-width: 1120px) {
    .ems-suit {
        width: 450px;
        filter: brightness(180%) contrast(60%) grayscale(30%);;
    }
    .ems-sub-right {
        width: 40%;
    }
    .ems-sub-left {
        width: 60%;
    }
    .shop-container {
        padding: 30px;
        flex-direction: column;
        justify-content: center;
    }
    .shop-left {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .shop-left table {
        min-width: 517px;
        margin-top: 0;
    }
    .shop-left-img {
        width: 280px;
        margin-right: 20px;
    }
    .shop-right {
        margin-left: 0;
        width: 100%;
        max-width: 100%;
        height: 300px;
        margin-top: 20px;
    }
    .shop-right iframe {
        height: 300px;
    }
}
@media screen and (max-width: 980px) {
    #info {
        padding-left: 0;
        padding-right: 0;
    }
    .shop-left {
        width: 100%;
        min-width: 0;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    .shop-container {
        border-left: none;
        padding: 30px 5vw;
        margin-top: 50px;
    }
    .shop-left table {
        min-width: 0px;
        max-width: 100%;
        margin-top: 0;
        display: flex;
    }
    .shop-left table tbody {
        width: 100%;
    }
    .shop-left-img {
        width: 100%;
        max-width: 280px;
        margin-right: 0;
        margin-bottom: 30px;
    }
    .shop-left td {
        font-size: 14px;
    }
}
@media screen and (max-width: 860px) {
    .campaign p {
        font-size: 18px;
    }
    .campaign h2 {
        font-size: 26px;
        color: #fff;
        text-align: center;
        margin-bottom: 40px;
    }
    .campaign.campaign2 h2 {
        font-size: 26px;
    }
    .conversion-btn {
        font-size: 16px;
    }
    .ems-top p {
        font-size: 21px;
    }
    .ems-btm img {
        width: 100%;
    }
    .koe-btm {
        flex-direction: column;
    }
    .koe-item {
        width: 100%;
    }
    .koe-item img {
        margin-top: 50px;
    }
    .koe-item:first-child img {
        margin-top: -100px;
    }
    .fukidashi-p {
        max-width: 400px;
        min-height: 0;
    }
    .nagare-wrapper {
        flex-wrap: wrap;
    }
    .nagare-item {
        width: 100%;
        margin-bottom: 30px;
    }
    .nagare-wrapper .nagare-item:last-of-type {
        margin-bottom: 0;
    }
    .price-box-wrapper {
        flex-wrap: wrap;
    }
    .price-box-break {
        width: 100%;
        justify-content: center;
    }
    .price-box-break:last-child {
        margin-top: 15px;
    }
    .price-box {
        width: 183px;
    }
    .price-box:last-child {
        margin-right: 0;
    }
    .anshin-item-wrapper {
        flex-wrap: wrap;
    }
    .anshin-item {
        width: 48%;
    }
    .anshin-item:first-child {
        margin-bottom: 30px;
    }
    .no1-container img {
        width: 240px;
    }
    .no1-container img:first-child {
        margin-right: 5px;
    }
    .step-num {
        width: 80px;
    }
    .step-img {
        width: 190px;
    }
}
@media screen and (max-width: 650px) {
    .ems-suit {
        top: 80px;
        right: 50%;
        transform: translateX(50%);
        opacity: .6;
    }
    .ems p {
        text-align: center;
    }
    .ems-btm p {
        text-shadow:0 0 5px #bbb;
    }
    .ems-btm p span {
        font-size: 12px;
        justify-content: center;
    }
    .ems-btm img {
        display: flex;
        width: 275px;
        margin: 30px auto;
    }
    .ems-sub {
        flex-direction: column;
    }
    .ems-sub-left {
        width: 100%;
        border-left: none;
        padding-left: 0;
        padding-right: 0;
    }
    .ems .ems-sub-left p {
        text-align: left;
    }
    .ems-sub-right {
        width: 100%;
        margin-top: 10px;
    }
    .ems-sub-left h3 {
        font-size: 21px;
    }
    .fz24 {
        font-size: 21px;
    }
    .monitor h2 span {
        font-size: 16px;
    }
    .ba-container {
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 50px 5vw;
    }
    .ba-container img {
        width: 100%;
        margin-bottom: 40px;
    }
    .ba-container img:last-child {
        margin-bottom: 0;
    }
    .koe-ttl-wrapper .fz24 {
        flex-direction: column;
    }
    .koe-ttl-wrapper .fz24 img {
        margin-bottom: 8px;
    }
    .campaign.campaign2 .contents-wrapper {
        background: url(../img/campaign_bg_2_sp.png) no-repeat;
        background-size: cover;
        background-position: center top;
    }
    .campaign-content-bg {
        width: 100%;
        padding-left: 5vw;
        padding-right: 5vw;
    }
    .nagare-item h3 {
        font-size: 21px;
    }
    .nagare-item h3 img {
        width: 25px;
    }
    .nagare-wrapper_2 {
        flex-wrap: wrap;
    }
    .nagare-wrapper_2 .nagare-item {
        width: 100%;
        margin-bottom: 30px;
    }
    .box-ttl h2 {
        font-size: 21px;
    }
    .box-ttl {
        padding: 10px 10px;
        width: 100%;
    }
    #nagare .contents-wrappe {
        padding: 0 5vw 50px 5vw;
    }
    #nagare .box-ttl:first-child {
        border-top: 78px solid #D27700;
    }
    #nagare .box-ttl:first-child h2 {
        margin-top: -78px;
    }
    .nagare-item h3 {
        font-size: 20px;
    }
    .price-box-break {
        width: 100%;
        flex-direction: column;
    }
    .price-box {
        width: 100%;
        margin-top: 10px;
        padding: 20px 10px;
    }
    .price-box-break:last-child {
        margin-top: 0;
    }
    #price .contents-wrapper {
        padding: 10px 5vw 50px 5vw;
    }
    .plan .box-ttl:last-of-type {
        border-top: 78px solid #18205C;
    }
    .plan .box-ttl:last-of-type h3 {
        margin-top: -78px;
    }
    .anshin-ttl h2 {
        flex-direction: column;
        font-size: 26px;
    }
    .anshin-ttl h2 span {
        margin-right: 0;
    }
    .anshin-item {
        width: 100%;
        margin-bottom: 30px;
    }
    .anshin-item:last-child {
        margin-bottom: 0;
    }
    .no1 {
        padding: 30px 5vw 50px 5vw;
    }
    .no1 h2 {
        font-size: 25px;
        text-align: center;
        margin-top: 0;
    }
    .no1 h2::before,.no1 h2::after {
       display: none;
    }
    .no1-container {
        flex-direction: column;
        margin-top: 70px;
        align-items: center;
    }
    .no1-container img {
        width: 230px;
        margin-top: 30px;
    }
    .no1-container img:first-child {
        margin-right: 0;
        margin-top: -50px;
    }
    .no1-sub {
        font-size: 14px;
        text-align: center;
        margin-top: 30px;
    }
    .tokuten-ttl-sub {
        font-size: 16px;
    }
    .tokuten h2 {
        font-size: 22px;
    }
    .tokuten-banner_wrapper img {
        width: 100%;
    }
    .taiken-step {
        flex-wrap: wrap;
        padding-top: 50px;
    }
    .step-num {
        width: 80px;
    }
    .taiken-step p {
        width: calc(100% - 120px);
        margin-right: 0;
        margin-left: 15px;
    }
    .step-img {
        width: 100%;
        margin-top: 30px;
        margin-bottom: 50px;
    }
    #taiken {
        padding: 30px 0;
    }
    #qa {
        padding: 30px 0;
    }
    .qa-container img {
        width: 25px;
    }
    .qa-container p {
        margin-left: 15px;
    }
    .a-text, .q-text {
        align-items: flex-start;
    }
    .shop-left tr {
        flex-direction: column;
    }
    .shop-left td {
        padding-left: 0;
        margin-top: 10px;
        margin-bottom: 15px;
    }
    .plan-contact p {
        font-size: 21px;
    }
}





/* hover animation */
@media screen and (min-width: 650px) {
    a:hover {
        color: #999;
    }
    .gnav-contact a:hover {
        color: #fff;
    }
    .gnav-contact:hover {
        color: #fff;
        background: linear-gradient(#333, #888, #333);
    }
    .gnav-tel-btm img:hover {
        opacity: .7;
    }
    .conversion-btn:hover {
        color: #fff;
        background: linear-gradient(#333, #888, #333);
    }
    #top_btn:hover {
        background-color: #333;
    }
}</pre></body></html>