@charset "UTF-8";
/* 基礎設定 */
html, body {
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    position: relative;
    font-weight: 400;
    margin: 0;
    padding: 0;
    width: 100%;
    scroll-behavior: auto !important;
    overflow-x: clip;
    animation: fadeIn 1s;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
}
/* body#cpage {  overflow-x: hidden;} */
/*--- 画面全体をフェードイン(animation設定) ---*/
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
html.nosc, body.nosc{
	/* overflow: hidden;
    overflow-x: scroll;
    overflow-y: auto; */
}
.color-red { color: #E40046;}
.color-pn { color: #FA6582;}
.color-blue { color: #1A7DB2;}
.color-lblue { color: #E7ECF7;}
.color-wh{ color: #fff;}
.color-gr { color: #D6F0A8;}
.color-dgr { color: #465A64;}
.color-vgr { color: #73AE2E;}
.color-yg { color: #ABE8B9;}
.color-lgr{ color: #F4F595;}
.color-ye{ color: #FFF200;}
.color-ly{ color: #FFF9F4;}
.color-or{ color: #FFEABA;}
.color-prp{ color: #721DC8;}
.color-gray{ color: #7c7c7c;}
.color-bw{ color: #4D0001;}
.color-bk{ color: #000;}

.bg-red { background: #E40046;}
.bg-pn { background: #FCDBE4;}
.bg-blue { background: #1A7DB2;}
.bg-lblue { background: #E7ECF7;}
.bg-gr { background: #D6F0A8;}
.bg-dgr { background: #465A64;}
.bg-lgr { background: #F4F595;}
.bg-vgr { background: #73AE2E;}
.bg-yg { background: #ABE8B9;}
.bg-ye { background: #FFF200;}
.bg-lye { background: #FFF9F4;}
.bg-or { background: #FFEABA;}
.bg-lor { background: #ffecdc;}
.bg-bk { background: #000333;}
.bg-wh { background: #fff;}
.bg-gray { background: #7c7c7c;}
.bg-bw { background: #4D0001;}

.bg-box {
    padding: 1.5rem;
    border-radius: 5px;
    background: #EDF2F7;
    margin-bottom: 2rem;
}
.wh-box {
    padding: 1.5rem;
    background: #fff;
}

button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    outline: none;
}
input:not([type=checkbox],[type=radio]) {
    appearance: none;
    border: none;
    outline: none;
}
input[type=checkbox], input[type="radio"] {
    cursor: pointer;
}
.post-password-form { padding: 4rem 0;}
.post-password-form input[type=password] {
    border: 1px solid #DBDBDB;
    border-radius: 3px;
    margin-inline: .5em;
}
.post-password-form input[type=submit] {
    background: var(--main-color);
    color: #fff;
    border-radius: 3px;
}
.post-password-form label, .post-password-form input[type=submit] {
    margin-bottom: .5rem;
}
:root {
    --main-color: #008AC9;
    --sub-color: #F8F8F8;
    --normal-color: #000;

    --bg-color: #F8F8F8;
    --bg-normal: #fff;

    --btn-width: 175px;
    --btn-height: 52px;

    /* --font-ja: century-gothic, sans-serif; */
    --font-fa: "Font Awesome 7 Free";
}
.main-color { color: var(--main-color);}
.sub-color { color: var(--sub-color);}

/* a:hover{
    color: #000;
} */

h1, h2, h3, h4, h5, h6 {
    color: #333;
    font-weight: 700;
    line-height: 1.3;
    margin-inline: auto;
    margin-bottom: 1.5rem;
    padding: 0;
}
h1 { font-size: 38px;}
h2 { font-size: 32px;}
h3 { font-size: 29px;}
h4 { font-size: 25px;}
h5 {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.02em;
}
h6 { 
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

hgroup > h2 { margin-bottom: 0;} 

#titbar {
    position: relative;
    max-width: 1000px;
    width: 90%;
    margin-inline: auto;
    margin-bottom: 2.5rem;
    z-index: 5;
    left: 0;
    padding-top: 3rem;
    padding-bottom: 0;

    &::after {
        content: "";
        position: absolute;
        top: -350px;
        right: -30%;
        max-width: 1300px;
        width: 100vw;
        height: 500px;
        background: url(../img/titbar.png) no-repeat center / contain;
        z-index: -1;
    }
}
#titbar h1 {
    font-size: 45px;
    font-weight: 500;
    color: var(--main-color);
    width: 100%;
    margin-bottom: .5rem;
    text-wrap: wrap;
}
#titbar span {
    font-size: 20px;
    color: var(--main-color);
}
.tit-txt { width: 60%;}
.single-rc .tit-txt { width: auto;}
.tit-img {
    width: 40%;
}
.tit-line { 
    position: relative;  
    padding: 0.5rem 0;

    &::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 2.25em;
        height: 2px;
        background: var(--main-color);
    }
    &::after {
        content: "";
        position: absolute;
        left: 2.25em;
        bottom: 0;
        width: calc(100% - 2.25em);
        height: 2px;
        background: #D0D0D0;
    }
}

.tit-bd-l {
    position: relative;
    padding: .2em .5em .2em .75em;
}
.tit-bd-l::before {
    content: "";
    position: absolute;
    top: 1em;
    left: 0;
    transform: translateY(-50%);
    width: 5px;
    height: 1.2em;
    background: var(--main-color);
}
.tit-bd-b {
    position: relative;
    display: inline-block;
    border-bottom: 2px solid #D0D0D0;
    padding-bottom: .25em;
}
.tit-point {
    display: flex;
    align-items: center;
}
.tit-point::before {
    content: "●";
    font-size: 0.5em;
    font-weight: 900;
    padding-right: 0.5em;
    color: var(--main-color);
}
.tit-cir {
    display: flex;
    align-items: center;
}
.tit-cir::before {
    content: "●";
    font-size: 1em;
    font-weight: 900;
    padding-right: 0.5em;
    color: var(--main-color);
}
.tit-color {
    color: var(--main-color);
}
.box-wh{
    padding: 2.5em 3em;
    background-color: #fff;
    border: 1px solid #e4e4e4;
    box-sizing: border-box;
}


/* --- flex-box --- */
/* .flex-box {
    display: flex;
    justify-content: center;
}
.flex1 > div { width: 100%; }
.flex2 > div { width: 50%; }
.flex3 > div { width: calc(100% / 3); }
.flex4 > div { width: 25%; }
.flex5 > div { width: 20%; }
.flex-last {
    display: flex;
    justify-content: flex-end;
    flex-flow: column;
} */

/*--- grid-box ---*/
.grid-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5rem;
}
.grig-wrap0 { grid-gap: 0; }
.grid1 { grid-template-columns: repeat(1, 1fr); grid-gap: 0;}
.grid2 { grid-template-columns: repeat(2, 1fr); }
.grid3 { grid-template-columns: repeat(3, 1fr); }
.grid5 { grid-template-columns: repeat(5, 1fr); }

/* hr { 
    margin: 10px 0;
    border-top: 1px solid var(--main-color);
} */

p {
    margin: 0 auto 1.5rem;
    padding: 0;
    line-height: 1.8;
    letter-spacing: 0.02em;
}
a:link,a:visited,a:hover,a:active{ text-decoration: none;}
a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
/* a[href^="tel:"] {
    text-decoration: underline;
} */
/* #cpage a[href^="tel:"] {
    color: var(--main-color);
} */

a.link-block {
    display: block;
    width: 100%;
    height: 100%;
}
a.link-flex {
    display: flex;
    width: 100%;
    height: 100%;
}


section {
    position: relative;
    z-index: 10;
    padding: 5rem 0;
}
.sec-inline img{
    max-width: 100%;
    height: auto;
}
.sec-inline-start { 
    padding-inline-start: calc((100vw - 1000px) / 2);
    padding-left: 7.5%;
}
.sec-inline-end { 
    padding-inline-end: calc((100vw - 1000px) / 2);
    /* padding-right: 7.5%; */
}
.container-fluid{ padding: 0;}


ul, dd, figure {
    margin-bottom: 0;
}
ol { line-height: 2;}

/* ナビゲーション */
#head { 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 999;
    transition: .3s;
    background: #fff;
    filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
}
#head.dnone {
    height: 64px;
}

#head h1 { margin: 0}
.h-logo .brand {
    position: relative;
    max-width: 300px;
    max-height: 54px;
    object-fit: contain;
    z-index: 20;
}
.dnone .h-logo .brand, #cpage .h-logo .brand {
    max-width: 275px;
    max-height: 40px;
}

.top-page main {
    margin-top: 100px;
}
#cpage main { margin-top: 64px;}
.h-logo { 
    position: relative;
    display: flex;
    align-items: center;
    line-height: 1;
    height: 100%;
    padding-left: 1rem;
}

.nosc .menu-list {
    display: none !important;
}
.menu-wrap { 
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-inline: auto;
    max-width: 1280px;
    height: 100%;
}
.menu-list { 
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    right: 2rem;
    gap: .5rem .75rem;
}
.menu-list > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding-left: 0;
    /* gap: 2rem; */
}
.menu-list > ul > li {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-left: 1px solid rgba(112,112,112,0.15);
}
.menu-list > ul > li:last-child {
    border-right: 1px solid rgba(112,112,112,0.15);
}

.menu-list > ul > li > a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: #333;
    font-size: 16px;
    /* padding: 0 2.25rem; */
    padding: 0 1.75rem;
    text-wrap: nowrap;
}
.menu-list > ul > li > a[target="_blank"] {
    display: flex;
    align-items: center;
}
.menu-list > ul > li > a[target="_blank"]::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url(../img/icon-link.png) no-repeat center / contain;
    filter: brightness(1) invert(1);
    margin-left: .25em;
    transition: .3s;
}
.menu-list > ul li img {
    max-width: 36px;
}

.sns-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    width: 100%;
    /* visibility: visible; */
    transition: .3s;
}
.dnone .menu-list .sns-wrap { 
    display: none;
    visibility: hidden;
}
.sns-label {
    font-size: 14px;
}
.sns-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
}
.sns-icons img {
    height: 35px;
    object-fit: contain;
}
.menu-sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.menu-link {
    background: #000;
}
.menu-link a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-weight: 700;
    padding: 1rem 2rem;
}
.nav-menu ul { 
    position: relative;
    margin-bottom: 0;
}
.nav-menu ul li { 
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nosc #head {
    top: 0;
    width: 100%;
    background: #fff;
    filter: none;
}
.nosc .menu-wrap, #cpage .menu-wrap { border: none;}
.nosc .openbtn { background: none;}
/* .nosc main, .nosc main ~ * { filter: blur(3px);} */


/* ハンバーガーメニュー */
.openbtn{
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 1001;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    transition: .3s;
    background: var(--main-color);
}
.openbtn span {
    display: block;
    transition: .3s;
    position: absolute;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 1px;
    background-color: #fff;
    width: 15px;
}
.openbtn span:nth-of-type(1) {
    top: 35%; 
}
.openbtn span:nth-of-type(2) {
    top: 50%; 
}
.openbtn span:nth-of-type(3) {
    top: 65%; 
}
  
.openbtn.active span:nth-of-type(1) {
    top: 40%; 
    left: .75em;
    transform: translateY(0px) rotate(-45deg);
    width: 50%;
    background: #000;
}
.openbtn.active span:nth-of-type(2) {
    display: none;
}
.openbtn.active span:nth-of-type(3) {
    top: 55%;
    left: .75em;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
    background: #000;
}
/* ×印が横幅を広くしても消えない設定 */
.openbtn.active{ display: block !important;}
.nosc .nav-menu{ opacity: 0;}
.nosc .menu-wrap .d-lg-none { display: block !important;}

/* ハンバーガーメニュー内部 */
#clickarea {
    position: fixed;
    width: 100%;
    height: 100vh;
    inset: 0;
    background: #fff;
    transition: .4s;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
}
#clickarea.panelactive {
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}
#clickarea.panelactive .click-list {
    position: relative;
    z-index: 1000;
    max-width: 600px;
    width: calc(100% - 2rem);
    margin-inline: auto;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    z-index: 0;
}

#clickarea .click-list {
    padding-top: 10rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 20rem;
}
.click-list > ul { 
    padding: 0;
    list-style: none;
    margin-bottom: 2rem;
}
.click-list > ul > li {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    line-height: 1;
}

.click-list > ul > li::before {

}
.click-list > ul > li > a[target="_blank"] {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
.click-list > ul > li > a[target="_blank"]::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url(../img/icon-link-mc.png) no-repeat center / contain;
    margin-left: .25em;
    transition: .3s;
}

.click-list > ul > li > a {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    color: var(--main-color);
    font-size: 18px;
    letter-spacing: 0.02em;
    padding-left: .5em;
}
.click-list > ul > li > span {
    display: block;
    width: 100%;
    color: var(--main-color);
    font-size: 18px;
    line-height: 1;
}
.click-list > ul > li > a {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(112, 112, 112, 0.15);
}
.click-list > ul > li > a:not(:first-child) {
    
}

.click-link {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 1.5rem;
}

.click-link .btn01 { max-width: none;}

#clickarea .sns-wrap {
    justify-content: center;
    align-items: center;
}
#clickarea .menu-sns {
    gap: .5rem;
}
#clickarea .sns-icons img {
    height: 40px;
}
#clickarea .sns-label { font-size: 16px;}



/* ボタン類 */
.btn01, .btn02 {
    position: relative;
    max-width: var(--btn-width);
    width: 100%;
    height: var(--btn-height);
    border: 1px solid var(--main-color);
    border-radius: 7px;
    overflow: hidden;
    z-index: 10;
}

.btn01 a, .btn02 a {
    position: relative;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    gap: 1.25em;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 7.5px 1rem 7.5px 1rem;
    transition: .3s;
    z-index: 10;

    
}
.btn01 .arrow, .btn02 .arrow {
    position: relative;
    display: block;
    max-width: 12px;
    width: 1em;
    height: 1em;

    &::after {
        content: "";
        display: block;
        max-width: 12px;
        width: 1em;
        height: 1em;
        z-index: 10;
        background: #fff;
        -webkit-mask: url(../img/arrow.svg) no-repeat center center / contain;
        mask: url(../img/arrow.svg) no-repeat center center / contain;
        transition-duration: 0.3s;
    }
}

.btn01.btn-aot { border-color: #fff;}
.btn01.btn-aot a { 
    color: var(--main-color);
    background-color: #fff;
}
.btn01.btn-aot .arrow {
    &::after {
        content: "";
        background: var(--main-color);
    }
}
.btn02 { border-color: #fff;}
.btn02 a {
    color: #FE8A33;
    background-color: #fff;
}
.btn02 .arrow {
    &::after { 
        content: "";
        background: #FE8A33;
    }
}


.btn01 .txt, .btn02 .txt {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid;
    padding-right: 1.25em;
    padding-left: .5em;
    text-wrap: nowrap;

    /* &::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -20px;
        transform: translateY(-50%);
        width: 1px;
        height: 135%;
    } */
}
.btn01 .txt::after {
    background: #fff;
}
.btn01.btn-aot .txt::after {
    background: var(--main-color);
}
.btn02 .txt::after {
    background: #FE8A33;
}
/* .btn01 span {
    border-color: #fff;
}
.btn01.btn-aot span {
    border-color: var(--main-color);
}
.btn02 span {
    border-color: #FE8A33;
} */

.btn-menu {
    max-width: 125px;
    width: 100%;
    max-height: 33px;
    height: 100%;
    text-align: center;
    border: 1px solid var(--normal-color);
    border-radius: 5px;
}

.btn-menu a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: var(--normal-color);
    padding: .5rem 1rem;
    background: #fff;
    border-radius: 5px;
}



#clickarea .btn-menu {
    max-width: 245px;
    max-height: none;
    width: 100%;
    height: 60px;
}
#clickarea .btn-menu a {
    font-size: 18px;
}

/* TOPのsection設定 */
.sec-wrap {
    position: relative;
    width: 85%;
    max-width: 1000px;
    margin-inline: auto;
}

/* section::before{
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
} */



/* TOP */
#maintop {
    position: relative;
    width: 100%;
    height: calc(100svh - 100px);
    padding: 0;
    z-index: 20;
}

#maintop .video-js {
  width: 100% !important;
  height: 100% !important;
}

#maintop .video-js video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#maintop .swiper {
    height: 100%;
}

#maintop img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-txt {
    position: absolute;
    left: calc(50% - 0.1em);
    bottom: 5%;
    transform: translateX(-50%);
    color: #fff;
    width: 95vw;
    font-size: min(8vw, 101px);
    font-weight: 500;
    text-align: center;
    text-shadow: 0 6px 8px rgba(0, 0, 0, 0.5);
    /* letter-spacing: 0.05em; */
    line-height: 1;
    text-wrap: nowrap;
    z-index: 10;
}
.main-txt span {
    margin-right: -0.5em;
}

.movie-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    aspect-ratio: 1;
    border-radius: 100vmax;
    background: rgba(165, 165, 165, 0.5);
    z-index: 20;
}
.movie-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(50% + 2px);
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: #fff;
    clip-path: polygon(0% 0%,100% 50%,0% 100%);
}
.movie-btn a {
    display: block;
    width: 100%;
    height: 100%;
}

/* .top-page hgroup {
    text-shadow: 1px 1px 5px rgba(0,0,0,0.16);
} */
.top-page hgroup span {
    display: block;
    font-size: 20px;
    margin-bottom: .5rem;
}
.top-page hgroup h2 {
    font-size: 50px;
    font-weight: 500;
}

/* #sec01 */
#sec01 {
    padding-top: 11rem;
    padding-bottom: 2rem;
    z-index: 20;
}
.sec01-wrap {
    display: flex;
    justify-content: space-between;
    gap: 6rem;    
}
@media (min-width: 1100px) {
    .sec01-wrap {
        max-width: none;
        width: 1100px;
        padding-inline: 30px;
    }
}

#sec01 hgroup {
    display: inline-block;
    margin-bottom: 2.25rem;

    h2, span {
        color: #fff;
    }
}
.sec01-txt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* gap: 2rem; */
    gap: 5rem;
    max-width: 355px;
    width: 45%;

    transform: translateY(-3rem);
}
.sec01-txt img {
    max-width: 400px;
    width: 100%;
    object-fit: contain;
    /* margin-top: 2rem; */
}

.top-page .news-wrap {
    max-width: 590px;
    width:  100%;
}
.news-wrap ul {
    list-style: none;
    padding: 0;
}
.news-wrap ul li {
    padding-bottom: 1.5rem;
}
.news-wrap ul li:not(:first-child) { padding-top: 1.5rem;}
.news-wrap ul li:not(:last-child) { border-bottom: 1px solid rgba(112,112,112,0.15);}
.news-wrap time { 
    display: block;
    color: var(--main-color);
    margin-bottom: 1rem;
}
.news-wrap a { 
    position: relative;
    display: flex;
    align-items: center;
    gap: 3.25rem;
    color: var(--normal-color);
}
.news-wrap a figure {
    max-width: 105px;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    border: .2px solid #F2F2F2;
    aspect-ratio: 1;
}
.news-wrap a img {
    max-width: 105px;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
}
.news-txt { 
    width: 100%;
    margin-right: 6em;
}
.news-wrap .tit {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.btn-arrow {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 34.5px;
    height: 34.5px;
    aspect-ratio: 1;
    border: 1px solid var(--main-color);
    /* background: #fff; */
    border-radius: 5px;
    transition: .3s ease-out;
    overflow: hidden;
}
.btn-arrow .arrow {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 11.5px;
    height: 11.5px;
    /* fill: var(--main-color); */
    background: var(--main-color);
    -webkit-mask: url(../img/arrow.svg) no-repeat center center / contain;
    mask: url(../img/arrow.svg) no-repeat center center / contain;
    transition-duration: 0.3s;
}
.click-list .arrow {
    display: block;
    position: absolute;
    top: 50%;
    right: .5em;
    transform: translate(-50%, -50%);
    width: 11.5px;
    height: 11.5px;
    /* fill: var(--main-color); */
    background: var(--main-color);
    -webkit-mask: url(../img/arrow.svg) no-repeat center center / contain;
    mask: url(../img/arrow.svg) no-repeat center center / contain;
    transition-duration: 0.3s;
}
.btn-arrow::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    transform: translateX(-100%);
    transition: .15s ease-out;
    z-index: 10;
}

.news-wrap li a:hover .btn-arrow {
    &::after {
        transform: translateX(0);
    }
}

.news-wrap li a:hover .btn-arrow .arrow {
    background: #fff;
    animation: ToArrow .3s both;
}
@keyframes ToArrow {
    0% {
        transform: translate(-50%, -50%);
        z-index: 1;
    }
    59% {
        transform: translate(-50%, -50%);
        z-index: 1;
    }
    60% {
        left: 0;
        transform: translate(50%, -50%);
        z-index: 1;
    }
    100% {
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 20;
    }

}

/* sec02 */
#sec02 {
    position: relative;
    display: flex;
    justify-content: center;
    background: #fff;
    /* padding-top: 5%; */
    padding-top: 120px;
    padding-bottom: 0%;
}
.s-curve-section {
    position: relative;
    overflow: visible;
}
.s02-curve-img {
    position: absolute;
    left: 47%;
    transform: translateX(-50%);
    z-index: 10;
    overflow: visible;
    pointer-events: none;
    top: -32%;
    width: 1730px;
    height: 2550px;
}
#sec02::after {
    content: "";
    position: absolute;
    /* top: 8px; */
    /* top: -40px;
    left: 45%; */
    top: -95px;
    left: 40%;
    transform: translateX(-50%);
    width: 1600px;
    height: 1200px;
    background: url(../img/sec02-img01.jpg) no-repeat center center / cover;
    -webkit-mask-image: url('../img/sec02-bg01.svg');
    mask-image: url('../img/sec02-bg01.svg');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-position: top center;
    z-index: 0;
}
.sec02-wrap {
    position: relative;
    max-width: calc(830px + 4em);
    /* width: 85%; */
    width: 100%;
    justify-content: space-between;
    margin-inline: auto;
    display: flex;
    column-gap: 10vw;
    z-index: 10;

    transform: translateY(150px);
}

.sec02-tit {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--main-color);
    writing-mode: vertical-rl;
    /* transform: translateY(-4em); */
    transform: translate(-1.5em, -7em);
}

.s02-tit02 { margin-top: 2.65em;}

.sec02-txt {
    color: var(--main-color);
    margin-top: -1em;
    /* transform: translate(-2.5em, -1em); */
}
.sec02-txt p {
    line-height: 2.65;
    /* font-weight: 500; */
    margin-bottom: 1.3rem;
}

@media (min-width: 1600px) {
    #sec02::after {
        content: "";
        top: -100px;
        left: 46%;
        width: 1550px;
        height: 1200px;
    }

    .s02-curve-img {
        left: 48%;
        top: -32%;
        width: 1730px;
        height: 2550px;
    }

    .sec02-tit {
        transform: translateX(-3em) translateY(-5.5em);
    }

    .sec02-wrap {
        max-width: 880px;
    }
}

@media (max-width: 1100px) {
    #sec02::after {
        content: "";
        top: 9px;
        left: 36%;
        width: 1400px;
        height: 1200px;
    }

    .s02-curve-img {
        left: 42%;
        top: -16%;
        width: 1750px;
        height: 2110px;
    }

    .sec02-wrap {
        max-width: 800px;
    }

    .sec02-tit {
        transform: translate(-2em, -5em);
    }
    .sec02-txt {
        margin-top: 3em;
    }
}





/* sec03 */
#sec03 {
    /* padding-top: 30rem; */
    padding-top: 27rem;
    padding-bottom: 0;
}
.sec03-wrap {
    display: flex;
    align-items: center;
    gap: 7rem;
}
.works-wrap {
    width: 65%;
}
.works .works-wrap { width: 100%;}
.works-wrap ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: 1fr;
    gap: .5rem;
}
.works-wrap ul figure {
    margin-bottom: 0rem;
}
.works-wrap ul img {
    max-width: 320px;
    width: 100%;
    max-height: 218px;
    height: 100%;
    /* aspect-ratio: 4 / 3; */
    object-fit: cover;
    object-position: top;
    border-radius: 9px;
}
/* .works-wrap ul .tit {
    display: inline-block;
    font-size: 12px;
    border: 1px solid #000;
    border-radius: 3px;
    padding: .5rem;
    background: #fff;
    margin-bottom: .5rem;
}
.works .works-wrap ul .tit { font-size: 10px;} */

.side-page .ngg-galleryoverview.default-view {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1.5rem;
}
.ngg-galleryoverview {
    margin-top: auto !important;
    margin-bottom: .5rem !important;
}
.ngg-galleryoverview.default-view .ngg-gallery-thumbnail img { 
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    border-radius: 7px;
}
.ngg-galleryoverview.default-view .ngg-gallery-thumbnail img:hover { opacity: 1 !important;}


#sec03 hgroup {
    margin-bottom: 2rem;

    h2, span { color: var(--main-color);}
}
.sec03-txt {
    max-width: 260px;
    width: 30%;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sec03-txt img {
    max-width: 245px;
    width: 100%;
    margin-top: 5rem;
}
.sec03-txt p {
    margin-bottom: 3rem;
}

/* sec04 */
#sec04 {
    background: linear-gradient(135deg, rgba(0, 131, 193, 1) 0%, rgba(128, 201, 237, 1) 100%);
    padding-top: 17%;
    padding-bottom: 10%;
    overflow: visible;
    /* z-index: 15; */
}
#sec04::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -25%;
    width: 130%;
    height: 19%;
    background: #fff;
    -webkit-mask-image: url('../img/sec04-bg-top.svg');
    mask-image: url('../img/sec04-bg-top.svg');
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    z-index: 10;
}
#sec04::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 8%;
    background: #fff;
    -webkit-mask-image: url('../img/sec04-bg-bottom.svg');
    mask-image: url('../img/sec04-bg-bottom.svg');
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    z-index: 10;
}
#sec04 hgroup {
    margin-bottom: 2rem;

    h2, span { color: #fff;}
}
#sec04 hgroup span { margin-bottom: 0;}
#sec04 p { 
    color: #fff;
    margin-bottom: 2.5rem;
}
.sec04-box {
    max-width: 1300px;
    margin-inline: auto;
}
.sec04-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5rem;
    position: relative;
    z-index: 1;
}
.sec04-img, .sec04-img img {
    border-radius: 10px 0 0 10px;
}
.sec04-img {
    max-width: 800px;
    width: 100%;
}
.sec04-img img {
    width: 100%;
    height: 100%;
}

.sec04-txt, .sec05-txt { min-width: 17em;}

/* sec05 */
#sec05 {
    padding-top: 0;
    padding-bottom: 4rem;
    transform: translateY(-10%);
    z-index: 20;
}
#sec05 hgroup {
    margin-bottom: 2.25rem;

    h2, span { color: var(--main-color);}
}
.sec05-box {
    max-width: 1300px;
    margin-inline: auto;
}
.sec05-wrap {
    display: flex;
    align-items: center;
    gap: 6rem;
}
.sec05-img, .sec05-img img {
    border-radius: 0 10px 10px 0;
}
.sec05-img {
    max-width: 775px;
    /* width: 60%; */
    width: 100%;
}
.sec05-img img {
    width: 100%;
    height: 100%;
}
.sec05-txt {
    transform: translate(1.5em, 1.5em); 
}
.sec05-txt p {
    margin-bottom: 2.75rem;
}

/* sec06 */
#sec06 {
    padding: 4.5rem 0 6.5rem 0;
}
#sec06::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,rgba(254, 138, 51, 1) 40%, rgba(254, 138, 51, 0) 100%);
    z-index: -1;
}
#sec06::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url(../img/sec06-img01.jpg) no-repeat center / cover;
    z-index: -10;
}
#sec06 hgroup {
    margin-bottom: 2rem;

    h2, span { color: #fff;}
}
#sec06 hgroup span { margin-bottom: .5rem;}
#sec06 p { 
    color: #fff;
    margin-bottom: 0;
}
.sec06-wrap {
    max-width: 1030px;
    width: 85%;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.sec06-txt {

}
.sec06-wrap .btn02 { 
    margin-bottom: -2rem;
}

/* アップボタン */
/* f-scrollも含めてクリック領域にするための外側の<a>。
   layoutには関与させず、.reverseと.f-scrollがそれぞれ.f-wrap基準で
   絶対配置される従来の挙動をそのまま保つ。 */
/* デフォルトは濃色版（サイトの大半が白系背景のため） */
.reverse-link {
    display: contents;
    font-size: 16px;
    color: #2B5091;
    /* color: #fff; */
    text-align: center;
}
.reverse {
    position: absolute;
    right: 3.5%;
    bottom: 70%;
    width: 70px;
    height: 30px;
    z-index: 998;
    /* mix-blend-mode: difference; */
    cursor: pointer;
}
.reverse .rev-txt {
    text-align: center;
    margin-bottom: .5rem;
    text-wrap: nowrap;
}
.reverse a > picture {
    display: none;
}
.reverse .color-icon {
    display: inline-block;
}

/* 背景に色/画像があるセクション（#sec04など）に重なったときは白版に戻す（JS側で.reverseに.on-dark-bgを付与） */
/* .reverse.on-dark-bg a {
    color: #fff;
    text-shadow: 1px 1px 3px var(--main-color);
} */
.reverse.on-dark-bg a > picture {
    display: inline-block;
}
.reverse.on-dark-bg .color-icon {
    display: none;
}

/* フッター*/
footer {
    position: relative;
    padding-top: 0;
    background: #fff;
    /* .reverse(z-index:998)はfooterのスタッキングコンテキストの中でしか通用しないため、
       footer自体をページ内の全セクション（最大でも z-index:30 程度）より高くしておく。
       ヘッダーやハンバーガーメニュー（999〜1001）よりは低いままにする。 */
    z-index: 50;
}
.f-wrap {
    position: relative;
    padding-top: 7rem;
    overflow: hidden;
}
.f-wrap::after {
    content: "";
    position: absolute;
    top: 5%;
    right: -5%;
    /* min-width: 755px; */
    width: calc(65% - 2rem);
    height: 100%;
    background: url(../img/ft-bg.png) no-repeat left top / cover;
    z-index: -10;
}
@media (min-width: 1600px) {
    .f-wrap::after {
        top: -10%;
        right: -7%;
        width: calc(65% - 2rem);
        height: 120%;
    }

    .reverse{
        right: 2.5%;
    }

    #sec04::before {
        left: 0%;
        width: 100%;
        height: 20%;
    }
    #sec04::after {
        left: -2%;
        width: 102%;
        height: 11%;
    }
}
@media (max-width: 1300px) {
    .f-wrap::after {
        /* top: 6%; */
        top: 0%;
        right: -14%;
        width: calc(75% - 2rem);
        height: 110%;
    }
}
.f-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    max-width: 1020px;
    width: 95%;
    margin-inline: auto;
}
.f-img {
    margin-bottom: 2rem;
    margin-top: -1rem;
}
.ft-address { 
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.ft-address a[href^="tel:"] { color: var(--normal-color);}
.f-logo {
    /* max-width: 245px; */
    max-width: 270px;
}

.f-box01 {
    margin-top: 1rem;
    margin-bottom: 4rem;
}

.f-box02 {
    position: relative;
    width: 50%;
    padding-left: 1rem;
    margin-top: -0.5rem;
}

.ft-sns {
    display: flex;
    /* gap: 1rem; */
    margin-bottom: 3rem;
}
.ft-sns img {
    width: 45px;
    height: 45px;
    aspect-ratio: 1;
}

.f-menu { 
    display: flex;
    gap: 1rem 3rem;
}
.f-menu ul {
    position: relative;
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}
.f-menu ul li {
    position: relative;
    margin-bottom: 1em;
    color: #fff;
}

.f-menu ul li::before {
    content: "";
    position: absolute;
    top: calc(1em - 9px);
    left: 0; 
    width: 9px;
    aspect-ratio: 1;
    border-radius: 100vmax;
}
.f-menu ul li.fm-first::before, .f-menu ul li.fm-second::before { background: var(--main-color);}

.f-menu ul li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #fff;
}
/* .f-menu ul li:not(.fm-first) a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: #fff;
    transition: 0.2s;
} */

.f-menu ul li a[target="_blank"] {
    display: flex;
    align-items: center;
}
.f-menu ul li a[target="_blank"]::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url(../img/icon-link.png) no-repeat center / contain;
    margin-left: .25em;
    transition: .3s;
}

.f-scroll {
    position: absolute;
    right: -4rem;
    bottom: 2rem;
    max-width: 270px;
    width: 50vw;
    z-index: -1;
}
.f-scroll picture {
    display: block;
    width: 100%;
    height: 100%;
}
.f-scroll img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top right;
}

.cr { 
    text-align: center;
    margin-bottom: 0;
    /* padding: 10px 0; */
    font-size: 0.8em;
    text-wrap: nowrap;
    color: var(--normal-color);

    position: absolute;
    left: 4em;
    bottom: 1.5em;
}

/* --------------------------------------------
    other page
-------------------------------------------- */
#cpage {
    font-size: 14px;
}
#cpage.side-page h2, #cpage.side-page h3, #cpage.side-page h4 {
    margin-bottom: 2rem;
}
.sec-inline { 
    padding-inline: 50px;
    box-sizing: content-box;
    container-type: inline-size;
    max-width: 1000px;
    margin-inline: auto;
}
#cpage .sec-inline {
    margin-bottom: auto;
    padding-top: 0;
    padding-bottom: 0;
}
/* #cpage.side-page .sec-inline {
    padding-top: 4rem;
} */
#cpage .table>:not(caption)>*>* {
    border-width: 1px;
    border-color: #000;
}

.side-page .sec-inline {
    display: grid;
    /* column-gap: 90px; */
    column-gap: 75px;
    align-items: start;
    container-type: normal;
}
.about .sec-inline {
    grid-template-columns: 1fr 180px;
}
.works .sec-inline {
    grid-template-columns: 1fr 220px;
}
.side-menu {
    position: sticky;
    top: 8rem;
    order: 2;
    align-self: start;
    height: fit-content;
    margin-top: 4rem;
    margin-bottom: 2rem;
    padding: 2rem 3rem;
    border-radius: 3px;
    background: #EDF3FA;
}
.about.side-page .side-menu {
    width: 180px;
}
.works.side-page .side-menu {
    width: 220px;
    padding: 2rem;
}
.side-menu ul {
    list-style: none;
    padding: 0;
}
.side-menu ul li {
    position: relative;
    font-size: 14px;
    color: #333;
    margin-bottom: .5rem;
    transition: .3s;

    &::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 6px;
        height: 6px;
        aspect-ratio: 1;
        border-radius: 100vmax;
        background: var(--main-color);
        transform-origin: center;
        transform: translateY(-50%) scale(0);
        transition: transform .3s;
    }
}
.side-menu ul li.current {
    padding-left: 1em;
    color: #333;

    &::before {
        transform: translateY(-50%) scale(1);
    }
}
.side-menu ul li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: #707070;
    transition: .3s;
}
.side-menu ul li.current a {
    color: #333;
}


#cpage:not(.side-page) .sec-inline > div, #cpage .sec-inline .content-wrap > div {
    position: relative;
    background: none;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
/* #cpage:not(.side-page) .sec-inline > div:first-child {
    padding-top: 8rem;
} */
#cpage:not(.side-page) .sec-inline > div::before, #cpage .sec-inline .content-wrap > div::before {
    content: "";
    width: calc(100vw + 180px + 90px);
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-position: center;
    z-index: -1;
}
#cpage:not(.side-page) .sec-inline > div:nth-child(even):not(:first-child)::before, #cpage .sec-inline .content-wrap > div:nth-child(even)::before {
   background: #F5F8FC;
}
#cpage .sec-inline > div .news-list a {
    text-decoration: none;
}

.breadcrumb-content {
    position: relative;
    max-width: 1000px;
    width: 90%;
    margin-inline: auto;
    margin-bottom: 4rem;
    z-index: 20;
}
.breadcrumb {
    display: block;
    /* background-color: #fff; */
    margin: 0 auto!important;
    padding: 0!important;
}
.breadcrumb ul {
    list-style: none;
    display: block;
    position: relative;
    width: 100%;
    margin: 0 auto!important;
    padding-left: 0;
    /* padding-bottom: 1rem; */
}
.breadcrumb ul li {
    color: #000;
    position: relative;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.02em;
    margin: 0;
    padding: 0!important;
}
.breadcrumb ul li span > span {
    display: inline-block;
    /* text-transform: uppercase; */
}
.breadcrumb ul li a {
    color: #ACACAC;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.breadcrumb ul li span > span:last-child {
    max-width: 15em;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: bottom;
}
.breadcrumb ul li span > img, .breadcrumb ul img {
    width: 9px;
    height: 9px;
    object-fit: contain;
    margin: 0 .5em;
    margin-bottom: 2px;
}

.about-name {
    font-size: 16px;
    text-align: right;
}
.about-name .large-txt { 
    font-size: 20px;
}

/*--- table ---*/

/* table-scroll */
.scroll-hint-icon { top: 50%!important; transform: translateY(-50%)!important; }
.scroll-hint-icon:before { width: 30px!important; height: 30px!important; }
.table-calc_list01 table {
    max-width: 100%;
}
.table-calc_list01 th,.table-calc_list01 td{
font-size: 0.65em !important;
padding: 3px !important;
}
.js-scrollable {
    width: 100%;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    /* margin: 2.5rem auto; */
}

a.anchorpoint {
    display: block;
    padding-top: 64px;
    margin-top: -64px;
}
.anchor-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.anchor-list button {
    position: relative;
    max-width: 300px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 100vmax;
    overflow: hidden;
    z-index: 10;

    a {
        display: block;
        width: 100%;
        height: 100%;
        color: #fff;
        padding: 1rem;

        &::after {
            content: "\f13a";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            top: 1.25em;
            right: .5em;
            transform: translate(-50%,-50%);
            font-size: 1.5em;
        }
    }
}

.full-map {
    line-height: 0;
    max-height: 245px;
    min-width: 100%;
    overflow: hidden;
    border-radius: 9px;
    /* aspect-ratio: 4 / 3; */
}
.full-map iframe {
    width: 100%;
    height: 550px;
    margin-top: -145px;
}
.map-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.about-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 2rem;
}
.about-list dt, .about-list dd {
    padding: 2rem 1rem;
    border-bottom: 1px solid;
    margin-bottom: 0;
}
.about-list tr:last-child dt, .about-list tr:last-child dd {
    border-bottom: none;
}
.about-list dt {
    width: 8em;
    font-weight: 500;
    border-color: var(--main-color);
    padding-left: 0;
}
.about-list dd {
    width: calc(100% - 8em);
    line-height: 1.8;
    border-color: #D0D0D0;
    padding-right: 0;
}

.about-txt {
    font-size: 20px;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.about-int p { margin-bottom: 2.5rem;}

.j-tit {
    display: inline-block;
    width: 7em;
    text-align: justify;
    text-align-last: justify;
    margin-right: 1em;
}


.about-list02 {
    width: 100%;
    margin-top: 3.5rem;
    /* margin-bottom: 2rem; */
}
.about-list02 > div {
    display: flex;
    column-gap: 3em;
    padding: 2.25rem 1rem;
    border-top: 1px solid #D0D0D0;
}
.about-list02 > div:last-child {
    border-bottom: 1px solid #D0D0D0;
}
.about-list02 .about-list-tit {
    width: 12em;
}
.al-tit-color {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: .5rem;
}
.about-list02 > div:nth-of-type(1) .al-tit-color {
    color: var(--main-color);
}
.about-list02 > div:nth-of-type(2) .al-tit-color {
    color: #FE8A32;
}
.about-list02 > div:nth-of-type(3) .al-tit-color {
    color: #01A45B;
}
.al-tit-bold {
    font-size: 14px;
    font-weight: 700;
}

.about-list02 .main-color {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 1.5rem;
}

.about-list02 .main-color + p {
    max-width: 450px;
}

.about-list02 p { 
    line-height: 2;
    margin-bottom: auto;
}

.al-sub-list > div {
    display: flex;
    align-items: center;
    gap: 1.5em;
    margin-bottom: 1rem;
}
.al-sub-list dt {
    width: 6em;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    color: #01A45B;
}
.al-sub-list dd {

}


.txt-bold {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    margin-bottom: 3.25rem;
}

#cpage.side-page .policy-box h4 { margin-bottom: 1rem;}
.policy-box ol {
    list-style: none;
    padding: 0;
}
.policy-box ol li {
    background: #F8F8F8;
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 6px;
}

.policy-box ol li .num-txt {
    font-size: 16px;
    font-weight: 700;
}

/* .about-list03 .item {
    margin-bottom: 4rem;
} */
.about-list03 .item h6 { margin-bottom: .5rem;}
.about-list03 .item .img {
    max-width: 400px;
    width: 100%;
    margin-inline: auto;
}
.about-list03 .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    margin-bottom: 1rem;
    border-radius: 9px;
}


.about-list04 .item {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}
.about-list04 .item .txt {
    flex: 2;
}
.about-list04 .item .img {
    flex: 1;
}
.about-list04 .item img {
    border-radius: 9px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
    aspect-ratio: 4 / 3;
}
.about-list04 .item h4 {
    margin-bottom: .5rem !important;
}
.about-list04 .item .img {
    max-width: 400px;
    margin-inline: auto;
}


.bg-wrap {
    padding: 1.5rem 1rem;
    background: #5d5d5d;
    margin-bottom: 2rem;
}

.about-tbl {
    width: 100%;
    margin-bottom: 2rem;

    th, td {
        vertical-align: middle;
        padding: 2rem 1rem;
        font-weight: 400;
        line-height: 1.8;
    }
    tr th, tr td {
        border-bottom: 1px solid #DBDBDB;
    }
}
.about-tbl tr th {
    width: 14em;
    font-weight: 500;
    border-bottom: 1px solid var(--main-color);
}
.about-tbl ul {
    list-style: none;
    padding: 0;
}
.about-tbl ul li {
    line-height: 2;
}

/* .about-tbl04 {
    min-width: 800px;
    width: 100%;
    margin-bottom: 2rem;

    th, td {
        vertical-align: top;
        padding: 1rem;
        font-weight: 400;
        line-height: 1.8;
    }

    tr th, tr td {
        border-bottom: 1px solid #DBDBDB;
    }
}
.about-tbl04.small {
    min-width: 400px;
} */



.pnavi {
    text-align: center;
    margin-top: 2rem;
}
.pnavi span { color: var(--main-color);}
.pnavi span, .pnavi a {
    font-size: 16px;
    padding: 5px 10px;
    border: 1px solid var(--main-color);
    transition: .3s;
    border-radius: 6px;
}
#cpage .sec-inline > div .pnavi a {
    color: #fff;
    text-decoration: none;
    background: var(--main-color);
}
#cpage .sec-inline > div .pnavi a img {
    width: 11px;
    height: 11px;
    margin-bottom: 3px;
    transition: .3s;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
#cpage .sec-inline > div .pnavi a img.rev {
    transform: rotateZ(180deg);
}

.tel-wrap {
    border: 2px solid #D0D0D0;
    border-radius: 3px;
    padding: 2rem 3.5rem;
    font-weight: 300;
}
.tel-number { margin-bottom: .5rem;}
.tel-number a {
    font-size: 50px;
    font-weight: 400;
    color: #333;
}
.tel-number span {
    font-size: 20px;
}
.tel-txt { 
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 14px;
}
.tel-box {
    background: var(--main-color);
    color: #fff;
    padding: .5rem;
    border-radius: 3px;
}

/* contact */
.contact-form dl {
    margin: 0.125em 0;
    padding: 0.5em 0;
    /* border-bottom: 1px dotted #aeaeae; */
}
.contact-form dl > .contact-short-item { 
    display: flex;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #F2F2F2;
}
.contact-form input:not(.wpcf7-submit) {
    border-radius: 5px;
    background: #F2F2F2;
    padding: 1rem;
}
.contact-form dl dt {
    font-weight: bold;
    width: 18em;
    margin-right: 2.5%;
    background: #fff;
    padding: 10px 15px;
    white-space: nowrap;
    border-radius: 6px;
}
.contact-form dl label {
    margin-bottom: 0;
}
.contact-form p {
    font-size: 1rem!important;
    width: 100%!important;
    margin-bottom: 0!important;
    list-style: 1.5!important;
    text-wrap: wrap;
}
.contact-form p.form-cp {
    font-size: 0.8em!important;
    line-height: 1.4;
    margin: 5px 0;
}
.contact-form dl dd {
    width: 100%;
    margin: 0;
    /* display: flex;
    justify-content: flex-start;
    align-items: center; */
}
.contact-form .must {
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    display: inline-block;
    margin-left: 5px;
    padding: 2px 0.3em 3px;
    background: #D30100;
    border-radius: 3px;
    vertical-align: baseline;
}
.contact-form .optional {
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    display: inline-block;
    margin-left: 5px;
    padding: 2px 0.3em 3px;
    background: #19A4E2;
    border-radius: 3px;
    vertical-align: baseline;
}
.wpcf7-submit {
    color: #fff;
    font-size: 18px;
    width: 12em;
    font-size: 1em;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.1em;
    display: block;
    margin: 30px auto;
    padding: 20px 5em;
    text-align: center;
    background: #000;
    background-size: 110%;
    background-position: center;
    border: none;
    border-radius: 3px;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.contact-form dl dd textarea {
    width: 100%;
    border: none;
    background: #F2F2F2;
    border-radius: 5px;
}
#aform_btn_submit {
    color: #fff;
    background: #EFF3F7;
    box-shadow: 0px 3px 3px #333;
    border-width: 1px;
    border-color: #fff;
    border-style: solid;
}

.file-list {
    list-style: none;
    padding: 0;
    width: 100%;
    margin: 2rem 0;
}
.file-list li {
    position: relative;
    margin-bottom: 1.5rem;
}
.file-list li a {
    display: inline-block;
    /* width: 100%; */
    border-bottom: 1px solid var(--main-color);
    color: var(--main-color);

    &::after {
        font-family: "Font Awesome 7 Free";
        font-weight: 900;
        font-size: 1.25em;
        margin-left: .35em;
        vertical-align: middle;
    }

    &[href$=".zip"]::after {
        content: "\f1c3";
        color: #217346;
    }

    &[href$=".pdf"]::after {
        content: "\f1c1";
        color: #F40F02;
    }
}

.works-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1.5rem;
}
.works-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    border-radius: 7px;
}

.works-box .item {
    max-width: 325px;
    margin-inline: auto;
}
.works-box a {
    display: block;
    width: 100%;
    height: 100%;
    color: var(--main-color);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}
.works-box img { 
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    border-radius: 7px;
    margin-bottom: .5rem;
}
.ngg-navigation a.next:hover, .ngg-navigation a.prev:hover, .ngg-navigation span.next, .ngg-navigation span.prev { color: #fff !important;}

.block-center {
    display: flex;
    justify-content: center;
    width: 100%;
}
.block-sm-center { display: none;}

img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

img.alignleft {
    display: block;
    margin-right: auto;
}

img.alignright {
    display: block;
    margin-left: auto;
}

.ngg-navigation a.page-numbers, .ngg-navigation a.next, .ngg-navigation a.prev, .ngg-navigation span.page-numbers, .ngg-navigation span.next, .ngg-navigation span.prev, .ngg-navigation span.current {
    background: var(--main-color) !important;
}
.ngg-navigation a.next, .ngg-navigation a.prev, .ngg-navigation span.next, .ngg-navigation span.prev { 
    color: #fff !important;
    padding: 4px 8px !important;
}

@media (min-width: 1300px) {
    .sec-inline-start, .sec-inline-end {
        padding: 0;
    }

    .sec04-wrap, .sec05-wrap {
        justify-content: center;
    }

    .sec04-img, .sec04-img img, .sec05-img, .sec05-img img {
       border-radius: 10px;
    }
}
@media (max-width: 991px) {
    .h-logo .brand { 
        max-width: none;
        width: 300px;
        /* height: 46px; */
    }
    .dnone .h-logo .brand {
        max-width: none;
        max-height: none;
    }
    #head, #head.dnone { height: 70px;}
    .nosc #head { width: 100%;}

    .btn01 a, .btn02 a {
        gap: 1em;
    }
    .btn01 .txt, .btn02 .txt { 
        padding-right: 1em;
        padding-left: 0;
    }
    
    
    .top-page main {
        margin-top: 70px;
    }

    #maintop {
        height: calc(100svh - 70px);
    }
    
    .breadcrumb ul {
        padding-inline: initial;
    }
    .sec-inline-start {
        padding-inline: initial;
        padding-left: 7.5%;
    }
    .sec-inline-end {
        padding-inline: initial;
        padding-right: 7.5%;
    }
    .sec-inline {
        padding-inline: initial;
        padding-left: 6%;
        padding-right: 6%;
    }
    .grid-box {
        grid-gap: 1.5vw;
    }
    
    .top-page hgroup span {
        font-size: 16px;
    }
    .top-page hgroup h2 {
        font-size: 40px;
    }

    :root {
        --btn-width: 155px;
        --btn-height: 45px;
    }

    /* .btn01 a, .btn02 a { padding: 1rem;} */
    /* .btn01 span, .btn02 span {
        padding-right: .75em;
    } */

    #sec01 {
        padding-top: 5rem;
    }
    #sec01 hgroup { margin-bottom: 4rem;}
    .sec01-txt {
        width: 45%;
        transform: translateY(-2em);
    }
    .sec01-txt img {
        max-width: 200px;
    }
    .sec01-wrap { 
        width: 740px;
        gap: 2rem;
    }

    .top-page .news-wrap {
        max-width: 480px;
        width: 100%;
    }

    .s02-curve-img {
        top: -36%;
        left: 55%;
        width: 1600px;
        height: 1760px;
    }

    #sec02 {
        padding-top: 140px;
    }

    #sec02::after {
        top: -15px;
        left: 47%;
        transform: translateX(-50%);
        width: 1000px;
        height: 800px;
        -webkit-mask-image: url(../img/sec02-bg01-lg.svg);
        mask-image: url(../img/sec02-bg01-lg.svg);
    }

    .sec02-tit {
        font-size: 24px;
        transform: translate(0em, -4em);
    }
    .sec02-wrap {
        justify-content: center;
        gap: 5rem;
        transform: translateY(40px);
    }
    .sec02-txt p {
        font-size: 14px;
        line-height: 2;
    }

    .sec02-txt { margin-top: 3em;}


    #sec03 { padding-top: 15rem;}
    .sec03-wrap { gap: 4.5rem;}
    .works-wrap { width: 65%;}
    .sec03-txt img {
        margin-top: 3rem;
    }
    .sec03-txt p {
        margin-bottom: 2rem;
    }
    
    #sec04 { padding-bottom: 12.5%;}
    #sec04::after {
        left: -10%;
        width: 110%;
    }
    .sec04-wrap { gap: 2rem;}
    /* .sec04-img { width: 67.5%;} */

    .sec04-txt, .sec05-txt {
        min-width: 10em;
    }
    .sec04-txt { flex: 1;}
    .sec04-img {
        max-width: 510px;
        flex: 2;
    }

    .sec05-img { 
        max-width: 495px;
        width: 100%;
    }
    .sec05-wrap { 
        gap: 2rem;
    }
    .sec05-txt {
        transform: translateY(1em);
    }
    .sec05-txt p { margin-bottom: 2rem;}

    #sec06 { padding: 3rem 0;}
    .sec06-wrap {
        gap: 3rem;
        justify-content: flex-start;
    }
    .sec06-wrap .btn02 { margin-bottom: 0;}

    footer { padding-top: 0;}
    .f-wrap { padding-top: 3rem;}
    .f-menu ul li.d-block { margin-top: 2em;}

    .f-flex { width: 90%;}
    .f-wrap::after {
        top: -8%;
        right: -33%;
        height: 480px;
        width: 100%;
        background: url(../img/ft-bg-lg.png) no-repeat left top / cover;
    }
    .ft-sns { margin-bottom: 2rem;}
    .f-img { margin-bottom: 1rem;}

    .f-box02 { width: 60%;}

    .reverse {
        max-width: 50px;
        width: 10vw;
        height: 20px;
        right: 4vw;
        bottom: 24vw;
    }
    .reverse .rev-txt { font-size: 12px;}

    .cr { 
        font-size: 12px;
        transform: translateX(-2em);
    }

    .f-scroll {
        max-width: 200px;
        width: 20vw;
        right: -2rem;
    }

    #titbar {
        &::after {
            content: "";
            top: -270px;
            right: -15%;
            max-width: 650px;
            width: 100vw;
            height: 450px;
        }
    }
}
/* SPサイズ */
@media (max-width: 767px) {
    /* 基礎設定 */
    html, body { 
        /* overflow-x: hidden; */
        font-size: 16px;
    }
    .h-logo { 
        top: 50%;
        transform: translateY(-50%);
    }

    #maintop {
        /* height: 100%; */
        z-index: 30;
    }
    
    a.anchorpoint {
        padding-top: 55px;
        margin-top: -55px;
    }
    
    /* .openbtn { right: 1rem;} */

    #clickarea {
        width: 100%;
        padding-top: 2.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-bottom: 15rem;
    }

    #clickarea .click-list {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0rem;
    }

    #head.dnone #clickarea {
        top: 55px;
    }

    .btn03 { max-height: 75px;}

    h1 { font-size: 26px; }
    h2 { font-size: 24px; }
    .top-page hgroup h2 {
        font-size: 30px;
    }
    h3 { font-size: 22px; }
    h4 { font-size: 20px; }
    h5 { font-size: 18px; }
    h6 { font-size: 16px; }
    .grid-box { grid-gap: 1rem;}
    
    .box-wh, .box-gray, .box-grad { padding: 2rem; }
    .is-hidden{
        visibility: hidden;
        opacity: 0;
    }
    .sec-inline {
        padding-left: 7.5%;
        padding-right: 7.5%;
    }
    section { padding: 5rem 0 5rem;}

    .main-wrap { 
        flex-direction: column;
        gap: 2rem;
        padding-top: 90px;
        margin-bottom: 2rem;
    }
    .main-wrap::after {
        width: 80vw;
        height: 80vh;
        /* background-image: url(../img/main-bg-sp.png); */
    }
    .main-txt { margin-bottom: 0rem;}
    .main-txt, .main-img { width: 100%;}
    
    #clickarea.panelactive .click-list { width: 100%;}
    #clickarea { 
        top: 55px;
        width: 100%;
    }
    .click-menu {
        display: block;
    }
    .click-menu ul.menu-main { width: 100%;}
    .click-menu ul.menu-main > li {
        padding-bottom: 1.5rem;
    }
    .click-menu ul.menu-main .menu-sub {
        & > li:last-child {
            padding-bottom: 0;
        }
    }

    #titbar { 
        &::after {
            content: "";
            top: -285px;
            right: -15%;
        }
    }
    #titbar h1 { font-size: 26px;}
    #titbar span { font-size: 16px;}
    .breadcrumb-content { margin-bottom: 0;}

    /* TOP */

    #sec01::before {
        content: "";
        position: absolute;
        top: -15%;
        left: -100%;
        width: 220%;
        height: 145%;
        background: url(../img/sec01-bg-sp.svg) no-repeat bottom left / cover;
        z-index: -1;
    }
    .sec01-wrap {
        width: 85%;
        flex-direction: column;
        align-items: center;
    }
    .sec01-txt {
        max-width: none;
        width: 100%;
        flex-direction: row;
        align-items: flex-end;
    }
    .sec01-txt img {
        max-width: 140px;
    }
    #sec01 hgroup { margin-bottom: 0;}

    .news-wrap .tit {
        -webkit-line-clamp: 2;
    }
    .top-page .news-wrap { max-width: none;}

    #sec02 { 
        padding-top: 100px;
        z-index: 20;
    }
    .sec02-wrap {
        flex-direction: column-reverse;
        align-items: center;
        gap: 0;
    }
    .sec02-tit {
        position: relative;
        transform: translateY(-3em);
    }
    .sec02-txt { margin-top: 7rem;}
    .sec02-tit::after {
        content: "";
        position: absolute;
        top: -20%;
        left: -145%;
        transform: translateX(-50%);
        width: 700px;
        height: 600px;
        z-index: 20;
        background: url(../img/sec02-bg.svg) no-repeat top left / cover;
    }
    .sec02-txt {
        position: relative;
        font-size: 14px;
        isolation: isolate;
        width: fit-content;
        padding: 2.5rem 2rem;
        margin-top: 2rem;
        z-index: 10;

        &::after {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100vw;
            height: 100%;
            z-index: -1;
            background: rgba(255, 255, 255, 0.39);
            backdrop-filter: blur(50px);
            -webkit-backdrop-filter: blur(50px);
        }
    }
    #sec02::after {
        top: 45px;
        left: 33%;
        transform: translateX(-50%);
        max-width: 660px;
        width: 98%;
        height: 55%;
        -webkit-mask-image: url(../img/sec02-bg01-sp.svg);
        mask-image: url(../img/sec02-bg01-sp.svg);
    }
    /* .s02-curve-img {
        top: -27%;
        width: 3050px;
        height: 2260px;
    } */
    /* .s02-curve-img {
        top: auto;
        bottom: -16%;
        left: 30%;
        width: 700px;
        height: 100%;
        z-index: 20;
    } */

    #sec03 { 
        padding-top: 2.5rem;
        padding-bottom: 1px;
    }
    #sec03 hgroup { margin-bottom: 0;}
    #sec03 p { margin-left: 0;}
    .sec03-wrap {
        flex-direction: column-reverse;
    }
    .sec03-txt, .works-wrap {
        max-width: none;
        width: 100%;
    }
    .top-page .works-wrap {
        border-top: 1px solid rgba(112, 112, 112, .15);
        padding-top: 4rem;
    }
    .sec03-txt img {
        margin-top: 0;
        max-width: 130px;
    }

    .sec03-txt {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        flex-direction: row;
    }
    .sec03-wrap {
        gap: 2rem;
    }

    #sec04 { padding-top: 20%;}

    #sec06 { margin-bottom: 4rem;}

    .ft-address > * { margin-bottom: .5rem;}

    .f-bnr-flex > div {
        max-width: 230px;
        width: 70%;
        margin-inline: auto;
    }
    .f-flex {
        flex-direction: column-reverse;
        gap: 10rem;
    }
    /* .f-box02 { 
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .f-wrap::after {
        top: -3%;
        left: 50%;
        transform: translateX(-50%) rotateZ(3deg);
        right: auto;
        width: 115%;
        height: 60%;
        background: url(../img/ft-bg-lg.png) no-repeat left top / cover;
    } */
    .f-wrap::after {
        content: none;
    }
    .f-box02 { display: none;}
    .f-wrap { padding-top: 0rem;}
    .f-scroll {
        width: 75vw;
    }

    .cr .f-menu {
        
    }
    .cr .f-menu ul { margin-bottom: 0;}
    .cr .f-menu ul li { margin-bottom: 0;}
    .cr .f-menu ul li a { 
        font-size: 12px;
        color: #333;
    }

    .cr {
        display: flex;
        flex-direction: row-reverse;
        gap: 1em;
        transform: translateX(0);
    }

    .reverse {
        right: 9vw;
        bottom: 65%;
    }
    /* .reverse a { color: var(--main-color);} */


    .side-page .sec-inline {
        display: block;
    }
    .about-list04 .item {
        flex-direction: column;
        gap: 1rem;
    }

    .breadcrumb ul li span > span:last-child {
        max-width: 20em;
        vertical-align: bottom;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
    }

    .anchor-list, .lcc-list .item-flex {
        flex-direction: column;
    }

    .about-flex {
        display: block;
    }
    .about-flex .item {
        width: 100%;
        margin-bottom: 1rem;
    }

    .contact-form dl dt {
        width: 100%;
        margin-right: 0;
        margin-bottom: auto;
        padding: 10px 0;
    }
    .contact-form dl dd {
        width: 100%;
    }
    .contact-form dl dd input, .contact-form dl dd textarea {
        max-width: 100%;
    }
    .contact-form dl > .contact-short-item {
        display: block;
    }
    
}

@media (max-width: 625px) {
    #sec02::after {
        top: 65px;
        left: 30%;
        width: 107%;
        height: 53%;
    }
}

@media (max-width: 575px) {
    /* .top-page h3 {
        margin: 0;
    } */
    .grid2 { grid-template-columns: repeat(1, 1fr) !important; }
    .grid3 { grid-template-columns: repeat(1, 1fr) !important; }
    .grid4 { grid-template-columns: repeat(2, 1fr) !important; }
    .grid5 { grid-template-columns: repeat(2, 1fr) !important; }
    .btn01, .btn02 { max-width: 140px;}
    .btn01 a, .btn02 a {
        gap: .75em;
    }
    .btn01 .txt, .btn02 .txt { padding-right: 1em;}
    /* .btn01 a, .btn02 a {
        &::after { right: .75em;}
    } */
    .top-page main {
        margin-top: 55px;
    }
    .top-page p { font-size: 14px;}
    
    #head, #head.dnone { height: 55px;}
    .openbtn {
        width: 30px;
        height: 30px;
    }
    .openbtn span { width: 10.5px;}
    .openbtn.active span:nth-of-type(1){
        top: 45%;
        left: 25%;
    }
    .openbtn.active span:nth-of-type(3) {
        top: 65%;
        left: 25%;
    }
    .h-logo .brand { width: 235px;}

    .sec-wrap {
        width: 85%;
    }
    .table th, .table td {
        display: block;
        width: 100%;
    }
    .box-wh, .box-gray, .box-grad { padding: 2rem; }
    .sec-inline { padding-inline: initial; padding-left: 7%; padding-right: 7%; }
    
    .js-scrollable {
        width: 100%;
        overflow: scroll;
    }

    .btn01 .txt, .btn02 .txt { font-size: 14px;}

    #titbar { 
        &::after {
            content: "";
            top: -260px;
            right: -20%;
            height: 475px;
        }
    }

    #maintop { 
        height: calc(100svh - 55px);
    }
    #maintop img { object-fit: cover;}
    .main-txt {
        left: 60%;
        bottom: 5%;
        font-size: 36px;
        text-align: left;
        line-height: 1.4;
    }

    #sec01 {
        padding-top: 5rem;
    }

    #sec01::before {
        top: -105%;
        left: -47%;
        width: 225%;
        height: 230%;
    }
    
    .sec01-wrap {
        flex-direction: column;
        gap: 0rem;
    }

    .top-page .news-wrap {
        width: 100%;
        margin-bottom: 2rem;
    }
    .sec01-txt {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
        width: 100%;
        margin-bottom: 1rem;
    }
    .sec01-txt img { 
        max-width: 110px;
        margin-top: -1.5rem;
    }

    .news-wrap a figure, .news-wrap a img {
        max-width: 68.5px;
    }
    .news-wrap time {
        font-size: 14px;
        margin-bottom: .25rem;
    }
    .news-wrap .tit { font-size: 14px;}
    .news-wrap a { gap: 1rem;}

    .news-txt { margin-right: 3em;}
    

    #sec02 {
        padding-top: 170px;
    }
    .sec02-wrap {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .sec02-txt { 
        margin-top: 0;
        padding-bottom: 2rem;
    }
    .sec02-txt p {
        line-height: 2;
    }
    /* .sec02-txt p:last-child { margin-bottom: 0;} */
    
    #sec02::after {
        top: 63px;
        left: 13%;
        max-width: none;
        width: 900px;
        height: 70%;

        content: none;
    }

    .sec02-tit::after {
        top: -35%;
        left: 10%;
        transform: translateX(-50%);
        width: 450px;
        height: 725px;

        mask-image: none;
        background: url(../img/sec02-img03.jpg) no-repeat top / contain;
        z-index: -1;
    }

    /* .works-wrap .item .txt { font-size: 14px;} */
    #sec03 p { margin-bottom: 0;}

    #sec04 {
        padding-top: 7rem;
        padding-bottom: 4rem;
    }
    #sec04::before {
        content: "";
        position: absolute;
        top: -1px;
        left: -50%;
        width: 150%;
        height: 10%;
    }
    #sec04::after {
        left: -100%;
        width: 200%;
    }
    .sec04-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .sec04-txt {
        margin-right: 7.5%;
    }
    .sec04-txt p { margin-bottom: 0;}
    #sec04 p { margin-bottom: 0;}
    .sec04-img { width: 100%;}

    .block-sm-center {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    #sec05 {
        padding-top: 3rem;
        transform: translateY(0%);
    }
    .sec05-wrap {
        align-items: flex-start;
        justify-content: center;
        gap: 2rem;
        flex-direction: column-reverse;
    }
    #sec05 hgroup { margin-bottom: 2rem;}
    .sec05-txt { margin-left: 7.5%;}
    .sec05-txt p { margin-bottom: 1rem;}
    
    .top-page .works-wrap {
        padding-top: 3rem;
    }

    #sec06::before {
        background: linear-gradient(180deg, rgba(254, 138, 51, 1) 40%, rgba(254, 138, 51, 0) 100%);
    }
    #sec06::after {
        width: 100%;
        height: 60%;
        top: auto;
        right: auto;
        bottom: 0;
        left: 0;
        background: url(../img/sec06-img01-sp.jpg) no-repeat center / cover;
    }
    .sec06-wrap {
        align-items: center;
        flex-direction: column;
        gap: 12rem;
    }

    #contact p {
        font-size: 16px;
    }
    .contact-wrap {
        align-items: stretch;
    }

    footer {
        padding-bottom: 3rem;
    }
    .f-flex {
        flex-direction: column-reverse;
        gap: 5rem;
    }
    
    .ft-sns {
        gap: .5rem;
        margin-bottom: 2rem;
    }

    .ft-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 1rem;
    }
    .ft-link {
        /* width: 100%; */
        flex-direction: column;
        gap: 1rem;
    }
    .ft-link > ul {
        width: 100%;

        & > li {
            width: 100%;

            &:not(:last-child) {
                margin-bottom: 1rem;
            }

            a {
                display: block;
                width: 100%;
                height: 100%;
            }
        }
    }
    .ft-list {
        align-items: flex-start;
        flex-direction: column-reverse;
        gap: .5rem;

        li {
            width: 100%;

            &:not(:first-child)::before {
                content: none;
            }
        }
    }
    .ft-txt { 
        border-right: none;
        border-bottom: 1px solid #525869;
        padding-right: none;
        padding-bottom: 2rem;
    }
    .ft-bw .ft-link a {
        font-size: 12px;
    }


    .cr { 
        max-width: 245px;
        margin-inline: auto;
        flex-direction: column;
        font-size: 10px;
        text-align: left;
    }

    .f-scroll {
        width: 50vw;
        bottom: -35px;
        --dock-bottom: 80px;
        right: -4rem;
    }
    .reverse {
        right: 6vw;
        width: 20vw;
        bottom: 175px;
        --dock-bottom: 255px;
    }

    #cpage .f-wrap { padding-top: 4rem;}
    .f-menu-sp {
        flex-direction: column;
    }
    .f-menu-sp-box {
        display: flex;
        gap: 2rem;
    }
    .ft-address { 
        font-size: 14px;
        margin-bottom: 1rem;
    }
    .cr {
        position: initial;
    }

    .grid-column2 .item { font-size: 18px;}

    .about-list02 > div {
        flex-direction: column;
        row-gap: 1rem;
    }
    .about-list02 > div > dt, .about-list02 .main-color { text-align: center;}
    .about-list02 .main-color { 
        transform: translateX(.25em);
        margin-bottom: 1rem;
    }
    .about-list02 .about-list-tit { width: 100%;}

    .txt-bold { font-size: 16px;}
    

    .about-list dt, .about-list dd {
        width: 100%;
    }
    .about-list dt {
        font-size: 16px;
        border-bottom: none;
        padding-bottom: 0.5rem;
        padding-inline: .5rem;
    }
    .about-list dd {
        padding-top: 0;
        padding-inline: .5rem;
    }
    .about-list dd {
        font-size: 14px;
    }
    
    
    .about-tbl {
        th, td {
            display: block;
            padding: 0rem .5rem;
        }
        tr:not(:first-child) th {
            padding-top: 1rem;
         }
        tr th {
            border-bottom: none;
        }
        tr:first-child td {
            border-top: none;
        }
        th { 
            font-size: 16px;
            padding-bottom: .5rem;
        }
        td {
            font-size: 16px;
            border-top: none;
            padding-bottom: 1rem;
            line-height: 1.8;
        }
    }
    .about-tbl tr th { width: 100%;}
    .about-tbl ul li {
        margin-bottom: .5rem;
    }

    .about-list th, .about-list td {
        display: block;
        width: 100%;
    }
    .about-list th { 
        border-bottom: none;
        padding-bottom: 0;
    }

    .faq-list dt {
        align-items: center;
    }

    .full-map { aspect-ratio: inherit;}

    .tel-wrap {
        padding: 1.5rem;
    }
    .tel-number a {
        font-size: 24px;
    }
    .tel-txt {
        font-size: 12px;
    }
    .tel-number span { font-size: 14px;}

    .side-page .ngg-galleryoverview.default-view {
        gap: 2rem 1rem;;
    }

    #aform_btn_back { 
        font-size: 0.9em;
        margin-bottom: 1rem;
    }
}

@media (max-width:500px) {
    #sec01::before {
        top: -46%;
        left: -95%;
        width: 300vw;
        height: 200%;
        background: url(../img/sec01-bg-sp.svg) no-repeat top / cover;
    }

    #sec02::after {
        top: 58px;
        left: -10%;
        max-width: none;
        width: 760px;
        height: 55%;
    }
}

@media (max-width:400px) {
    .reverse {
        right: 4vw;
        width: 20vw;
        bottom: 140px;
        --dock-bottom: 245px;
    }
    .f-scroll {
        /* bottom: 15px; */
        --dock-bottom: 100px;
    }
}
@media (max-width:350px) {
    .reverse {
        /* bottom: 215px;
        --dock-bottom: 245px; */
    }
}

@media (any-hover: hover) {

    .f-menu a:hover { opacity: .5;}

    .menu-list > ul > li > a:hover,
    .menu-list ul li:hover ,
    #cpage .menu-list ul li:hover,
    .prod-list .item a:hover {
        color: var(--main-color);
    }

    .btn01:hover .txt {
        border-color: var(--main-color);
    }
    .btn01:hover .txt::after { background: var(--main-color);}
    .btn01:hover a {
        color: var(--main-color);
        background-color: #fff;
    }
    .btn01:hover .arrow {
        &::after {
            content: "";
            background: var(--main-color);
        }
    }
    .btn01.btn-aot:hover .txt {
        border-color: #fff;
    }
    .btn01.btn-aot:hover .txt::after {
        background: #fff;
    }
    .btn01.btn-aot:hover a, .btn-menu:hover a {
        color: #fff;
        background-color: var(--main-color);
    }
    .btn01.btn-aot:hover .arrow {
        &::after {
            content: "";
            background:#fff;
        }
    }
    .btn-menu:hover { border-color: var(--main-color);}
    .btn02:hover .txt {
        border-color: #fff;
    }
    .btn02:hover .txt::after {
        background: #fff;
    }
    .btn02:hover a {
        color: #fff;
        background-color: #FE8A33;
    }
    .btn02:hover .arrow {
        &::after {
            content: "";
            background:#fff;
        }
    }

    .menu-list > ul > li > a[target="_blank"]:hover {
        &::after {
            content: "";
            background: url(../img/icon-link-mc.png) no-repeat center / contain;
            filter: none;
        }
    }

    .link-box:hover {
        background: #fff;

        &::after {
            content: "";
            background: var(--main-color);
        }
    }
    .link-box:hover a {
        color: var(--main-color);
        font-weight: 700;
    }


    .breadcrumb ul li a:hover { color: var(--main-color);}

    #cpage .sec-inline > div .pnavi a:hover {
        color: var(--main-color);
        background: transparent;
    }
    #cpage .sec-inline > div .pnavi a:hover img {
        filter: none;
    }


    .wpcf7-submit:hover {
        background: var(--main-color);
    }

    .ft-m-box ul a:hover {
        color: #fff;
        opacity: 1;
    }
}