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

.contents-inner {
    margin-top: 0px;
    background-color: #FFF;
}

.bread-area {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
            align-items: center;
    flex-wrap: wrap;
}

.bread-inner {
    background-color: #FFF;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 1200px;
    padding: 0 26px;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .bread-inner {
        padding-right: 16px;
        padding-left: 16px;
    }
}

.bread-list {
    margin-top: 24px;
    margin-bottom: 16px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    /* @mixin media-range */
}

@media screen and (max-width: 480px) {
    .bread-list {
        flex-wrap: wrap;
    }
}

.bread-list &gt; li {
    /* @mixin media-range */
}

@media screen and (max-width: 480px) {
    .bread-list &gt; li {
        /* @mixin space-grid */
        margin-right: 6px;
        width: calc(((100% - 6px * (1 - 1)) / 1) - .1px);
    }
    .bread-list &gt; li:nth-child(1n) {
        margin-right: 0;
    }
    .bread-list &gt; li:nth-child(n+2) {
        margin-top: 6px;
    }
    .bread-list &gt; li:last-child {
        margin-right: 0;
    }
}

.bread-list &gt; li:first-of-type::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url(../images/common/icon-honewort.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 0.5em;
}

.bread-list &gt; li:nth-of-type(n+2)::before {
    content: "\FF1E";
    font-size: 0.75rem;
    font-weight: bold;
    color: #444444;
    margin-right: 10px;
    /* @mixin media-range */
}

@media screen and (max-width: 480px) {
    .bread-list &gt; li:nth-of-type(n+2)::before {
        margin-right: 4px;
    }
}

.bread-list a {
    font-size: 0.75rem;
    font-weight: bold;
    color: #444444;
    line-height: 2.0;
    vertical-align: middle;
    /* @mixin media-range */
}

@media screen and (max-width: 480px) {
    .bread-list a {
        max-width: 16em;
    }
}

.bread-list a:hover {
    text-decoration: underline;
}

.art-container {
    width: 100%;
    border: solid 6px #EBF6E8;
    margin-bottom: 56px;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .art-container {
        margin-bottom: 32px;
    }
}

.art-container &gt; header {
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 20px;
    margin: 16px;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .art-container &gt; header {
        margin: 8px;
    }
}

.art-container &gt; header &gt; h2 {
    font-size: 1rem;
    line-height: 2.0;
}

.art-container &gt; header:after {
    content: ".";
    line-height: 0;
    display: block;
    overflow: hidden;
    position: absolute;
    bottom: 0px;
    width: 98px;
    border-bottom: 4px solid #24B87B;
}

.art-container .lead {
    margin: 16px;
    font-size: 0.875rem;
    line-height: 1.6;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .art-container .lead {
        margin: 8px;
    }
}

.art-block {
    padding: 8px;
    border-bottom: solid 2px #24B87B;
}

.art-block:nth-of-type(2n) {
    background-color: #EBF6E8;
}

.art-block:last-of-type {
    border-bottom: none;
}

.art-block .title {
    padding: 16px 0 8px;
    color: #24B87B;
    font-size: 1rem;
    font-weight: normal;
    letter-spacing: 0.5px;
    /* @mixin media-range */
}

@media screen and (max-width: 480px) {
    .art-block .title {
        padding: 8px 0 4px;
    }
}

.art-block .date {
    font-size: 0.875rem;
    margin-top: 4px;
}

.art-block .label {
    min-width: 78px;
    display: inline-block;
    color: #24B87B;
    font-size: 0.6875rem;
    text-align: center;
    padding: 3px 8px;
    background: #FFF;
    border: solid 1px #24B87B;
    margin-left: 16px;
}

.art-block .lead {
    font-size: 0.875rem;
    margin: 0;
    padding-bottom: 16px;
}

.art-block .text {
    font-size: 1rem;
    line-height: 1.4;
}

.info-list {
    height: auto;
}

.info-list &gt; li:first-of-type {
    border-top: solid 1px #ACACAC;
}

.calender-header, 
.O-char-header {
    background-color: #EBF6E8;
}

.calender-heading, 
.O-char-heading {
    padding: 14px 24px 0 24px;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .calender-heading {
        padding: 16px 16px 8px 16px;
    }
}

.calender-heading &gt; h3,
.O-char-heading &gt; h3 {
    color: #2A2A2A;
    font-size: 2rem;
    font-weight: normal;
    line-height: 1.8;
}

.calender-body {
    position: relative;
    width: 90%;
    margin: 40px auto;
    border: solid 3px #24B87B;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .calender-body {
        width: 96%;
        margin: 24px auto;
    }
}

.calender-arrow {
    position: absolute;
    top: 24px;
    right: 0;
    left: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
            align-items: center;
    height: 0;
    /* @mixin media-range */
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .calender-arrow {
        top: 22px;
    }
}

@media screen and (max-width: 480px) {
    .calender-arrow {
        top: 18px;
    }
}

.calender-arrow .prev {
    display: block;
    background-color: #24B87B;
    display: inline-block;
    font-size: 2.125rem;
    line-height: 1.2;
    border-bottom: transparent;
}

.calender-arrow .prev::before {
    color: #FFFFFF;
    /* @mixin icon-font */
    content: "navigate_before";
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 1.5em;
    line-height: 1;
    vertical-align: middle;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "liga";
}

.calender-arrow .prev:hover {
    cursor: pointer;
}

.calender-arrow .next {
    display: block;
    background-color: #24B87B;
    display: inline-block;
    font-size: 2.125rem;
    line-height: 1.2;
    border-bottom: transparent;
}

.calender-arrow .next::before {
    color: #FFFFFF;
    /* @mixin icon-font */
    content: "navigate_next";
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 1.5em;
    line-height: 1;
    vertical-align: middle;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "liga";
}

.calender-arrow .next:hover {
    cursor: pointer;
}

.calender-years {
    color: #95989A;
    font-size: 1rem;
    text-align: center;
    /* @mixin media-range */
}

@media screen and (max-width: 480px) {
    .calender-years {
        font-size: 1.25rem;
    }
}

.calender-years .month {
    font-size: 1.25rem;
    margin-left: 1em;
    /* @mixin media-range */
}

@media screen and (max-width: 480px) {
    .calender-years .month {
        font-size: 1.5rem;
    }
}

.calender-table {
    width: 100%;
    border-spacing: 0 !important;
    border-top: 1px solid #EBF6E8;
    border-left: 1px solid #EBF6E8;
    border-right: 1px solid #EBF6E8;
    table-layout: fixed;
}

.calender-table tr {
    width: 100%;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
}

.calender-table tr th, .calender-table tr td {
    display: block;
    border-right: 1px solid #EBF6E8;
    border-bottom: 1px solid #EBF6E8;
    /* @mixin space-grid */
    margin-right: 0px;
    width: calc(((100% - 0px * (7 - 1)) / 7) - .1px);
    /* @mixin media-range */
}

.calender-table tr th:nth-child(7n), .calender-table tr td:nth-child(7n) {
    margin-right: 0;
}

.calender-table tr th:nth-child(n+8), .calender-table tr td:nth-child(n+8) {
    margin-top: 0px;
}

.calender-table tr th:last-child, .calender-table tr td:last-child {
    margin-right: 0;
}

@media screen and (max-width: 768px) {
    .calender-table tr th, .calender-table tr td {
        display: block;
        width: 100%;
        padding: 0;
        border-bottom: 1px solid #EBF6E8;
    }
}

.calender-table tr th:last-child, .calender-table tr td:last-child {
    border-right: none;
}

.calender-table &gt; thead {
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .calender-table &gt; thead {
        display: none;
    }
}

.calender-table &gt; thead th {
    color: #95989A;
    font-size: 0.875rem;
    line-height: 1.6;
}

.calender-table &gt; tbody td {
    min-height: 65px;
    color: #333333;
    font-size: 0.875rem;
    line-height: 1.4;
    border-left: solid 3px transparent;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .calender-table &gt; tbody td {
        min-height: auto;
        height: auto;
        display: -webkit-box;
        display: flex;
    }
}

.calender-table .today {
    border: solid 3px #EBF6E8;
}

.calender-table .none {
    background-color: #F5FFF7;
    /* @mixin media-range */
}

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

.calender-table .day {
    height: auto;
    padding: 2px 6px 0;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .calender-table .day {
        width: 5em;
        padding: 2px 6px 2px;
    }
}

.calender-table .mobile-week {
    /* @mixin media-range */
}

@media screen and (min-width: 768px), print {
    .calender-table .mobile-week {
        display: none;
    }
}

.calender-table .label-list {
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .calender-table .label-list {
        width: calc(100% - 5em);
    }
}

.calender-table .label {
    background-color: #0081E5;
    font-size: 0.6875rem;
    line-height: 1.4;
    margin-bottom: 2px;
    /* @mixin media-range */
}
.calender-table .label2 {
    background-color: #b0c4de;
    font-size: 0.6875rem;
    line-height: 1.4;
    margin-bottom: 2px;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .calender-table .label2,
    .calender-table .label {
        font-size: 0.875rem;
    }
}

.calender-table .label2 span, 
.calender-table .label a {
    display: block;
    color: #FFFFFF;
    padding: 2px 6px;
}

.pagination {
    margin-top: 32px;
    margin-bottom: 32px;
    text-align: center;
    /* @mixin media-range */
}

@media screen and (max-width: 480px) {
    .pagination {
        margin-top: 16px;
        margin-bottom: 16px;
    }
}

.pagination-list {
    /* @mixin pagination */
    display: -webkit-box;
    display: flex;
    padding-left: 0;
    border-radius: 4px;
    -webkit-box-pack: center;
            justify-content: center;
    flex-wrap: wrap;
    background-color: #FFF;
}

.pagination-list &gt; li:first-child &gt; a,
.pagination-list &gt; li:first-child &gt; span {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.pagination-list &gt; li:last-child &gt; a,
.pagination-list &gt; li:last-child &gt; span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.pagination-list &gt; li &gt; a,
.pagination-list &gt; li &gt; span {
    position: relative;
    float: left;
    margin-left: -1px;
    padding: 6px 12px;
    border: 1px solid #24B87B;
    text-decoration: none;
    color: #24B87B;
}

.pagination-list &gt; li &gt; a:focus, .pagination-list &gt; li &gt; a:hover,
.pagination-list &gt; li &gt; span:focus,
.pagination-list &gt; li &gt; span:hover {
    z-index: 2;
    background-color: #24B87B;
    border-color: #24B87B;
    color: #fff;
}

.pagination-list &gt; .active &gt; a,
.pagination-list &gt; .active &gt; span {
    z-index: 3;
    cursor: default;
    background-color: #24B87B;
    border-color: #24B87B;
    color: #fff;
}

.pagination-list &gt; .active &gt; a:focus, .pagination-list &gt; .active &gt; a:hover,
.pagination-list &gt; .active &gt; span:focus,
.pagination-list &gt; .active &gt; span:hover {
    z-index: 3;
    cursor: default;
    background-color: #24B87B;
    border-color: #24B87B;
    color: #fff;
}

.pagination-list .current {
    color: #FFF;
    background-color: #24B87B;
}

.pagination-list &gt; li {
    margin-bottom: 8px;
}

.form-table {
    width: 100%;
    /* @mixin makeTableBordered */
    /* @mixin makeTableResponsive */
    /* @mixin media-range */
    /* @mixin media-range */
    border-spacing: 0 !important;
    border: 1px solid #24B87B;
    /* @mixin media-range */
    /* @mixin media-range */
    border-spacing: 0;
    border-radius: 3px;
    border: 1px solid #24B87B;
}

@media screen and (max-width: 768px) {
    .form-table tr &gt; td,
    .form-table tr &gt; th {
        display: block;
    }
}

@media screen and (min-width: 768px), print {
    .form-table tr &gt; td,
    .form-table tr &gt; th {
        display: table-cell;
    }
}

.form-table tr &gt; td {
    border-bottom: 1px solid #24B87B;
}

@media screen and (max-width: 768px) {
    .form-table tr &gt; th {
        border-bottom: 1px solid #24B87B;
    }
    .form-table tr:last-of-type &gt; td {
        border-bottom: none;
    }
}

@media screen and (min-width: 768px), print {
    .form-table tr &gt; th {
        border-right: 1px solid #24B87B;
        border-bottom: 1px solid #24B87B;
    }
    .form-table tr:last-of-type &gt; th,
    .form-table tr:last-of-type &gt; td {
        border-bottom: none;
    }
    .form-table thead &gt; tr:last-of-type &gt; td,
    .form-table thead &gt; tr:last-of-type &gt; th {
        border-bottom: 1px solid #24B87B;
    }
    .form-table tfoot &gt; tr:first-of-type &gt; td,
    .form-table tfoot &gt; tr:first-of-type &gt; th {
        border-top: 1px solid #24B87B;
    }
    .form-table tr &gt; th.t_wide {
        border-right: none;
    }
    .form-table .select {
        /*width: 100%;*/
        position: relative;
        display: inline-block;
    }
    .form-table .select::after {
        content: '';
        width: 6px;
        height: 6px;
        border: 0px;
        border-bottom: solid 2px #b4b3b3;
        border-right: solid 2px #b4b3b3;
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        position: absolute;
        top: 50%;
        right: 10px;
        margin-top: -4px;
    }
}

.form-table tr {
    margin-top: 2px;
}

.form-table tr &gt; th {
    width: 32%;
    background-color: #EBF6E8;
    text-align: left;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .form-table tr &gt; th {
        width: 100%;
    }
}

.form-table tr &gt; td {
    width: 70%;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .form-table tr &gt; td {
        width: 100%;
    }
}

.form-table tr:nth-child(odd) {
    background-color: #fff;
}

.form-table th, .form-table td {
    padding: 1.0em 1.5em;
    border-bottom: 1px solid #24B87B;
}

.form-table .select.text-medium, 
/*.form-table .select.text-medium select, */
.form-table .text-medium {
    width: 48%;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .form-table .select.text-medium, 
    .form-table .select.text-medium select, 
    .form-table .text-medium {
        width: 100%;
    }
}

.form-table .select.text-large, 
.form-table .select.text-large select, 
.form-table .text-large {
    width: 75%;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .form-table .select.text-large, 
    .form-table .select.text-large select, 
    .form-table .text-large {
        width: 100%;
    }
}

.form-table .select.text-xlarge, 
.form-table .select.text-xlarge select, 
.form-table .text-xlarge {
    width: 100%;
}

.form-table .notes {
    padding-top: 6px;
    font-size: 0.875rem;
    color: #FF0000;
}

.form-table .required {
    display: inline-block;
    background-color: #24B87B;
    color: #FFF;
    font-size: 0.875rem;
    font-weight: normal;
    border-radius: 4px;
    padding: 4px 6px;
    margin-left: 8px;
}

.form-table .error {
    color: #FF0000;
}

.form-button-list {
    margin-right: auto;
    margin-left: auto;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    /* @mixin media-range */
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .form-button-list {
        margin-top: 28px;
        width: 100%;
    }
}

@media screen and (min-width: 768px), print {
    .form-button-list {
        margin-top: 56px;
        max-width: 480px;
    }
}

.form-button-list &gt; li {
    /* @mixin media-range */
    /* @mixin media-range */
}

@media screen and (max-width: 480px) {
    .form-button-list &gt; li {
        /* @mixin space-row */
        margin-bottom: 8px;
        width: 100%;
    }
    .form-button-list &gt; li:last-child {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 480px), print {
    .form-button-list &gt; li {
        /* @mixin space-grid */
        margin-right: 40px;
        width: calc(((100% - 40px * (2 - 1)) / 2) - .1px);
    }
    .form-button-list &gt; li:nth-child(2n) {
        margin-right: 0;
    }
    .form-button-list &gt; li:nth-child(n+3) {
        margin-top: 40px;
    }
    .form-button-list &gt; li:last-child {
        margin-right: 0;
    }
}

.form-button-list button {
    /* @mixin btn */
    /* @mixin btn-style-clear */
    background-color: transparent;
    border: 0;
    outline: none;
    -webkit-appearance: none;
            appearance: none;
    -webkit-user-select: none;
            user-select: none;
    /* @mixin btn-color */
    background-color: #24B87B;
    color: #fff;
    padding: 12px 16px;
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: ease 0.15s;
    vertical-align: middle;
    white-space: nowrap;
    width: 100%;
    padding: 16px 32px;
    font-size: 1.125rem;
    color: #fff;
}

.form-button-list button:focus, .form-button-list button:hover {
    background-color: rgba(36, 184, 123, 0.7);
}

.form-button-list button:disabled:hover {
    background-color: #24B87B;
}

.form-button-list button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.form-button-list .reset,
.form-button-list .back {
    /* @mixin btn-color */
    background-color: #EBEBEB;
    color: #fff;
}

.form-button-list .reset:focus, .form-button-list .reset:hover,
.form-button-list .back:focus,
.form-button-list .back:hover {
    background-color: rgba(235, 235, 235, 0.7);
}

.form-button-list .reset:disabled:hover,
.form-button-list .back:disabled:hover {
    background-color: #EBEBEB;
}

.form-button-list .err,
.form-button-list .required {
    color: #FF0000;
}

.prescriptionquestion-list &gt; li,
.pharmacy-list &gt; li {
    border-top: solid 1px #EBF6E8;
}

.prescriptionquestion-item,
.pharmacy-item {
    padding: 14px 0;
}

.prescriptionquestion-item .name,
.pharmacy-item .name {
    font-size: 1.125rem;
    color: #24B87B;
    margin-bottom: 12px;
}

.pharmacy-dl {
    display: -webkit-box;
    display: flex;
    margin-bottom: 6px;
}

.pharmacy-dl:last-of-type {
    margin-bottom: 0;
}

.pharmacy-dl &gt; dt {
    width: 4em;
    display: inline-block;
    background-color: #EBF6E8;
    color: #0E0E0E;
    font-size: 0.875rem;
    text-align: center;
    padding: 4px 0;
    margin-right: 12px;
}

.pharmacy-dl &gt; dd {
    color: #0E0E0E;
    font-size: 0.875rem;
}

.recruit-table {
    width: 100%;
    min-width: 440px;
    border-collapse: collapse;
    margin-top: 16px;
    margin-bottom: 16px;
}

.recruit-table &gt; thead th {
    border: 1px solid #24B87B;
    padding: 12px 16px;
    background-color: #EBF6E8;
}

.recruit-table &gt; tbody th, .recruit-table &gt; tbody td {
    padding: 12px 16px;
    font-size: 0.75rem;
    line-height: 1.4;
    border: 1px solid #24B87B;
    /* @mixin media-range */
}

@media screen and (max-width: 480px) {
    .recruit-table &gt; tbody th, .recruit-table &gt; tbody td {
        line-height: 1.6;
    }
}

.recruit-table &gt; tbody th {
    font-weight: normal;
}

.recruit-table &gt; tbody td {
    background-color: #FFF;
}

.question-dl-wrapper .question-dl {
    padding: 16px 12px;
}

.question-dl-wrapper .question-dl:nth-child(2n+1) {
    background-color: #EBF6E8;
}

.question-dl-wrapper .question-dl:nth-child(2n) {
    background-color: #f7f7f7;
}

.question-dl {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
}

.question-dl &gt; dt {
    width: 100%;
    padding-bottom: 8px;
    font-size: 0.9375rem;
    font-weight: bold;
    line-height: 1.4;
}

.question-dl &gt; dt &gt; dl {
    display: -webkit-box;
    display: flex;
}

.question-dl &gt; dt &gt; dl dt {
    width: 3em;
}

.question-dl &gt; dt &gt; dl dd {
    width: calc(100% - 3em);
}

.question-dl &gt; dt .question {
    color: #f00;
    font-weight: bold;
}

.question-dl &gt; dd {
    width: 100%;
    padding-bottom: 16px;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.question-dl &gt; dd &gt; dl {
    display: -webkit-box;
    display: flex;
}

.question-dl &gt; dd &gt; dl dt {
    width: 3em;
}

.question-dl &gt; dd &gt; dl dd {
    width: calc(100% - 3em);
}

.question-dl &gt; dd &gt; dl table {
    width: 100%;
    min-width: 440px;
    border-collapse: collapse;
    margin-top: 16px;
    font-size: 0.8125rem;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .question-dl &gt; dd &gt; dl table {
        width: 100%;
    }
}

.question-dl &gt; dd .question {
    color: #f00;
}

.question-dl &gt; dd .anser {
    color: #0000CD;
    font-weight: bold;
}

.question-dl &gt; dd a {
    text-decoration: none;
}

.question-dl &gt; dd a:hover, .question-dl &gt; dd a:active {
    text-decoration: underline;
}

.question-dl &gt; dd img {
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .question-dl &gt; dd img {
        width: 100%;
    }
}

.question-dl-2 {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
}

.question-dl-2 &gt; dt {
    width: 100% !important;
    padding-bottom: 8px;
    font-size: 0.9375rem;
    font-weight: bold;
    line-height: 1.4;
}

.question-dl-2 &gt; dt .question {
    color: #f00;
    font-weight: bold;
    margin-right: 8px;
}

.question-dl-2 &gt; dd {
    width: 100% !important;
    padding-bottom: 16px;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.question-dl-2 &gt; dd .anser {
    color: #0000CD;
    font-weight: bold;
    margin-right: 8px;
}

.aims-dl-1 {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: start;
            justify-content: flex-start;
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

.aims-dl-1 &gt; dt {
    width: 4em;
}

.aims-dl-1 &gt; dd {
    width: calc(100% - 4em);
    line-height: 1.4;
}

.aims-dl-2 {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: start;
            justify-content: flex-start;
    margin-bottom: 8px;
    font-size: 0.9375rem;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .aims-dl-2 {
        flex-wrap: wrap;
    }
}

.aims-dl-2 &gt; dt {
    width: 40%;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .aims-dl-2 &gt; dt {
        width: 100%;
    }
}

.aims-dl-2 &gt; dd {
    width: calc(100% - 40%);
    line-height: 1.4;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .aims-dl-2 &gt; dd {
        width: 100%;
    }
}

.aims-dl-3 {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: start;
            justify-content: flex-start;
    margin-bottom: 8px;
    font-size: 0.9375rem;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .aims-dl-3 {
        flex-wrap: wrap;
    }
}

.aims-dl-3 &gt; dt {
    width: 24%;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .aims-dl-3 &gt; dt {
        width: 100%;
    }
}

.aims-dl-3 &gt; dd {
    width: calc(100% - 24%);
    line-height: 1.4;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .aims-dl-3 &gt; dd {
        width: 100%;
    }
}

.box-col2-item .main &gt; .title {
    font-size: 1rem;
    font-weight: bold;
}

.box-col2-item .main &gt; p {
    font-size: 0.875rem;
    line-height: 1.4;
}

.question-list {
    margin-bottom: 40px;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .question-list {
        margin-bottom: 24px;
    }
}

.question-list &gt; li {
    margin-bottom: 8px;
}

.question-list &gt; li a {
    font-size: 0.875rem;
    text-decoration: none;
}

.question-list dl {
    display: -webkit-box;
    display: flex;
}

.question-list dl &gt; dt {
    width: 4em;
}

.question-list dl &gt; dd {
    width: calc(100% - 4em);
}

.question-list dl &gt; dd:hover, .question-list dl &gt; dd:active {
    transition: 0.15s ease;
    text-decoration: underline;
}

.file-list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 24px;
    /* @mixin media-range */
}

@media screen and (max-width: 480px) {
    .file-list {
        margin-bottom: 16px;
    }
}

.file-list &gt; li {
    /* @mixin media-range */
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .file-list &gt; li {
        /* @mixin space-grid */
        margin-right: 16px;
        width: calc(((100% - 16px * (1 - 1)) / 1) - .1px);
    }
    .file-list &gt; li:nth-child(1n) {
        margin-right: 0;
    }
    .file-list &gt; li:nth-child(n+2) {
        margin-top: 16px;
    }
    .file-list &gt; li:last-child {
        margin-right: 0;
    }
}

@media screen and (min-width: 768px), print {
    .file-list &gt; li {
        /* @mixin space-grid */
        margin-right: 32px;
        width: calc(((100% - 32px * (2 - 1)) / 2) - .1px);
    }
    .file-list &gt; li:nth-child(2n) {
        margin-right: 0;
    }
    .file-list &gt; li:nth-child(n+3) {
        margin-top: 32px;
    }
    .file-list &gt; li:last-child {
        margin-right: 0;
    }
}

.file-item {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    background-color: #F6F3E8;
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none !important;
    color: #0E0E0E;
    padding: 14px 16px;
}

.file-item:hover, .file-item:active {
    opacity: 0.7;
}

.file-item .icon-ppt,
.file-item .icon-pdf,
.file-item .icon-docx,
.file-item .icon-xls {
    margin-right: 8px;
}

.file-item .icon-ppt::before,
.file-item .icon-pdf::before,
.file-item .icon-docx::before,
.file-item .icon-xls::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    background-size: cover;
    vertical-align: middle;
}

.file-item .icon-ppt {
    background-image: url(../images/common/icon-pptx.png);
}

.file-item .icon-pdf {
    background-image: url(../images/common/icon-pdf.png);
}

.file-item .icon-docx {
    background-image: url(../images/common/icon-docx.png);
}

.file-item .icon-xls {
    background-image: url(../images/common/icon-xls.png);
}

.kensa-list {
    width: 80%;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 24px;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .kensa-list {
        width: 100%;
        margin-bottom: 16px;
    }
}

.kensa-list &gt; li {
    /* @mixin media-range */
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .kensa-list &gt; li {
        /* @mixin space-grid */
        margin-right: 16px;
        width: calc(((100% - 16px * (1 - 1)) / 1) - .1px);
    }
    .kensa-list &gt; li:nth-child(1n) {
        margin-right: 0;
    }
    .kensa-list &gt; li:nth-child(n+2) {
        margin-top: 16px;
    }
    .kensa-list &gt; li:last-child {
        margin-right: 0;
    }
}

@media screen and (min-width: 768px), print {
    .kensa-list &gt; li {
        /* @mixin space-grid */
        margin-right: 32px;
        width: calc(((100% - 32px * (2 - 1)) / 2) - .1px);
    }
    .kensa-list &gt; li:nth-child(2n) {
        margin-right: 0;
    }
    .kensa-list &gt; li:nth-child(n+3) {
        margin-top: 32px;
    }
    .kensa-list &gt; li:last-child {
        margin-right: 0;
    }
}

.kensa-item {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    background-color: #24B87B;
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none !important;
    text-align: center;
    color: #FFF !important;
    padding: 18px 16px;
}

.kensa-item:hover, .kensa-item:active {
    opacity: 0.7;
}

.item-table {
    min-width: 440px;
    border-collapse: collapse;
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 0.8125rem;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .item-table {
        width: 100%;
    }
}

.item-table &gt; caption {
    padding: 8px 0;
    font-size: 0.875rem;
    font-weight: bold;
}

.item-table &gt; thead tr th {
    padding: 10px 8px;
}

.item-table &gt; tbody tr td {
    padding: 6px 8px;
}

.rinri-list {
    list-style: disc;
    padding-left: 2em;
    margin-bottom: 24px;
    /* @mixin media-range */
}

@media screen and (max-width: 480px) {
    .rinri-list {
        margin-bottom: 16px;
    }
}

.rinri-list &gt; li {
    width: 100%;
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.rinri-item {
    text-decoration: none !important;
    color: #0E0E0E;
}

.rinri-item:hover, .rinri-item:active {
    text-decoration: underline !important;
}

.rinri-item .icon-pdf,
.rinri-item .icon-docx,
.rinri-item .icon-xls {
    margin-right: 8px;
    display: inline-block;
}

.rinri-item .icon-pdf::before,
.rinri-item .icon-docx::before,
.rinri-item .icon-xls::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    background-size: contain;
    vertical-align: middle;
}

.rinri-item .icon-pdf {
    background-image: url(../images/common/icon-pdf.png);
}

.rinri-item .icon-docx {
    background-image: url(../images/common/icon-docx.png);
}

.rinri-item .icon-xls {
    background-image: url(../images/common/icon-xls.png);
}

.photo-list {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
    flex-wrap: wrap;
}

.photo-list &gt; li {
    /* @mixin space-grid */
    margin-right: 24px;
    width: calc(((100% - 24px * (2 - 1)) / 2) - .1px);
    /* @mixin media-range */
}

.photo-list &gt; li:nth-child(2n) {
    margin-right: 0;
}

.photo-list &gt; li:nth-child(n+3) {
    margin-top: 24px;
}

.photo-list &gt; li:last-child {
    margin-right: 0;
}

@media screen and (max-width: 480px) {
    .photo-list &gt; li {
        /* @mixin space-grid */
        margin-right: 0px;
        width: calc(((100% - 0px * (1 - 1)) / 1) - .1px);
        margin-bottom: 16px;
    }
    .photo-list &gt; li:nth-child(1n) {
        margin-right: 0;
    }
    .photo-list &gt; li:nth-child(n+2) {
        margin-top: 0px;
    }
    .photo-list &gt; li:last-child {
        margin-right: 0;
    }
}

.photo-list &gt; li a {
    color: #0E0E0E;
    display: block;
}

.photo-list &gt; li a:hover, .photo-list &gt; li a:active {
    opacity: 0.7;
}

.photo-list &gt; li figure &gt; img {
    /* @mixin media-range */
}

@media screen and (max-width: 480px) {
    .photo-list &gt; li figure &gt; img {
        width: 100%;
    }
}

.photo-list &gt; li figcaption {
    margin-top: 8px;
    text-align: center;
}

.sub-page {
    border: solid 6px #24B87B;
    padding: 8px;
    margin-bottom: 16px;
}

.sub-page .sub-header {
    background-color: #24B87B;
    padding: 24px 16px;
    margin-bottom: 8px;
}

.sub-page .sub-header &gt; h3 {
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1.6;
}

.sub-page .sub-header &gt; aside {
    color: #FFFFFF;
    font-size: 0.625rem;
    line-height: 1.2;
}

.page-list {
    margin-bottom: 16px;
}

.page-list &gt; li {
    border-bottom: solid 1px #EBF6E8;
}

.page-list &gt; li a {
    display: block;
    color: #0E0E0E;
    font-size: 0.875rem;
    padding: 16px 0;
    background: url(../images/common/icon-arrow-next.png) 14px 18px no-repeat;
    background-size: 14px 11px;
    text-indent: 2.4em;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .page-list &gt; li a {
        background: url(../images/common/icon-arrow-next.png) 14px 16px no-repeat;
        background-size: 14px 11px;
        text-indent: 3.4em;
    }
}

.page-list &gt; li a:hover, .page-list &gt; li a:active {
    text-decoration: underline;
}

.menu-list {
    display: -webkit-box;
    display: flex;
    margin-bottom: 16px;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .menu-list {
        flex-wrap: wrap;
    }
}

.menu-list &gt; li {
    margin-right: 16px;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .menu-list &gt; li {
        /* @mixin space-grid */
        margin-right: 0px;
        width: calc(((100% - 0px * (2 - 1)) / 2) - .1px);
    }
    .menu-list &gt; li:nth-child(2n) {
        margin-right: 0;
    }
    .menu-list &gt; li:nth-child(n+3) {
        margin-top: 0px;
    }
    .menu-list &gt; li:last-child {
        margin-right: 0;
    }
}

.menu-list &gt; li a {
    display: block;
    text-decoration: none;
    color: #0E0E0E;
    font-size: 1rem;
    padding: 16px 0;
    background: url(../images/common/icon-arrow-next.png) 14px 20px no-repeat;
    background-size: 14px 11px;
    text-indent: 2.4em;
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .menu-list &gt; li a {
        padding: 8px 0;
        background: url(../images/common/icon-arrow-next.png) 14px 8px no-repeat;
        background-size: 14px 11px;
        text-indent: 3.4em;
    }
}

.menu-list &gt; li a:hover, .menu-list &gt; li a:active {
    text-decoration: underline;
}

.need_login {
    text-align: center;
}

.need_login a {
    /* @mixin btn */
    /* @mixin btn-style-clear */
    background-color: transparent;
    border: 0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-user-select: none;
    user-select: none;
    /* @mixin btn-color */
    background-color: #24B87B;
    color: #fff;
    padding: 12px 16px;
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: ease 0.15s;
    vertical-align: middle;
    white-space: nowrap;
    width: calc(((480px - 40px * (2 - 1)) / 2) - .1px);
    margin: 0 auto 10px;
    padding: 16px 32px;
    font-size: 1.125rem;
    color: #fff;
}

/*----------------------------------------------------
  .pq_table
----------------------------------------------------*/
.prescriptionquestion-list .file-item {
    background-color: #FFF;
    color: #24B87B;
    padding: 14px 16px 14px 0;
    font-size: 1.125rem;
}

.prescriptionquestion-list .file-item .icon-pdf {
    margin-right: 0;
    margin-left: 8px;
}

.pq_table {
    width: 100%;
    border-collapse: collapse;
}

.pq_table th, .pq_table td {
    padding: 12px 16px;
    border: 1px solid #24B87B;
}

.pq_table th {
    background: #EBF6E8;
}

.pq_table th {
    width: 20%;
    text-align: center;
}

@media only screen and (max-width: 480px) {
    .pq_table {
        margin: 0;
    }
    .pq_table th,
    .pq_table td {
        width: 100%;
        display: block;
        border-top: none;
    }
    .pq_table tr:first-child th {
        border-top: 1px solid #24B87B;
    }
}

.pull-center {
    text-align: center;
}
.pull-right {
    text-align: right;
}

.continuation-training-sub,
.bank-account {
    /*text-align: center;*/
    margin: 15px 0;
}
.continuation-training-sub table,
.bank-account table{
    border:none;
    /*padding-left: 100px;*/
}
.continuation-training-sub table th,
.bank-account table th{
    text-align: center;
    font-weight: bold;
    background-color: #EEEEEE;
}
.continuation-training-sub table td,
.bank-account table td{
    text-align: left;
}
.continuation-training-sub table th, .continuation-training-sub table td,
.bank-account table th, .bank-account table td {
    padding: 12px 16px;
    font-size: 0.9375rem;
    line-height: 1.4;
    border: 1px solid #EEEEEE;
}

/*------------------------------------------------------------------------------*/
/* Q&amp;A */
/*------------------------------------------------------------------------------*/
.qa-anchor {
    margin-bottom: 40px;
}
.qa-anchor li {
    float: left;
    margin: 5px 0.5%;
    width: 19%;
    text-align: center;
}
.qa-anchor li a{
    display: table-cell;
    vertical-align: middle;
	font-size: 14px;
	color: #fff;
	line-height: 20px;
	background-color: #24B87B;
	padding: 7px 10px;
    width: 19%;
    height: 60px;
}
.qa-anchor li a:hover{
    opacity: 0.8;
}
.qa-anchor:after {
    clear: both;
    content: "";
    display: block;
}

.qa-list {
    margin: 0 0 50px;
}
.qa-list dl {
    position: relative;
    margin: 10px 0 0;
    cursor: pointer;
    border: 1px solid #EBF6E8;
}
.qa-list dl:first-child {
  margin-top: 0;
}
.qa-list dl::after {
    position: absolute;
    top: 22px;
    /*top: 50%;*/
    right: 20px;
    display: block;
    width: 10px;
    height: 10px;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 2px solid #24B87B;
    border-right: 2px solid #24B87B;
}
.qa-list .open::after {
    transform: rotate(-45deg);
}
.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 15px 35px 15px 60px;
    font-weight: bold;
    background: #EBF6E8;
    line-height: 1.6;
}
.qa-list dl dt::before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    top: 15px;
    left: 20px;
    display: block;
    content: 'Q.';
    color: #3285bf;
}
.qa-list dl dd {
    position: relative;
    margin: 0;
    padding: 15px 15px 15px 60px;
    line-height: 1.6;
}
.qa-list dl dd::before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    left: 20px;
    display: block;
    content: 'A.';
    font-weight: bold;
    color: #3285bf;
}
.qa-list dl dd p {
    margin: 10px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}

@media screen and (max-width: 767px) {
    .qa-anchor {
        margin-bottom: 30px;
    }
    .qa-anchor li{ 
        width: 31%;
        margin: 0 1% 5px;
    }
    .qa-anchor li a{ 
        font-size: 100%;
        padding: 5px 5px;
        width: 31%;
        height: 55px;
    }
    .qa-list {
        margin: 0 0 40px;
    }
    .qa-list dl {
        margin: 10px 0 0;
    }
    .qa-list dl:after {
        top: 22px;
        right: 15px;
        width: 7px;
        height: 7px;
    }
    .qa-list dl dt {
        padding: 15px 30px 15px 35px;
        font-size: 14px;
    }
    .qa-list dl dt::before {
        font-size: 14px;
        top: 18px;
        left: 15px;
    }
    .qa-list dl dd::before {
        font-size: 14px;
        left: 15px;
        margin-top: 5px;
    }
    .qa-list dl dd {
        margin: 0;
        padding: 15px 30px 15px 35px;
        font-size: 14px;
    }
    #qa01, #qa02, #qa03, #qa04, #qa05 {
        margin-top: -46px;
        padding-top: 46px;
    }
}
.qa .qa-more {
    padding-top: 30px;
    text-align: center;
}
.qa .qa-more p{
    text-align: left;
}
.qa .more_btn {
    padding:10px;
    color:#fff;
    background:#24B87B;
    width:200px;
    margin:0 auto ;
}
.qa .close {
    margin-top: 30px;
    background:#898888;
}
.qa-list dl dd .link-list {
    margin-top: 10px;
}
.qa-list dl dd a {
    line-height: 25px;
    word-break: break-all;
}
a.external.search_link:before, 
.qa-list dl dd a.external:before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url(../images/common/icon-external-link.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 10px;
}
.qa-list dl dd a.pagelink:before{
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url(../images/common/icon-link.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 10px;
}
/*.sec-qa #mascot  {
    position: fixed;
    bottom: 15px;
    right: 20px;
    font-size: 77%;
    display: none;
}*/
.qa-list dl dd .bnr-link {
    margin: 15px auto 0;
    text-align: center;
}

a.external.search_link {
    display: block;
    margin-top: 5px;
    margin-bottom: 20px;
} 

.fuki_par *{
    box-sizing: border-box;
}
.fuki_par {
    display: table;
    box-sizing: border-box;
    margin-bottom: 1em;
    width: 100%;
}
.fuki_child_left {
    display: table-cell;
    vertical-align: top;
    width: 75%; 
    padding: 10px 23px 0 10px;
}
.fuki_child_right {
    display: table-cell;
    width: 20%; 
    position: relative;
}
.fuki_child_right img{
    padding: 5px 10px;
}
.fuki_child_text{
    border: #EBF6E8 solid 4px;
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 13px;
    font-size: 0.875rem;
    line-height: 1.6;
}
.fuki_child_text p:first-of-type{
    margin-top: 0;
}
.fuki_child_text p:last-of-type{
    margin-bottom: 0;
}
.fuki_child_text::before{
    border-left: 23px solid #EBF6E8;
    border-bottom: 20px solid transparent;
    border-top: 20px solid transparent;
    top: 10%;
    content: "";
    position: absolute;
    right: -23px;
}
.fuki_child_text::after{
    content: "";
    position: absolute;
    border-left: 24px solid #fff;
    border-bottom: 20px solid transparent;
    border-top: 20px solid transparent;
    top: 10%;
    right: -17px;
}

@media screen and (max-width: 600px){
    .fuki_par {
        margin-bottom: 2em;
    }
    .fuki_child_left {
        width: 70%; 
        padding: 0 23px 0 5px;
    }
    .fuki_child_right {
        width: 28%; 
    }
    .fuki_child_text{
        padding: 10px;
    }
    .fuki_child_right img {
        padding: 15px 5px;
    }
}

.sec-body &gt; p.hojo {
    font-size: 1.125rem; 
    font-weight: bold; 
    text-align: center;
    
}
.sec-body &gt; p.hojo img {
    width: 80px;
    vertical-align:middle; 
    margin-right: 5px;
}

dl.program {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  dl.program dt {
    width: 100%;
    margin-bottom: 10px;
    color: #339966;
    font-weight: bold;
  }
  dl.program dd {
    width: 100%;
    margin-bottom: 10px;
  }
  @media screen and (min-width: 768px) {
      dl.program dt {
          width: 15%;
          margin-bottom: 10px;
      }
      dl.program dd {
          width: 85%;
          margin-bottom: 10px;
      }
  }
  
  .senryubox {
      margin: 0 0 5px 20px;
  }
  .senryubox span {
      display: inline-block;
  }
  .senryubox .senryu{
      font-weight: bold;
      width: 100%;
      margin-bottom: 3px;
  }
  .senryubox .senryu.specialty {
      color: #ff6600;
  }
  .senryubox .senryu.winning {
      color: #3366ff;
  }
  .senryubox .senryu.kasaku {
      color: #339966;
  }
  .senryubox .senryu.children {
      color: #ff00ff;
  }
  .senryubox .author {
      /*margin-left: 20%;*/
      width: 100%;
      margin-bottom: 5px;
      text-align: right;
  }
  .senryubox .author span {
      margin-right: 1em;
  }
  .senryubox .author span:last-child {
      margin-right: 0;
  }
  @media screen and (min-width: 768px) {
      .senryubox .senryu{
          width: 50%;
          margin-bottom: 0;
      }
      .senryubox .author {
          margin-left: 0;
          width: 45%;
          margin-bottom: 0;
          text-align: left;
      }
  }

.festa_intro {
    width:100%;
    height:0;
    position:relative;
    text-align: center;
    margin: 0 auto 1em;
    padding: 20px 20px calc(56.25% + 20px) 20px;
    background: #EBF6E8;
}
.festa_intro iframe {
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
}

/* フォトコンテスト */
.photo-contest-item {
    height: auto;
    padding: 15px;
    border: solid 6px #EBF6E8;
    margin-top: 10px;
}
.photo-contest-item-body .title {
    font-size: 1.125rem;
    font-weight: bold;
    padding-top: 10px;
}
.photo-contest-item .photo-contest-item-img {
    width: 100%;
    text-align: center;
}
.photo-contest-item-body .title:before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url('../images/festa/icon_kirakira.png');
    background-size: contain;
    vertical-align: middle;
}
@media screen and (min-width: 768px) {
    .photo-contest-item {
        display: flex;
        height: 320px;
        position: relative;
        padding: 15px;
        border: solid 6px #EBF6E8;
        margin-top: 10px;
    }
    .photo-contest-item .photo-contest-item-img {
        max-width: 295px;
        overflow: hidden;
        position: relative;
        width: 100%;
        margin-right: 30px;
    }
    .photo-contest-item-img img {
        height: auto;
        left: 50%;
        max-height: 100%;
        max-width: 100%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        width: auto;
    }
    .photo-contest-item-body .title {
        padding-top: 30px;
    }
}

/* 日曜祝日当番薬局一覧 追加 */
.file-list.hp_holiday {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 24px;
    gap: 12px 2%;
    /* justify-content: space-between; */
    /* @mixin media-range */
}

@media screen and (max-width: 480px) {
    .file-list.hp_holiday {
        margin-bottom: 16px;
        gap: 12px 2%;
    }
}

.file-list.hp_holiday &gt; li {
    /* @mixin media-range */
    /* @mixin media-range */
}

@media screen and (max-width: 768px) {
    .file-list.hp_holiday &gt; li {
        /* @mixin space-grid */
        /* margin-right: 16px; */
        width: 48%;
    }
    .file-list.hp_holiday &gt; li:nth-child(1n) {
        margin-right: 0;
    }
    .file-list.hp_holiday &gt; li:nth-child(n+2) {
        margin-top: 0px;
    }
    .file-list.hp_holiday &gt; li:last-child {
        margin-right: 0;
    }
}

@media screen and (min-width: 768px), print {
    .file-list.hp_holiday &gt; li {
        /* @mixin space-grid */
        margin-right: 0px;
        /* width: calc(((100% - 32px * (2 - 1)) / 2) - .1px); */
        width: 32%;
    }
    .file-list.hp_holiday &gt; li:nth-child(2n) {
        margin-right: 0;
    }
    .file-list.hp_holiday &gt; li:nth-child(n+3) {
        margin-top: 0px;
    }
    .file-list.hp_holiday &gt; li:last-child {
        margin-right: 0;
    }
}

/* 2025.01.24 ADD */
.official-character .sec-lead {
    margin-left: 24px;
}
.official-character .sec-header {
    margin: 24px 24px 16px;
    width: auto;
}
.official-character .sec-header h2 {
    font-size: 1.17em;
}
@media screen and (max-width: 768px) {
    .O-char-heading {
        padding: 16px 16px 8px 16px;
    }
   .O-char-heading &gt; h3 {
        font-size: 1.25rem;
        font-weight: 700;
        line-height: calc(27/16);
    }
}
.official-character .O-char-body {
    padding: 35px;
}
@media screen and (max-width: 768px) {
    .official-character .O-char-body {
        padding: 35px 15px;
    }
}
.official-character .O-char-body.designer {
    padding: 40px 35px 60px;
}
.official-character .O-char-body.introduction, 
.official-character .O-char-body.secret {
    text-align: center;
}
.official-character .O-char-body.introduction figure {
    margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
    .official-character .O-char-body.introduction figure {
        margin-bottom: 30px;
    }
}
.official-character .O-char-body.introduction &gt; h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
    .official-character .O-char-body.introduction &gt; h4 {
        font-size: 1.25rem;
        font-weight: 700;
    }
}
.official-character .O-char-body.introduction &gt; h4 ruby {
    text-align: start;
	ruby-align: space-around;
}
.official-character .O-char-body.introduction &gt; h4 ruby &gt; rt {
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 5px;
}
.official-character .O-char-body.introduction &gt; h5, 
.official-character .O-char-body.designer h4 {
    font-size: 1.25rem;
    font-weight: 700;
}
@media screen and (max-width: 768px) {
    .official-character .O-char-body.designer h4 {
        font-size: 1.125rem;
    }
}
.official-character .O-char-body.introduction &gt; h5 {
    margin-bottom: 30px;
}
.official-character .O-char-body.designer p {
    margin-top: 0.5rem;
}
.official-character .O-char-body.introduction &gt; h5::before, 
.official-character .O-char-body.introduction &gt; h5::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../images/O-char/pink-star.png);
    background-size: contain;
    vertical-align: middle;
}
.official-character .O-char-body.introduction &gt; h5::before {
    margin-right: 8px;
}
.official-character .O-char-body.introduction &gt; h5::after {
    margin-left: 8px;
}
.official-character .introduction dl {
    display: flex;
    flex-flow: row wrap;
    width: 70%;
    margin: 0   auto;
    font-size: 1rem;
}
.official-character .introduction dt {
    width: 20%;
    color: #F02FCB;
    font-weight: 700;
    text-align: left;
    margin-bottom: 15px;
    margin-right: 2%;
    line-height: 1.625;
}  
.official-character .introduction dd {
    width: 78%;   
    margin-bottom: 15px;
    text-align: left;
    letter-spacing:0.05em;
    line-height: 1.625;
}
@media screen and (max-width: 768px) {
    .official-character .introduction dl {
        flex-flow: column;
        width: 85%;
        margin: 0 auto 10px;
    }
    .official-character .introduction dt {
        width: 100%;   
        margin-bottom: 4px;
        margin-right: 0;
    }  
    .official-character .introduction dd {
        width: 100%;   
        /*line-height: calc(14/13);*/
        line-height: 1.2;
    }
}
.official-character .O-char-images {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: flex-start;
}
.official-character .O-char-images img {
    height: 200px;
}
.official-character .O-char-images img.offset {
    margin-top: 50px;
}
@media screen and (max-width: 768px) {
    .official-character .O-char-images {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3列のグリッド */
        grid-template-rows: repeat(2, 1fr); /* 2行のグリッド */
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        justify-items: center;
        align-items: center;
    }
    .img1 { grid-area: 1 / 1 / 2 / 2; }
    .img2 { grid-area: 1 / 3 / 2 / 4; }
    .img3 { grid-area: 1 / 2 / 3 / 3; }
    .img4 { grid-area: 2 / 1 / 3 / 2; }
    .img5 { grid-area: 2 / 3 / 3 / 4; }
  
    .official-character .O-char-images img {
        width: 100%;
        height: auto;
    }
    .official-character .O-char-images img.offset {
        margin-top: 0;
    }
  }

@media screen and (max-width: 768px) {
    .official-character .O-char-body.designer {
        padding: 35px 30px 55px;
    }
}
.official-character .d-profile {
    font-size: 0.750rem;
    line-height: calc(20/12);
    position: relative;
}
.official-character .designer .d-profile a {
    position: absolute;
    top: 0;
    right: 0;
    vertical-align: middle;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    background-color: #24B87B;
    padding: 20px 25px;
    border-radius: 3px;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .official-character .designer .d-profile a {
        position: static;
        display: inline-block;
        font-size: 0.9375rem;
        width: 100%;
        margin-top: 25px;
        padding: 15px 40px;
        text-align: center;
    }
}
.official-character .d-profile img,
.official-character .d-profile .d-profile-name,
.official-character .d-profile .d-profile-info {
    float: left;
}
.official-character .d-profile img {
    width: 200px;
    height: 200px;
    margin-right: 25px;
}
.official-character .d-profile .d-profile-name,
.official-character .d-profile .d-profile-info {
    width: calc(100% - 225px);
}
.official-character .d-profile .d-profile-info {
    margin-top: 15px;
}
@media screen and (max-width: 768px) {
    .official-character .d-profile img {
        width: 95px;
        height: 95px;
        margin-right: 10px;
    }
    .official-character .d-profile .d-profile-name {
        width: calc(100% - 110px);
    }
    .official-character .d-profile .d-profile-info {
        width: 100%;
    }
}
.official-character .d-profile .note {
    font-size: 0.8125rem;
    line-height: calc(20/13);
}
@media screen and (max-width: 768px) {
    .official-character .d-profile .note {
        font-size: 0.750rem;
        line-height: calc(20/12);
    }
}
.official-character .designer dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 5px;
}
.official-character .designer dt {
    width: 50px;
}  
.official-character .designer dd {
    width: calc(100% - 50px);
}
.official-character .d-thoughts {
    background-color: #FBF7DC;
    margin-top: 35px;
    padding: 30px;
    background-image: url(../images/O-char/bg-white-stars.png);
    background-repeat: repeat;
    background-position: 2px 2px; 
}
@media screen and (max-width: 768px) {
    .official-character .d-thoughts {
        margin-top: 30px;
        padding: 15px;
    }
}
.official-character .O-char-body.designer h4 {
    line-height: 1.6;
}
@media screen and (max-width: 768px) {
    .official-character .O-char-body.designer h4 {
        line-height: calc(31/18);
    }
}
.official-character .O-char-body.designer .d-thoughts h5 {
    font-size: 1.125rem;
    line-height: calc(31/18);
    margin-bottom: 10px;
}
.official-character .O-char-body.designer .d-thoughts p {
    font-size: 0.875rem;
    line-height: calc(24/14);
}
.official-character .activities .card-group {
    padding: 0 8%;
}
.official-character .activities .card {
    margin-bottom: 20px;
}
.official-character .activities .card-img {
    width: 100%;
}
.official-character .activities .card-body {
    width: 100%;
    margin-bottom: auto;
    padding: 10px 0;
}
@media screen and (max-width: 768px) {
    .official-character .activities .card-body {
        padding: 7px 0 0;
    }
}
.official-character .activities .card-title {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.8125rem;
    line-height: calc(18/13);
}
@media screen and (max-width: 768px) {
    .official-character .activities .card-title {
        margin-bottom: 7px;
    }
}
.official-character .activities .card-lead {
    color: #565656;
    font-weight: 300;
    font-size: 0.750rem;
    line-height: calc(21/12);
    margin: 0;
}
@media screen and (min-width: 768px) {
    .official-character .activities .card-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 0;
        margin-bottom: 30px;
    }
    .official-character .activities .card {
        margin-bottom: 0;
    }
    .official-character .activities .card {
        width: calc((100% - 40px) / 3);
    }
}
.official-character .activities .message {
    position: relative;
    display: flex; 
    align-items: center; 
    gap: 20px; 
    padding: 20px 60px 20px 40px;
}
@media screen and (max-width: 768px) {
    .official-character .activities .message {
        gap: 10px; 
        padding: 15px 25px 35px 25px;
    }
}
.official-character .activities .message::before {
    content: ""; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#6caad3 0%, #6caad3 7.68%, #7baed3 12.06%, #a0b8d4 24.39%, #bfc1d4 37.3%, #d6c7d5 50.78%, #e7ccd5 65.04%, #f1cfd5 80.61%, #f5d0d6 100%);
    opacity: 0.32;
}
.official-character .activities .image img {
    max-width: 100%; 
    height: auto;
}  
.official-character .activities .message .text {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.15em;
    margin-top: 40px;
    margin-bottom: 25px;
    color: #565656;
}
.official-character .activities .image img,
.official-character .activities .message .text {
    position: relative;
    z-index: 1; 
}
.official-character .activities .message .text span {
    background: rgba(254, 255, 1, 0.47);
}
@media screen and (max-width: 768px) {
    .official-character .activities .message {
        flex-direction: column;
    }
    .official-character .activities .image img {
        width: 100%; 
        width: 103px;;
    }
    .official-character .activities .message .text {
        font-size: 0.875rem;
        margin-top: 0;
        margin-bottom: 0;
    }
}
.official-character .O-char-header rt {
    text-align: inherit;
    font-size: 50%;
    margin-bottom: 2px;
}
.official-character .O-char-body rt {
    text-align: inherit;
    font-size: 60%;
    margin-bottom: 2px;
}
.official-character .attention {
    font-size: 0.875rem;
    line-height: 1.6;
}
.official-character .attention p {
    text-indent: -1rem;
    padding-left: 1rem;
}
.official-character .attention p::before {
    content: "＊";
    color: #F02FCB;
    font-size: 1rem;
  }
.official-character .pc-none { 
    display: inline; 
}
.official-character .sp-none { 
    display: none; 
}
@media screen and (min-width: 768px) {   
    .official-character .pc-none { 
        display: none; 
    }
    .official-character .sp-none { 
        display: inline; 
    }
}
.clearfix {
    clear: both;
}</pre></body></html>