/* ----------------------------
           common
---------------------------- */
html {
    scroll-behavior: smooth;
}

body {
    color: #414141;
    font-size: 15px;
    letter-spacing: 0.06em;
    font-family: "Noto Sans JP", sans-serif;
}

.Num-En {
    font-family: "Jost", sans-serif;
}

.pc-only {
    display: block;
}

.tb-only {
    display: none;
}

.sp-only {
    display: none;
}

.wrapper {
    display: flex;
}

.Bg-white {
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 15px;
}

#PAGES .page {
    position: relative;
}

#PAGES .page::after {
    content: "";
    position: fixed;
    background-color: #fff;
    height: 100px;
    right: 0;
    top: 0;
    left: 0;
    z-index: 10;
}

#PAGES main {
    margin-top: 100px;
}

/* Anchor link */
.AnchorLink {
    margin-top: -10px;
    padding-top: 150px;
}

/* Max-width ----------------------- */
.W1100 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 30px 60px;
}

.W960 {
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 30px;
}

.W850 {
    max-width: 850px;
    margin: 0 auto;
    padding: 80px 30px 60px;
}
.W700 {
    max-width: 700px;
    margin: 0 auto;
    padding: 10px 30px;
}

/* margin ----------------------- */
.Mb10 {
    margin-bottom: 10px;
}

.Mb20 {
    margin-bottom: 20px;
}

.Mb30 {
    margin-bottom: 30px;
}

.Mb40 {
    margin-bottom: 40px;
}

.Mb60 {
    margin-bottom: 60px;
}

.Mb80 {
    margin-bottom: 80px;
}

.Mb100 {
    margin-bottom: 100px;
}

.Mb150 {
    margin-bottom: 30px;
}

.Mt100 {
    margin-top: 100px;
}

/* ----------------------------
           h2:title
---------------------------- */
.title {
    font-size: 25px;
    color: #D2187E;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 60px;
    letter-spacing: 0.15em;
}

.title span {
    display: block;
    font-size: 18px;
    color: #414141;
    font-family: "Jost", sans-serif;
}

.sub-title {
    position: relative;
    text-align: center;
    font-size: 20px;
    color: #EC459F;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 80px;
}

.sub-title::before {
    content: '';
    position: absolute;
    bottom: -25px;
    display: inline-block;
    width: 60px;
    height: 1.5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #EC459F;
    border-radius: 5px;
}

/* ----------------------------
              txt
---------------------------- */
.txt {
    line-height: 1.5;
    inline-size: fit-content;
    margin-inline: auto;
}

.txt.list {
    inline-size: initial;
}

ul.list {
    padding-left: 25px;
    margin-bottom: 15px;
}

ol.list li {
    /* display: flex; */
    display: inline-flex;
    counter-increment: listnum;
}

ol.list li span {
    width: 90px;
}

ol.list li .txt {
    width: 100%;
}

ol.list li span::after {
    content: counter(listnum);
}

.Fw700 {
    font-weight: 700;
}

.Fs18 {
    font-size: 18px;
}

.Fw700 {
    font-weight: 700;
}

.txtCenter {
    text-align: center;
}

.Lh15 {
    line-height: 1.5;
}

.Red {
    color: #d62121;
}

.highlighter {
    background: linear-gradient(transparent 40%, #fff174 40% 90%, transparent 60%);
}

/* ----------------------------
              img
---------------------------- */
img {
    max-width: 100%;
    height: auto;
}

/* ----------------------------
              Btn
---------------------------- */
.MoreBtn {
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    width: 200px;
    margin: 0 auto;
}

.MoreBtn::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #414141;
    border-right: solid 2px #414141;
    transform: rotate(45deg);
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 10;
    position: absolute;
}

.MoreBtn a {
    display: block;
    padding: 15px 20px;
    text-align: center;
    border: #414141 solid 1px;
    border-radius: 8px;
}

.RoundBtn {
    margin-bottom: 16px;
    background-color: #fff;
    color: #414141;
    font-weight: 700;
    border-radius: 50px;
    width: 170px;
    align-self: flex-start;
    position: relative;
}

.RoundBtn::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #414141;
    border-right: solid 2px #414141;
    transform: rotate(45deg);
    position: absolute;
    right: 20px;
    top: 16px;
    z-index: 10;
    position: absolute;
}

.RoundBtn a {
    display: block;
    padding: 8px 20px;
}

.top {
    position: fixed;
    right: 30px;
    bottom: 200px;
    z-index: 10;
}

.top.Only {
    bottom: 40px;
}

.top img {
    max-width: 140px;
}

/* ----------------------------
           header
---------------------------- */
header .header-inner {
    display: flex;
    justify-content: center;
    background: #fff;
}

header .header-inner .wrapper {
    position: fixed;
    top: 0px;
    max-width: 1200px;
    width: 95%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    padding: 0px 0 0 20px;
    align-items: center;
    z-index: 100;
}


header .header-inner .logo {
    max-width: 200px;
}

header .header-inner.sp-menu {
    display: none;
}

header .header-inner .pc-menu nav ul {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
}

header .header-inner .pc-menu nav ul li {
    margin: 0 15px;
}

/* ----------------------------
            footer
---------------------------- */
footer {
    background-color: #414141;
    color: #fff;
    padding: 60px 20px 10px;
    line-height: 1.5;
}

footer .footer-inner .wrapper {
    justify-content: space-between;
}

footer .footer-inner h2 {
    font-size: 23px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

footer .footer-inner h2>span {
    font-size: 32px;
}

footer .footer-inner h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

footer .footer-inner .sitemap ul {
    font-weight: 700;
}

footer .footer-inner .sitemap ul li {
    margin-bottom: 10px;
    font-size: 18px;
    list-style: initial;
}

footer .footer-inner .sitemap ul ul li {
    font-weight: 500;
    font-size: 16px;
}

footer .footer-inner .sitemap ul ul li::before {
    content: "-";
    margin-right: 5px;
}

footer .footer-inner small {
    text-align: center;
    display: block;
}