@charset "UTF-8";
/* 基礎設定 */
html, body {
    font-size: 18px;
    font-family: "Noto Sans JP", sans-serif;
    position: relative;
    font-weight: 400;
    margin: 0;
    padding: 0;
    width: 100%;
    scroll-behavior: auto !important;
    overflow-x: hidden;
    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: #001F6B;}
.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: #001F6B;}
.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;
}

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

h1, h2, h3, h4, h5, h6 {
    color: #000;
    font-weight: 600;
    line-height: 1.3;
    margin-inline: auto;
    margin-bottom: 1.5rem;
    padding: 0;
}
h1 { font-size: 43px;}
h2 { font-size: 30px;}
h3 { font-size: 27px;}
h4 { font-size: 24px;}
h5 { font-size: 20px;}
h6 { font-size: 18px;}

.top-page h2 { 
    font-size: 43px;
    letter-spacing: 0.05em;
    color: var(--main-color);
}
.top-page h3 { font-size: 34px;}

#titbar {
    position: relative;
    width: 100%;
    padding-top: 14rem;
    margin-bottom: 5rem;
    z-index: 10;

    h1 {
        position: relative;
        color: var(--main-color);
        max-width: 1100px;
        width: 85%;
        margin-inline: auto;
        padding-bottom: 0;
        margin-bottom: 0;
    }
}
#titbar::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url(../img/titbar.png) bottom center no-repeat;
    background-size: cover;
    z-index: -1;
}
.tit-line { 
    position: relative;
    color: var(--normal-color);
    padding-bottom: 10px;
    
    &::before, &::after {
        content: "";
        position: absolute;
        bottom: 0;
        height: 2px;
        z-index: -1;
    }
    &::before { 
        left: 0;
        width: 2.25em;
        background: var(--main-color);
    }
    &::after { 
        left: 2.25em;
        width: calc(100% - 2.25em);
        background: #DBDBDB;
    }
}
.tit-bd-l {
    position: relative;
    padding: 0 .75em;
    color: var(--normal-color);

    &::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 7px;
        height: 100%;
        background: var(--main-color);
        z-index: -1;
    }
}
.tit-border {
    position: relative;
    display: inline-block;
    color: var(--normal-color);
    border-bottom: 2px solid var(--main-color);
    padding-bottom: 5px;
}
.tit-point {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--normal-color);
    padding: 0 .75em;

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        transform: translateY(.25em);
        width: 1em;
        height: 1em;
        aspect-ratio: 1;
        background: var(--main-color);
        z-index: -1;
    }
}
.tit-color {
    color: var(--main-color);
    font-weight: 700;
}
.box-wh {
    padding: 2.5em 3em;
    background-color: #fff;
    border-radius: 50px;
    box-sizing: border-box;
}
.box-gray {
    padding: 2.5em 3em;
    background-color: #F8F8F8;
    border-radius: 50px;
    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: 3px solid #466E6E; }

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);
}
.menu-list > ul > li > a[target="_blank"], .ft-menu a[target="_blank"] {
    position: relative;

    &::after {
        content: "";
        display: inline-block;
        width: 12.5px;
        height: 12.5px;
        aspect-ratio: 1;
        margin-left: .3em;
    }
}
.menu-list > ul > li > a[target="_blank"] {
    &::after {
        content: "";
        background: url(../img/icon-link.png) center no-repeat;
        background-size: contain;
    }
}
.ft-menu a[target="_blank"] {
    &::after {
        content: "";
        background: url(../img/icon-link-mc.png) center no-repeat;
        background-size: contain;
    }
}
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 - 1100px) / 2);
    padding-left: 7.5%;
}
.sec-inline-end { 
    padding-inline-end: calc((100vw - 1100px) / 2);
    /* padding-right: 7.5%; */
}
.container-fluid{ padding: 0;}


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

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

#head h1 { margin: 0}
.h-logo .brand {
    max-width: 265px;
    width: 20vw;
    height: 100%;
    object-fit: contain;
}
.h-logo a {
    display: block;
    width: 100%;
    height: 100%;
}


.h-logo { 
    position: relative;
    display: flex;
    align-items: center;
    line-height: 1;
    left: 20px;
}

.menu-wrap { 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-inline: auto;
    height: 100%;
}
.menu-list { 
    position: relative;
    right: 0;
    height: 100%;
    align-items: center;
}
.menu-list > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding-left: 0;
    column-gap: 2.5em;
    margin-right: 3em;
    height: 100%;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
}
.menu-list > ul > li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-list > ul > li > a {
    position: relative;
    color: var(--normal-color);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: .3s ease-out;
}
.menu-list > ul > li > a img {
    width: 1.5em;
    height: 1.5em;
    aspect-ratio: 1;
}

.nav-menu ul { 
    position: relative;
    margin-bottom: 0;
}
.nav-menu ul li { 
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.drop-set {
    position: relative;
    padding-right: 1em;
    transition: .3s;

    &::after {
        content: "";
        position: absolute;
        top: 55%;
        right: 0;
        transform: translateY(-50%);
        max-width: 12px;
        width: 1em;
        height: 1em;
        background: url(../img/icon-down.png) center no-repeat;
        background-size: contain;
        transition: .3s;
        z-index: 10;
    }
}
.drop-menu {
    opacity: 0;
    visibility: hidden;
    position: relative;
    display: grid;
    /* grid-template-columns: auto 2.5fr 2.5fr; */
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 3rem;
    transition: .3s;

    &::before {
        content: "";
        position: absolute;
        top: 3rem;
        left: 50%;
        width: 1px;
        height: calc(100% - 6rem);
        background: #D5D5D5;
    }
}
.drop-menu.act {
    opacity: 1;
    visibility: visible;
}
.drop-box01 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
}
.drop-tit {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-bottom: 1rem;
    border-bottom: 1px solid #D5D5D5;
}
.drop-menu ul {
    list-style: none;
    padding-left: 0;
    width: 100%;
}
.drop-menu ul li {
    position: relative;
    width: 100%;
    padding-right: 1.5em;
    border-bottom: 1px solid #D5D5D5;

    &:not(.ex-link)::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 1em;
        height: 1em;
        background: url(../img/icon-arrow.png) center no-repeat;
        background-size: contain;
        z-index: 10;
    }

    a {
        display: block;
        width: 100%;
        height: 100%;
        padding: 1.5em 0;
        transition: .3s;
    }
}
.drop-menu ul li.ex-link {
    &::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        max-width: 12.5px;
        width: 1em;
        max-height: 12.5px;
        height: 1em;
        background: url(../img/icon-link-mc.png) center no-repeat;
        background-size: contain;
        z-index: 10;
    }
}
.drop-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 2rem;
}
.drop-menu a {
    color: var(--normal-color);
    font-size: 14px;
    font-weight: 400;
}

.nosc #head {
    top: 0;
    width: 100%;
}
.nosc .menu-list {
    display: none !important;
}
/* .nosc .h-logo {
    display: none;
} */
.nosc .menu-wrap { border: none;}
.nosc .openbtn { background: none;}
/* .nosc main, .nosc main ~ * { filter: blur(3px);} */

/* ハンバーガーメニュー */
.openbtn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1001;
    cursor: pointer;
    width: 64px;
    height: 100%;
    transition: 0.3s;
}
#head.act .openbtn { right: 0;}
.openbtn span {
    display: block;
    transition: 0.3s;
    position: absolute;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 1px;
    background: var(--main-color);
    width: 18px;
}
.openbtn span:nth-of-type(1) {
    top: 45%; 
}
.openbtn span:nth-of-type(2) {
    top: 55%; 
}
.openbtn.active span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(0px) rotate(-45deg);
    background: var(--normal-color);
}
.openbtn.active span:nth-of-type(2) {
    top: 50%;
    left: 50%;
    transform:  translateX(-50%) translateY(0px) rotate(45deg);
    background: var(--normal-color);
}
/* ×印が横幅を広くしても消えない設定 */
.openbtn.active { display: block !important;}
.nosc .nav-menu { opacity: 0;}
.nosc .sp-menu.d-md-none {
    display: flex !important;
}
.nosc .menu-wrap .d-lg-none {
    display: flex !important;
}
.nosc .menu-wrap .d-xl-none {
    display: flex !important;
}
.nosc #top-menu { display: none !important;}

/* ハンバーガーメニュー内部 */
#clickarea {
    position: fixed;
    min-width: 300px;
    width: 30%;
    height: 100vh;
    top: 75px;
    right: 0;
    background: #fff;
    transition: .3s;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    overflow-x: hidden;
}
#clickarea.panelactive {
    opacity: 1;
    visibility: visible;
    z-index: 1000;
}
#clickarea.panelactive .click-list {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    z-index: 0;
}

#clickarea .click-list {
    padding-top: 2rem;
    padding-inline: 2rem;
    padding-bottom: 20rem;
}

.click-menu {
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
}
.click-menu ul {
    list-style: none;
}
.click-menu > ul {
    position: relative;
    padding: 0;

    & > li:last-child a {
        padding-bottom: 0;
    }

    & > li:not(:first-child) {
        padding-top: 1.5rem;
    }

    & > li {
        position: relative;
        font-size: 16px;
        font-weight: 500;
        color: var(--normal-color);
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #D5D5D5;

        & > a {
            position: relative;
            display: block;
            width: 100%;
            height: 100%;
            font-size: 16px;
            font-weight: 500;
            color: currentColor;

            &::after {
                position: absolute;
                top: 50%;
                right: 0;
                transform: translateY(-50%);
            }
        }

        & > a:not([target="_blank"]) { 
            color: var(--normal-color);
            text-wrap: nowrap;
            &::after {
                content: "";
                width: 1em;
                height: 1em;
                background: url(../img/icon-arrow.png) center no-repeat;
                background-size: contain;
                z-index: 10;
            }
        }
        & > a[target="_blank"] {
            &::after {
                content: "";
                position: absolute;
                top: 50%;
                right: 0;
                transform: translateY(-50%);
                max-width: 12.5px;
                width: 1em;
                max-height: 12.5px;
                height: 1em;
                background: url(../img/icon-link-mc.png) center no-repeat;
                background-size: contain;
                z-index: 10;
            }
        }
    }
}
.main-menu > .click-tit {
    position: relative;
    display: block;
    width: 100%;

    &::before {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        width: 1em;
        height: 1px;
        background: var(--main-color);
        transform: rotate(90deg);
        transition: .3s;
        z-index: -1;
    }

    &::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        /* width: calc(100% - 5em); */
        width: 1em;
        height: 1px;
        background: var(--main-color);
        transition: .3s;
        transform-origin: right;
        z-index: -1;
    }
}
.main-menu > .click-tit.act {
    &::before {
        transform: rotate(180deg);
        background: #333;
    }
    &::after {
        background: #333;
    }
}
.sub-menu {
    display: none;
    padding-left: 1em;
}
.sub-menu {
    padding-top: .5rem;
}
.sub-menu li {
    position: relative;
    padding-top: 1rem;
}
.sub-menu li:not(:last-child) {
    padding-bottom: 1rem;
    border-bottom: 1px solid #D5D5D5;
}
.sub-menu li a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-weight: 400;
    color: var(--normal-color);
}
.sub-menu li:not(.ex-link) a { 
    &::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 1em;
        height: 1em;
        background: url(../img/icon-arrow.png) center no-repeat;
        background-size: contain;
        z-index: 10;
    }
}
.sub-menu li.ex-link a { 
    &::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        max-width: 12.5px;
        width: 1em;
        max-height: 12.5px;
        height: 1em;
        background: url(../img/icon-link-mc.png) center no-repeat;
        background-size: contain;
        z-index: 10;
    }
}

/* ボタン類 */
.btn-menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    max-width: 175px;
    height: 71px;
    overflow: hidden;
    right: -1px;
    background: var(--main-color);
    transition: .3s ease-out;
    z-index: 10;
    border-radius: 0 100vmax 100vmax 0;
    border: 1px solid var(--main-color);
}

.btn-menu a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: .3s;
    padding: .5em 1.75em .5em 1.75em;
}


.btn01, .btn02 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    max-width: var(--btn-width);
    width: 80%;
    height: var(--btn-height);
    border: 1px solid var(--main-color);
    text-align: center;
    transition: .3s ease-out;
    z-index: 10;
}
/* .btn-nolink {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
    max-width: var(--btn-width);
    width: 35%;
    max-height: var(--btn-height);
    height: 25%;
    border-radius: 100vmax;
    transition: .3s ease-out;
    z-index: 10;
} */
.btn02 {
    border-color: #fff;
}

.btn01 a, .btn02 a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    color: var(--main-color);
    transition: .3s ease-out;

    &::before, &::after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 1em;
        height: 1px;
        transition: .3s;
        z-index: 10;
    }

    &::before {
        right: 0em;
        background: var(--main-color);
    }
    &::after {
        right: -1em;
        background: var(--main-color);
    }
}
.btn02 a { 
    color: #fff;

    &::before {
        content: "";
        background: #fff;
    }
    &::after {
        content: "";
        background: #fff;
    }
}

button.ex-link {
    margin-bottom: .5rem;
}
.ex-link a[target="_blank"] span {
    position: relative;

    &::after {
        content: "";
        display: inline-block;
        width: 12.5px;
        height: 12.5px;
        aspect-ratio: 1;
        background: url(../img/icon-link-mc.png) center no-repeat;
        background-size: contain;
        z-index: 10;
        margin-left: .3em;
        margin-bottom: -2px;
    }
}

/* TOPのsection設定 */
.sec-wrap {
    position: relative;
    width: 85%;
    max-width: 1100px;
    margin-inline: auto;
}
.fade-in-up {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}
.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* 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;
} */
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;
}

:root {
    --main-color: #137BCA;
    --sub-color: #333;
    --normal-color: #000;
    --bg-color: #FAFAFA;

    --btn-width: 215px;
    --btn-height: 56px;

    --font-ja: "Castoro", serif;
    --font-fa: "Font Awesome 7 Free";
}
.main-color { color: var(--main-color);}
.sub-color { color: var(--sub-color);}

/* TOP */
#maintop {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;

    &::after {
        content: "";
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background: rgba(14, 55, 87, 0.6);
    }
}

.main-txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    font-family: var(--font-ja);
    font-size: clamp(28px,5vw,53px);
    color: #fff;
    letter-spacing: 0.1em;
    text-align: center;
    z-index: 10;
}

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

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

#maintop img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: top;
}


/* sec01 */
#sec01 {
    color: #fff;
    text-align: center;
    padding: 8rem 0;

    &::before {
        content: "";
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background: url(../img/sec01-bg.jpg) center no-repeat;
        background-size: cover;
        z-index: -1;
    }
}
.sec01-txt {
    font-size: 31px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.8;
    margin-bottom: 2em;
}
#sec01 p {
    line-height: 2;
}

.sec-txt {
    position: relative;
    font-family: var(--font-ja);
    line-height: 1;
    z-index: 20;
}
.sec-txt01 {
    top: -5vw;
    width: 100vw;
    color: #fff;
    font-size: 13vw;
    text-align: center;
    mix-blend-mode: overlay;
    margin-bottom: -13vw;
    text-wrap: nowrap;
    margin-inline: auto;
}


/* sec02 */
#sec02 {
    padding: 10vw 0 2.5rem 0;

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vw;
        background: url(../img/bg01.png) top center no-repeat;
        background-size: contain;
        z-index: -10;
    }
}

.sec02-wrap {
    /* max-width: 1100px;
    margin-inline: auto; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 2rem; */
}
.sec02-txt {
    max-width: 550px;
    /* padding-left: 2rem; */
    padding-right: 3rem;
}
.sec02-img {
    max-width: 710px;
}

/* sec03 */
#sec03 {
    padding: 9vw 0 5rem 0;
}
#sec03 h2 { margin: 0;}
.sec03-tit {
    position: relative;
    margin-bottom: 3.5rem;
}
.sec-txt02 {
    position: absolute;
    left: 23vw;
    bottom: -0.5rem;
    max-width: 915px;
    font-size: clamp(72px,11vw,150px);
    color: #E4E4E4;
    text-wrap: nowrap;
    text-align: right;
}

.sec03-wrap {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1.5rem;
}
.sec03-wrap .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    color: #fff;
    padding: 1.5rem;

    h3 { 
        color: #fff;
        text-align: center;
        letter-spacing: 0.1em;
        /* margin: 0; */
    }
}
.sec03-wrap .item01 {
    background: url(../img/sec03-img01.jpg) center no-repeat;
    background-size: cover;
}
.sec03-wrap .item02 {
    background: url(../img/sec03-img02.jpg) center no-repeat;
    background-size: cover;
}
.btn02 {
    min-height: var(--btn-height);
    margin-bottom: 2rem;
}
.sec03-txt {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    backdrop-filter: blur(0px);
    border-radius: 16px;
    transition: .3s;
}
.sec03-txt.is-blurred {
    backdrop-filter: blur(16px);
}
.sec03-wrap p { margin: 0;}


/* sec04 */
.sec-txt03 {
    max-width: 1300px;
    margin-inline: auto;
    font-size: clamp(72px, 11vw, 150px);
    color: #E4E4E4;
    text-wrap: nowrap;
    padding-left: 7%;
}

#sec04 {
    padding: 2.5rem 0;
}
.sec04-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec04-txt {
    padding-left: 4rem;
    padding-right: 2rem;
    width: 50vw;
}
.sec04-txt p {
    line-height: 2;
}
.sec04-img {
    max-width: 800px;
    width: 100vw;
}


/* sec05 */
.bg {
    position: relative;

    &::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3.5rem;
        width: 100vw;
        height: 100%;
        background: url(../img/bg02.png) top center no-repeat;
        background-size: cover;
        z-index: -1;
    }
}

#sec05 {
    padding-top: 0rem;
}
#sec05 .sec-wrap {
    max-width: 950px;
}
#sec05 h2 { 
    text-align: center;
    margin-bottom: calc(4rem - 1.5rem);
}
.sec-txt04 {
    color: #fff;
    font-size: clamp(72px, 11vw, 150px);
    text-align: center;
}

.news-wrap { 
    width: 100%;
    margin-inline: auto;
    margin-bottom: 4rem;
}

.news-list {
    list-style: none;
    padding-left: 0;
}

.news-list li {
    position: relative;
    width: 100%;
    transition: .3s;
    border-bottom: 1px solid #B7B7B7;
}

.news-list li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    height: 100%;
    cursor: pointer;
    font-size: 18px;
    transition: .3s ease-out;
    padding: 1.5rem 0;

    time {
        display: block;
        width: 6em;
        font-size: 18px;
        color: var(--main-color);
    }
}

.news-list li a .news-txt {
    position: relative;
    width: 100%;
}
.news-list li a .txt {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.block-center {
    display: flex;
    justify-content: center;
}


/* フッター*/
footer {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 1rem;
    background: #000;
    color: #fff;
    z-index: 10;    
}
footer > * {
    max-width: 1100px;
    width: 85%;
    margin-inline: auto;
}
.ft-wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1100px;
    margin-bottom: .5rem;
    padding: 2.5rem 0 2rem;
}
.ft-logo {
    margin-bottom: 2rem;

    img {
        max-width: 330px;
        width: 100%;
        object-fit: contain;
    }
}

.ft-address { 
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
}
.ft-address a { color: #fff !important;}

.ft-link {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 2rem;
    z-index: 20;
}
.ft-link ul {
    position: relative;
    list-style: none;
    padding-left: 0;
    font-size: 16px;  
}
.ft-m-box {
    font-size: 16px;

    li {
        position: relative;
        padding-left: .5em;
        margin-bottom: .5em;

        & > a { 
            position: relative;
            display: block;
            width: 100%;
            height: auto;
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            text-wrap: nowrap;
        }

        &::before {
            content: "";
            position: absolute;
            top: .6em;
            left: 0;
            width: .25em;
            height: 1px;
            background: rgba(255,255,255,0.6);
            z-index: 1;
        }
    }
}
.ft-flex {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
}
.ft-tit { 
    font-size: 16px;
    margin-bottom: .5rem;
}
.ft-menu a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #147BCA;
}
.ft-menu > li { 
    margin-bottom: 1rem;
}

.cr {
    font-size: 14px;
    font-weight: 300;
}

/* --------------------------------------------
    other page
-------------------------------------------- */
#cpage {
    font-size: 16px;
}
.sec-inline { 
    padding-inline: 50px;
    box-sizing: content-box;
    container-type: inline-size;
    max-width: 1100px;
    margin-inline: auto;
}
#cpage .sec-inline {
    margin-bottom: auto;
    padding-top: 0;
    padding-bottom: 0;
}
#cpage .table>:not(caption)>*>* {
    border-width: 1px;
    border-color: #000;
}


#cpage .sec-inline > div {
    position: relative;
    background: none;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
#cpage .sec-inline > div:first-child {
    padding-top: 6rem;
}
#cpage .sec-inline > div::before {
    content: "";
    width: 100vw;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-position: center;
    z-index: -1;
}
#cpage .sec-inline > div:first-child::before {
    height: 5rem;
    background: url(../img/cp-bg.png) top center no-repeat;
    background-size: cover;
}
#cpage .sec-inline > div:first-child::after {
    content: "";
    width: 100vw;
    height: calc(100% - 5rem);
    display: block;
    position: absolute;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%);
    background: #00000005;
    z-index: -1;
}
#cpage .sec-inline > div:nth-child(odd):not(:first-child)::before {
    background: var(--bg-color);
}
/* #cpage .sec-inline > div a { 
    color: #fff;
    text-decoration: underline;
} */
#cpage .sec-inline > div .news-list a {
    text-decoration: none;
}

#cpage .sec-inline > div:nth-child(even)::before {
    background: #FFF;
}
/* #cpage .sec-inline > div a {
    color: var(--main-color);
    text-decoration: underline;
} */
/* #cpage .sec-inline > div button a {
    color: #000;
    text-decoration: none;
} */


/* .breadcrumb {
    display: block;
    margin-top: 5px;
    margin-bottom: 4rem;
    margin-inline: auto !important;
    padding: 0 !important;
}
.breadcrumb ul {
    list-style: none;
    display: block;
    position: relative;
    width: 85%;
    max-width: 1100px;
    margin-inline: auto!important;
    padding-left: 0;
}
.breadcrumb ul li {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: var(--normal-color);
    letter-spacing: 0.02em;
    margin: 0;
    padding: 0!important;
}
.breadcrumb ul li span > span {
    display: inline-block;
}
.breadcrumb ul li span > img, .breadcrumb ul img { 
    width: 1em;
    height: 1em;
    object-fit: contain;
    margin: 0;
}
.breadcrumb ul li a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #ACACAC;
}

.breadcrumb ul li span > span:last-child {
    max-width: 15em;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: bottom;
} */


/*--- 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: 110px;
    margin-top: -110px;
}
.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;
    /* width: 100%; */
    max-height: 365px;
    overflow: hidden;
}
.full-map iframe {
    width: 100%;
    height: 685px;
    margin-top: -150px;
}
.map-img{
    object-fit: contain;
}

.about-list {
    width: 100%;
    margin-bottom: 2rem;
}
.about-list th, .about-list td {
    padding: 1rem;
    border-bottom: 1px solid #DBDBDB;
    margin-bottom: 0;
}
.about-list tr:last-child th, .about-list tr:last-child td {
    border-bottom: none;
}
.about-list th {
    /* width: 80%; */
    width: 15em;
    padding: 1rem;
    font-weight: 500;
}

.bg-wrap {
    /* color: #000; */
    padding: 1.5rem 1rem;
    background: #5d5d5d;
    margin-bottom: 2rem;
}
.about-tbl {
    width: 100%;
    margin-bottom: 2rem;

    th, td {
        vertical-align: top;
        padding: 1rem;
        font-weight: 400;
        line-height: 1.8;
    }
    /* tr:first-child th, tr:first-child td {
        border-top: 1px solid #DBDBDB;
    } */
    tr:not(:last-child) th, tr:not(:last-child) td {
        border-bottom: 1px solid #DBDBDB;
    }
}
.about-tbl ul {
    list-style: none;
    padding: 0;
}
.about-tbl ul li {
    line-height: 2;
}

.about-flex {
    display: flex;
    /* justify-content: space-between; */
}
.about-flex .item {
    /* width: calc(100% / 3 - 1rem); */
    padding: 1rem;
    /* border: 1px solid #fff; */

    img {
        width: 100%;
        max-height: 210px;
        object-fit: contain;
        margin-inline: auto;
    }
}

.pnavi {
    text-align: center;
    margin-top: 2rem;
}
.pnavi span { color: var(--main-color);}
.pnavi span, .pnavi a {
    font-size: 16px;
    padding: 10px 10px;
    border: 1px solid var(--main-color);
    transition: .3s ease-out;
}
#cpage .sec-inline > div .pnavi a {
    color: #fff;
    text-decoration: none;
    background: var(--main-color);
}

#cpage .sec-inline > div .pnavi a svg {
    width: 1em;
    height: 1em;
    stroke: #fff;
    stroke-width: 1px;
    fill: none;
    margin-bottom: 3px;
    transition: .3s;
}
#cpage .sec-inline > div .pnavi a svg.rev {
    transform: rotateZ(180deg);
}

.list1 {
    li { 
        margin-bottom: 1rem;
        padding-right: 1em;
        font-weight: 500;
    }
}
.list1 .small-txt {
    font-size: .9em;
    font-weight: 400;
}
.list2 {
    column-count: 2;
    margin-top: 1rem;
    padding-left: 1em;

    li { 
        margin-bottom: 1rem;
        padding-right: 1em;
    }
}

.plan-list {
    width: 100%;
    min-width: 650px;
}
.plan-list {
    border: 1px solid #DBDBDB;
}
.plan-list th, .plan-list td {
    text-align: center;
    padding: 1rem;
}
.plan-list th {
    font-weight: 500;
    color: var(--main-color);
    border-bottom: 1px solid #DBDBDB;
}
.plan-list thead th:not(:last-child), .plan-list tbody td:not(:last-child), .plan-list tbody th {
    border-right: 1px solid #DBDBDB;
}

.merit-box {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
}
.merit-box .item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 1rem;
    max-width: 400px;
    width: 100%;
    margin-inline: auto;
    padding: 1.5rem 1rem;
    border: 1px solid var(--main-color);
    background: #fff;
}
.merit-box .tit-wrap {
    display: grid;
    align-content: stretch;
}
.merit-box .num-wrap {
    color: var(--main-color);
    text-align: center;
    line-height: 1.2;
}
.merit-box .merit {
    font-size: 12px;
}
.merit-box .num {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: .5rem;
}
.merit-box .tit {
    font-size: 21px;
    font-weight: 500;
    text-align: center;
    color: var(--main-color);
    line-height: 1.5;
    /* margin-bottom: 1rem; */
}

.flow {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 5%;
    margin-bottom: 1.5rem;
}
.flow .num-wrap {
    border: 1px solid var(--main-color);
    padding: 1rem .5rem;
    background: #fff;
}
.flow .item {
    position: relative;
    max-width: 350px;
    width: 100%;
    color: var(--main-color);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    margin-inline: auto;
}
.flow .item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -50%;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background: var(--main-color);
    z-index: -1;
}

.lcc-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.lcc-list .item {
    text-align: center;
    border: 1px solid var(--main-color);
    padding: 1.5rem 1rem;
    background: #fff;
}
.lcc-list .item03 {
    grid-area: 2 / 1 / 3 / 3;
}
.lcc-list .tit {
    font-size: 21px;
    font-weight: 500;
    color: var(--main-color);
    margin-bottom: 1rem;
}
.lcc-list .name {
    color: var(--main-color);
    margin-bottom: .5rem;
}
.lcc-list .count .wrap {
    position: relative;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    gap: .5em;
    max-width: 150px;
    width: 100%;
    margin-bottom: .25rem;
    overflow: hidden;
    background: #fff;
    z-index: 10;
    margin-inline: auto;

    &::after {
        content: "";
        flex-grow: 1;
        border-bottom: 3px dotted var(--normal-color);
        order: 1;
    }
}
.lcc-list .count .rank, .lcc-list .count .num {
    background: #fff;
}
.lcc-list .count .num {
    order: 2;
}
.lcc-list .item-flex {
    display: flex;
    justify-content: center;
    row-gap: 1.5rem;
}
.lcc-list .item-flex .box {
    position: relative;
    flex: 1;
    padding: 0 .5rem;

    &:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 100%;
        background: var(--main-color);
    }
}

.prod-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
}
.prod-list .item {
    display: grid;
    border: 1px solid var(--main-color);
}
.prod-list .item a {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    
    width: 100%;
    height: 100%;
    font-weight: 500;
    color: var(--normal-color);
    text-align: center;
    padding: 1.5rem;
}
.prod-list .item figure {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    margin-bottom: 1rem;
    min-width: 0;
}
.prod-list .item figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    flex-shrink: 1;
}
.prod-list .item .name {
    position: relative;

    &::after {
        content: "";
        display: inline-block;
        width: 12.5px;
        height: 12.5px;
        aspect-ratio: 1;
        background: url(../img/icon-link.png) center no-repeat;
        background-size: contain;
        margin-left: .3em;
    }
}

@media (min-width: 1300px) {
    .sec-inline-start, .sec-inline-end {
        padding: 0;
    }
    .sec04-txt { width: auto;}
    /* .sec-txt03 { padding-left: 2rem;} */
}
@media (max-width: 991px) {
    .h-logo .brand { 
        max-width: none;
        width: 180px;
    }
    .nosc #head { width: 100%;}
    /* .nosc .h-logo .brand { display: none;} */
    /* .openbtn { 
        height: calc(100% + 2px);
        top: -1px;
        right: -1px;
    } */
    .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;
    }

    .drop-menu.act {
        opacity: 0;
        visibility: hidden;
    }

    #sec04 { padding-top: 0;}
    .sec04-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
    .sec04-txt { width: auto;}
    .sec04-txt {
        padding-left: 7.5%;
        padding-right: 0;
    }
    .sec04-img {
        width: 107.5%;
        transform: translateX(-7.5%);
        margin-bottom: 1rem;
    }

    .flow .tit { font-size: 18px;}

    .ft-wrap {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* .prod-list {
        grid-template-columns: repeat(3,1fr);
    } */
}
/* SPサイズ */
@media (max-width: 767px) {
    /* 基礎設定 */
    html, body { 
        /* overflow-x: hidden; */
        font-size: 16px;
    }
    .h-logo { left: 1.5rem;}
    #head { height: 65px;}
    a.anchorpoint {
        padding-top: 110px;
        margin-top: -110px;
    }
    
    /* .openbtn { right: 1rem;} */
    h1 { font-size: 26px; }
    h2 { font-size: 24px; }
    .top-page h2 {
        font-size: 30px;
    }
    h3 { font-size: 22px; }
    .top-page h3 {
        font-size: 25px;
    }
    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: calc(40px + 1rem) 0 calc(40px + 1rem);}

    /* .drop-menu { top: 60px;} */
    
    #clickarea.panelactive .click-list { width: 100%;}
    #clickarea { 
        top: 60px;
        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 { 
        padding-top: 10rem;
        margin-bottom: 3rem;
    }
    #titbar h1 { font-size: 26px;}

    /* TOP */

    #sec02 {
        padding-top: 15vw;

        &::before {
            width: 185vw;
            height: 185vw;
        }
    }
    .sec02-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
    .sec02-txt {
        max-width: none;
        width: 100%;
        padding-left: 0;
        padding-right: 7.5%;
    }
    .sec02-img {
        width: calc(100% + 8.5%);
        margin-bottom: 1rem;
    }

    .sec03-wrap {
        grid-template-columns: auto;
    }

    .sec-txt02 {
        left: auto;
        right: 0;
        font-size: clamp(55px, 10vw, 150px);
    }

    

    .bg {
        &::after {
            height: 100%;
            background-position: top center;
            background-size: cover;
        }
    }

    .news-list li a {
        display: block;
    }
    .news-list li a .txt {
        font-size: 16px;
        -webkit-line-clamp: 2;
    }
    .news-wrap { 
        display: block;
    }
    .news-list li a {
        time {
            display: block;
            margin-bottom: .5rem;
        }
    }

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


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

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

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

    .merit-box, .flow {
        grid-template-columns: auto;
    }
    .flow { gap: 1.5rem;}
    .flow .num { font-size: 24px;}

    .flow .item:not(:last-child)::after {
        width: 2px;
        height: 100%;
        top: auto;
        left: 50%;
        right: auto;
        bottom: -100%;
        transform: translateX(-50%);
    }

    .prod-list {
        grid-template-columns: repeat(2,1fr);
    }

    .lcc-list .item-flex .box {
        &:not(:last-child)::after {
            content: none;
        }
    }
}

@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 { max-width: none;}
    /* .top-page main {
        margin-top: 75px;
    } */

    .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;
    }

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

    #maintop, #maintop img { 
        height: 100svh;
    }

    #sec01 {
        padding: 4rem 0;
    }
    .sec01-txt {
        font-size: 24px;
    }

    .sec-txt02 {
        top: -0.6em;
        left: 0;
        bottom: auto;
        font-size: 13vw;
        text-align: left;
        z-index: -1;
    }

    #sec03 { padding-bottom: 3rem;}

    .sec03-tit {
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }

    .sec03-wrap .item {
        padding: 2rem 1rem;
    }
    /* .sec03-txt { padding: 0;}
    .sec03-txt p { display: none;}
    .btn02 { margin-bottom: 0;} */

    .sec-txt03 {
        font-size: 13vw;
        padding-left: 7%;
        transform: translateY(0.4em);
        z-index: -1;
    }

    .sec-txt04 {
        font-size: 13vw;
        margin-bottom: -1.25rem;
        z-index: -1;
    }

    .ft-wrap {
        gap: 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-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .ft-list {
        align-items: flex-start;
        flex-direction: column-reverse;
        gap: .5rem;

        li {
            width: 100%;

            &:not(:first-child)::before {
                content: none;
            }
        }
    }

    #cpage .sec-inline > div:first-child::before {
        background: url(../img/cp-bg-sp.png) top center no-repeat;
        background-size: cover;
    }

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

    .about-list dt, .about-list dd {
        width: 100%;
    }
    .about-list dt {
        font-size: 16px;
        border-bottom: none;
        padding-bottom: 0.5rem;
    }
    .about-list dd {
        padding-top: 0;
    }
    .about-list dd {
        font-size: 14px;
    }
    

    .about-tbl {
        th, td {
            display: block;
            padding: 0rem .5rem;
        }
        tr:not(:first-child) th {
            padding-top: 1rem;
         }
        tr:not(:last-child) th {
            border-bottom: none;
        }
        tr:first-child td {
            border-top: none;
        }
        th { 
            font-size: 18px;
            padding-bottom: 1rem;
        }
        td {
            font-size: 14px;
            border-top: none;
            padding-bottom: 1rem;
            line-height: 1.8;
        }
    }
    .about-tbl ul li {
        margin-bottom: .5rem;
    }

    .list2 { column-count: 1;}

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

    /* .cr { text-align: center;} */

    .lcc-list { grid-template-columns: auto;}
    .lcc-list .item03 { grid-area: auto;}

    .prod-list { gap: 1rem;}
    .prod-list .item a { 
        font-size: 14px;
        padding: 1rem;
    }
}

@media (any-hover: hover) {
    .menu-list ul li:hover ,.menu-list ul li a:hover, .drop-menu a:hover, .click-menu  a:hover, .prod-list .item a:hover {
        color: var(--main-color);
    }

    .drop-set:hover {
        &::after {
            content: "";
            background: url(../img/icon-down-color.png) center no-repeat;
            background-size: contain;
        }
    }

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

    .ex-link a[target="_blank"]:hover span {

        &::after {
            filter: brightness(1);
        }
    }

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

    .btn01:hover, a:hover .btn-nolink, a:hover .arrow::before {
        background: var(--main-color);
    }
    .btn01:hover a { 
        color: #fff;

        &::before {
            content: "";
            background: #fff;
        }
    }
    .btn02:hover {
        background: #fff;
    } 
    .btn02:hover a { 
        color: var(--normal-color);

        &::before {
            content: "";
            background: var(--normal-color);
        }
    }

    .news-list a:hover, .ft-menu a:hover { opacity: .5;}

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

    .ex-link a[target="_blank"]:hover span {
        &::after {
            filter: brightness(0) invert(1);
        }
    }

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