@charset "UTF-8";

/* ---------------------------------------------------------
config
--------------------------------------------------------- */

@import url("https://fonts.googleapis.com/css?family=Lora&display=swap");
@import url("https://fonts.googleapis.com/css?family=Libre+Baskerville&display=swap");
@import url("https://fonts.googleapis.com/css?family=Baskervville&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap");
@media screen and (max-width: 767px) {
    [data-sc-pc] {
        display: none !important;
    }
}

@media print, screen and (min-width: 768px) {
    [data-sc-sp] {
        display: none !important;
    }
}

/* ---------------------------------------------------------
reset
--------------------------------------------------------- */

html {
    font-family:
        "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic,
        "Yu Gothic", sans-serif;
    -webkit-text-size-adjust: 100%;
    font-size: 100px;
}

@media screen and (min-width: 410px) and (max-width: 767px) {
    html {
        font-size: 110px;
    }
}

@media print, screen and (min-width: 768px) {
    html {
        font-feature-settings: "palt";
    }
}

@media screen and (max-width: 767px) {
    html {
        line-height: 1.5;
    }
}

body {
    line-height: 1;
    color: #323232;
    font-size: 0.15rem;
    letter-spacing: 0.05em;
    word-break: break-all;
}

@media screen and (max-width: 767px) {
    body {
        font-size: 0.14rem;
    }
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li,
td,
th,
figure,
input,
select,
button,
optgroup,
textarea {
    margin: 0;
    padding: 0;
}

article,
aside,
footer,
header,
main,
nav,
section,
figcaption,
figure {
    display: block;
}

img {
    -ms-interpolation-mode: bicubic;
    border-style: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

svg:not(:root) {
    overflow: hidden;
}

hr {
    height: 0;
    overflow: visible;
    box-sizing: border-box;
}

b,
strong {
    font-weight: inherit;
    font-weight: bolder;
}

a,
button {
    outline: 0;
    text-decoration: none;
    color: inherit;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
    transition: opacity 0.3s;
}

a:hover,
button:hover {
    cursor: pointer;
    opacity: 0.7;
}

a img,
button img {
    transition: 0.3s;
}

a img:hover,
button img:hover {
    opacity: 0.7;
}

li {
    list-style: none;
}

sub,
sup {
    position: relative;
    vertical-align: baseline;
    line-height: 0;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
    font-size: 10px;
    /* transform: translateX(-2px); */
}

.ttl_06a sup {
    top: -0.8em;
}

audio,
video,
canvas {
    display: inline-block;
}

summary {
    display: list-item;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

input,
select,
button,
optgroup,
textarea {
    margin: 0;
    padding: 0.1rem 0.2rem;
    border: 0.01rem solid #707070;
    border-radius: 0;
    box-sizing: border-box;
    width: 100% !important;
    vertical-align: bottom;
    appearance: none;
    background: none;
    outline: 0;
    font-family:
        Roboto, "Noto Sans JP", "游ゴシック", "游ゴシック体", "Yu Gothic",
        YuGothic, sans-serif;
    font-size: 0.16rem;
    letter-spacing: 0.05em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

button,
input {
    overflow: visible;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
    outline: 1px dotted ButtonText;
}

button,
select {
    cursor: pointer;
    text-transform: none;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    border: none;
}

select::-ms-expand {
    display: none;
}

iframe {
    border: none;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    vertical-align: bottom;
}

/* ---------------------------------------------------------
modules
--------------------------------------------------------- */

@media print, screen and (min-width: 768px) {
    body {
        min-width: 1000px;
    }
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

@media screen and (max-width: 767px) {
    .row {
        display: block;
    }
}

.row .l {
    width: 50%;
}

.row .r {
    width: 50%;
}

@media screen and (max-width: 767px) {
    .row .l,
    .row .r {
        width: 100%;
    }
}

.w1280 {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.w950 {
    max-width: 990px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* ---------------------------------------------------------
header
--------------------------------------------------------- */

.logo {
    max-width: 400px;
}

@media screen and (max-width: 767px) {
    .logo {
        max-width: 200px;
        display: block;
    }
}

.logo2 {
    max-width: 200px;
}

@media screen and (max-width: 767px) {
    .logo2 {
        max-width: 130px;
        display: block;
    }
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 990px;
    margin: 0 auto;
    height: 100px;
}

@media screen and (max-width: 767px) {
    header {
        height: 60px;
        padding: 10px 20px;
        display: block;
        box-shadow: 0 0 10px 0 #d8d8d8;
        display: flex;
    }
}

@media print, screen and (min-width: 768px) {
    nav {
        display: inherit !important;
    }
}

@media screen and (max-width: 767px) {
    nav {
        box-sizing: border-box;
        position: absolute;
        z-index: 1000;
        display: none;
        top: 60px;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(91, 138, 142, 0.7);
    }
}

@media print, screen and (min-width: 768px) {
    nav ul {
        display: flex;
        align-items: center;
    }
}

nav ul li:last-child {
    margin: 0;
}

nav ul a {
    display: block;
    height: 100%;
}

@media print, screen and (min-width: 768px) {
    nav ul a {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: normal;
        color: #446666;
        line-height: 1.2;
    }

    nav ul li:nth-child(6) a {
        width: 170px;
    }
    nav ul li:nth-child(8) a {
        width: 170px;
    }
}

nav ul a.current {
    font-weight: bold;
}

.toggle {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: #eff3f4;
    cursor: pointer;
}

.toggle span {
    position: absolute;
    top: 39.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 1px;
    background: #517b7c;
    transition: 0.3s;
}

.toggle span.bar01 {
    top: 25%;
}

.toggle span.bar03 {
    top: 53%;
}

.toggle p {
    color: #517b7c;
    text-align: center;
    font-size: 10px;
    font-weight: normal;
    position: absolute;
    bottom: 8px;
    right: calc(100% - 48px);
}

.toggle .navp2 {
    display: none;
}

.toggle.active {
    background: #517b7c;
}

.toggle.active .bar01 {
    top: 40%;
    background: #fff;
    width: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.toggle.active .bar02 {
    opacity: 0;
}

.toggle.active .bar03 {
    top: 40%;
    background: #fff;
    width: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
}

.toggle.active .navp1 {
    display: none;
}

.toggle.active .navp2 {
    display: block;
    color: #fff;
}

/* ---------------------------------------------------------
共通
--------------------------------------------------------- */

.g_nav {
    font-weight: bold;
    background: #eff3f4;
}

@media print, screen and (min-width: 768px) {
    .g_nav {
        box-shadow: 0 5px 10px -5px #e8e8e8;
    }
}

.g_nav nav {
    max-width: 990px;
    margin: 0 auto;
}

.g_nav nav ul {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

@media screen and (max-width: 767px) {
    .g_nav nav ul {
        display: block;
    }
}

.g_nav nav li {
    text-align: center;
    border-left: 2px solid #fff;
}

.g_nav nav li:first-child a {
    width: 80px;
    padding: 0.7em 0 0.7em 0;
}

.g_nav nav li:not(:first-child) {
    flex: 1;
}

@media print, screen and (min-width: 768px) {
    .g_nav nav li:last-child {
        border-right: 2px solid #fff;
        height: 50px;
    }
}

.g_nav nav li img {
    max-width: 26px;
}

@media screen and (max-width: 767px) {
    .g_nav nav li {
        border-left: none;
    }
    .g_nav nav li a {
        color: #517b7c;
        line-height: 1.5;
        font-weight: normal;
        position: relative;
        border-left: none;
        border-bottom: 1px solid #fff;
        background: #eff3f4;
        margin-bottom: 0;
        padding: 15px 18px;
        text-align: left;
    }
    .g_nav nav li a:before {
        position: absolute;
        content: "";
        top: 1.1em;
        right: 13px;
        width: 22px;
        height: 16px;
        background: url(../images/arrow.png) no-repeat center/contain;
    }
}

.breadcrumb {
    padding: 1.2em 20px;
    max-width: 1010px;
    margin: 0 auto;
    color: #517b7c;
}

.breadcrumb ul {
    display: flex;
}

.breadcrumb ul li {
    position: relative;
    margin-right: 2em;
    font-size: 12px;
}

.breadcrumb ul li:not(:first-child):before {
    position: absolute;
    content: "";
    top: 0;
    left: -1.1em;
    width: 6px;
    height: 11px;
    background: url(../images/breadcrumb.png) no-repeat center/contain;
}

.breadcrumb ul li:last-child {
    font-weight: bold;
    flex: 1;
}

.breadcrumb ul li:last-child:before {
    font-weight: normal;
}

.breadcrumb ul li:last-child span {
    display: inline-block;
}

/* ---------------------------------------------------------
フッター
--------------------------------------------------------- */

.pageTop {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 55px;
}

@media screen and (max-width: 767px) {
    .pageTop {
        right: 20px;
        bottom: 20px;
    }
}

.pageTop {
    width: 55px;
    margin: 70px 0 0 auto;
}

footer {
    background: #656565;
    color: #fff;
    padding: 2em;
}

@media screen and (max-width: 767px) {
    footer {
        padding: 2em 0;
    }
    footer .row {
        display: flex;
        flex-direction: column-reverse;
    }
}

footer p {
    font-size: 13px;
    margin-bottom: 1em;
    font-weight: normal;
}

@media screen and (max-width: 767px) {
    footer p {
        font-size: 12px;
    }
}

.ftnav {
    display: flex;
    justify-content: flex-start;
}

@media screen and (max-width: 767px) {
    .ftnav {
        justify-content: flex-start;
        margin-bottom: 1em;
        padding-bottom: 0.5em;
        flex-direction: column;
        border-bottom: 1px dotted;
    }
}

.ftnav li {
    position: relative;
    margin-left: 2.5em;
    font-size: 13px;
}

@media screen and (max-width: 767px) {
    .ftnav li {
        margin-bottom: 1em;
        margin-left: 1em;
        font-size: 13px;
    }
}

.ftnav li:before {
    position: absolute;
    content: "";
    top: 0.01em;
    left: -0.9em;
    width: 6px;
    height: 11px;
    background: url(../images/ft_arrow.png) no-repeat center/contain;
}

/* ---------------------------------------------------------
モーダル
--------------------------------------------------------- */

.modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
}

.modal__bg {
    background: rgba(91, 138, 142, 0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}

.modal_content {
    position: relative;
    border: 1px solid #9cb8bb;
    border-radius: 15px;
    text-align: center;
    background: #eff3f4;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 500px;
    overflow: auto;
}

.modal_content:before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 164px;
    height: 98px;
    background: url(../images/modalbg.png) no-repeat center/contain;
}

@media screen and (max-width: 767px) {
    .modal_content:before {
        width: 193px;
        height: 112px;
        z-index: -1;
    }
}

@media print, screen and (min-width: 768px) {
    .modal_content {
        width: 800px;
        height: auto;
    }
}

.modal_btm {
    border-radius: 0 0 15px 15px;
    background: #fff;
    padding: 0 0 20px 0;
}

@media screen and (max-width: 767px) {
    .modal_btm {
        padding: 20px;
        padding-top: 0;
    }
}

.modal_ttl {
    font-size: 24px;
    font-weight: bold;
    color: #517b7c;
    padding: 1.3em 0;
}

@media screen and (max-width: 767px) {
    .modal_ttl {
        font-size: 20px;
        line-height: 1.5;
    }
}

.modal_txt {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
    .modal_txt {
        font-size: 12px;
        text-align: left;
    }
}

.kakuninBox {
    background: #fff;
    font-weight: bold;
    padding: 30px 0;
}

@media screen and (max-width: 767px) {
    .kakuninBox {
        padding-bottom: 30px;
    }
}

.kakuninBox > p {
    padding: 3em 0 40px 0;
    /* color: #787574; */
    font-size: 20px;
}

@media screen and (max-width: 767px) {
    .kakuninBox > p {
        padding: 2em;
        line-height: 1.5;
        font-size: 14px;
    }
}

.kakuninBox > a {
    font-size: 20px;
    padding: 1em;
    background: #6b9599;
    color: #fff;
    width: 12em;
    display: inline-block;
    border-radius: 2em;
    margin: 0 3px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .kakuninBox > a {
        font-size: 16px;
        margin: 5px 0;
        width: calc(100% - 40px);
    }
}

.kakuninBox > a:before {
    position: absolute;
    content: "";
    top: 0.9em;
    left: 20px;
    width: 23px;
    height: 23px;
    background: url(../images/maru.png) no-repeat center/contain;
}

.kakuninBox > a:after {
    position: absolute;
    content: "";
    top: 1em;
    right: 19px;
    width: 22px;
    height: 17px;
    background: url(../images/arrow_02.png) no-repeat center/contain;
}

.kakuninBox .iie {
    background: #999999;
}

.kakuninBox .iie:before {
    background: url(../images/batu.png) no-repeat center/contain;
}

/* ---------------------------------------------------------
モーダル
--------------------------------------------------------- */

.modal2 {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow-y: auto;
    transition: all 0.4s;
}

.modal2__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    padding: 50px 0;
}

.modal2__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(91, 138, 142, 0.8);
    cursor: pointer;
}

.modal2__cont {
    position: relative;
    width: 640px;
    margin: 0 auto;
    padding: 30px 30px 60px 30px;
    background-color: #fff;
    border: 1px solid #9cb8bb;
    border-radius: 15px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

@media screen and (max-width: 767px) {
    .modal2__cont {
        width: 80%;
        padding: 20px 10px 30px 10px;
    }
}

.modal2.is-show {
    opacity: 1;
    visibility: visible;
}

.modal2 .kakuninBox > p {
    padding: 2em;
    font-weight: normal;
}

.modal2 .kakuninBox .txt {
    text-align: left;
    line-height: 24px;
    font-size: 15px;
}

@media screen and (max-width: 767px) {
    .modal2 .kakuninBox .txt {
        font-size: 13px;
    }
}

.modal2 .kakuninBox > a:before {
    background: none;
}

.modal2 .kakuninBox .modal2_batu {
    position: absolute;
    right: 24px;
    top: 16px;
    padding: 0;
}

@media screen and (max-width: 767px) {
    .modal2 .kakuninBox .modal2_batu {
        right: 14px;
        top: 13px;
    }
}

.modal2 .kakuninBox .modal2_batu img {
    width: 22px;
    height: 22px;
}

.modal2 .kakuninBox .modal2_batu img:hover {
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.3s;
}

.nav__item {
    text-decoration: underline;
}

.mb1m {
    margin-bottom: 1em;
}

.mb2m {
    margin-bottom: 2em;
}

.mb3m {
    margin-bottom: 3em;
}

.mb4m {
    margin-bottom: 4em;
}

@media screen and (max-width: 767px) {
    .mb2p {
        margin-bottom: 20px;
    }
    .mb3p {
        margin-bottom: 30px;
    }
}

@media print, screen and (min-width: 768px) {
    .ml12p {
        margin-left: 12px;
    }
    .ml20p {
        margin-left: 20px;
    }
    .ml30p {
        margin-left: 30px;
    }
}

.span01 {
    font-weight: bold;
    color: #d50050;
}

p {
    line-height: 1.5;
}

.useful_syringe p,
.useful_pen p {
    font-weight: bold;
}

/* ---------------------------------------------------------
見出し系
--------------------------------------------------------- */

.ttl_h2_wrap {
    background: #cedfe1;
}

.ttl_h2_wrap .ttl_h2 {
    text-align: center;
    color: #517b7c;
    position: relative;
    padding: 1em 0;
    line-height: 1.5;
    height: 100px;
    font-size: 24px;
}

@media screen and (max-width: 767px) {
    .ttl_h2_wrap .ttl_h2 {
        text-align: left;
        font-size: 20px;
        padding-top: 28px;
    }
}

.ttl_h2_wrap .ttl_h2:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 160px;
    height: 100px;
    background: url(../images/back_ttlkasou.png) no-repeat center/contain;
}

@media screen and (max-width: 767px) {
    .ttl_h2_wrap .ttl_h2:before {
        display: none;
    }
}

.ttl_h2_wrap .ttl_h2:after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 156px;
    height: 100px;
    background: url(../images/title02.png) no-repeat center/contain;
}

@media screen and (max-width: 767px) {
    .ttl_h2_wrap .ttl_h2:after {
        right: -20px;
    }
}

.ttl_h2_wrap .ttl_h2 span {
    display: block;
    font-size: 0.7em;
}

@media screen and (max-width: 767px) {
    .ttl_h2_wrap .ttl_h2 span {
        font-size: 13px;
        width: 100%;
    }
}

.ttl_h2_wrap .ttl_h2.top_ttl_h2 {
    padding: 1.3em 0;
}

.ttl_h2_wrap .top_ttl_h2_long {
    height: auto;
}

.ttl_h2_wrap .top_ttl_h2_long:after {
    top: auto;
    bottom: 0;
}

@media screen and (max-width: 375px) {
    .ttl_h2_wrap .top_ttl_h2_long {
        font-size: 4.5vw;
    }
    .ttl_h2_wrap .top_ttl_h2_long:after {
        width: 38vw;
        height: 25vw;
    }
}

.ttl_h2_wrap .top_ttl_h2_long span {
    display: inline-block;
}

.treatment .ttl_h2_wrap .ttl_h2:after {
    background: url(../../treatment/images/treatment01.png) no-repeat
        center/contain;
}

.egpa .ttl_h2_wrap .ttl_h2:after {
    background: url(../../egpa/images/egpa05.png) no-repeat center/contain;
}

.sinusitis .ttl_h2_wrap .ttl_h2:after {
    background: url(../../sinusitis/images/sinusitis06.png) no-repeat
        center/contain;
}

.ttl_sirowaku {
    font-size: 24px;
    color: #517b7c;
    border-bottom: 2px dotted #cedcdd;
    padding-bottom: 0.6em;
    margin-bottom: 1.5em;
    line-height: 1.3;
}

.ttl_sirowaku02 {
    font-size: 24px;
    color: #517b7c;
    padding-bottom: 0.6em;
    /*margin-bottom: 0.5em;*/
    line-height: 1.3;
}

@media screen and (max-width: 767px) {
    .ttl_sirowaku {
        font-size: 18px;
    }
}

.ttl_sirowaku span {
    font-size: 0.67em;
}

.ttl_sirowaku_in {
    font-size: 20px;
    color: #d50050;
    border-bottom: 1px solid #d50050;
    padding-bottom: 0.5em;
    margin-top: 47px;
    margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
    .ttl_sirowaku_in {
        font-size: 16px;
        margin-top: 1em;
    }
}

.ttl_02 {
    color: #4694d1;
    font-size: 20px;
    margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
    .ttl_02 {
        font-size: 16px;
    }
}

.ttl_03 {
    color: #4694d1;
    font-size: 22px;
    margin-bottom: 2em;
}

@media screen and (max-width: 767px) {
    .ttl_03 {
        font-size: 16px;
        margin-bottom: 2em;
        text-indent: -48px;
        line-height: 1.5;
        padding-left: 3em;
    }
}

.ttl_03 span {
    font-size: 1em;
    border: 2px solid;
    padding: 7px 10px;
    border-radius: 5px;
    margin-right: 0.7em;
}

.ttl_04 {
    font-size: 20px;
    line-height: 1.6;
    padding-left: 1em;
    border-left: 5px solid;
    color: #4694d1;
}

@media screen and (max-width: 767px) {
    .ttl_04 {
        font-size: 14px;
    }
}

.ttl_05 {
    color: #4694d1;
    font-size: 22px;
    margin-bottom: 2em;
    text-indent: -2.6em;
    padding-left: 2.5em;
    line-height: 1.4;
}

@media screen and (max-width: 767px) {
    .ttl_05 {
        font-size: 16px;
        margin-bottom: 2em;
        text-indent: -48px;
        line-height: 1.5;
        padding-left: 3em;
    }
}

.ttl_05 span {
    font-size: 1em;
    padding: 7px 10px;
    border: 2px solid #4693d1;
    border-radius: 5px;
    margin-right: 0.7em;
    background: #4694d1;
    color: #fff;
}

.ttl_06a {
    color: #d50050;
    border-bottom: 1px solid;
    font-size: 20px;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
    .ttl_06a {
        font-size: 16px;
    }
}

.ttl_06 {
    color: #517b7c;
    font-size: 22px;
    margin-bottom: 1.5em;
    text-indent: -2.8em;
    padding-left: 2.5em;
    border-bottom: none;
}

.ttl06_sub {
    color: #517b7c;
    font-size: 16px;
    margin-bottom: 3em;
    padding-left: 3.5em;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .ttl_06 {
        font-size: 16px;
    }
    .ttl06_sub {
        font-size: 14px;
        margin-top: 0.5em;
        margin-bottom: 3em;
        padding-left: 3.5em;
    }
}

.ttl_06 span {
    font-size: 1em;
    padding: 10px 14px;
    border-radius: 3px;
    margin-right: 0.7em;
    background: #5b8a8e;
    color: #fff;
}

.ttl_07 {
    color: #517b7c;
    font-size: 20px;
    margin-bottom: 2em;
    text-indent: -2.8em;
    padding-left: 2.5em;
}

@media screen and (max-width: 767px) {
    .ttl_07 {
        font-size: 18px;
        margin-bottom: 1em;
    }
}

.ttl_08 {
    color: #d50050;
    border-bottom: 1px solid;
    font-size: 20px;
    padding-bottom: 0.5em;
    margin-bottom: 1.4em;
}

@media screen and (max-width: 767px) {
    .ttl_06a {
        font-size: 16px;
    }
}

.ttl_09 {
    color: #0055a2;
    border-bottom: 1px solid;
    font-size: 20px;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
    .ttl_09 {
        font-size: 16px;
    }
}

/* ---------------------------------------------------------
テキストスタイル
--------------------------------------------------------- */

.txt_01 {
    font-size: 16px;
    color: #517b7c;
    line-height: 1.6;
    padding-left: 1em;
    position: relative;
}

@media screen and (max-width: 767px) {
    .txt_01 {
        font-size: 14px;
    }
}

.txt_01:before {
    position: absolute;
    content: "";
    top: 0.25em;
    left: -2px;
    width: 15px;
    height: 15px;
    background: #517b7c;
    border-radius: 50%;
}

@media screen and (max-width: 767px) {
    .txt_01:before {
        top: 4px;
        width: 14px;
        height: 14px;
    }
}

.txt_01_a {
    font-size: 15px;
}

.txt_01_b {
    font-size: 14px;
}

.txt_01_b:before {
    top: 0.25em;
    left: -4px;
    width: 14px;
    height: 14px;
}

.txt_02 {
    color: #d50050;
    font-size: 18px;
    margin-bottom: 3em;
}

@media screen and (max-width: 767px) {
    .txt_02 {
        font-size: 14px;
    }
}

.txt_03 {
    font-size: 15px;
    font-weight: normal;
    line-height: 1.8;
}

.txt_caution {
    font-size: 15px;
    font-weight: normal;
    line-height: 1.8;
    color: #d50050;
    margin-top: 1em;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .txt_03 {
        font-size: 14px;
    }
    .txt_caution {
        font-size: 14px;
    }
}

.txt_03 span {
    color: #d50050;
    font-weight: bold;
}

.txt_04 {
    font-size: 13px;
    font-weight: normal;
    text-align: right;
}

@media screen and (max-width: 767px) {
    .txt_04 {
        text-align: left;
    }
}

.txt_05 {
    color: #517b7c;
    font-size: 16px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .txt_05 {
        font-size: 14px;
    }
}

.txt_06 {
    font-size: 14px;
}

.txt_07 {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.8;
}
.txt_08 {
    font-size: 13px;
    font-weight: normal;
    display: flex;
    justify-content: flex-end;
}

@media screen and (max-width: 767px) {
    .txt_07 {
        font-size: 14px;
    }
    .txt08 {
        font-size: 14px;
        justify-content: flex-start;
    }
}

.txt_03 span {
    color: #d50050;
    font-weight: bold;
}
.txt_03 span.font-black {
    color: #323232;
}

.kome_p {
    text-align: right;
    font-size: 13px;
    color: #517b7c;
    margin-top: 2em;
    margin-bottom: 1em;
    padding-left: 1em;
    text-indent: -1em;
}

@media screen and (max-width: 767px) {
    .kome_p {
        text-align: left;
        letter-spacing: -0.01em;
    }
}

.useful_syringe .kome_p,
.useful_pen .kome_p {
    font-weight: normal;
}

.kome_p2 {
    font-size: 13px;
    color: #517b7c;
    margin-top: 1em;
    margin-bottom: 1em;
    text-indent: -1em;
    margin-left: 1em;
}

.kome_p2 a {
    text-decoration: underline;
}

.kome_p2_a {
    font-weight: bold !important;
    color: #d50050;
}

.useful_syringe .kome_p2,
.useful_pen .kome_p2 {
    font-weight: normal;
}

.kome_p3 {
    font-size: 14px;
    text-align: left;
}

@media print, screen and (min-width: 768px) {
    .kome_p3 {
        padding-left: 4.5em;
    }
}

.kome_p3 a {
    text-decoration: underline;
    font-weight: normal;
}

.kome_p4 {
    font-size: 13px;
    text-align: right;
}

@media screen and (max-width: 767px) {
    .kome_p4 {
        text-align: left;
    }
}

.houhouP {
    color: #5b8a8d;
    text-indent: -1.5em;
    padding-left: 1.5em;
    margin-bottom: 1em;
}

.houhouP_a {
    text-indent: 0;
    padding-left: 0;
}

.houhouP2 {
    color: #4694d1;
    background: #e3eff8;
    font-size: 18px;
    padding: 0.3em;
    padding-left: 1em;
    margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
    .houhouP2 {
        padding-left: 0.5em;
    }
}

@media screen and (max-width: 767px) {
    .houhouP2 {
        font-size: 14px;
    }
}

.houhouP3 {
    color: #d50050;
    background: #fbe5ed;
    font-size: 18px;
    padding: 0.3em;
    padding-left: 1em;
    margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
    .houhouP3 {
        padding-left: 0.5em;
    }
}

@media screen and (max-width: 767px) {
    .houhouP3 {
        font-size: 14px;
    }
}

.houhouP4 {
    color: #8564a8;
    background: #ede8f2;
    font-size: 18px;
    padding: 0.3em;
    padding-left: 1em;
    margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
    .houhouP4 {
        padding-left: 0.5em;
    }
}

@media screen and (max-width: 767px) {
    .houhouP4 {
        font-size: 14px;
    }
}

.txt_color01 {
    color: #8564a8;
}

.ttl_05.txt_color01 span {
    background: #8564a8;
    color: #fff;
    border: 2px solid #8564a8;
}

/* ---------------------------------------------------------
Box系
--------------------------------------------------------- */

.moviearea {
    padding: 50px 0;
}

@media screen and (max-width: 767px) {
    .moviearea {
        padding: 30px 0;
    }
}

.moviearea .movie_demo {
    /* background: #6d8e8366; */
    /* height: 535px; */
}

@media screen and (max-width: 767px) {
    .moviearea .movie_demo {
        /* height: 189px; */
    }
}

.moviearea .movie_demo video {
    width: 100%;
    height: auto;
}

.article_bg {
    padding: 45px 0 30px 0;
    background: #eff3f4;
}

.sirowaku {
    box-shadow: 0 0 10px 0 #d8d8d8;
    background: #fff;
    border-radius: 4px;
    padding: 50px 43px;
    margin-bottom: 33px;
}

@media screen and (max-width: 767px) {
    .sirowaku {
        padding: 20px;
        margin-bottom: 20px;
    }
}

.sirowaku_in {
    padding: 0 27px;
}

@media screen and (max-width: 767px) {
    .sirowaku_in {
        padding: 0;
    }
}

.wakuA {
    padding: 38px;
    border: 1px solid #c7dff1;
    border-radius: 7px;
    margin-bottom: 67px;
}

@media screen and (max-width: 767px) {
    .wakuA {
        padding: 20px;
        margin-bottom: 30px;
    }
}

.useful_syringe .wakuA {
    border: 1px solid #dad0e4;
}

.wakuB {
    border: 1px solid #ccc;
    padding: 2em;
    width: 49%;
}

@media screen and (max-width: 767px) {
    .wakuB {
        width: 100%;
        margin-bottom: 20px;
    }
}

.list {
    width: 395px;
    border: 1px solid #adc4c6;
    border-radius: 7px;
    padding: 1.5em 20px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .list {
        width: auto;
    }
}

.list li {
    position: relative;
    line-height: 1.6;
    padding-left: 2em;
    margin-bottom: 0.55em;
}

@media screen and (max-width: 767px) {
    .list li {
        font-size: 13px;
    }
}

.list li:last-child {
    margin-bottom: 0;
}

.list li:before {
    position: absolute;
    content: "";
    top: 2px;
    left: 0;
    width: 17px;
    height: 17px;
    background: url(../../useful/images/icon05.png) no-repeat center/contain;
}

.list li span {
    color: #d00050;
}

.list.listW100 {
    width: 100%;
}

.houhou {
    margin-bottom: 3em;
}

.houhou .imgW {
    border: 1px solid #ccc;
    padding: 20px 37px;
    width: 262px;
    margin-right: 1.5em;
}

@media screen and (max-width: 767px) {
    .houhou .imgW {
        width: 100%;
        margin-right: 0;
        padding: 15px 40px;
        margin-bottom: 20px;
    }
}

.houhou .imgW_a {
    padding: 20px 25px;
}

.houhou .imgW_b {
    padding: 6px 25px;
}

@media screen and (max-width: 767px) {
    .houhou .imgW_b {
        padding: 6px 30px;
    }
}

.houhou .imgW_c {
    padding: 20px 0px 6px 37px;
}

.houhou .r {
    flex: 1;
}

/* ---------------------------------------------------------
画像はば
--------------------------------------------------------- */

.flex1 {
    flex: 1;
}

.imgW {
    text-align: center;
}

.im01 {
    width: 772px;
}

.im02 {
    width: 603px;
}

.im03 {
    width: 438px;
}

.im04 {
    width: 396px;
}

.im05 {
    width: 277px;
}

.im06 {
    width: 240px;
}

@media screen and (max-width: 767px) {
    .im07 {
        margin-bottom: 1em;
    }
}

.im08 {
    width: 387px;
}

@media screen and (max-width: 767px) {
    .im09 {
        margin-left: 0;
    }
}

.im10 {
    width: 439px;
}

.im11 {
    width: 340px;
}

@media screen and (max-width: 767px) {
    .im11 {
        margin-bottom: 1em;
        width: 155px;
        margin-top: -1em;
    }
}

.im12 {
    width: 437px;
}

.im14 {
    width: 325px;
}

@media screen and (max-width: 767px) {
    .im14 {
        margin-bottom: 2em;
    }
}

.im15 {
    width: 410px;
    margin-left: 25px;
}

.im16 {
    width: 45%;
    margin-bottom: 3em;
}

.im17 {
    width: 207px;
}

.im18 {
    width: 400px;
}

.im19 {
    width: 678px;
}

.im20 {
    width: 550px;
}

@media screen and (max-width: 767px) {
    .im20 {
        margin-bottom: 1em;
        width: 100%;
    }
}

.im21 {
    width: 250px;
}

@media screen and (max-width: 767px) {
    .im21 {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 2em;
    }
}

.im22 {
    width: 100px;
    /* margin-left: 30px; */
}

@media screen and (max-width: 767px) {
    .im22 {
        margin: 2em auto;
        width: 200px;
    }
}

.im23 {
    width: 360px;
    margin-left: 4em;
}

@media screen and (max-width: 767px) {
    .im23 {
        width: 100%;
        max-width: 350px;
        margin: 2em auto 2em auto;
    }
}

.im24 {
    width: 390px;
}

@media screen and (max-width: 767px) {
    .im24 {
        width: 100%;
        max-width: 350px;
        margin: 2em auto 2em auto;
    }
}

.box___01 {
    max-width: 395px;
}

@media print, screen and (min-width: 768px) {
    .mb55p {
        margin-bottom: 55px;
    }
}

@media screen and (max-width: 767px) {
    .sp_mb15m {
        margin-bottom: 1.5em;
    }
    .sp_mb1m {
        margin-bottom: 1em;
    }
}

.im25 {
    width: 150px;
}

@media screen and (max-width: 767px) {
    .im25 {
        width: 100%;
        max-width: 350px;
        margin: 2em auto 2em auto;
    }
}

/* ---------------------------------------------------------
topのリンクボックス
--------------------------------------------------------- */

.box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 50px 0;
}

@media screen and (max-width: 767px) {
    .box {
        display: block;
        padding: 25px 0;
    }
}

.box .box_item {
    width: 465px;
    border-radius: 10px;
    border: 1px solid #cedcdd;
    margin: 0 0 20px 0;
    background-color: #ffffff;
}

.box .box_item.border_specific01 {
    border: none;
}

.box .box_item.border_specific01 p {
    line-height: 1.7em;
    font-weight: normal;
    font-size: 14px;
    padding: 1em;
    border: 1px solid #cedcdd;
}
.box .box_item.border_specific01 p .ttl {
    font-weight: bold;
    font-size: 15px;
}

@media screen and (max-width: 767px) {
    .box .box_item {
        width: 100%;
    }
    .box .box_item:last-child {
        margin: 0;
    }
}

.box .box_item h2 {
    box-shadow: 0 0 0 1px #5b8a8e;
    border: 1px solid #5b8a8e;
    text-align: center;
    color: #ffffff;
    padding: 0 15px;
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: space-between;
    align-items: center;
    background: #5b8a8e;
    font-size: 18px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

@media screen and (max-width: 767px) {
    .box .box_item h2 {
        font-size: 16px;
        height: 40px;
    }
}

.box .box_item h2 img {
    display: inline-block;
}

.box .box_item h2 .h3_left {
    width: 52px;
}

@media screen and (max-width: 767px) {
    .box .box_item h2 .h3_left {
        width: 42px;
    }
}

.box .box_item h2 .h3_right {
    width: 20px;
}

.box .box_item .item_flex {
    width: 100%;
    display: flex;
    padding: 25px 25px 0 25px;
}

@media screen and (max-width: 767px) {
    .box .box_item .item_flex {
        display: block;
        padding: 20px;
    }
}

.box .box_item .item_flex img {
    width: 30%;
    height: 30%;
}

@media screen and (max-width: 767px) {
    .box .box_item .item_flex img {
        width: 110px;
        margin: 0 auto 20px auto;
        display: block;
    }
}

.box .box_item .item_flex p {
    height: 14em;
    margin-left: 20px;
    line-height: 1.7em;
    font-weight: normal;
    font-size: 14px;
    flex: 1;
}

@media screen and (max-width: 767px) {
    .box .box_item .item_flex p {
        width: 100%;
        height: auto;
        margin-left: 0;
        line-height: 23px;
    }
}

.box .box_item ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: calc(100% - 50px);
    padding: 20px;
    margin: 25px;
    background: #f7f9f9;
}

@media screen and (max-width: 767px) {
    .box .box_item ul {
        display: block;
        margin: 0 20px 20px 20px;
        width: calc(100% - 40px);
    }
}

.box .box_item ul li {
    width: 45%;
    /* color: #517b7c; */
    color: #446666;
    padding: 5px 0;
    padding-left: 1em;
    text-indent: 0em;
    line-height: 1.3em;
    font-size: 14px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .box .box_item ul li {
        width: 100%;
    }
}

.box .box_item ul li:before {
    position: absolute;
    content: "";
    top: 0.55em;
    left: 0.3em;
    width: 6px;
    height: 11px;
    background: url(../images/list.png) no-repeat center/contain;
}

.box .box_item h3 {
    box-shadow: 0 0 0 1px #5b8a8e;
    border: 1px solid #5b8a8e;
    text-align: center;
    color: #ffffff;
    padding: 0 15px;
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: space-between;
    align-items: center;
    background: #5b8a8e;
    font-size: 18px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

@media screen and (max-width: 767px) {
    .box .box_item h3 {
        font-size: 16px;
        height: 40px;
    }
}

.box .box_item h3 img {
    display: inline-block;
}

.box .box_item h3 .h3_left {
    width: 52px;
}

@media screen and (max-width: 767px) {
    .box .box_item h3 .h3_left {
        width: 42px;
    }
}

.box .box_item h3 .h3_right {
    width: 20px;
}

/* ---------------------------------------------------------
costのリンクボックス
--------------------------------------------------------- */

.box .box_item .item_flex.i_p25 {
    padding: 25px;
}

.i_cost .box .box_item .item_flex .i_h_auto {
    height: auto;
}

/* ---------------------------------------------------------
追加
--------------------------------------------------------- */

.box .box_item.useful {
    width: 100%;
}

/* ---------------------------------------------------------
support
--------------------------------------------------------- */

.box .box_item.sapoBox .item_flex img {
    width: 110px;
    height: 110px;
}

.box .box_item.sapoBox h2 {
    box-shadow: 0 0 0 1px #bba9d1;
    border: 1px solid #bba9d1;
    background: #bba9d1;
}

.box .box_item.sapoBox {
    border: 1px solid #bba9d1;
    width: 100%;
}

.box .box_item.sapoBox ul {
    max-width: 420px;
    margin: 25px 0 25px auto;
}

.box .box_item.sapoBox ul li {
    width: 100%;
}

.box .box_item.sapoBox .h_a {
    height: auto;
}

@media screen and (max-width: 767px) {
    .box .box_item.sapoBox ul {
        max-width: 100%;
        margin: 0;
        width: 100%;
        margin-top: 20px;
    }
}

.mt20 {
    margin-top: 20px !important;
}

.txt_c {
    text-align: center;
}

.pd_base {
    bottom: 0;
}

.attention {
    padding: 20px;
}

.attention p {
    font-size: 14px;
}

.attention .title02 {
    font-weight: bold;
    margin-bottom: 10px;
}

.font_n {
    font-weight: normal !important;
}

/* 20211220  OO  全ページ共通  */

.header__right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

@media screen and (max-width: 767px) {
    .header__right {
        display: none;
    }
}

.header__right--text {
    position: relative;
}

.header__right--text .pd-45 {
    padding-right: 45px;
}

.header__right--text::after {
    display: block;
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 15px;
    background-color: #cedcdd;
}

.fw-bold {
    font-weight: 600;
}

.cl-green {
    color: #5b8a8e;
}

.cl-black {
    color: #323232;
}

.fs-14 {
    font-size: 14px;
    line-height: calc(16 / 14);
}

.fs-13 {
    font-size: 13px;
    line-height: calc(24 / 13);
}

.fs-22 {
    font-size: 22px;
    line-height: calc(24 / 22);
}

.fs-25 {
    font-size: 25px;
    line-height: calc(24 / 25);
}

.ps-relative {
    position: relative;
}

.ps-absolute {
    position: absolute;
    top: 10px;
    left: 12px;
    font-size: 20px;
}

.pd-5 {
    padding-left: 5px;
}

.w950 .t_right {
    max-width: 146px;
}

/* .title {
  height: 200px !important;
} */

.ttlflex {
    height: 200px !important;
}

/* 20211220  OO  トップページ (TOP)  */

.box .box_item.sapoBox ul.ul {
    width: 100%;
    max-width: 100%;
    padding: 0;
    background: transparent;
}

.box .box_item.sapoBox ul.ul li {
    width: calc(50% - 43px);
}

.box .box_item.sapoBox ul.ul .list-1 {
    background-color: #fcf2f7;
    padding: 25px 25px 25px 40px;
    margin-left: 25px;
    color: #db4c94;
    /*font-weight: 300;*/
}

.box .box_item.sapoBox ul.ul .list-2 {
    background-color: #f7f9f9;
    padding: 25px 25px 25px 40px;
    /*font-weight: 300;*/
}

@media screen and (max-width: 767px) {
    .box .box_item.sapoBox ul.ul .list-1 {
        width: 100%;
        margin-left: 0;
        margin-bottom: 10px;
    }
    .box .box_item.sapoBox ul.ul .list-2 {
        width: 100%;
    }
}

.box .box_item ul li.list-1:before {
    top: 2em;
    left: 2em;
    background: url(../images/list-1.png) no-repeat center/contain;
    width: 6px;
    height: 11px;
}

.box .box_item ul li.list-2:before {
    top: 2em;
    left: 2em;
}

/* 20211220 OO ヌーカラの使い方 (useful) */

.box .box_item.sapoBox ul.useful {
    justify-content: flex-end;
}

/* 20211220 OO ヌーカラの使い方 (useful/support) */

.ttl_03.sapo.mb5px.text_center {
    text-align: center;
    margin-top: 0;
}

.ttl_03.sapo.mb5px .bg-transparent {
    background: transparent;
}

.ttl_03.sapo.mb5px .cl-green {
    color: #5b8a8e;
}

.ttl_03.sapo .cs-text {
    border-radius: 50px;
    padding: 5px 10px;
    font-size: 16px;
    background: #7cadb8;
}

.ttl_03.sapo .fs-34 {
    font-size: 34px;
    padding: 0;
}

.ttl_03.sapo b.fs-16 {
    font-size: 16px;
    line-height: calc(27 / 16);
}

.support__box {
    padding: 45px;
    background: #f1f5f6;
    border-radius: 20px;
}

.support__box .box__col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.support__box .box__col .col-left {
    width: 65%;
}

.support__box .box__col .col-right {
    width: 35%;
}

.support__box .box__col .col-right .txt-box {
    position: relative;
}

.support__box .box__col .col-right .txt-box::before {
    display: block;
    content: "";
    width: 11px;
    height: 11px;
    background-color: #9db9bb;
    border-radius: 50%;
    position: absolute;
}

.support__box .box__col .fs-20 {
    font-size: 20px;
    font-weight: 600;
}

.support__box .box__col .fs-15 {
    font-size: 15px;
    line-height: calc(27 / 15);
}

.fw-600 {
    font-weight: 600;
}

.mt-30 {
    margin-top: 30px;
}

.sirowaku_in .ml-50 {
    margin-left: 50px;
}

.mt-10 {
    margin-top: 10px;
}

.cl-gray {
    color: #666666;
}

.cl-33 {
    color: #333333;
}

.cl-5B {
    color: #5b5b5b;
}

.cl-9D {
    color: #9db9bb;
}

.img-250 {
    max-width: 250px;
}

.img-223 {
    max-width: 223px;
}

.img-460 {
    max-width: 460px;
}

.img-506 {
    max-width: 506px;
}

.cs-1 {
    border-radius: 50%;
    font-size: 20px;
    width: 23px;
    height: 23px;
    color: #5b8a8e;
    line-height: 1.2;
    display: inline-block;
    text-align: center;
}

.section02-txt {
    font-size: 20px;
    line-height: calc(28 / 20);
    font-weight: 600;
    color: #5b8a8e;
    margin-bottom: 10px;
}

.section02-txt1 {
    font-size: 13px;
    line-height: calc(29 / 13);
    font-weight: 300;
    color: #666666;
    margin-bottom: 35px;
}

.section02-txt2 {
    font-size: 13px;
    line-height: calc(20 / 13);
    font-weight: 300;
    color: #666666;
    border-bottom: 2px dotted #cedcdd;
    padding-bottom: 0.6em;
    margin-bottom: 1.5em;
}

.section03-txt1 {
    font-size: 15px;
    line-height: calc(27 / 15);
    font-weight: 300;
    color: #666666;
    margin: 10px 0;
}

.ttl_03.sapo.mb-0 {
    margin-bottom: 0;
}

.txt_05 .section03-txt1 {
    font-weight: 300;
    color: #666666;
}

.number-1 {
    position: relative;
}

.number-2 {
    position: relative;
}

.number-1 .ps-absolute {
    left: 0;
    position: absolute;
    top: -0.6em;
}

.number-2 .ps-absolute {
    left: 0;
    position: absolute;
    top: -0.6em;
}

.number-1 span img {
    max-width: 15px;
    width: 100%;
}

.number-2 span img {
    max-width: 15px;
    width: 100%;
}

.section04-txt {
    font-size: 15px;
    line-height: calc(23 / 15);
    font-weight: 300;
    color: #666666;
    padding-left: 25px;
}

.section04-txt1 {
    font-size: 13px;
    line-height: calc(8 / 13);
    font-weight: 300;
    color: #4c4948;
    padding-left: 25px;
}

/* .txt_05.cs-qr {
  padding-left: 3em;
} */

.txt_05.cs-qr.pd-1 {
    padding-left: 1em;
}

.qr-left .pd-3 {
    padding-left: 3em;
}

.qr-left .pd-15 {
    padding-left: 1.5em;
}

.txt_05.cs-qr::before {
    left: 20px;
    background-color: #5b8a8e;
}

.row .d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.row .wakusapo2.cs-wakusapo2 {
    padding: 0;
    background-color: transparent;
    max-width: 549px;
    width: 100%;
}

.row .d-flex.flex-2 {
    margin-top: 25px;
    background: #eff3f4;
    padding: 16px;
    border-radius: 10px;
    width: 100%;
}

.row .d-flex.flex-1 {
    background: #eff3f4;
    padding: 16px;
    border-radius: 10px;
    width: 100%;
}

.row .d-flex .qr-right {
    max-width: 68px;
    background: #eff3f4;
}

/* 20211221 OO ヌーカラの使い方 (useful/support) */

.img-icon-sym img {
    max-width: 30px;
}

.img-icon-sym {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bs-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bs-flex span {
    text-indent: 0;
}

.bs-support__box .mt-b {
    margin-top: -5px;
}

.bs-support__box .ttl_03 {
    margin-bottom: 30px !important;
}

.bs-sirowaku_in .section02-txt {
    margin-bottom: 0;
}

.bs-sirowaku_in .ttl_03 {
    margin-top: 50px !important;
}

.support__box .box__col .fs-15 {
    text-indent: -2em;
    padding-left: 2em;
}

.bs-mr-image {
    margin-top: 45px;
    margin-bottom: 45px;
}

.bs-support .number-1 {
    margin-bottom: 25px;
}

.bs-support .bs-link-text {
    color: #517b7c;
    font-weight: bold;
    display: inline-block;
    font-size: 15px;
    text-align: left;
}

.bs-support .cs-qr {
    text-align: left;
    font-size: 15px;
}

/* .bs-home .ttlflex{
  height: 350px !important;
} */

.bs-support .ttl_06 {
    line-height: 1.3;
}

img {
    image-rendering: -webkit-optimize-contrast;
}

.bs-support .wakusapo2.cs-wakusapo2 .flex-1 + .flex-1 {
    margin-top: 25px;
}

.bs-home .ttlflex h1 {
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.bs-home .ttlflex h1 img {
    margin: 0 auto;
}

.bs-support .mb60 {
    margin-bottom: 60px;
}

.bs-support .txt_05 {
    padding-left: 1.5em;
}

.bs-header-footer {
    margin-bottom: 10px;
}

.bs-header-footer.sirowaku {
    box-shadow: none;
}

.bs-header-footer .bs-text-center {
    text-align: center;
}

.bs-header-footer .header__right--text::after,
.bs-header-footer {
    display: none;
}

.attention {
    background-color: #fff;
}

.bs-support .wakusapo2 a:before {
    top: 4px;
}

.txt-indent01 {
    padding-left: 1em;
    text-indent: -1em;
}

.font-b {
    font-weight: bold !important;
}

@media (min-width: 768px) {
    .title.bs-home {
        height: 200px !important;
    }
    .bs-support .wakusapo2 a:before,
    .bs-support .txt_05.cs-qr::before {
        left: 0;
    }
    .bs-support .qr-left a {
        padding-left: 1.5em;
        display: block;
    }
    .bs-support .bs-span-link {
        display: inline-block;
        margin-left: -26px;
    }
    .bs-support .row .d-flex.flex-1 {
        padding: 10px 10px 10px 45px;
    }
    .bs-support .bs-flex-center {
        align-items: center;
    }
}

@media (max-width: 767px) {
    .bs-bg {
        background-color: #eff3f4;
        padding-top: 10px;
    }
    .bs-support .txt_05.cs-qr::before {
        top: 5px;
    }
    .bs-support .wakusapo2 a:before {
        top: 2px;
    }
    .bs-support .wakusapo3 p:nth-child(4) {
        font-size: 11px;
    }
    .bs-header-footer {
        display: block !important;
    }
    .bs-support .mb60 {
        margin-bottom: 30px;
    }
    .bs-support .wakusapo2.cs-wakusapo2 .d-flex {
        align-items: flex-start;
    }
    .bs-support .row .d-flex .qr-right {
        width: 100%;
        max-width: 100%;
    }
    .bs-support .row .d-flex .qr-right img {
        max-width: 68px;
    }
    .bs-home .t_left {
        width: 131px;
        max-width: 150px;
        height: auto;
        margin-right: 20px;
        z-index: 100;
    }
    .bs-home .t_right {
        width: 40%;
        max-width: 260px;
        height: auto;
        margin-left: auto;
    }
    .bs-support .qr-right img {
        margin-top: 15px;
    }
    .bs-support .wakusapo2 .qr-left a {
        display: block;
        padding-left: 20px;
        text-align: left;
        font-size: 15px;
    }
    .bs-support .wakusapo2 a:before {
        left: 0;
    }
    .support__box.bs-support__box {
        padding: 45px 20px;
    }
    .support__box.bs-support__box .ttl_03.sapo {
        text-indent: 0;
        padding-left: 0;
        font-size: 15px;
    }
    .support__box.bs-support__box .bs-flex,
    .support__box.bs-support__box .box__col {
        flex-direction: column;
    }
    .support__box.bs-support__box .bs-flex {
        margin-top: 15px;
    }
    .support__box.bs-support__box .ttl_03.sapo .fs-34 {
        font-size: 27px;
        margin-right: 0;
    }
    .ttl_03.sapo b.fs-16 {
        font-size: 12px;
    }
    .support__box .box__col .col-left,
    .support__box .box__col .col-right {
        width: 100%;
    }
    .section02-txt,
    .support__box .box__col .fs-15 {
        font-size: 14px;
    }
    .sirowaku.sec01 .section02-txt1 {
        line-height: 1.3;
        margin-top: 15px;
    }
    .sirowaku.sec01 .section03-txt1 {
        line-height: 1.5;
        margin-bottom: 2em;
    }
    .sirowaku.sec01 .txt_03,
    .sirowaku.sec01 .section03-txt1,
    .sirowaku.sec03 .section03-txt1 {
        font-size: 14px;
    }
    .support__box .box__col .col-left .bs-flex-sp {
        display: flex;
    }
    .support__box .box__col .col-left .bs-flex-sp .cs-1 {
        width: 25px;
        height: 25px;
        margin-right: 5px;
    }
    .support__box .box__col .fs-20 {
        font-size: 16px;
    }
    .sirowaku.sec01 .imgW.fl1.mw190,
    .sirowaku_in .imgW .img190px {
        margin-top: 15px;
    }
    .sirowaku.sec03 .row .d-flex.flex-1,
    .sirowaku.sec03 .row .d-flex.flex-2 {
        flex-direction: column;
    }
    .txt_05.cs-qr::before {
        left: 0px;
    }
    .wakusapo2 .qr-left a {
        font-size: 11px;
    }
    .qr-left .pd-3 {
        padding-left: 15px;
    }
    .txt_05.cs-qr {
        padding-left: 1.2em;
    }
    .sirowaku.sec03 .ttl_sirowaku_in {
        margin-top: 3em;
    }
    .txt-indent {
        /* text-indent: 25px; */
        padding-left: 25px;
        display: inline-block;
    }
    .txt-indent .section04-txt,
    .txt-indent .section04-txt1 {
        text-indent: 0;
        padding-left: 0;
    }
    .bs-home .t_left {
        position: absolute;
        left: 0;
        width: 160px;
        margin-right: 0;
    }
    .bs-home .t_right {
        position: absolute;
        bottom: -80px;
        right: 0px;
        width: 100%;
        transform: scale(1.15, 1.15);
        max-width: 260px;
        height: auto;
        margin-left: auto;
    }
    .bs-home .ttlflex {
        height: 350px !important;
    }
    .ttl_03.sapo .cs-text {
        font-size: 13px;
    }
    @media (max-width: 350px) {
        .support__box.bs-support__box .ttl_03.sapo .fs-34 {
            font-size: 25px;
        }
        .support__box.bs-support__box .ttl_03.sapo b.fs-16 {
            font-size: 10px;
        }
        .support__box.bs-support__box {
            padding: 45px 15px;
        }
        @media (max-width: 300px) {
            .support__box.bs-support__box {
                padding: 45px 10px;
            }
        }
    }
}

.underline {
    text-decoration: underline;
}
.mt30 {
    margin-top: 30px !important;
}
.mt50 {
    margin-top: 50px !important;
}

/* 20230526   バナー */
.inside_banner {
    padding: 0 20px 20px 20px;
    display: block;
}
.inside_banner02 {
    padding: 0 0 20px 0;
    display: block;
}

/* 20230628   etc */
.font15 {
    font-size: 15px;
}

.txt-indent02 {
    margin: 1em 0 1.5em 0;
    margin-left: 4em;
}
.txt-indent02 p {
    margin-bottom: 0.5em;
}
@media (max-width: 767px) {
    .txt-indent02 {
        margin-left: 0;
    }

    .pc {
        display: none;
    }
}

.d-block {
    display: block;
}

/* 2025.11 追加 */
.color-specific{
    color: #517b7c;
    text-align: center;
    font-size: 24px;
}
.terms-of-us h2{
    line-height: 1.4;
    border-bottom: 2px solid #517b7c;
}
.li-disc{
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 1.3em;
    position: relative;
}
.li-disc::before{
    position: absolute;
    content: "●";
    display: inline-block;
    font-size: 1em;
    top: 0;
    left: 0;
}
.terms-of-us.ttl_h2_wrap .ttl_h2:before,
.terms-of-us.ttl_h2_wrap .ttl_h2:after {
    display: none;

}

.small-p02{
    display: block;
    font-size: 13px!important;
    padding-left: 1.5em;
    text-indent: -1.5em;
}

@media screen and (max-width: 767px) {
    .li-disc{
        font-size: 14px;
        line-height: 1.6;
    }

    .color-specific{
        text-align: left;
        font-size: 20px;
    }
    .terms-of-us h2{
        font-size: 20px;
    }

}