@charset "UTF-8";
/* 基礎設定 */
html, body {
    font-size: 16px;
    line-height: 1.8;
    font-family: "Poppins", "Noto Sans JP", sans-serif;
    position: relative;
    font-weight: 400;
    margin: 0;
    padding: 0;
    width: 100%;
    letter-spacing: 0.1em;
    /* background: #fff; */
    scroll-behavior: auto!important;
    overflow-x: hidden;
    animation: fadeIn 1s;

    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
}
body.top-page::before {
    content: "";
    position: fixed;
    top: 50%;
    right: -5%;
    width: 55vw;
    height: 75%;
    background-image: url(../img/main-img.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    transform: translateY(-50%);
}
/* 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}
}
.txt-ja, span[lang='ja']{ font-family: "Noto Sans JP", sans-serif;}
.txt-en, span[lang='en'] { font-family: "Poppins", sans-serif;}
.top-page section:not(#sec07) h2::first-letter {
    color: #2CD2D2;
    -webkit-text-stroke: 0.5px;
    font-family: "Cabin Sketch", sans-serif;
    font-size: 1.1em;
}
.top-page section#sec07 h2::first-letter {
    -webkit-text-stroke: 0.5px;
    font-family: "Cabin Sketch", sans-serif;
    font-size: 1.1em;
}
/* html{ height: -webkit-fill-available;} */
/* html.nosc,body.nosc{
	overflow: hidden;
    overflow-x: scroll;
    overflow-y: auto;
} */
.color-red { color: #E00A16;} 
.color-blue { color: #B5E8FF;}
.color-lblue { color: #EFF3F7;}
.color-wh{ color: #fff;}
.color-gr { color: #D6F0A8;}
.color-dgr { color: #2C4F51;}
.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-gy{ color: #FAF9F4;}
.color-bw{ color: #4D0001;}
.color-bk{ color: #000;}

.bg-red { background: #E00A16;}
.bg-pn { background: #FCDBE4;}
.bg-blue { background: #B5E8FF;}
.bg-lblue { background: #EFF3F7;}
.bg-gr { background: #D6F0A8;}
.bg-dgr { background: #2C4F51;}
.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: #F4F4F4;}
.bg-bw { background: #4D0001;}

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

h1, h2, h3, h4, h5, h6 {
    color: #000;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.025em;
    margin: 0 auto 1.5rem;
    padding: 0;
}
h1 { font-size: 36px;}
h2 { font-size: 32px;}
h3 { font-size: 29px;}
h4 { font-size: 25px;}
h5 { font-size: 21px;}
h6 { font-size: 18px;}

.tit-line { 
    position: relative;
    display: inline-block;
    padding: 0.2rem 0;
    border-bottom: 6px solid #000;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
}
.line-wrap { margin-bottom: 3rem;}
.line-wrap .tit-line {
    display: inline;
    line-height: 2;
}
.tit-bg {
    position: relative;
    display: inline-block;
    color: #000;
    z-index: 10;
}
.member .tit-bg { margin-bottom: 3rem;}
.tit-bg::after {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-image: url(../img/tit-bg.png);
    background-size: 150% 70%;
    background-position: left;
    background-repeat: repeat-x;
    z-index: -1;
}
.tit-point {
    display: flex;
    align-items: center;
}
.tit-point::before {
    content: "・";
    font-size: 0.5em;
    font-weight: 700;
    padding-right: 0.5em;
    color: #000;
}
.tit-color {
    color: #2CD2D2;
}
.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: 15px;
}
.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); }

.flex-dl { display: flex; margin: 0 auto 10px; }
.flex-dl:last-of-type { margin-bottom: 1em; }
.flex-dl dt { width: 4em; margin-right: 1.5em; }
.flex-dl dd { flex: 1; margin-bottom: 0; }

hr { 
    margin: 5rem 0;
    border-top: 1px solid #C1C1C1;
}

p {
    margin: 0 auto 1.5em;
    padding: 0;
    line-height: 1.8;
    letter-spacing: 0.1em;
}
a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

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);
}
.sec-inline-end {
    padding-inline-end: calc((100vw - 1000px) / 2);
}
.container-fluid{ padding: 0;}
a:link,a:visited,a:hover,a:active{
    text-decoration: none;
}

ul {
    margin-bottom: 0;
}
ol li { margin-bottom: 0.5rem;}

/* リキャプチャ非表示用（別途フォームに注記必要） */
.recaptcha_policy {
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 11px !important;
    color: #444 !important;
}
.recaptcha_policy a {
    font-size: 11px !important;
    color: #111 !important;
}
.grecaptcha-badge { visibility: hidden; }

/* ナビゲーション */
#head { 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 999;
    transition: 0.4s ease;
    /* background: #fff; 
    filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16)); */
    background: rgba(255, 255, 255, 0.95);
}
#head h1 { margin: 0}
/* #head.dnone, #cpage #head { 
    background: #fff; 
    filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
} */
body.nosc #head { 
    background: rgba(255, 255, 255, 1);
}
/* body.nosc .nav-menu { background: #fff; } */
.h-logo .brand {
    max-width: 36px;
}
.h-logo .br-name {
    max-width: 385px;
    width: 100%;
}
.h-logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}


.h-logo { 
    position: relative;
    display: flex;
    align-items: center;
    line-height: 1;
    height: 100%;
    left: 1.5rem;
}
.nosc .menu-list {
    display: none !important;
}
.menu-wrap { 
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    height: 100%;
}
.menu-list { 
    position: relative;
    right: 1.5rem;
}
.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;
}
.menu-list > ul > li > a {
    position: relative;
    display: block;
    color: #333;
    font-size: 14px;
    letter-spacing: 0.1em;
}
.menu-list > ul > li > a::after, .click-list > ul > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: #2CD2D2;
    transition: 0.2s;
}
.menu-list > ul > li > a:hover::after, .click-list > ul > li > a:hover::after {
    width: 100%;
    transform: scaleX(1);
}
.menu-list > ul li img {
    max-width: 36px;
}
.nav-menu ul { 
    position: relative;
    margin-bottom: 0;
}
.nav-menu ul li { 
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.click-link {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

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

    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline: auto;
}

#clickarea .click-list {
    padding-top: 5vw;
    padding-left: 5rem;
    padding-right: 5rem;
    padding-bottom: 40vw;
}
.click-list > ul { 
    padding: 0;
    list-style: none;
    margin-bottom: 0;
}
.click-list > ul > li {
    opacity: 0;
    transform: translateY(70px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1rem;
    transition: 1.4s;
}
#clickarea.panelactive .click-list > ul > li {
    opacity: 1;
    transform: translateY(0px);
}
.click-list > ul > li > a {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
    color: #333;
    font-size: 28px;
}

/* アップボタン */
.reverse {
    position: fixed;
    right: 5%;
    bottom: 25px;
    width: 40px;
    height: 48px;
    z-index: 998;
    cursor: pointer;
    mix-blend-mode: difference;
}
.reverse a {
    display: block;
    text-align: center;
    color: #7e7e7e;
    font-size: 14px;
    letter-spacing: 0.2em;
}
.reverse svg {
    stroke: #7e7e7e;
    width: 1.5em;
    height: 1.5em;
    transform: translateX(-0.15em) translateY(0);
    transition: 0.2s;
}
.reverse:hover svg {
    transform: translateX(-0.15em) translateY(-0.25em);
}


/* ボタン類 */
.btn01 {
    position: relative;
    display: inline-block;
    background: #fff;
    /* border: 1px solid #fff; */
    transition: 0.2s;
    background: #000;
}
.btn01 a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2em;
    padding: 0.75em 3.5em 0.75em 1.5em;
    white-space: nowrap;
    /* color: #000; */
    color: #fff;
    transition: 0.2s;
}
.btn01::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    aspect-ratio: 1;
    height: 0.75em;
    background: #fff;
    clip-path: polygon( 
        0 45%,/*棒線左上*/
        0 55%,/*棒線左下*/
        80% 55%,/*棒線右下*/
        50% 92%,/*矢印下の少し上*/
        55% 100%,/*矢印下*/
        100% 50%,/*矢印真ん中*/
        55% 0%,/*矢印右上*/
        50% 8%,/*矢印右上の少し下*/
        80% 45%/*棒線右上*/
    );
    transition: 0.2s;
}
@media (any-hover: hover) {
    .btn01:hover::before {
        right: 0.9em;
    }
}

/* TOPのsection設定 */
.sec-wrap {
    /* position: relative; */
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}
@media (min-width: 1400px) { 
    .sec-wrap {
        max-width: 1800px;
    }
}
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 */
section#maintop { z-index: auto;}
#maintop {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 0;
}
.main-txt {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #000;
    letter-spacing: 0.1em;
    line-height: 1;
    z-index: 10;
}
.main-txt .m-txt01 {
    display: flex;
    align-items: center;
    font-size: clamp(8.9375rem, 7.0143rem + 4.0119vw, 10.625rem);
    font-weight: 600;
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.m-img {
    display: flex;
    align-items: center;
}
.m-svg svg {
    display: block;
    width: 110px;
}
.main-txt .m-txt01 img { height: 0.75em;}
.main-txt .m-txt02 {
    font-size: clamp(2.6875rem, -0.0905rem + 5.7949vw, 5.125rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 1.4;
}
.m-txt02 .small-txt { font-size: clamp(2.8125rem, 1.0318rem + 3.7147vw, 4.375rem);}
.scroll {
    position: absolute;
    bottom: 11%;
    right: 2%;
    font-size: 13px;
    letter-spacing: 0.1em;
    writing-mode: vertical-lr;
}
.scroll::before {
    content: "";
    position: absolute;
    left: -1%;
    bottom: 0;
    width: 4px;
    height: 30vh;
    background: #000;
}
.hidden {
    opacity: 0;
    pointer-events: none; /* クリックを無効にする */
}

/* sec01 */
#sec01, #sec02 {
    background: linear-gradient(90deg, rgba(255,255,255,1) 55%, rgba(255,255,255,0.8) 100%);
}
#sec01 h2 {
    position: absolute;
    top: 4rem;
    left: -0.23em;
    writing-mode: vertical-lr;
}

.sec-tit {
    position: relative;
    margin-bottom: 4rem;
}
.sec-tit p::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -1em;
    transform: translateX(-50%);
    width: 3em;
    height: 3em;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.sec-tit p { 
    position: relative;
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: auto;
}
.sec-tit p .txt-en { 
    font-size: 14px;
    padding-right: 1.5em;
    font-weight: normal;
}
#sec01 .sec-tit p::before {
    background-image: url(../img/sec01-tit.png);
}

.top-page h2 {
    /* font-size: 120px; */
    font-size: clamp(3.625rem, 1.0491rem + 7.1676vw, 7.5rem);
    line-height: 1;
    letter-spacing: 0.1em;
}
.sec01-box {
    width: 70%;
    margin: 0 auto;
}
.sec01-txt {
    font-weight: 700;
    line-height: 2;
    margin-bottom: 4rem;
}
.s01-txt01 {
    position: relative;
    display: inline;
    font-size: 36px;    
    background-image: linear-gradient(to right, #6FE8ED ,#6FE8ED);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0% 10px;
    transition: .4s;
    letter-spacing: 0.2em;
    font-weight: 600;
}
.about-tit {
    letter-spacing: 0.2em;
    font-weight: 600;
}
.s01-txt01.vsb-bb {
    background-size: 100% 10px;
}
.s01-txt02 {
    margin-top: 2rem;
    margin-bottom: 4rem;
}
.s01-txt03, .s01-txt04 { margin-bottom: 2rem;}

.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s ease;
}
.fade-up.js-add-fade {
    opacity: 1;
    transform: translateY(0);
}

/* sec02 */
.sec02-box {
    width: 70%;
    margin: 0 auto;
}
.sec02-box .sec-tit { margin-bottom: calc(2rem + clamp(3.625rem, 1.0491rem + 3.1676vw, 7.5rem) + 6rem);}
#sec02 h2 {
    position: absolute;
    top: 8rem;
    left: -0.1em;
}
#sec02 .sec-tit p::before {
    background-image: url(../img/sec02-tit.png);
}
.sec02-flex {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 4em;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    border-right: 1px solid #000; */

    /* display: flex;
    justify-content: space-between;
    align-items: center; */
    width: 100%;
    margin: 0 auto;
    border: 1px solid #000;
}
.sec02-flex .sec02-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1rem;
    background: #fff;
    text-align: center;
    line-height: 1.4;
}
.sec02-flex .sec02-item:not(:first-child) {
    border-left: 1px solid #000;
}
.sec02-flex .sec02-item img {
    max-height: 180px;
    object-fit: contain;
}
.tit-bb {
    position: relative;
    font-size: clamp(0.95rem, 0.3214rem + 1.1547vw, 1.1875rem);
    font-weight: bold;
    text-wrap: nowrap;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}
.tit-bb::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1em;
    height: 1px;
    background: #000;
}
/* .s02-item01 { grid-area: 1 / 1 / 2 / 2; }
.s02-item02 { grid-area: 1 / 2 / 2 / 3; }
.s02-item03 { grid-area: 1 / 3 / 2 / 4; } */
.max-link { 
    position: relative;
    /* grid-area: 2 / 1 / 3 / 4; */
    text-align: center;
    background: #000;
    padding: 0;
}
.max-link a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 16px;
    letter-spacing: 0.2em;
    font-weight: bold;
    color: #fff;
    padding: 1rem 0;
}
.max-link span { position: relative;}
.max-link span::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -2em;
    transform: translateY(-50%);
    aspect-ratio: 1;
    height: 0.75em;
    background: #fff;
    clip-path: polygon( 
        0 45%,/*棒線左上*/
        0 55%,/*棒線左下*/
        80% 55%,/*棒線右下*/
        50% 92%,/*矢印下の少し上*/
        55% 100%,/*矢印下*/
        100% 50%,/*矢印真ん中*/
        55% 0%,/*矢印右上*/
        50% 8%,/*矢印右上の少し下*/
        80% 45%/*棒線右上*/
    );
    transition: 0.2s;
}
@media (any-hover: hover) {
    .max-link:hover span::before {
        right: -2.1em;
    }
}


/* sec03 */
.top-page section:not(#sec01,#sec02,#sec07) { background: #fff;}
#sec03 .sec-tit {
    text-align: right;
    margin-bottom: calc(2rem + clamp(3.625rem, 1.0491rem + 3.1676vw, 7.5rem) + 6rem);
}
#sec03 .sec-tit p::before {
    background-image: url(../img/sec03-tit.png);
    width: 3em;
    height: 5em;
}
#sec04 .sec-tit p::before {
    width: 3.5em;
    height: 6em;
}
#sec03 h2 {
    position: absolute;
    top: 8rem;
    right: -0.15em;
}

.work-box {
    /* display: flex;
    align-items: stretch; */
    /* margin-bottom: 3rem; */

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}
.work-item {
    padding: 0 0.5rem;
    margin-bottom: 3rem;
}
.work-item:not(:nth-child(3n + 1)) { border-left: 0.5px solid #000;}
.work-item a {
    display: block;
    width: 100%;
    height: 100%;
    color: #000;
    display: grid;
    grid-template-rows: 1fr 0.1fr;
}
.work-txt p {
    font-weight: bold;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 0.5rem;
}
.work-img {
    clip-path: polygon(7.5% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 10%);
    margin-bottom: 1rem;
    overflow: hidden;
}
.work-img img {
    width: 100%;
    aspect-ratio: 15/9;
    object-fit: cover;
    transition: 0.2s;
}
@media (any-hover: hover) {
    .work-item a:hover .work-img img {
        scale: 1.1;
    }
}
.work-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.work-tag .tag {
    position: relative;
    display: block;
    font-size: 13px;
    letter-spacing: 0.1em;
    background: #6FE8ED;
    padding: 0.25rem 0.5rem;
    text-wrap: nowrap;
}
.work-tag .tag a { color: #000;}
.work-tag .tag::before {
    content: "#";
    /* margin: 0 0.1em; */
}
.work-area {
    width: calc(100% - 2em);
    margin-inline: auto;
}
.work-day {
    font-size: 12px;
    color: #A0A0A0;
    line-height: 1;
}

/* sec04 */

#sec04 {
    max-height: 900px;
    /* min-height: 70vw; */
    height: calc(100vh + clamp(3.625rem, 1.0491rem + 7.1676vw, 7.5rem));
}
@media (min-width: 1400px) { 
    #sec04 {
        /* min-height: 70vw; */
        height: calc(100vh + clamp(3.625rem, 1.0491rem + 7.1676vw, 400px));
    }
}
@media (max-width: 991px) { 
    #sec04 {
        height: calc(90vh + clamp(3.625rem, 1.0491rem + 7.1676vw, 7.5rem));
    }
}
#sec04 h2 {
    position: absolute;
    top: 0;
    right: -0.19em;
    writing-mode: vertical-lr;
    text-wrap: nowrap;
}
#sec04 .sec-tit p::before {
    background-image: url(../img/sec04-tit.png);
}
.news-box { 
    width: calc(100% - 120px - 1rem);
    margin-bottom: 4rem;
}
#cpage .news-box { 
    width: 100%;
}
.news-box a dt {
    font-size: 14px;
    color: #A0A0A0;
    font-weight: normal;
}
.news-box a dd {
    width: calc(100% - 2em);
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #000;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.news-box .news-item {
    padding: 1rem 0;
    border-bottom: 0.5px solid #000;
}
.news-box .news-item a { 
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.news-box .news-item a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 2em;
    aspect-ratio: 1;
    border-radius: 100vmax;
    border: 0.5px solid #000;
    transition: 0.2s;
}
.news-box .news-item a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0.5em;
    transform: translateY(-50%);
    height: 1em;
    aspect-ratio: 1;
    background: #000;
    clip-path: polygon( 
        0 45%,/*棒線左上*/
        0 50%,/*棒線左下*/
        90% 50%,/*棒線右下*/
        60% 85%,/*矢印下の少し上*/
        65% 90%,/*矢印下*/
        100% 50%,/*矢印真ん中*/
        65% 10%,/*矢印右上*/
        60% 15%,/*矢印右上の少し下*/
        90% 45%/*棒線右上*/
    );
    
}
.news-box .news-item a:hover::before {
    transform: translateY(-50%) scale(1.2);
}

/* sec05 */
#sec05 { 
    padding: 0;
}
.sec05-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}
#sec05::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100px;
    width: 40%;
    height: 100%;
    background-image: url(../img/bg.png);
    background-color: #e6e6e6;
    background-blend-mode: multiply;
    z-index: -1;
    /* opacity: 0.3; */
}
#sec05::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 100%;
    top: 0;
    right: 0;
    background-image: url(../img/sec05-img01.jpg);
    background-color: #E6E6E6;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}
.sec05-wrap a {
    display: block;
    width: 100%;
    height: 100%;
    color: #000;
    height: 55vh;
}
.sec05-txt {
    width: 90%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
}
.sec05-txt p {
    font-weight: 700;
    letter-spacing: 0.2em;
}
hgroup span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.top-page hgroup h2 {
    font-size: 80px;
}
.sec05-wrap a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 7.5em;
    transform: translateY(-50%);
    height: 5em;
    aspect-ratio: 1;
    border-radius: 100vmax;
    background: #fff;
    transition: 0.2s;
}
.sec05-wrap a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8.75em;
    transform: translateY(-50%);
    height: 2.5em;
    width: 2.5em;
    background: #000;
    clip-path: polygon( 
        10% 45%,
        10% 55%,
        85% 55%,
        60% 80%,
        70% 85%,
        100% 50%,
        70% 15%,
        60% 20%,
        85% 45%
    );
    transition: 0.2s;
}
.sec05-wrap a:hover::before {
    transform: translateY(-50%) scale(1.2);
}

/* sec06 */
#sec06 { padding-bottom: 10rem;}
.sec06-wrap {
    display: flex;
}
.sec06-txt { 
    display: flex;
    justify-content: center;
    width: 50%;
    text-wrap: nowrap;
}
.top-page #sec06 hgroup h2 {
    font-size: clamp(3.375rem, 1.523rem + 3.8633vw, 5rem);
}
.local-wrap {
    position: relative;
    width: 50%;
}
.local-wrap a {
    color: #000;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.swiper-img {
    margin-bottom: 0.5rem;
}
.swiper-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1;
}
.swiper-txt {
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.swiper-txt::after {
    content: "\f08e";
    display: inline-block;
    width: 1em;
    padding-left: 0.5em;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.swiper-scrollbar {
    width: 90% !important;
    height: 4px !important;
    background-color: #F0F0F0 !important;
}
.swiper-scrollbar-drag {
    background-color: #000 !important;
}
.swiper-scrollbar {
    bottom: -3rem !important;
    left: 42.5% !important;
    transform: translateX(-50%);
    z-index: -1 !important;
}
.sw-btn {
    position: absolute;
    bottom: -3rem !important;
    right: 5em;
    transform: translateX(-50%);
    background: #fff;
}
.swiper-button-next, .swiper-button-prev {
    height: 1.5em;
    aspect-ratio: 1;
}
.swiper-button-next svg, .swiper-button-prev svg {
    height: 1.5em;
    aspect-ratio: 1;
    stroke: #000;
    transition: 0.2s;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    right: -2em !important;
    left: auto !important;
    background: #fff;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    left: 2.5em !important;
    right: auto !important;
    background: #fff;
}  
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after, .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: "" !important;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled { 
    opacity: 1 !important;
    transition: 0.2s;
}
.swiper-button-next.swiper-button-disabled svg,
.swiper-button-prev.swiper-button-disabled svg {
    stroke: #CCC;
}

/* sec07 */
#sec07 { 
    padding: 0;
}
#sec07::before { 
    /* background-color: #3FA9AD; */
    /* background-image: url(../img/bg.jpg);
    background-blend-mode: multiply; */
}
#sec07::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../img/bg03.png);
    background-size: contain;
    background-repeat: repeat;
    /* opacity: 0.5; */
    background-blend-mode: multiply;
    /* background-color: #3FA9AD; */
}
#sec07 h2 { color: #fff;}
#sec07 h2 {
    font-size: clamp(3.375rem, 1.523rem + 3.8633vw, 5rem);
}
#sec07 a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    height: 55vh;
    color: #fff;
}
#sec07 a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 7.5em;
    transform: translateY(-50%);
    height: 5em;
    aspect-ratio: 1;
    border-radius: 100vmax;
    background: #fff;
    transition: 0.2s;
}
#sec07 a:hover::before {
    transform: translateY(-50%) scale(1.2);
}
#sec07 a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8.75em;
    transform: translateY(-50%);
    height: 2.5em;
    width: 2.5em;
    background: #000;
    clip-path: polygon( 
        10% 45%,/*棒線点A*/
        10% 55%,/*棒線点B*/
        85% 55%,/*棒線点C(点Aの対角)*/
        60% 80%,/*矢印点A*/
        70% 85%,/*矢印点B*/
        100% 50%,/*矢印中央*/
        70% 15%,/*矢印点C*/
        60% 20%,/*矢印点D*/
        85% 45%/*棒線点D(点Bの対角)*/
    );
    transition: 0.2s;
}
.sec07-box {
    display: flex;
    align-items: center; 
    /* flex-wrap: wrap; */
    text-wrap: wrap;
    gap: 3rem;
    /* display: block; */
    width: 80%;
    margin: 0 auto;
    height: 100%;
    font-weight: 700;
}
/* .top-page #sec07 hgroup { padding-top: 5rem;} */

dd { margin-bottom: 0;}

/* table */


/* フッター*/
footer {
    position: relative;
    background: #fff;
    z-index: 10;
}
#cpage footer {
    border-top: 1px solid #C1C1C1;
}
.f-flex {
    display: flex;
    justify-content: center;
    padding: 3rem 0;
}
.f-img {  
    display: flex;
    justify-content: center;
    border-right: 0.5px solid #000;
    /* max-height: 255px;
    max-width: 300px; */
    padding-right: 5rem;
    transition: 0.2s;
}
.f-img-txt {
    height: 25px;
    object-fit: contain;
}
.f-img a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    height: 100%;
}
.f-img:hover {
    opacity: 0.5;
}
.f-logo {
    max-width: 195px;
    width: 70%;
    margin: 0 auto;
}
.f-box {
    padding: 2rem 5rem;
}
.f-menu { 
    display: flex;
    gap: 5rem;
}
.f-link a {
    display: block;
    color: #fff;
}
.f-link-txt {
    display: block;
    line-height: 1;
}
.f-menu ul {
    position: relative;
    list-style: none;
    flex-wrap: wrap;
    padding-left: 0;
    gap: 2em;
}
.f-menu ul li {
    position: relative;
    margin-bottom: 1rem;
}
.f-menu ul li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 15px;
    letter-spacing: 0.15em;
    color: #000;
    font-weight: 300;
}
.f-menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #2CD2D2;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.2s;
}
.f-menu ul li a:hover::after {
    width: 100%;
    transform: scaleX(1);
}
.copy { 
    text-align: center;
    margin-bottom: 0;
    padding: 10px 0;
    font-size: 0.9em;
    color: #fff;
    font-weight: 200;
    background: #000;
}


/* --------------------------------------------
    other page
-------------------------------------------- */
#cpage main { margin-top: 70px;}
#titbar {
    position: relative;
    z-index: 10;
    line-height: 1;
}
#titbar h1 {
    color: #000;
    display: block;
    width: 100%;
    margin: 0;
    text-wrap: wrap;
    font-size: clamp(3rem, 2.5rem + 4.3vw, 6.75rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}
#titbar h1::first-letter {
    color: #2CD2D2;
    -webkit-text-stroke: 0.5px;
    font-family: "Cabin Sketch", sans-serif;
    font-size: 1.1em;
}
#titbar > .tit-txt {
    display: block;
    font-size: clamp(1rem, 0.7923rem + 0.578vw, 1.3125rem);
}


.sec-inline, #titbar { padding-inline: calc((100vw - 1000px) / 2);}
.other-content .sec-inline {
    margin-bottom: auto;
    padding-top: 0;
    padding-bottom: 0;
}

.other-pages .table>:not(caption)>*>* {
    border-width: 1px;
    border-color: #000;
}

.breadcrumb-content {
    z-index: 100;
}
.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-top: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 1.5rem;
    text-align: right;
}
.breadcrumb ul li {
    color: #333;
    position: relative;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.014em;
    margin: 0;
    padding: 0!important;
}
.breadcrumb ul li span > span {
    display: inline-block;
    /* text-transform: uppercase; */
}
.breadcrumb ul li a {
    color: #333;
    border-bottom: 1px solid #2CD2D2;
    text-transform: uppercase;
}
.breadcrumb ul li:not(:last-child)::after {
    content: '\f0da';
    font-family: 'Font Awesome 6 Free';
    font-size: 15px;
    font-weight: 900;
    position: relative;
    padding: 0 5px 0 10px;
    color: #333;
}
.breadcrumb ul li span > span:last-child {
    max-width: 20em;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: bottom;
}

.other-content .sec-inline > div {
    position: relative;
    background: none;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.other-content .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;
}
.other-content .sec-inline > div:nth-child(odd)::before {
    background: #FFF;
}
.other-content .sec-inline > div:nth-child(even)::before {
    background: #F8F8F7;
}

.member-wrap { margin-bottom: 5rem;}

.member-wrap .member-item  {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}
.member-wrap .member-item .member-img { width: 40%;}
.member-wrap .member-item .member-img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    object-position: top;
}
.member-wrap .member-item .member-txt { width: 60%;}
.mamber-title {
    font-weight: 700;
    margin-bottom: 2rem;
    border-bottom: 1px solid #000;
}
.mamber-title .member-name {
    font-size: 24px;
    margin-right: 1.5rem;
}
.mamber-title .member-position {
    font-size: 16px;
}

.pnavi {
    text-align: center;
    margin-top: 2rem;
}
.pnavi span{ color: #2CD2D2;}
.pnavi span,.pnavi a{
    font-size: 18px;
    padding: 10px 10px;
    border: 1px solid #2CD2D2;
    border-radius: 5px;
}
.pnavi a{
    color: #fff;
    background: #2CD2D2;
}
.pnavi a:hover{
    color: #2CD2D2;
    background: #fff;
}

.aligncenter { 
    display: block;
    margin: 0 auto;
}

/* contact */
.contact-form dl > div.contact-short-item {
    margin: 0.125em 0;
    padding: 0.5em 0;
    display: flex;
    /* border-bottom: 1px dotted #aeaeae; */
}
.contact-form dl dt {
    font-weight: bold;
    width: 22em;
    margin-right: 2rem;
    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!important;
    font-size: 12px!important;
    font-weight: bold!important;
    line-height: 1!important;
    display: inline-block!important;
    margin-left: 5px!important;
    padding: 5px 0.3rem 5px!important;
    background: #2fb7b7!important;
    border-radius: 3px!important;
    vertical-align: baseline!important;
}
.contact-form dl dd textarea {
    width: 100%;
}
.wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}
.wpcf7-list-item { 
    display: block !important;
    margin: 0 !important;
}
.wpcf7-radio .wpcf7-list-item label {
    background: #c7ffff;
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
    cursor: pointer;
}
.contact-form input:not([type="submit"]), .contact-form dl dd textarea {
    border-color: #2fb7b7 !important;
    border-width: 1px !important;
    border-style: solid !important;
    border-radius: 5px;
}
.wpcf7-submit {
    color: #fff!important;
    font-size: 18px!important;
    width: 12em!important;
    font-size: 1em!important;
    font-weight: bold!important;
    line-height: 1!important;
    letter-spacing: 0.1em!important;
    display: block!important;
    margin: 30px auto!important;
    padding: 20px 5em!important;
    text-align: center;
    background: #2CD2D2!important;
    border-color: #2CD2D2 !important;
    border-width: 1px !important;
    border-style: solid !important;
    background-size: 110%!important;
    background-position: center!important;
    border-radius: 10px!important;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

#aform_btn_submit {
    color: #fff;
    background: #EFF3F7;
    box-shadow: 0px 3px 3px #333;
    border-width: 1px;
    border-color: #fff;
    border-style: solid;
}

/*--- table ---*/
table.wrap-tbl {
    width: 100%;
    margin: 1rem auto;
    vertical-align: top;
    background: #fff;
}
table.wrap-tbl >tbody {
    vertical-align: inherit;
}
table.wrap-tbl>*>* {
    padding: 1rem 1.5rem;
    border-width: 1px;
    border-color: #C1C1C1;
}
table.wrap-tbl th {
    width: 15%;
    border-right: 1px solid #C1C1C1;
    padding: 1rem 1.5rem;
    background: #E2E2E2;
    color: #000;
    font-size: 16px;
    font-weight: 700;
}
table.wrap-tbl td {
    width: 85%;
    padding: 1rem 1.5rem;
    background: #fff;
    font-size: 16px;
}
/* table.wrap-tbl caption {
    caption-side: top;
    padding: 0 0 0.5em;
    color: #333;
    font-weight: bold;
} */
@media (max-width: 767px) {
	table.wrap-tbl th,table.wrap-tbl td {
        display: block;
        width: 100%;
        border-right: none;
    }
    table.wrap-tbl th {
        border-bottom: 1px solid #C1C1C1;
    }
}

/* .other-content table {
    width: 100%;
    margin: 1rem auto;
    background: #fff;
}
.other-content table > * > * {
    border-width: 1px;
    border-color: #C1C1C1;
}
.other-content table th {
    width: 15%;
    border-right: 1px solid #C1C1C1;
    padding: 1rem 1.5rem;
    background: #E2E2E2;
    color: #000;
    font-size: 16px;
    font-weight: 700;
}
.other-content table td {
    width: 85%;
    padding: 1rem 1.5rem;
    background: #fff;
    font-size: 16px;
} */

/* 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;
}

.width-tbl {
    width: 100%;
}
.width-tbl>*>* {
    padding: 0.5rem 0.5rem;
    border-width: 2px;
    border-color: #E6E6DC;
}
.width-tbl th {
    border-right: 2px solid #E6E6DC;
    border-bottom: 2px solid #E6E6DC;
    padding: 0.5rem 0.5rem;
    font-weight: normal;
    background: #fff;
}
.width-tbl td { 
    background: #fff;
    padding: 0.5rem 0.5rem;
    border: 2px solid #E6E6DC;
    text-wrap: nowrap;
    width: 25%;
}

.about-list {
    display: flex;
    flex-wrap: wrap;
    /* padding: 1rem; */
    margin-bottom: 0;
}
.about-list dt {
    width: 20%;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
}
.about-list dt, .about-list dd {
    padding: 10px;
    border-bottom: 1px solid #DDDDDE;
    margin-bottom: 0;
}
.about-list dt:last-of-type, .about-list dd:last-of-type {
    border-bottom: none;
}
.about-list dd {
    width: 80%;
    padding: 10px 10px 10px 1em;
}
.about-list.ab-list03 dt {
    width: 25%;
    text-wrap: nowrap;
}
.about-list.ab-list03 dd { width: 75%;}

a.anchorpoint {
    display: block;
    padding-top: 90px;
    margin-top: -90px;
}
/* .listanchor {
    margin: 0 auto 1rem!important;
	padding-left: 0!important;
	display: flex;
    justify-content: center;
	flex-wrap: wrap;
    width: 100%;
}
.listanchor:after {
    content:"";
    display:table;
	height: 0;
	clear: both;
}
.listanchor li {
    list-style: none;
    padding: 5px!important;
    margin: 0!important;
    width: calc(100% / 4);
    display: flex;
}
.listanchor li::before { display: none!important; }
.listanchor li a {
    border-radius: 5px;
    width: 100%;
    height: auto;
    min-height: 3em;
    text-align: center;
    background-color: #0086C6;
    color: #fff;
    border: 1px solid #fff;
    font-size: 0.86em;
    font-weight: 600;
    padding: 2em 1em;
    line-height: 1.4;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.listanchor li a::after {
    padding: 5px 0 0 15px;
    font-family: "Font Awesome 5 Free";
    content: "\f13a";
    font-weight: 900;
}
.listanchor li a[href^="http"]::after,
.listanchor li a[href^="//"]::after {
    font-family: "Font Awesome 5 Free";
    position: relative!important;
    right: 0!important;
    top: 0!important;
    transform: translateY(0)!important;
    padding: 5px 0 0 15px!important;
    content: "\f08e"!important;
}
.listanchor li a:hover {
    color: #0086C6;
    background-color: #fff;
    border: 1px solid #0086C6;
}
.listanchor-bl li a { opacity: 0.8; }
.listanchor-bl li a:hover { opacity: 0.8; }
@media screen and (max-width: 767px) {
	.listanchor li { width: calc(100% / 2); }
    .listanchor li a::after { padding: 0 0 0 0.5em; }
    .listanchor li a {
        padding: 0.5em 1em;
    }
} */


@media (max-width: 1150px) {

}

@media (max-width: 991px){
    .main-wrap {
        height: 25rem;
        margin: -30rem 0 0;
    }
    .sec05-wrap a, #sec07 a { max-height: 400px;}

    .breadcrumb ul {
        /* padding-top: 2rem; */
        padding-inline: initial;
        padding-left: 7%;
        padding-right: 7%;
    }
    .sec-inline-start {
        padding-inline: initial;
        padding-left: 6%;
    }
    .sec-inline-end {
        padding-inline: initial;
        padding-right: 6%;
    }
    .sec-inline, #titbar {
        padding-inline: initial;
        padding-left: 6%;
        padding-right: 6%;
    }
    .grid-box {
        grid-gap: 1.5vw;
    }

    #sec07 a::before, #sec07 a::after {
        top: 75%;
    }
}
/* SPサイズ */
@media (max-width: 767px) {
    /* 基礎設定 */
    html, body { 
        /* overflow-x: hidden; */
    }
    /* #head {
        background: #fff;
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    } */
    .h-logo .brand {
        max-width: 24px;
    }
    .h-logo .br-name { max-width: 255px;}
    .openbtn { right: 0.5rem;}
    .h-logo { 
        left: 1rem;
    }
    .h-logo a {
        width: 70%;
        justify-content: normal;
    }
    h1 { font-size: 26px; }
    h2 { font-size: 24px; }
    h3 { font-size: 22px; }
    h4 { font-size: 20px; }
    h5 { font-size: 18px; }
    h6 { font-size: 16px; }
    .grid-box {
        grid-gap: 15px;
    }
    .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; }
    .box-wh, .box-gray, .box-grad { padding: 1.5em 1.2em; }
    .is-hidden{
        visibility: hidden;
        opacity: 0;
    }
    .breadcrumb ul li { font-size: 10px; }
    .breadcrumb ul li:not(:last-child)::after {
        font-size: 10px;
        padding: 0 6px;
    }
    .sec-inline, #titbar {
        padding-left: 7.5%;
        padding-right: 7.5%;
    }
    section { padding: calc(40px + 1rem) 0 calc(40px + 1rem);}

    /* .openbtn { 
        width: 70px;
        height: 70px;
    } */
    
    #clickarea ul{ margin: 0;}
    #clickarea {
        width: 100%;
        padding-top: 2rem;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-bottom: 20vw;
    }
    #clickarea .click-list {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }
    #clickarea.panelactive .click-list {
        /* width: 100%; */
        display: block;
    }

    .main-txt { top: 30%;}
    body.top-page::before {
        top: 65%;
    }
    
    .s01-txt01 { font-size: 25px;}

    .sec02-flex .sec02-item:not(:first-child) {
        border-left: none;
        border-top: 1px solid #000;
    }

    #sec03 h2 { right: -0.65em;}

    .sec05-wrap a::before {
        top: auto;
        right: 2.5em;
        bottom: 20px;
    }
    .sec05-wrap a::after {
        top: auto;
        right: 3.75em;
        bottom: 60px;
    }
    
    .sec05-txt p { 
        letter-spacing: 0.1em;
        margin-bottom: 0;
    }
    #sec05::before {
        width: 100%;
        top: 0%;
        height: 50%;
    }
    #sec05::after {
        width: 100%;
        top: 50%;
        height: 50%;
        min-height: 275px;
        background-image: url(../img/sec05-img01-sp.jpg);
        background-position: top center;
    }
    .sec05-wrap a {
        height: 80vh;
    }
    .sec05-txt {
        width: 85%;
        height: 50%;
        justify-content: center;
    }
    .sec05-wrap a, #sec07 a { max-height: none;}

    .swiper-scrollbar {
        width: 70% !important;
        left: 35.5% !important;
    }

    #sec07 a::before {
        right: 3.5em;
    }
    #sec07 a::after {
        right: 5em;
    }
    .sec07-box {
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        justify-content: center;
        /* margin-left: auto;
        width: 100%; */
        padding-bottom: 5rem;
    }
    .sec07-wrap {
        display: block;
        width: 100%;
    }
    /* #sec07 a {
        padding: 0 5%;
    } */

    .contact-form dl > div.contact-short-item {
        display: block;
    }
    .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%;
    }

    .member-wrap .member-item {
        display: block;
    }
    .member-wrap .member-item .member-img, .member-wrap .member-item .member-txt { width: auto;}
    .member-wrap .member-item .member-img { margin-bottom: 1rem;}
    .member-wrap .member-item .member-img img { object-position: center;}

    .about-list {
        padding: 0;
    }
    .about-list dt {
        width: 40%;
    }
    .about-list dd {
        width: 60%;
    }

    /* #titbar { margin-top: 70px;} */
    .other-content .flex-box {
        display: block;
    }
    .f-flex {
        display: block;
    }
    .f-wrap {
        width: 80%;
        margin: 0 auto;
    }
    .f-img {
        border-right: none;
        border-bottom: 0.5px solid #000;
        padding-right: 0;
        padding-bottom: 2rem;
    }
    .f-img a {
        width: 70%;
        margin: 0 auto;
    }
    .f-box {
        padding: 2rem 0 0;
    }
    
    .copy{ 
        font-size: 0.8em;
        text-align: center;
        text-wrap: nowrap;
    }
}

@media(max-width: 575px){
    .top-page main { margin-top: 70px;}
    .sec-wrap {
        width: 80%;
    }
    .btn01 { display: block;}
    .btn01 a { 
        text-align: center;
        padding: 0.75em 1.5em 0.75em 1.5em;
    }
    body.top-page::before {
        top: auto;
        bottom: -62%;
        width: 95vw;
    }
    /* body.top-page.scrollimg::before {
        bottom: -40%;
    } */
    .scroll {
        display: none;
    }
    .scroll::before {
        content: none;
    }
    .sec-tit p::before { 
        width: 3em;
        height: 3em;
        bottom: 0.5rem;
        left: -2em;
    }
    .main-txt {
        width: 100%;
        top: 20%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
    }
    .main-txt .m-txt01 { 
        position: relative;
        left: -3%;
        justify-content: center;
        margin-bottom: -1rem;
    }

    .sec-tit {
        width: 80%;
        margin: 0 auto 1.5rem;
        padding-left: 1em;
    }

    .sec01-box, .sec02-box { width: 85%;}
    #sec01 h2, #sec04 h2 {
        position: initial;
        writing-mode: horizontal-tb;
        overflow: hidden;
    }
    /* #sec04 h2 { text-wrap: wrap;} */

    #sec02 h2, #sec03 h2 { position: initial;}
    .sec02-box .sec-tit, #sec03 .sec-tit { margin-bottom: 1.5rem;}

    #sec03 .sec-tit p::before {
        width: 4em;
        height: 4em;
    }
    #sec03 .sec-tit {
        text-align: left;
    }

    .work-box {
        grid-template-columns: repeat(1, 1fr);
    }
    .work-item:not(:nth-child(3n + 1)) { 
        border-left: none;
    }
    .work-item:not(:first-child) { 
        border-top: 0.5px solid #000;
        border-left: none;
    }
    
    .work-item { 
        padding: 1rem 0;
        margin-bottom: auto;
    }

    #sec04 { 
        max-height: none;
        height: auto;
    }
    #sec04 .sec-tit p::before {
        width: 5em;
        height: 5em;
    }
    .news-box {
        width: 100%;
        margin: 4rem auto;
    }
    #cpage .news-box {
        margin: auto auto 4rem;
    }
    .news-box a dd {
        width: 85%;
        -webkit-line-clamp: 1;
    }
    .news-box .news-item a::before,.news-box .news-item a::after { top: 65%;}

    .sec05-wrap a::before {
        top: auto;
        right: 2em;
        bottom: 6px;
        height: 4em;
    }
    .sec05-wrap a::after {
        top: auto;
        right: 3em;
        bottom: 37px;
        height: 2em;
        width: 2em;
    }
    
    .top-page #sec05 hgroup h2 {
        font-size: clamp(3.625rem, 2.711rem + 2.5434vw, 5rem);
    }
    hgroup span { font-size: 14px;}

    .sec06-txt { 
        width: 100%;
        text-align: center;
    }
    .top-page #sec06 hgroup h2 {
        font-size: clamp(2.0625rem, 0.1098rem + 5.4335vw, 5rem);
    }
    .sec06-wrap {
        display: block;
        width: 80%;
        margin: 0 auto;
    }
    .local-wrap {
        width: 100%;
    }
    .sw-btn { right: 3em;}
    .swiper-scrollbar {
        width: 90% !important;
        left: 42.5% !important;
    }

    .top-page #sec07 hgroup h2 {
        font-size: clamp(3.4375rem, 2.3988rem + 2.8902vw, 5rem);
        text-wrap: nowrap;
    }
    /* .top-page #sec07 hgroup { 
        padding-top: 5rem;
    } */
   
    #sec07 a { height: 370px;}
    #sec07 a::before {
        top: auto;
        right: 2em;
        bottom: 6px;
        height: 4em;
    }
    #sec07 a::after {
        top: auto;
        right: 3em;
        bottom: 37px;
        height: 2em;
        width: 2em;
    }
    .sec05-wrap a:hover::before, #sec07 a:hover::before {transform: translateY(-50%) scale(1);}

    
    
    .f-logo {
        max-width: 125px;
    }

    #titbar h1 { 
        font-size: clamp(2.75rem, 0.8056rem + 8.8889vw, 4rem);
    }

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

    .table th, .table td {
        display: block;
        width: 100%;
    }
    .table th { border-bottom: none; padding-top: 20px; }
    .table td { padding-top: 0; padding-bottom: 25px; }
    .table td *:last-of-type { margin-bottom: 0; }
    .box-wh, .box-gray, .box-grad { padding: 1.5em 1.2em; }
    .sec-inline { padding-inline: initial; padding-left: 7%; padding-right: 7%; }
    
    .js-scrollable {
        width: 100%;
        overflow: scroll;
        margin-bottom: 1rem;
    }
    /* .js-scrollable table {
        width: 100%;
    }
    .js-scrollable table tr th, .js-scrollable table tr td {
        display: table-cell;
        width: auto;
        white-space: nowrap;
    }
    .js-scrollable table tr th { white-space: nowrap; }
    .js-scrollable table, table.no-responsive {
        width: 600px;
        overflow: scroll;
    }
    .js-scrollable table tr th, .js-scrollable table tr td,
    table.no-responsive tr th, table.no-responsive tr td {
        display: table-cell;
        width: auto;
    }
    .js-scrollable table tr td:last-child, table.no-responsive tr td:last-child { padding-top: 12px!important; } */

    .f-menu {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .f-sub { 
        flex-direction: column;
        align-items: center;
    }
    .f-menu ul li { margin-bottom: 1rem;}
    .f-menu ul li:last-child { margin-bottom: 0;}
    .f-nav {
        font-size: 14px;
    }
}

@media (any-hover: hover) {
    .breadcrumb ul li a:hover { opacity: 0.5;}
    .work-tag .tag a:hover {
        opacity: 0.5;
    }
    .wpcf7-submit:hover {
        background: #fff !important;
        color: #2CD2D2 !important;
        border-color: #2CD2D2 !important;
    }
}