@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700&family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
ul,
ol,
dl,
dd {
    margin: 0;
    padding: 0;
}

ul,
ol,
li {
    list-style-type: none;
}

html:focus-within {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
}

img,
picture {
    max-width: 100%;
    display: block;
}

input,
button,
select,
textarea {
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
}

textarea {
    resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
    display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
    cursor: pointer;
}

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

select,
table,
textarea {
    font: 100%;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

:root {
    --basecolor: #454545;
    --main: #2BB5F2;
    --gray: #707070;
    --gray2: #D5D5D5;
    --red: #e90c0c;
    --green: #6DA218;
    --link: #00BFF8;
    --darkblue: #1D1E80;
    --purple: #a458bf;
    --blue: #1ba0e1;
    --brown: #ba8a0a;
    --orange: #eb6100;
}

html {
    font-size: 62.5%;
}

body {
    background: #ffffff;
    color: var(--basecolor);
    font-weight: 400;
    font-size: 1.6rem;
    font-family: YakuHanJP, "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
    -webkit-text-size-adjust: 100%;
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.4rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.8rem;
}

@media screen and (max-width: 430px) {
    p {
        font-size: 1.4rem;
    }
}

i {
    font-style: normal;
}

.fnt-x-small {
    font-size: 1.2rem;
}

.fnt-small {
    font-size: 1.4rem;
}

.fnt-large {
    font-size: 1.8rem;
}

.fnt-x-large {
    font-size: 2rem;
}

.fnt-xx-large {
    font-size: 3.2rem;
}

.fnt-bold {
    font-weight: 700;
}

.fnt-medium {
    font-weight: 500;
}

.fnt-semibold {
    font-weight: 600;
}

.fnt-phone a {
    color: var(--blue);
    font-weight: bold;
    font-size: 3.5rem;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}

.fnt-color-red {
    color: var(--red);
}

.fnt-color-orange {
    color: var(--orange);
}

.fnt-color-white {
    color: #ffffff;
}

.mb-small {
    margin-bottom: 1rem;
}

.mb-middle {
    margin-bottom: 2rem;
}

.mb-large {
    margin-bottom: 3rem;
}

.mb-x-large {
    margin-bottom: 4rem;
}

ol li {
    list-style-type: decimal;
    margin: 0 0 0 1.6rem;
}

ul li {
    list-style-type: disc;
    margin: 0 0 0 1.6rem;
}

table {
    width: 100%;
}

table th {
    background-color: var(--Gray);
    padding: 1rem;
}

table td {
    padding: 1rem;
}

p.note,
ul.note li {
    position: relative;
    padding-left: 1.8rem;
}

ul.note {
    margin: 0;
}

ul.note li {
    list-style: none;
    margin: 0;
}

p.note::before,
ul.note li:before {
    position: absolute;
    content: '※';
    left: 0;
    top: 0;
}

section {
    position: relative;
}

br.sp {
    display: none;
}

@media screen and (max-width: 768px) {
    br.sp {
        display: block;
    }
}

br.pc {
    display: block;
}

@media screen and (max-width: 768px) {
    br.pc {
        display: none;
    }
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.img-auto {
    width: auto;
}

.l-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: 100px;
    border-bottom: 2px solid var(--darkblue);
    background-color: #fff;
}

@media screen and (max-width: 1024px) {
    .l-header {
        height: 60px;
    }
}

.l-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 100%;
}

@media screen and (max-width: 1024px) {
    .l-header-logo {
        width: 200px;
    }
}

.l-header-logo__lead {
    margin-bottom: 5px;
    color: var(--gray);
    font-weight: 500;
    font-size: 1.2rem;
}

@media screen and (max-width: 1024px) {
    .l-header-logo__lead {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1024px) {
    .l-header-navigation {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        z-index: 9;
        width: 100%;
        max-height: 0;
        padding: 2rem 2rem 5rem;
        overflow: hidden;
        background: #fff;
        transition: max-height .3s ease-out;
    }
}

.l-header-navigation.show {
    display: block;
    max-height: 80vh;
}

.l-header-navigation ul {
    display: flex;
    gap: 1rem 1.5rem;
}

@media screen and (max-width: 1024px) {
    .l-header-navigation ul {
        flex-direction: column;
        gap: 0;
    }
}

.l-header-navigation ul li {
    list-style-type: none;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .l-header-navigation ul li {
        margin: 0;
        padding: 1rem .5rem;
        border-bottom: 1px solid var(--gray2);
    }
}

.l-header-navigation ul li a {
    color: inherit;
    font-weight: 500;
    text-decoration: none;
    font-size: 1.7rem;
}

@media screen and (max-width: 1024px) {
    .l-header-navigation ul li a {
        display: block;
    }
}

.l-header-navigation ul li a:hover {
    border-bottom: 1px solid var(--main);
    color: var(--main);
}

.menu-button {
    display: none;
    border: none;
    background: none;
    font-weight: 200;
    font-size: 40px;
    cursor: pointer;
    appearance: none;
}

@media screen and (max-width: 1024px) {
    .menu-button {
        display: block;
    }
}

.l-footer {
    background-color: var(--main);
    color: #fff;
    padding: 4rem 0;
}

.l-footer a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
}

.l-footer nav ul {
    display: flex;
    gap: 3rem;
    margin: 0 0 1rem;
    padding: 0 0 2rem;
    border-bottom: 1px solid #fff;
    flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
    .l-footer nav ul {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
    }
}

.l-footer nav ul li {
    list-style-type: none;
    margin: 0;
}

.l-footer .policy {
    text-align: right;
    margin-bottom: 2rem;
}

.l-footer .policy a {
    font-size: 1.3rem;
}

.copyright {
    font-size: 1.2rem;
}

.l-flex {
    display: flex;
    flex-wrap: wrap;
}

.l-flex--gap01 {
    gap: 20px;
}

.l-flex__image {
    width: 320px;
}

.l-flex__image--small {
    width: 120px;
}

.l-flex__text {
    flex: 1;
}

.l-grid {
    display: grid;
}

.l-grid-col4 {
    gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media screen and (max-width: 768px) {
    .l-grid-col4 {
        grid-template-columns: 1fr 1fr;
    }
}

.l-grid-col3 {
    gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 768px) {
    .l-grid-col3 {
        grid-template-columns: 1fr;
    }
}

.l-grid-col3--small {
    gap: 2rem;
}

.l-grid-col2 {
    gap: 3rem;
    grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 768px) {
    .l-grid-col2 {
        grid-template-columns: 1fr;
    }
}

.l-inner {
    width: 100%;
    padding: 0 2.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .l-inner {
        padding: 0 1.5rem;
    }
}

.l-layout {
    display: grid;
    gap: 4rem;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem 100px;
    grid-template-columns: 1fr 240px;
}

@media screen and (max-width: 1024px) {
    .l-layout {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 430px) {
    .l-layout {
        padding: 0 1.5rem 50px;
    }
}

.l-layout-col1 {
    max-width: 800px;
    grid-template-columns: 1fr;
}

.l-page-header {
    padding: 140px 0 80px;
}

@media screen and (max-width: 1024px) {
    .l-page-header {
        padding: 100px 0 60px;
    }
}

@media screen and (max-width: 430px) {
    .l-page-header {
        padding: 80px 0 30px;
    }
}

.l-page-header__title {
    position: relative;
    color: var(--darkblue);
    font-size: 3.2rem;
}

@media screen and (max-width: 430px) {
    .l-page-header__title {
        font-size: 2.4rem;
    }
}

.l-page-header__title:before {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--darkblue);
    content: "";
}

.l-form-label {
    display: flex;
    gap: 0 20px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.l-form-input {
    margin-bottom: 3rem;
    position: relative;
}

.l-form .error {
    position: absolute;
    bottom: -20px;
}

.m-block-service {
    border: 1px solid var(--gray2);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    padding-bottom: 2rem;
}

.m-block-service__title {
    background-color: var(--main);
    color: #ffffff;
    font-size: 1.6rem;
    padding: 2rem;
}

@media screen and (max-width: 430px) {
    .m-block-service__title {
        font-size: 1.4rem;
        padding: 1rem;
    }
}

.m-block-service__title span {
    font-size: 2.4rem;
}

@media screen and (max-width: 430px) {
    .m-block-service__title span {
        font-size: 2rem;
    }
}

.m-block-service__text {
    padding: 2rem;
}

@media screen and (max-width: 430px) {
    .m-block-service__text {
        font-size: 1.4rem;
        padding: 1rem;
    }
}

.m-block-service__link {
    margin-top: auto;
}

.m-block-medicine {
    background-color: #ffffff;
    border: 1px solid var(--darkblue);
    border-radius: 5px;
    padding: 5px 5px 15px;
}

.m-block-medicine a {
    color: inherit;
    text-decoration: none;
}

.m-block-medicine__header {
    background-color: var(--darkblue);
    border-radius: 5px;
    color: #ffffff;
    margin-bottom: 10px;
    padding: 10px;
}

.m-block-medicine__header--purple {
    background-color: var(--purple);
}

.m-block-medicine__header--green {
    background-color: var(--green);
}

.m-block-medicine__header--blue {
    background-color: var(--blue);
}

.m-block-medicine__header--brown {
    background-color: var(--brown);
}

.m-block-medicine__maker {
    color: #ffffff;
    font-size: 1.2rem;
}

.m-block-medicine__title {
    font-size: 1.8rem;
}

@media screen and (max-width: 430px) {
    .m-block-medicine__title {
        font-size: 1.6rem;
    }
}

.m-block-medicine__image {
    margin: 0 0 10px;
}

.m-block-medicine__image img {
    width: 100%;
}

.m-block-medicine__name {
    border-top: 1px solid #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 5px;
    padding: 2px;
    text-align: center;
}

.m-block-medicine__product {
    align-items: center;
    color: var(--red);
    display: flex;
    font-size: 1.4rem;
    font-weight: 700;
    gap: 5px;
    margin-bottom: 5px;
    padding: 0 5px;
}

.m-block-medicine__amount {
    flex: none;
}

.m-block-medicine__amount span {
    font-size: 1rem;
}

.m-block-medicine__number {
    margin-left: auto;
}

.m-block-medicine__number span {
    font-size: 1rem;
}

.m-block-medicine__price {
    text-align: right;
    width: 65px;
}

.m-block-medicine__text {
    font-size: 1.4rem;
    padding-top: 5px;
}

.m-block-medicine__yen {
    font-size: 1.2rem;
}

.m-news {
    border-bottom: 1px solid #707070;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.m-news__heading {
    align-items: center;
    display: flex;
    gap: 2rem;
    margin-bottom: .5rem;
}

@media screen and (max-width: 430px) {
    .m-news__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: .5rem;
    }
}

.m-news__date {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    width: 70px;
}

.m-news__topic {
    color: var(--red);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    width: 70px;
}

.m-news__title {
    font-weight: 700;
}

@media screen and (max-width: 430px) {
    .m-news__title {
        font-size: 1.4rem;
    }
}

.m-news__text {
    font-size: 1.5rem;
    margin-left: 90px;
}

@media screen and (max-width: 430px) {
    .m-news__text {
        font-size: 1.3rem;
        margin: 0;
    }
}

.m-batch-fee {
    display: flex;
    gap: 1rem;
    position: absolute;
    top: 12px;
    right: 0;
}

@media screen and (max-width: 430px) {
    .m-batch-fee {
        position: static;
        margin-bottom: 1rem;
    }
}

.m-batch-fee__item {
    list-style-type: none;
    margin: 0;
    padding: 3px 15px;
    border: 1px solid var(--gray);
    border-radius: 8px;
    font-size: 1.3rem;
}

.m-batch-holiday {
    width: 80px;
    margin: 0 0 1rem auto;
    padding: 2px 5px;
    background-color: #ff40ff;
    color: #ffffff;
    font-size: 1.2rem;
    text-align: center;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal-image {
    width: 80%;
    margin: 0 auto;
}

.close,
.prev,
.next {
    position: absolute;
    top: 50%;
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    transform: translateY(-50%);
}

.close {
    right: 20px;
    top: 20px;
    font-size: 30px;
    transform: none;
}

.prev {
    left: 0;
    padding-left: -20px;
}

.next {
    right: 0;
    padding-right: -20px;
}

.m-price-container {
    margin-bottom: 5rem;
}

.m-price-container .m-block-medicine__header {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
}

.m-price-container .m-block-medicine__maker {
    position: absolute;
    top: calc(50% - 11px);
    right: 2rem;
    font-size: 1.4rem;
}

@media screen and (max-width: 430px) {
    .m-price-container .m-block-medicine__maker {
        position: static;
        font-size: 1.2rem;
    }
}

.m-price-container .m-block-medicine__name {
    margin: 0 0 3px;
    padding: 0;
    border: none;
    text-align: left;
}

.m-price-sold {
    font-weight: 700;
}

@media screen and (max-width: 430px) {
    .m-price-sold {
        padding: 3px 8px;
    }
}

.m-price-list {
    margin-bottom: 2rem;
}

.m-price-block {
    display: flex;
    justify-content: space-between;
    margin-bottom: -1px;
    padding: 10px;
    background: #e6ebf8;
}

@media screen and (max-width: 430px) {
    .m-price-block {
        flex-wrap: wrap;
        margin-bottom: 1rem;
        padding: 0;
        border: 1px solid #e6ebf8;
    }
}

.m-price-block--sold .m-price-name,
.m-price-block--sold .m-price-table__price,
.m-price-block--sold .m-price-table__discount {
    text-decoration: line-through;
}

.m-price-name {
    font-weight: 500;
}

@media screen and (max-width: 430px) {
    .m-price-name {
        width: 100%;
        padding: 8px;
        font-size: 1.4rem;
    }
}

.m-price-table {
    display: flex;
    gap: 10px;
}

.m-price-table .per {
    font-size: 1.3rem;
    color: #4d4d4d;
    padding-left: 3px;
}

.m-price-table__price {
    min-width: 70px;
    color: var(--red);
    font-weight: 700;
    text-align: right;
}

.m-price-table__discount {
    min-width: 70px;
    color: var(--red);
    font-weight: 700;
    text-align: right;
}

@media screen and (max-width: 430px) {
    .m-price-table {
        width: 100%;
        padding: 8px;
        background-color: #ffffff;
    }
    .m-price-table.ed {
        display: flex;
        flex-wrap: wrap;
    }
    .m-price-table.ed .m-price-table__unit {
        width: 70px;
        text-align: left;
    }
    .m-price-table.ed .m-price-table__price {
        width: calc(100% - 120px);
        text-align: left;
    }
    .m-price-table.ed .m-price-table__disunit {
        width: 70px;
    }
    .m-price-table.ed .m-price-table__discount {
        width: calc(50% - 120px);
        text-align: left;
    }
    .m-price-table.aga {
        flex-wrap: wrap;
    }
    .m-price-table.aga .m-price-table__unit,
    .m-price-table.aga .m-price-table__disunit {
        width: 120px;
    }
    .m-price-table.aga .m-price-table__price,
    .m-price-table.aga .m-price-table__discount {
        width: calc(100% - 130px);
        text-align: left;
    }
}

.m-price-block:nth-child(2n) {
    background: #d7e0f8;
}

.m-product {
    display: flex;
    gap: 4rem;
    padding: 2rem;
    border: 1px solid #e6ebf8;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

@media screen and (max-width: 1024px) {
    .m-product {
        flex-direction: column;
    }
}

@media screen and (max-width: 430px) {
    .m-product {
        gap: 1rem;
        padding: 1rem;
    }
}

.m-product__image {
    width: 220px;
}

@media screen and (max-width: 430px) {
    .m-product__image {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}

.m-product__image img {
    width: 100%;
}

.m-product__text {
    flex: 1;
}

.m-product__text .c-link-anchor {
    margin-top: 10px;
}

.m-page-copy {
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--blue);
}

.m-page-copy__sub {
    color: var(--orange);
    font-weight: 700;
    font-size: 3.2rem;
}

@media screen and (max-width: 430px) {
    .m-page-copy__sub {
        font-size: 1.8rem;
    }
}

.m-page-copy__main {
    display: inline-block;
    margin-bottom: 2rem;
    border-bottom: 4px solid var(--orange);
    color: var(--orange);
    font-size: 4.5rem;
}

@media screen and (max-width: 430px) {
    .m-page-copy__main {
        font-size: 2.4rem;
    }
}

.m-page-copy__lead {
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: .1em;
}

@media screen and (max-width: 430px) {
    .m-page-copy__lead {
        font-size: 1.5rem;
    }
}

.c-page-map iframe {
    width: 100%;
}

.c-input-text {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    font-size: 1.6rem;
}

.c-input-select {
    position: relative;
    max-width: 300px;
}

.c-input-select:after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    right: 1.5rem;
    top: 15px;
    border-bottom: 1px solid var(--gray);
    border-right: 1px solid var(--gray);
    transform: rotate(45deg);
}

.c-input-select select {
    padding: 8px;
    width: 100%;
    border: 1px solid var(--gray);
    border-radius: 5px;
}

.c-input-submit {
    display: block;
    width: 240px;
    margin: 0 auto;
    padding: 8px;
    border-radius: 32px;
    background: var(--blue);
    color: #fff;
}

.c-input-back {
    display: block;
    width: 240px;
    margin: 10px auto;
    padding: 8px;
    border-radius: 32px;
    border: 1px solid var(--gray);
    color: inherit;
    text-decoration: none;
}

.c-input-required {
    background-color: var(--red);
    color: #fff;
    padding: 3px 8px;
    font-size: 1.2rem;
    border-radius: 3px;
}

.c-input-error {
    color: var(--red);
    padding-top: 5px;
}

.c-button a {
    background-size: 200% auto;
    border-radius: 2.4rem;
    box-shadow: 0 0 20px #eeeeee;
    color: white;
    display: block;
    max-width: 320px;
    padding: 8px 15px;
    text-align: center;
    text-decoration: none;
    transition: .5s;
}

@media screen and (max-width: 430px) {
    .c-button a {
        font-size: 1.4rem;
        margin: 0 auto;
        max-width: 90%;
        padding: 5px 10px;
    }
}

.c-button a:hover {
    background-position: right center;
}

.c-button--center a {
    margin: 0 auto;
}

.c-button--blue a {
    background-image: linear-gradient(to right, #1fa2ff 0%, #12d8fa 51%, #1fa2ff 100%);
}

.c-button--dark a {
    background-image: linear-gradient(to right, #000428 0%, #004e92 51%, #000428 100%);
}

.c-link-anchor a {
    color: inherit;
    position: relative;
    text-decoration: underline;
}

.c-link-anchor a::after {
    border-bottom: 1px solid var(--gray);
    border-right: 1px solid var(--gray);
    content: "";
    height: 8px;
    position: absolute;
    right: -16px;
    top: 5px;
    transform: rotate(45deg);
    width: 8px;
}

.c-link-blank a {
    color: inherit;
    position: relative;
    text-decoration: underline;
}

.c-link-blank a::after {
    background-color: #ffffff;
    border: 1px solid var(--gray);
    content: "";
    height: 14px;
    position: absolute;
    right: -24px;
    top: 5px;
    width: 14px;
}

.c-link-blank a::before {
    background-color: #ffffff;
    border: 1px solid var(--gray);
    content: "";
    height: 14px;
    position: absolute;
    right: -20px;
    top: 8px;
    width: 14px;
}

.c-heading01 {
    margin-bottom: 2rem;
    padding: 1rem .5rem;
    border-top: 2px solid var(--main);
    font-weight: 600;
    font-size: 1.8rem;
}

@media screen and (max-width: 430px) {
    .c-heading01 {
        margin-bottom: 1rem;
        padding: .8rem 0;
        font-size: 1.6rem;
    }
}

.c-heading01--small {
    padding: 1rem 0 0;
    border-top: 1px solid var(--main);
    font-size: 1.7rem;
}

.c-heading01--black {
    padding: 1rem 0 .5rem;
    border-top: 1px solid #000000;
}

.c-heading02 {
    margin-bottom: 2rem;
    padding: 8px;
    border: 2px solid var(--blue);
    border-radius: 32px;
    background-color: #ffffff;
    color: var(--blue);
    font-size: 1.8rem;
    text-align: center;
}

@media screen and (max-width: 430px) {
    .c-heading02 {
        margin-bottom: 1rem;
        padding: .5rem;
        font-size: 1.5rem;
    }
}

.c-heading02--blue {
    background-color: var(--blue);
    color: #ffffff;
}

.c-heading03 {
    position: relative;
    margin-bottom: 1rem;
    padding: 0 1rem;
    font-size: 1.6rem;
}

.c-heading03:before {
    position: absolute;
    top: 5px;
    left: 0;
    width: 4px;
    height: 16px;
    background-color: var(--main);
    content: "";
}

.c-heading05 {
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 8px;
    background-color: #ffffff;
    font-size: 1.8rem;
    text-align: center;
}

.c-heading06 {
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--basecolor);
    font-size: 1.6rem;
}

.c-list01 {
    font-size: 1.5rem;
    line-height: 2.8rem;
}

@media screen and (max-width: 430px) {
    .c-list01 {
        font-size: 1.4rem;
    }
}

.c-table-week th {
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    background-color: #1F1E80;
    text-align: center;
    border: 1px solid #707070;
    padding: 5px;
}

.c-table-week td {
    font-size: 1.3rem;
    font-weight: bold;
    border: 1px solid #707070;
    text-align: center;
    padding: 5px;
}

.c-highlight {
    color: var(--red);
    font-weight: 700;
}

.c-marker--orange {
    background-image: linear-gradient(0deg, #fbbf2480 0.5em, transparent 0.5em);
}

.c-marker--yellow {
    background-image: linear-gradient(0deg, #f5ed18 0.5em, transparent 0.5em);
}

.c-box {
    padding: 2rem;
    border-radius: 2rem;
}

@media screen and (max-width: 430px) {
    .c-box {
        padding: 1rem;
    }
}

@media screen and (max-width: 430px) {
    .c-box.l-flex {
        flex-direction: column;
    }
}

.c-box-border--red {
    border: 2px solid var(--red);
}

.c-box-border--blue {
    border: 2px solid var(--blue);
}

.c-box-border--orange {
    border: 2px solid var(--orange);
}

.c-box--gray {
    background: #f5f5f5;
}

.c-box--blue {
    background: #bee1ff;
}

.c-box--darkblue {
    background-color: var(--darkblue);
}

.c-box--white {
    background: #ffffff;
}

.c-box__title {
    width: 240px;
    margin-right: 10px;
    padding-right: .5rem;
    font-size: 1.6rem;
}

@media screen and (max-width: 430px) {
    .c-box__title {
        width: 100%;
        margin: 0 0 .5rem;
        padding-bottom: .5rem;
    }
}

.c-box__title--red {
    border-right: 1px solid var(--red);
}

@media screen and (max-width: 430px) {
    .c-box__title--red {
        border-right: none;
        border-bottom: 1px solid var(--red);
    }
}

.c-box__text {
    flex: 1;
}

@media screen and (max-width: 430px) {
    .c-box p {
        font-size: 1.4rem;
    }
}

.c-hr {
    height: 0;
    margin: 2rem 0 2rem;
    padding: 0;
    border: 0;
    border-bottom: 2px dotted #9999cc;
}

.p-home-hero {
    padding-top: 120px;
}

@media screen and (max-width: 768px) {
    .p-home-hero {
        padding-top: 80px;
    }
}

.p-home-feature {
    align-items: center;
    background-color: var(--main);
    color: #ffffff;
    display: flex;
    gap: 1rem;
    margin: 0 0 4rem;
    padding: 2rem;
}

@media screen and (max-width: 768px) {
    .p-home-feature {
        flex-direction: column;
        padding: 1.5rem;
    }
}

.p-home-feature__items {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    gap: 1rem 1rem;
}

@media screen and (max-width: 768px) {
    .p-home-feature__items {
        display: grid;
        gap: .5rem .5rem;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.p-home-feature__item {
    border: 1px solid;
    border-radius: 5px;
    font-weight: 700;
    list-style-type: none;
    margin: 0;
    padding: 8px 15px;
}

@media screen and (max-width: 768px) {
    .p-home-feature__item {
        font-size: 1.3rem;
        padding: 4px 4px;
        text-align: center;
    }
}

.p-home-feature h1 {
    font-size: 3.2rem;
    font-weight: 100;
    width: 380px;
}

@media screen and (max-width: 768px) {
    .p-home-feature h1 {
        font-size: 2.4rem;
        margin-bottom: 1rem;
        width: 100%;
    }
}

.p-home-feature h1 span {
    font-size: 2rem;
}

@media screen and (max-width: 768px) {
    .p-home-feature h1 span {
        font-size: 1.6rem;
    }
}

.p-access .p-access-link {
    display: none;
}

.p-fee-product .m-product {
    display: none;
}