@charset "utf-8";
/* CSS Document */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video{
  font-family: "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

:root {
    --mainColor: rgb(255, 136, 66);
    --subColor: rgb(0, 163, 230);
    --subColor2: rgb(199, 199, 199);
    --pd25: 2.5rem;
    --container: 1000px;
}

/*
img {
	aspect-ratio: 3 / 2;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}*/
*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

#wrap {
    width: 100%;
    font-size: clamp(1.2rem, 3vw + 1rem, 1.6rem);
    overflow: hidden;
}

p {
    margin-bottom: 1.5rem;
}

.mgB10 {
    margin-bottom: 1rem;
}

.mgB50 {
    margin-bottom: 5rem;
}

ol.decimal {
    counter-reset: number 0;
    line-height: 1.8em;
}


ol.decimal li {
    position: relative;
    padding-left: 3rem;
}

ol.decimal>li:before {
    counter-increment: number 1;
    content: counter(number)".";
    position: absolute;
    top: -.15rem;
    left: .3rem;
    text-align: right;
    letter-spacing: 0;
	font: normal normal bold 2.2rem/1.4 "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif;
    z-index: 2;
}

a {
    color: var(--subColor);
}

a:hover {
    opacity: .7;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

#pagetop {
    position: relative;
    max-width: var(--container);
    margin: 0 auto 3rem;
    ;
    text-align: right;
}

#pagetop a {
    display: inline-block;
    width: 70px;
    height: 70px;
    padding-top: 3.2rem;
    color: inherit;
    font-size: 1.1rem;
    text-align: center;
    background: var(--subColor2);
    border-radius: 50%;
    z-index: 2;
}

#pagetop a:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 2rem;
    right: 0;
    left: 0;
    width: 20px;
    height: 20px;
    margin: auto;
    border-top: 1px solid;
    border-right: 1px solid;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#pagetop a:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 2.8rem;
    right: 0;
    left: 0;
    width: 10px;
    height: 10px;
    margin: auto;
    border-top: 1px solid;
    border-right: 1px solid;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media screen and (max-width:1180px) {
    #pagetop a {
        display: block;
        right: 0;
        opacity: .6;
    }
}

.linkA {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.linkA:hover {
    background: rgba(255, 255, 255, .6);
}

.fixed {
    position: fixed;
    width: 100%;
}

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

h1.caption001,h2.caption001 {
    margin-bottom: 3rem;
    font: normal normal bold 2.8rem/1.5 "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif;
    border-bottom: 4px solid var(--mainColor);
}

ul.hyphen li {
    list-style: none;
    position: relative;
    padding-left: 1.5rem;
}

ul.hyphen li:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: .5rem;
    width: 5px;
    height: 1px;
    margin: auto;
    background: rgb(25, 25, 25);
}

@media screen and (max-width:520px) {
    h1.caption001,h2.caption001 {
		font: normal normal bold 2.4rem/1.5 "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif;
    }
}


.content,
.breadcrumbs {
    max-width: var(--container);
    margin: 0 auto 5rem;
    padding: 0 1.5rem;
}

/*header
********************************************************************************/
.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: var(--container);
    margin: 0 auto 5rem;
    padding: 1rem 0;
}

.headerLogo {
    max-width: 200px;
}

header .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	font: normal normal bold 1.8rem/1.5 "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
}

header .menu li {
    margin-left: 3rem;
}

header .menu li a {
    color: inherit;
}

header .menu li:first-of-type {
    margin-left: 0;
}

.menu .sp {
    display: none;
}

@media screen and (max-width:520px) {


    .headerLogo {
        max-width: 150px;
    }

    .menu .pc {
        display: none;
    }

    .menu .sp {
        display: block;
        margin: .5rem;
    }

    .menu .sp img {
        width: 35px;
    }

    .f9 {
        font-size: .9rem;
		line-height:1;
    }
}

.breadcrumbs {
    margin-bottom: 1.5rem;
}

.breadcrumbs ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.breadcrumbs ul li {
    position: relative;
    margin-left: 3rem;
    font-size: 1.4rem;
}

.breadcrumbs ul li:first-of-type {
    margin-left: 0;
}

.breadcrumbs ul li:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    right: -1.8rem;
    bottom: 0;
    width: 7px;
    height: 7px;
    margin: auto;
    border-top: 1px solid;
    border-right: 1px solid;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.breadcrumbs ul li:last-of-type:before {
    content: none;
}

/*category
*******************************************************************************/
.cate h2 {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 5rem;
    padding: 0 2.5rem;
	font: normal normal bold 2.8rem/1.4 "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif;
    border-bottom: 4px solid var(--subColor);
}

.cate h2:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -3.2rem;
    left: 0;
    width: 1px;
    height: 1px;
    margin: auto;
    border: 10px solid transparent;
    border-top: 18px solid var(--subColor);
    z-index: -1;
}

.cate h2:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2.4rem;
    left: 0;
    width: 1px;
    height: 1px;
    margin: auto;
    border: 10px solid transparent;
    border-top: 18px solid rgb(255, 255, 255);
}

.cate nav ul {
    display: -ms-grid;
    display: grid;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    grid-column-gap: 2rem;
    -ms-grid-columns: repeat(auto-fit, minmax(160px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.cate nav ul li a {
    display: -ms-grid;
    display: grid;
    place-content: center;
    place-items: center;
    min-height: 90px;
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    /* color: rgb(122, 122, 122); */
    color: #fff;
	font: normal normal 400 2.4rem/1.4 "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif;
    /* background: var(--subColor2); */
    background: var(--mainColor);
    border-radius: 15px;
}

.cate nav ul li a:hover {
    /* color: rgb(255, 255, 255);
    background: var(--mainColor);
    opacity: inherit; */
    opacity: 0.7;
}

@media screen and (max-width:1240px) {
    .cate nav ul li a {
        font-size: 2.2rem;
    }
}

@media screen and (max-width:764px) {
    .cate nav ul li a {
        font-size: 2rem;
    }
}


@media screen and (max-width:520px) {

    .cate nav ul {
        -webkit-column-gap: 1.5rem;
        -moz-column-gap: 1.5rem;
        column-gap: 1.5rem;
        grid-column-gap: 1.5rem;
    }
}

/*footer
********************************************************************************/
footer {
    padding: 3rem;
    background: var(--mainColor);
}

footer nav {
    width: min(100%, 1000px);
    margin: 0 auto 5rem;
}

footer nav a {
    color: rgb(255, 255, 255);
}

footer .copyright {
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
    text-align: center;
}

footer nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1.4em;
}

footer nav ul li a {
    padding: 1rem;
}

/*articles
********************************************************************************/
.articles {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.articles dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid var(--mainColor);
}

.articles li:last-of-type dl {
    margin-bottom: 5rem;
}

.articles dl dt {
    max-width: 30%;
}

.articles dl dd {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 3rem;
}

.articles dl dd .cate {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 0 1.5rem;
    padding: .5rem 1.5rem;
    text-align: center;
    background: var(--subColor);
}

.articles dl dd .cate a {
    color: rgb(255, 255, 255);
}

.articles dl dd h3 {
    margin-bottom: 1.5rem;
	font: normal normal bold 2.4rem/1.4 "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.articles dl dd h3 a {
    color: inherit;
}

.articles dl dd h4 {
    font-weight: normal;
}

.article-link {
    position: relative;
    transition: opacity 0.3s ease;
  }
  
  .article-link:hover {
    opacity: 0.6; /* 半透明にする */
  }
  
  .article-link .full-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    text-indent: -9999px; /* 視覚的に非表示 */
    overflow: hidden;
  }
  
  .article-link .cate a {
    position: relative;
    z-index: 2; /* full-link より上に出して別リンク動作させる */
  }

@media screen and (max-width:520px) {

    .articles dl {
        margin: 0;
        padding: 1.5rem 0;
        border: none;
    }

    .articles li:last-of-type dl {
        margin-bottom: 3rem;
    }

    .articles dl dt {
        max-width: 125px;
    }

    .articles dl dd {
        margin-left: 1.5rem;
    }

    .articles dl dd h3 {
        font-size: 1.8rem;
    }

}


/*etc
*********************************************************************************/
.siteLink {
    margin: 0 auto 5rem;
    text-align: center;
}

.siteLink img {
    width: 592px;
    margin-bottom: 1.5rem;
	max-width: 90%;
}

@media screen and (max-width:520px) {
    .siteLink {
        padding: 1.5rem;
        font-size: 2.2rem;
    }
}

/*pagination
*************************************************************************************/
.pagination {
    max-width: var(--container);
    margin: 0 auto 3rem;
}

.pagination ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 50%;
    margin: 0 auto;
}

.pagination ul li {
    position: relative;
    margin: .75rem;
}
.pagination ul li.active {
    display: block;
    color: var(--mainColor);
	font: normal normal 600 2rem/1.8 "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif;
    border: 3px solid var(--mainColor);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    text-align: center;
    line-height: 44px;
    opacity: 0.5;
}
.pagination ul li a {
    display: block;
    /* padding: 1.2rem 1.5rem; */
    color: var(--mainColor);
	font: normal normal 600 2rem/1.8 "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif;
    border: 3px solid var(--mainColor);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    text-align: center;
    line-height: 44px;
}
.pagination ul li span.dots {
    line-height: 46px;
}
.pagination ul li a.active {
    color: rgb(255, 255, 255);
    background: var(--mainColor);
}

/* .pagination ul li.previous a,
.pagination ul li.next a {
    padding: 1.2rem 2.2rem;
} */

.pagination ul li.previous a,
.pagination ul li.next a {
    text-indent: -9999rem;
}

.pagination ul li.previous:before,
.pagination ul li.next:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15px;
    height: 15px;
    margin: auto;
    border-top: 2px solid var(--mainColor);
    border-left: 2px solid var(--mainColor);
    z-index: 2;
}

.pagination ul li.previous:before {
    right: 60%;
    left: 40%;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.pagination ul li.next:before {
    right: 0;
    left: 0;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

@media screen and (max-width:520px) {

    .pagination ul {
        width: 90%;
    }
}



/*privacy,information
*****************************************************************************************/

.privacy h1 {
    margin-bottom: 5rem;
}

.privacy h2 {
    margin-bottom: 1rem;
    color: var(--mainColor);
    font-size: 2.4rem;
}

.privacy h3 {
    color: rgb(70, 70, 70);
    font-size: 2rem;
}

.privacy ul {
    margin-bottom: 1.5rem;
}

.privacy ol>li {
    margin-bottom: 3rem;
}

dl.info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap:
        wrap;
    flex-wrap: wrap;
}

dl.info dt {
    width: 150px;
}

dl.info dd {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.information dl.info {
    margin-bottom: 0;
    padding: 0;
    font-size: 1.8rem;
    background: rgb(228, 228, 228);
    border: 1px solid var(--subColor2);
    border-bottom: none;
}

.information dl.info:last-of-type {
    border: 1px solid var(--subColor2);
}

.information dl.info dt,
.information dl.info dd {
    padding: 3rem 1.5rem;
}

.information dl.info dt {
    width: 150px;
    text-align: center;
}

.information dl.info dd {
    background: rgb(255, 255, 255);
}

.information dl.info a {
    color: rgb(90, 122, 255);
    text-decoration: underline;
}

.information .logoImg {
    margin: 0 auto 3rem;
    text-align: center;
}

.information .logoImg img {
    width: 194px;
}

ol.decimal>li ol.decimal li {
    margin-bottom: 1.5rem;
    padding-left: 4.5rem;
}

ol.decimal li:has(.decimal) li:before {
    counter-increment: number 1;
    content: "4-" counter(number)".";
    position: absolute;
    top: .15rem;
    left: .3rem;
    text-align: right;
    letter-spacing: 0;
	font: normal normal 400 1.8rem/1.4 "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif;
    z-index: 2;
}
/*お問い合わせ*/
button#wpforms-submit-956 {
    background: var(--mainColor);
    width: 300px;
    margin: 0 auto;
    display: block;
    font-weight: 600;
    border-radius: 10px;
    max-width: 50%;
    height: 50px;
}
div.wpforms-container-full span.wpforms-required-label {
    background: var(--wpforms-label-error-color);
    color: #fff !important;
    padding: 5px 10px;
    margin-left: 10px;
    border-radius: 5px;
    font-size: 14px;
}
@media screen and (max-width:520px) {
    .privacy dl.info {
        display: block;
        margin-bottom: 1rem
    }

    .privacy dl.info dt {
        width: 100%;
        margin-bottom: .5rem;
        border-bottom: 1px solid var(--subColor2);
    }

    .information dl.info dt,
    .information dl.info dd {
        padding: 1.5rem .7rem;
        font-size: 1.6rem;
    }

    .information dl.info dt {
        width: 110px;
    }


    .information .logoImg {
        max-width: 80%;
        margin: 0 auto 1.5rem;
    }

}
