@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;600&family=Zen+Old+Mincho:wght@400;600&display=swap");
:root {
    --base-color: #2d65c8;
    --base-color-rgb: 45, 101, 200;
    --text-color: #222;
}
:root {
    --font-gothic: "Noto Sans Japanese", "YuGothic", "游ゴシック",
        "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
    --font-mincho: "EB Garamond", "Zen Old Mincho", "YuMincho", "Yu Mincho",
        serif;
    --font-marugothic: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro",
        "Hiragino Maru Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
}
body {
    color: var(--text-color);
    font-family: var(--font-gothic);
    letter-spacing: 0.05em;
    font-size: 15px;
    line-height: 1.875;
}
* {
    word-break: break-all;
    box-sizing: border-box;
}
table,
iframe,
img {
    max-width: 100%;
}
a {
    color: var(--text-color);
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    text-decoration: none;
    color: var(--text-color);
}
h1,
h2,
p,
figure,
ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
}
.siteWidth,
.siteWidth-s {
    padding-left: 20px;
    padding-right: 20px;
}
.bgColor-gray {
    background: #f7f7f7;
    padding-top: 30px;
    padding-bottom: 30px;
}
.header {
    display: flex;
    align-items: center;
    position: relative;
    padding: 27px 90px 19px 20px;
    min-height: 70px;
}
.slide header {
    padding: 0;
    display: block;
}
.siteTitle {
    line-height: 1.2;
    font-size: 20px;
    font-family: var(--font-gothic);
    font-weight: 400;
}
.siteTitle a:hover {
    opacity: 0.7;
}
.slide .siteTitle {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 90%;
    max-height: 80%;
    overflow: hidden;
    text-align: center;
    z-index: 3;
    font-size: 30px;
}
.slide .siteTitle a {
    color: #fff;
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
}
.slide .siteTitle img {
    top: 45%;
}
.siteTitle img {
    max-height: 200px;
}
.pageTitle {
    color: var(--base-color);
    font-size: 20px;
    font-family: var(--font-gothic);
    font-weight: 400;
    text-align: left;
    background: rgba(var(--base-color-rgb), 0.16);
    padding: 70px 20px;
    line-height: 1.3;
}
.menu {
    background: var(--base-color);
}
.menu .inner {
    overflow-x: auto;
}
.menu a {
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
    border-right: 1px solid #fff;
    padding: 15px 20px;
    display: block;
}
.menu a:hover {
    background: #666666;
}
.menu ul {
    display: flex;
    justify-content: center;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}
.menu ul li:last-child a {
    border-right: none;
}
.hamburger {
    background: var(--base-color);
    width: 70px;
    height: 70px;
    position: fixed;
    top: 0;
    right: 0;
    cursor: pointer;
    z-index: 110;
    transition: 0.7s;
}
.hamburger .inner {
    position: relative;
    width: 23px;
    height: 12px;
    margin-right: auto;
    margin-left: auto;
    line-height: 70px;
    top: 40%;
}
.hamburger span {
    width: 100%;
    height: 1px;
    display: inline-block;
    background: #fff;
    position: absolute;
    transition: 0.7s;
    opacity: 1;
}
.hamburger p {
    display: none;
    font-family: var(--font-gothic);
    font-weight: 400;
}
.hamburger span:nth-of-type(1) {
    top: 0;
}
.hamburger span:nth-of-type(2) {
    top: 5px;
}
.hamburger span:nth-of-type(3) {
    bottom: 0;
    width: 66%;
}
.hamburger.active span:nth-of-type(1) {
    opacity: 0;
}
.hamburger.active span:nth-of-type(2) {
    transform: translateY(0px) rotate(-45deg);
    top: 50%;
}
.hamburger.active span:nth-of-type(3) {
    transform: translateY(0px) rotate(45deg);
    top: 50%;
    width: 100%;
}
.slider,
.slider-overlay,
.slider li,
.slider li img {
    width: 100vw;
    height: 100vw;
}
.slide li img {
    object-fit: cover;
}
.slider-overlay {
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}
.slider li img {
    transform: scale(1.3);
}
.active3 img {
    transition-duration: 6s;
}
.active2 img {
    transition-duration: 4s;
}
.active1 img {
    transition-duration: 2s;
}
.slider .active-slide img,
.slider .active-slide-first img {
    transform: scale(1);
}
.popUp {
    z-index: 1;
}
.globalNav {
    display: none;
}
.bgColor-white {
    background-color: #fff;
}
.navi.active {
    height: 100vh;
    transform: translateY(0);
}
.navi {
    background: var(--base-color);
    color: #fff;
    width: 100vw;
    height: 0;
    padding: 100px 20px 40px 20px;
    position: fixed;
    z-index: 100;
    top: 0;
    transform: translateY(-100%);
    transition: 0.7s;
    letter-spacing: 0.05em;
    line-height: 1.2;
}
.navi a {
    color: #fff;
}
.navi a:hover {
    opacity: 0.7;
}
.navi .inner {
    height: 100%;
    overflow-y: auto;
}
.menuNavi {
    margin-bottom: 40px;
}
.menuNavi .parent {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.9;
    letter-spacing: 0;
}
.menuNavi .parent > li {
    margin-bottom: 30px;
    line-height: 2;
}
.menuNavi .child {
    font-family: var(--font-gothic);
    font-weight: 400;
    font-size: 18px;
    font-weight: normal;
}
.menuNavi .child a {
    padding: 6px 0;
}
.menuNavi a {
    font-family: var(--font-gothic);
    font-weight: 400;
    display: block;
}
.right {
    font-size: 15px;
}
.headNavi {
    margin-bottom: 32px;
}
.headNavi li {
    background: #fff;
    text-align: center;
    margin-bottom: 16px;
    font-weight: bold;
    border-radius: 30px;
}
.headNavi li a {
    font-size: 20px;
    display: block;
    padding: 15px;
    color: var(--base-color);
    font-family: var(--font-gothic);
    font-weight: 400;
    text-transform: uppercase;
}
.snsBtn {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.snsBtn li {
    margin-right: 20px;
}
.snsBtn li:hover {
    opacity: 0.7;
}
.snsBtn li:last-child {
    margin-right: 0;
}
.navi .snsBtn {
    margin-bottom: 32px;
}
.lead {
    padding-top: 30px;
    padding-bottom: 30px;
    background: url(https://assets.toriaez.jp/thp2/pc/images/242/bgi-blue_001.jpg);
    background-size: cover;
    letter-spacing: 0.1em;
    line-height: 2.4;
    margin-bottom: 35px;
    text-align: left;
}
.lead br {
    display: none;
}
.mainImg .lead {
    padding: 0;
    margin-bottom: 0;
}
.mainImg {
    padding: 20px;
    background: #f7f7f7;
    margin-bottom: 60px;
}
.mainImg figure {
    margin-bottom: 20px;
    text-align: center;
}
.article {
    margin-top: 60px;
}
.article:last-child {
    margin-bottom: 60px;
}
.article .title {
    font-family: var(--font-gothic);
    color: var(--base-color);
    font-size: 26px;
    letter-spacing: 0;
    line-height: 1.2;
    margin-bottom: 1.5em;
}
.article .title::before {
    content: "";
    width: 50px;
    height: 1px;
    background: var(--base-color);
    display: block;
    margin: 0 0 1em 0;
}
.article figcaption {
    display: none;
}
.article .txt {
    margin-bottom: 2em;
}
.article .inner {
    z-index: 2;
}
#top {
    z-index: 3;
}
.first-img {
    margin-right: -20px;
    margin-left: -20px;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}
.first-img img {
    width: 100%;
}
.imgContainer figure {
    margin-bottom: 0;
    text-align: center;
}
.imgContainer figure img {
    width: 100%;
}
.editorArea a {
    text-decoration: underline;
}
.editorArea a:hover {
    text-decoration: none;
}
.editorArea img {
    display: block;
    margin: 0 auto;
}
.editorArea hr {
    height: 1px;
    color: var(--text-colorBase);
}
.editorArea ol li {
    list-style-type: decimal;
}
.editorArea ol, .editorArea ul{
    margin-top: 1em;
    margin-bottom:2em;
}
.editorArea ol ol,
.editorArea ul ul{
    margin-top: 5px;
    margin-bottom:0em;
}
.editorArea ul li {
    list-style-type: disc;
    margin-left: 2em;
}
.editorArea ol li,
.editorArea ul li {
    margin-bottom: 5px;
}
.editorArea em {
    font-style: italic;
}
.editorArea table {
    width: 100%;
    max-width: 100%;
    margin-top:1em;
    margin-bottom:1em;
}
.editorArea table th,
.editorArea table td {
    padding: 10px 15px;
    border: 1px solid #ccc;
}
.editorArea table th {
    text-align: center;
    background: #f7f7f7;
    font-weight: normal;
    width: 102px;
}
.editorArea table td {
    background: var(--text-clolorSub);
}
.editorArea img {
    max-width: 100%;
}
.editorArea iframe {
    max-width: 100%;
}
.editorArea strong,
.editorArea b {
    font-weight: bolder;
}
.extraTtl {
    font-size: 22px;
    font-family: var(--font-gothic);
    color: var(--base-color);
    margin-bottom: 30px;
    letter-spacing: 0;
    line-height: 1.2;
    padding-bottom: 25px;
    border-bottom: 1px dotted #ddd;
    position: relative;
}
.extraTtl::before {
    content: "";
    width: 50px;
    height: 1px;
    background: var(--base-color);
    display: block;
    position: absolute;
    left: -70px;
    top: 25%;
}
#news {
    margin-bottom: 30px;
}
.rss dt,
.news time {
    font-family: var(--font-gothic);
    font-size: 15px;
    letter-spacing: 0;
    line-height: 1.1;
    font-weight: normal;
}
.news li {
    border-bottom: 1px dotted #ddd;
    margin-bottom: 25px;
}
.rss dd::after {
    content: "";
    width: 119%;
    height: 1px;
    display: block;
    border-bottom: 1px dotted #ddd;
    margin-top: 25px;
    margin-left: -18%;
}
.rss dd,
.news span {
    margin-bottom: 25px;
    font-size: 15px;
    letter-spacing: 0.1em;
    line-height: 1.9;
}
.news span {
    display: block;
}
.rss dd a,
.news li a {
    text-decoration: underline;
}
.rss dd a:hover,
.news p a:hover {
    text-decoration: none;
}
.news li.is-hidden {
    display: none;
}
.btn {
    max-width: 200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border: 1px solid var(--base-color);
    border-radius: 30px;
    margin-top: 30px;
    font-family: var(--font-gothic);
}
.btn:hover,
.btn a:hover {
    background: var(--base-color);
    color: #fff;
}
.newsBtn {
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}
.blogBtn {
    position: relative;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    display: block;
    text-decoration: none;
    border-radius: 30px;
}
.blogBtn::after {
    content: "";
    background-image: url(https://assets.toriaez.jp/thp2/pc/images/242/pic-btn_001.png);
    background-repeat: no-repeat;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 35%;
    right: 15%;
    cursor: pointer;
}
.freeArea {
    margin-top: 60px;
    margin-bottom: 40px;
    letter-spacing: 0;
    line-height: 1.9;
    padding-right: 20px;
    padding-left: 20px;
}
.pageTop {
    margin-top: 80px;
    margin-bottom: 40px;
    text-align: center;
}
.pageTop a {
    color: #222;
    font-weight: 400;
    font-size: 16px;
    font-family: var(--font-gothic);
    position: relative;
    text-decoration: none;
}
.pageTop a::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(135deg);
    border-bottom: 2px solid #000;
    border-left: 2px solid #000;
    width: 20px;
    height: 20px;
    transition: all 0.2s ease-in-out;
}
.pageTop a:hover::before {
    top: -35px;
}
.contactBtn {
    background: url(https://assets.toriaez.jp/thp2/pc/images/242/bgi-blue_001.jpg);
    background-size: cover;
    padding: 40px 30px 50px 30px;
}
.contactBtn::before {
    content: "お問い合わせ・ご相談";
    font-family: var(--font-gothic);
    text-align: center;
    font-size: 22px;
    display: block;
    width: 100%;
    margin-bottom: 0.5em;
}
.contactBtn a {
    margin-top: 30px;
    margin-bottom: 40px;
    background: var(--base-color);
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    display: block;
    text-align: center;
    padding: 33px 50px 33px 30px;
    position: relative;
    cursor: pointer;
    letter-spacing: 0.05em;
    line-height: 1.2;
    border-radius: 50px;
    max-width: 480px;
    font-family: var(--font-gothic);
    font-weight: 400;
    margin: 0 auto;
}
.contactBtn a::after {
    content: "";
    position: absolute;
    top: 40%;
    right: 8%;
    margin: auto;
    transform: rotate(225deg);
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    width: 20px;
    height: 20px;
    transition: all 0.2s ease-in-out;
}
.contactBtn a:hover {
    background: #666;
}
.formPage .footer .snsBtn {
    margin-top: 40px;
}
.footer .snsBtn li {
    margin-right: 25px;
}
.footer .snsBtn li:last-child {
    margin-right: 0;
}
.footer .snsBtn a {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid #666;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer {
    margin-top: 40px;
}
.footer .qrCode {
    margin-top: 24px;
}
.navi .qrCode {
    margin-bottom: 20px;
}
.qrCode {
    text-align: center;
}
.copyright {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    line-height: 1.2;
    font-size: 12px;
    font-family: var(--font-gothic);
}
.pnkz {
    margin-top: 15px;
    font-size: 11px;
    line-height: 1.2;
    padding-right: 20px;
    margin-bottom: 40px;
    overflow-x: auto;
    overflow-y: hidden;
}
.pnkz ul {
    display: flex;
    justify-content: flex-end;
    width: max-content;
    margin-left: auto;
}
.pnkz li {
    border-right: 1px solid #cccccc;
    margin-left: 5px;
}
.pnkz li:last-child {
    border-right: none;
}
.pnkz a {
    text-decoration: underline;
    padding: 5px;
}
.pnkz a:hover {
    text-decoration: none;
}
.map iframe {
    margin: 0 auto;
    display: block;
    height: 300px;
}
.info {
    margin-top: 60px;
    margin-bottom: 80px;
}
.info dl {
    display: flex;
    margin-bottom: 1px;
    border-top: 1px solid #cccccc;
}
.info dl:last-child {
    border-bottom: 1px solid #cccccc;
}
.info dt {
    padding: 20px;
    width: 180px;
    min-width: 70px;
    font-weight: bold;
    display: block;
}
.info dd {
    padding: 20px;
    width: 100%;
    margin-bottom: 0;
}
.form {
    margin-top: 60px;
}
.form table {
    width: 100%;
}
.form th,
.form td {
    display: block;
    width: 100%;
}
.form th {
    font-family: var(--font-gothic);
    padding: 15px 10px 5px 10px;
}
.form td {
    padding: 5px 10px 15px 10px;
}
.form tr {
    border-top: 1px solid #ccc;
    padding: 5px;
}
.input-text input,
textarea,
.input-age input {
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px solid #d6d6d6;
}
.input-text input,
textarea {
    width: 100%;
}
.input-age input {
    margin-right: 10px;
    vertical-align: bottom;
    width: 150px;
}
textarea {
    height: 300px;
}
.validation_span {
    color: red;
}
.btnCont {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 60px;
}
.form-btn {
    display: inline-block;
    max-width: 240px;
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
    border-radius: 40px;
    color: var(--color-sub);
    text-align: center;
    margin-right: 10px;
    border: none;
    font-weight: bold;
    font-size: 18px;
    font-family: var(--font-gothic);
}
.btn-submit:hover,
.btn-reset:hover {
    opacity: 0.8;
}
.btn-submit {
    background: var(--base-color);
    color: #fff;
    margin-bottom: 15px;
}
.btn-reset {
    background: #c6c6c6;
}
.thaks {
    padding-left: 20px;
    padding-right: 20px;
}
@media screen and (min-width: 768px) {
    body {
        font-size: 15px;
    }
    .siteWidth {
        max-width: 1080px;/*1200px*/
        margin-right: auto;
        margin-left: auto;
    }
    .siteWidth-s {
        max-width: 1020px;
        margin-right: auto;
        margin-left: auto;
        padding-left: 0;
        padding-right: 0;
    }
    .bgColor-gray {
        padding-top: 90px;
        padding-bottom: 60px;
    }
    .header {
        min-height: 120px;
        padding: 49px 170px 35px 50px;
    }
    .siteTitle {
        font-size: 30px;
    }
    .slide .siteTitle {
        font-family: var(--font-gothic);
        font-weight: 400;
        font-size: 46px;
    }
    .pageTitle {
        padding-top: 100px;
        padding-bottom: 100px;
        padding-left: 50px;
        font-size: 42px;
    }
    .menu .inner {
        margin-right: auto;
        margin-left: auto;
        padding: 0 30px;
    }
    .slider,
    .slider-overlay,
    .slider li,
    .slider li img {
        height: calc(100vw * 0.52642);
    }
    .hamburger {
        width: 120px;
        height: 120px;
    }
    .hamburger .inner {
        width: 40px;
        height: 30px;
        line-height: 90px;
        top: 28%;
    }
    .hamburger p {
        font-size: 12px;
        color: #fff;
        transition: 0.7s;
        display: block;
        opacity: 1;
        letter-spacing: 0;
        font-weight: bold;
    }
    .hamburger.active p {
        opacity: 0;
    }
    .hamburger span:nth-of-type(2) {
        top: 14px;
    }
    .globalNav {
        display: block;
        background: #fff;
        padding: 30px 16px 0 16px;
    }
    .globalNav .parent {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
        margin: 0 auto;
        padding: 0;
        flex-wrap: wrap;
    }
    .globalNav .parent > li {
        border-right: 1px solid #ccc;
        margin-bottom: 20px;
    }
    .globalNav .parent li:last-child {
        border-right: none;
    }
    .globalNav .parent a {
        text-decoration: none;
        font-family: var(--font-gothic);
        font-weight: 400;
        padding: 15px 24px;
    }
    .globalNav .parent a:hover {
        text-decoration: underline;
    }
    .globalNav .child {
        margin: 0;
        padding: 0;
        list-style: none;
        background: var(--base-color);
        position: absolute;
        z-index: 4;
    }
    .globalNav .child li {
        border-bottom: 1px solid #fff;
    }
    .globalNav .child li:last-child {
        border-bottom: none;
    }
    .globalNav .child a {
        display: block;
        color: #fff;
        text-align: center;
    }
    .globalNav .child a:hover {
        text-decoration: none;
        background: #666;
    }
    #news {
        padding: 90px 0px 54px;
        line-height: 1.9;
    }
    .mainImg {
        margin-bottom: 0;
        padding: 0;
    }
    .mainImg .lead {
        width: 60%;
        margin-left: auto;
        margin-right: auto;
    }
    .noImg.lead {
        width: 100%;
    }
    .lead {
        text-align: center;
    }
    .lead br {
        display: block;
    }
    .lead .inner {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .mainImg .inner {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 1200px;
        padding: 40px 20px;
        margin-left: auto;
        margin-right: auto;
    }
    .mainImg figure {
        max-width: 500px;
        text-align: right;
        margin-right: 40px;
        margin-bottom: 0;
    }
    .navi {
        padding: 130px 30px 50px;
    }
    .navi .inner {
        display: flex;
        justify-content: space-between;
        height: 100%;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    .menuNavi {
        width: 100%;
        max-width: 500px;
        overflow-y: auto;
        height: 100%;
        margin-right: 30px;
    }
    .menuNavi::-webkit-scrollbar {
        width: 14px;
    }
    .menuNavi::-webkit-scrollbar-thumb {
        background: #fff;
        border-radius: 9px;
    }
    .menuNavi {
        scrollbar-width: thin;
        scrollbar-color: #fff #fff;
    }
    .menuNavi .parent {
        font-size: 28px;
        font-weight: bold;
        padding-right: 15px;
    }
    .menuNavi .parent > li {
        margin-bottom: 30px;
    }
    .menuNavi .child {
        font-size: 16px;
        font-weight: normal;
    }
    .right {
        width: 100%;
        max-width: 300px;
        overflow-y: auto;
        height: 100%;
        padding-right: 15px;
        font-size: 20px;
    }
    .right::-webkit-scrollbar {
        display: none;
    }
    .headNavi {
        margin-bottom: 60px;
        margin-top: 30px;
    }
    .headNavi li {
        margin-bottom: 16px;
    }
    .article {
        margin-top: 60px;/*130px*/
    }
    .article:first-of-type {
        margin-top: 90px;
    }
    .article:last-child {
        margin-bottom: 130px;
    }
    .head {
        display: flex;
        /*margin-bottom: 40px;*/
        align-items: flex-start;
    }
    .reverse .head {
        flex-direction: row-reverse;
    }
    .article .inner {
        width: 640px;
        /*margin-top: 40px;*/
        background: #fff;
    }
    .normal .inner {
        padding: 0px 0px 0px 0;
        /*margin-right: -40px;*/
    }
    .reverse .inner {
        padding: 0px 0 0px 0px;
        /*margin-left: -40px;*/
    }
    .article .title {
        font-size: 32px;
        margin-bottom: 40px;
        line-height: 1.4;
        letter-spacing: 0.05em;
    }
    .article .txt {
        font-size: 15px;
        line-height: 1.9;
        letter-spacing: 0.1em;
    }
    .article .head figure {
        width: 480px;/*640px*/
    }
    .first-img {
        margin-left: 0;
        margin-right: 0;
    }
    .normal .head figure {
        text-align: left;
        margin-left:40px;
        /*margin-left: -40px;*/
    }
    .reverse .head figure {
        text-align: right;
        margin-right:40px;
        /*margin-right: -40px;*/
    }
    .imgContainer {
        display: flex;
        justify-content: center;
      column-gap: 10px;
    }
    .imgContainer figure {
        max-width: 387px;
        width: 100%;
    }
    .imgContainer figure:last-child {
        margin-right: 0;
    }
    .editorArea table th,
    .editorArea table td {
        padding: 15px 25px;
    }
    #news {
        margin-bottom: 40px;
    }
    .extraTtl {
        font-size: 28px;
    }
    .rss dt,
    .news time {
        display: inline-block;
        width: 15%;
        min-width: 100px;
        padding-top: 6px;
        vertical-align: top;
    }
    .rss dd,
    .news span {
        display: inline-block;
        width: calc((99% - 15%) - 26px);
        font-size: 15px;
    }
    .rss dd {
        width: calc(99% - 15%);
    }
    .news span {
        display: inline-flex;
    }
    .news li a:hover {
        text-decoration: none;
    }
    .freeArea {
        margin-top: 90px;
        margin-bottom: 72px;
        padding: 0;
        font-size: 15px;
    }
    .pageTop {
        display: none;
        position: fixed;
        bottom: 50px;
        right: 20px;
        margin-top: 0;
        margin-bottom: 0;
        z-index: 10;
    }
    .contactBtn {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .contactBtn a {
        font-size: 28px;
    }
    .contactBtn::before {
        font-size: 26px;
    }
    .copyright {
        margin-bottom: 140px;
    }
    .pnkz {
        font-size: 13px;
        max-width: 1200px;
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }
    .editorArea table th {
        width: 200px;
    }
    .map iframe {
        height: 500px;
    }
    .formPage .footer .snsBtn {
        margin-top: 90px;
    }
    .footer {
        margin-top: 72px;
    }
    .form th,
    .form td {
        padding: 30px 20px;
    }
    .form th {
        font-family: var(--font-gothic);
        width: 30%;
    }
    .form td {
        width: 70%;
    }
    .form tr {
        display: flex;
        align-items: center;
    }
    .input-age input {
        width: 40%;
    }
    .thaks {
        max-width: 780px;
        margin-right: auto;
        margin-left: auto;
        padding-left: 0;
        padding-right: 0;
    }
}
.required {
    margin-top: 15px;
}

/* ここからリニューアル代行用の追加
　　root設定の変更は最上部で別途設定 */

/*共通指定*/
body {
  padding:20px;
}

.slider-overlay {
    background: rgba(0, 0, 0, 0.2);
  width: 100%;
}

.bx-viewport,
.lead,
#news,
.contactBtn,
.hamburger,
.pageTitle,
#isbn img,
.slider-overlay{
  border-radius:10px;
}

.hamburger {
  margin:10px 10px 0 0;
}

.lead,
.contactBtn {
  color:var(--base-color);
  background-image:none;
  background-size: cover;
  background: #ffffe3;
}

.contactBtn a {
  border:2px var(--base-color) solid;
}

.contactBtn a:hover {
  background:#fff000;
  color:var(--base-color);
}

.globalNav .child a:hover {
  background:#fff000;
  color:var(--base-color);
}

.hamburger span {
  height:2px;
}

.hamburger span:nth-of-type(3) {
  width:100%;
}

.hamburger .inner {
  top:38%;
}

.hamburger p {
  display:none;
}

.extraTtl::before,
.article .title::before {
  display:none;
}

.globalNav {
  padding: 30px 16px 10px 16px;
}

.contactBtn::before {
    content: "ご相談はこちらから";
}

.lead {
  margin-top:20px;
}

.highlight{
   text-decoration: underline; 
  text-decoration-thickness: 0.8em; 
  text-decoration-color: #fff000;
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
}
/*ホームから主要ページへのリンク*/

.editorArea ul.highlight-link li:first-child {
    border-top: 1px solid rgb(204, 204, 204);
}
.editorArea ul.highlight-link li {
  border-bottom: 1px solid rgb(204, 204, 204);
  list-style:none;
  margin-left: 0;
  position:relative;
}
.editorArea ul.highlight-link li:before {
  content:"▶︎";
  color:#2d65c8;
  font-size:12px;
  position:absolute;
  left:0;
  top:50%;
  margin-top:-12px;
}
.highlight-link li a {
  display:block;
  text-decoration:none;
  text-align:center;
  padding:1em 0;
  font-size:24px;
}

.highlight-link li a:hover {
  color:var(--base-color);
}

.slider-overlay {
    display:none;
}

.slide .siteTitle {
  top:inherit;
  bottom:0;
  transform: translate(-50%, 0);
}


#ic87 .title,
#c7d1 .title,
#sti8 .title{
  font-size:28px;
  font-weight:bold;
}

#f8m8 .title,
#sti8 .title {
  text-align:center;
  font-weight:bold;
}

#z8zg table{
  margin:0;
}
/*PC用指定*/
@media screen and (min-width: 768px) {

body {
  padding:30px;
}

.navi.active {
  left:0;
}
  
.lead {
  margin-top:0;
}

.lead .inner {
  padding:20px;
  font-size:18px;
}
  
}