@charset "UTF-8";
/* CSS Document */



.maincontents-inner section:not(:last-child) {
    margin-bottom: 100px;
}

.layout-orange > div:not(:last-child) {
    margin-bottom: 50px;
}


/* link01 */

.link01 a {
    font-family: var(--base-font);
    line-height: 1.2;
    letter-spacing: 0.2em;
    font-weight: var(--base-weight);
    display: inline-block;
    padding: 15px 35px;
    min-width: 300px;
    position: relative;
    border-style: solid;
    border-color: #000;
    border-width: 1px;
    background-color: #FFF;
    border-radius: 60px;
    text-align: center;
}

.link01 a:hover {
    opacity: 1;
    background: var(--color-back02);
}

/* layout01 */


.layout01 {
    width: 1000px;
}

.layout01 .box {
    border-style: solid;
    border-color: var(--color-back03);
    border-width: 1px;
}

.layout01 .box:not(:last-child) {
    margin-bottom: 25px;
}

.layout01 .box a {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 15px 0px;
    position: relative;
    background-color: #FFF;
}

.layout01 .box a:hover {
    opacity: 1;
    background-color: var(--color-back02);
}

.layout01 .box a::before {
    content: "more";
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-family: var(--title-font);
    font-size: 16px;
    color: var(--color-sub5);
    line-height: 1.2;
    letter-spacing: 0.1em;
    font-weight: var(--base-weight2);
}


.layout01 h5 {
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0em;
    font-weight: var(--base-weight);
    border-right-style: solid;
    border-color: var(--color-back03);
    border-width: 1px;
}

.layout01 h6 {
    padding-top: 50px;
}

.layout01 p {
    flex: 1;
    padding: 20px 30px;
    text-align: left;
    font-size: 16px;
}

/* contents02 */

.contents02 {
    width: 1000px;
}

.contents02 .midashi-box2 {
    border-bottom-style: dotted;
    border-color: #999;
    border-width: 3px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.contents02 .midashi-box2 h2 {
    font-size: 18px;
    font-weight: var(--base-weight);
    color: var(--color-base);
    padding-left: 7px;
}

.contents02 .midashi-box2 h3 {
    font-size: 30px;
    letter-spacing: 0.1em;
    color: var(--color-sub);
}

/* layout02 */

.layout02 .box-link {
    text-align: center;
    padding-top: 50px;
}

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

/*逕ｻ蜒丈ｸｭ螟ｮ蜷医ｏ縺�*/
.aligncenter {
    margin-left: auto;
    margin-right: auto;
    display: block;
}


.layout02 p:not(:last-child) {
    margin-bottom: 30px;
}

.layout02 p a {
    color: var(--color-main);
    text-decoration: underline;
}

.layout02 blockquote {
    background-color: #F4F4F4;
    padding: 70px 80px;
    position: relative;
}

.layout02 blockquote p {
    font-weight: var(--base-weight);
    color: var(--color-base);
    line-height: 1.6;
    letter-spacing: 0.05em;
    position: relative;
}

.layout02 blockquote::before {
    content: "";
    position: absolute;
    left: 45px;
    top: 55px;
    background-image: url("../../images/articles/icon-blockquote.svg");
    background-position: left top;
    background-repeat: no-repeat;
    background-size: auto 100%;
    width: 56px;
    height: 45px;
}

.layout02 ol:not(:last-child),
.layout02 ul:not(:last-child),
.layout02 blockquote:not(:last-child) {
    margin-bottom: 40px;
}

.layout02 ol {
    list-style: none;
    /* 繝�ヵ繧ｩ繝ｫ繝医�謨ｰ蟄励ｒ髱櫁｡ｨ遉ｺ縺ｫ */
    counter-reset: li;
}

.layout02 ol li,
.layout02 ul li {
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-weight: var(--base-weight2);
    position: relative;
    padding-left: 30px;
}


.layout02 ol li::before {
    counter-increment: li;
    content: counter(li);
    position: absolute;
    left: 0;
    top: 2px;
    /* 謨ｰ蟄励�Y霆ｸ邱壻ｸ翫�菴咲ｽｮ繧定ｪｿ謨ｴ */
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #ccc;
    font-family: var(--title-font);
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
    text-align: center;
}

.layout02 ul li::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    width: 7px;
    height: 7px;
    background-color: #2D2D2D;
    display: block;
}


.layout02 ol li:not(:last-child),
.layout02 ul li:not(:last-child) {
    margin-bottom: 5px;
}

.layout02 h2 {
    font-weight: var(--base-weight);
    color: #333;
    font-size: 42px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
    position: relative;
}

.layout02 h3 {
    font-weight: var(--base-weight2);
    color: #333;
    font-size: 28px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    padding: 0px 5px 6px;
    margin-bottom: 20px;
    border-bottom-style: dotted;
    border-color: #999;
    border-width: 2px;
}

.layout02 h4 {
    font-weight: var(--base-weight3);
    color: #333;
    font-size: 28px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.layout02 h5 {
    font-weight: var(--base-weight3);
    color: #333;
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.layout02 h6 {
    font-weight: var(--base-weight3);
    color: #333;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}


/*marker*/

.marker-pink {
    box-shadow: 0 -0.4em 0 0 rgba(255, 164, 215, 0.55) inset;
}

.marker-aqua {
    box-shadow: 0 -0.4em 0 0 rgba(51, 181, 246, 0.40) inset;
}

.marker-yellow {
    box-shadow: 0 -0.4em 0 0 rgba(255, 221, 90, 0.5) inset;
}

.marker-leaf {
    box-shadow: 0 -0.4em 0 0 rgba(156, 199, 21, 0.4) inset;
}

.marker-reset {
    box-shadow: none;
}

/*marker*/

.underline-solid {
    border-bottom: solid 2px;
}

.underline-double {
    border-bottom: double 2px;
}

.underline-dotted {
    border-bottom: dotted 2px;
}

.underline-dashed {
    border-bottom: dashed 2px;
}

.underline-wavy {
    text-decoration: underline wavy var(--color-base);
}

.underline-reset {
    border-bottom-style: none;
    border-width: 0px;
    text-decoration: none;
}

/*tabel*/

.layout02 table td {
    line-height: 1.6;
    letter-spacing: 0.05em;
    padding: 12px 15px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.3);
    border-width: 1px;
}


/* pager */

.pager {
    width: 100%;
    text-align: center;
    padding-top: 50px;
}

a.page-numbers,
.pager .current {
    font-family: var(--title-font);
    font-weight: var(--base-weight3);
    color: var(--color-sub);
    margin-left: 3px;
    margin-right: 3px;
    font-size: 16px;
    font-weight: 500;
    width: 28px;
    height: 28px;
    padding-top: 6px;
    border-radius: 50%;
    background-color: #e5e5e5;
    display: inline-block;
    vertical-align: top;
    line-height: 1.2;
}

.pager .current {
    color: #FFF;
    background-color: var(--color-sub);
}


.pager .current {
    opacity: 1;
}

.pager a:hover {
    opacity: 0.5;
}

.pager a.prev {
    color: var(--color-sub);
    background-color: rgba(255, 255, 255, 0);
}

.pager a.next {
    color: var(--color-sub);
    background-color: rgba(255, 255, 255, 0);
}


/* layout03 */

.layout03 {
    width: 1000px;
    text-align: center;
    padding-top: 100px;
}

.layout03 ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: auto;
    gap: 12px 1.3%;
}

.layout03 ul li {
    width: 24%;
}

.layout03 ul li a {
    width: 100%;
    display: block;
    line-height: 1.2;
    letter-spacing: 0.2em;
    font-weight: normal;
    border-style: solid;
    border-color: #756355;
    border-width: 1px;
    padding: 15px 0px;
    transition: .5s;
}

.layout03 ul li a:hover {
    color: #FFF;
    background-color: #756355;
}



.sp-view {
    display: none;
}


.sp-view {
    display: none;
}
