:root { --width: 1 / 1440 * 100vw; }
@media (max-width: 780px) { :root { --width: 1 / 375 * 100vw; } }
.pc{display: block;} .sp{display: none;}
@media (max-width: 780px) {.pc{display: none;} .sp{display: block;}}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: fot-tsukuardgothic-std, sans-serif;
}
html,body {
    scroll-behavior: smooth;
    scroll-padding-top: calc(160 * var(--width));
}
header,
main,
footer {
    margin: 0 auto;
    position: relative;
}
img {
    width: 100%;
    height: auto;
    display: block;
}
.pattern01,
.pattern02,
.pattern03,
.pattern04 {
    position: absolute;
}
.pattern01 {
    top: calc(1405 * var(--width));
    right: 0;
    width: calc(445 * var(--width));
}
.pattern02 {
    top: calc(5207 * var(--width));
    left: 0;
    width: calc(270 * var(--width));
}
.pattern03 {
    top: calc(5320 * var(--width));
    right: 0;
    width: calc(270 * var(--width));
}
.pattern04 {
    top: calc(6510 * var(--width));
    left: 0;
    width: calc(440 * var(--width));
}

header {
    background-color: #fff;
    width: 100%;
    height: calc(112 * var(--width));
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(30 * var(--width)) calc(50 * var(--width));
    height: 100%;
    width: 100%;
}
.header-logo {
    width: calc(215 * var(--width));
}
.header-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.header-nav a {
    font-size: calc(17 * var(--width));
    color: #333333;
    text-decoration: none;
    font-weight: 800;
    padding: calc(7 * var(--width)) calc(28 * var(--width));
    border-right: 1px solid #333333;
    line-height: 1;
}
.header-nav a:last-child {
    border-right: none;
}
main {
    padding-top: calc(112 * var(--width));
    background: url("../images/bg.webp") repeat center center / contain;
}
.sec01-inner,
.sec02-inner {
    padding: calc(160 * var(--width)) 0 calc(50 * var(--width));
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.sec02-inner {
    padding: calc(70 * var(--width)) 0 calc(50 * var(--width));
}
.sec01-inner-left,
.sec02-inner-left {
    width: calc(897 * var(--width));
}
.sec01-inner-left h2,
.sec02-inner-left h2 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(4 * var(--width));
    margin-bottom: calc(8 * var(--width));
    padding-left: calc(88 * var(--width));
    padding-right: calc(56 * var(--width));
    line-height: 1;
}
.sec01-inner-left h2 img,
.sec02-inner-left h2 img {
    width: calc(24 * var(--width));
}
.sec01-inner-left h2 span,
.sec02-inner-left h2 span {
    font-size: calc(36 * var(--width));
    color: #333333;
    font-weight: 500;
    line-height: 1;
    font-family: aralet-n, sans-serif;
}
.sec01-inner-left p,
.sec02-inner-left p {
    font-size: calc(18 * var(--width));
    color: #333333;
    font-weight: 800;
    line-height: 2;
    letter-spacing: 0.08em;
    padding-top: calc(40 * var(--width));
    padding-left: calc(88 * var(--width));
    padding-right: calc(56 * var(--width));
}
.sec01-inner-left p .yellow,
.sec02-inner-left p .yellow {
    font-size: calc(18 * var(--width));
    color: #D1932F;
    font-weight: 800;
}
.sec01-inner-right,
.sec02-inner-right {
    width: calc(100vw - 897 * var(--width));
}
.line01 {
    width: 100%;
    height: 2px;
    background: url("../images/line01.webp") no-repeat center center / cover;
}

/* sec02 法人について｜沿革タイムライン */
.sec02-inner-left .history {
    list-style: none;
    margin: 0;
    padding: calc(110 * var(--width)) calc(56 * var(--width)) 0 calc(88 * var(--width));
}
.sec02-inner-left .history > li {
    display: flex;
    align-items: flex-start;
    gap: calc(24 * var(--width));
}
.sec02-inner-left .history-year {
    flex: 0 0 calc(70 * var(--width));
    text-align: right;
    font-family: aralet-n, sans-serif;
    font-weight: 600;
    font-size: calc(24 * var(--width));
    line-height: calc(36 * var(--width));
    color: #D1932F;
}
.sec02-inner-left .history-body {
    position: relative;
    flex: 1 1 auto;
    border-left: calc(2 * var(--width)) dashed #D1932F;
    padding: 0 0 calc(30 * var(--width)) calc(30 * var(--width));
    font-size: calc(18 * var(--width));
    font-weight: 800;
    line-height: 2;
    letter-spacing: 0.08em;
    color: #333333;
}
.sec02-inner-left .history > li:last-child .history-body {
    border-left-color: transparent;
    padding-bottom: 0;
}
/* 最後の丸の下に破線を少しはみ出させるスタブ */
.sec02-inner-left .history > li:last-child .history-body::after {
    content: "";
    position: absolute;
    left: calc(-2 * var(--width));
    top: calc(32 * var(--width));
    height: calc(30 * var(--width));
    border-left: calc(2 * var(--width)) dashed #D1932F;
}
/* 円＋チェックを1枚のSVGに統合（円の中心にチェックが常に来る） */
.sec02-inner-left .history-body::before {
    content: "";
    position: absolute;
    left: calc(-13 * var(--width));
    top: calc(6 * var(--width));
    width: calc(24 * var(--width));
    height: calc(24 * var(--width));
    background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Ccircle%20cx='12'%20cy='12'%20r='12'%20fill='%23D1932F'/%3E%3Cpath%20d='M6%2012.4L10.2%2016.6L18%207.7'%20fill='none'%20stroke='%23ffffff'%20stroke-width='2.4'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center center / contain;
}
.sec02-inner-left .history-body .yellow {
    color: #D1932F;
    font-weight: 800;
}

.sec03 {
    padding-top: calc(60 * var(--width));
}
.sec03-inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    padding: calc(10 * var(--width)) 0 calc(50 * var(--width));
}
.sec03-content {
    width: calc(897 * var(--width));
}
.sec03-photo {
    width: calc(100vw - 897 * var(--width));
}
.sec03-content h2 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(4 * var(--width));
    margin-bottom: calc(8 * var(--width));
    padding-left: calc(56 * var(--width));
    padding-right: calc(88 * var(--width));
    line-height: 1;
}
.sec03-content h2 img {
    width: calc(24 * var(--width));
}
.sec03-content h2 span {
    font-size: calc(36 * var(--width));
    color: #333333;
    font-weight: 500;
    line-height: 1;
    font-family: aralet-n, sans-serif;
}
.sec03-content .sec03-inner-table {
    width: auto;
    margin: calc(40 * var(--width)) calc(88 * var(--width)) 0 calc(56 * var(--width));
}
.sec03-inner-table {
    width: calc(800 * var(--width));
    box-shadow: 0 calc(7 * var(--width)) calc(12 * var(--width)) 0 rgba(0, 0, 0, 0.25);
}
.sec03-inner-table table {
    width: 100%;
    border-collapse: collapse;
}
.sec03-inner-table table tbody tr th {
    width: calc(160 * var(--width));
    height: calc(54 * var(--width));
    background-color: #F7F0DF;
    color: #333;
    font-size: calc(18 * var(--width));
    font-weight: 500;
    text-align: center;
    border-bottom: 1px dashed #333333;
}
.sec03-inner-table table tbody tr td {
    width: calc(640 * var(--width));
    font-size: calc(18 * var(--width));
    font-weight: 800;
    color: #333;
    background: #FFFFFF;
    border-bottom: 1px dashed #333333;
    padding: calc(24 * var(--width)) calc(36 * var(--width));
    line-height: 1.8;
}
.sec03-inner-table table tbody tr:last-of-type th ,
.sec03-inner-table table tbody tr:last-of-type td {
    border-bottom: none;
}
.sec04 {
    padding-top: calc(80 * var(--width));
    padding-bottom: calc(90 * var(--width));
}
.sec04-inner-contents {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: calc(60 * var(--width));
}
.sec04-inner-contents-item {
    width: calc(550 * var(--width));
    height: auto;
}
.sec05 {
    padding-top: calc(71 * var(--width));
    padding-bottom: calc(90 * var(--width));
}
.sec05-inner-title,
.sec06-inner-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: calc(8 * var(--width));
    padding-bottom: calc(95 * var(--width));
}
.sec06-inner-title {
    padding-bottom: calc(40 * var(--width));
}
.sec05-inner-title h2,
.sec06-inner-title h2 {
    font-size: calc(36 * var(--width));
    color: #333333;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.16em;
    font-family: aralet-n, sans-serif;
}
.sec05-inner-title img,
.sec06-inner-title img {
    width: calc(72 * var(--width));
}
.sec05-inner-contents,
.sec06-inner-contents {
    display: flex;
    justify-content: flex-start;
    width: calc(970 * var(--width));
    margin: 0 auto;
}
.sec05-inner-contents-img {
    width: calc(403 * var(--width));
    height: calc(403 * var(--width));
}
.sec05-inner-contents-text {
    width: calc(565 * var(--width));
    min-height: calc(403 * var(--width));
    background: url("../images/sec05-bg.webp") no-repeat center center / cover;
    padding: calc(20 * var(--width)) calc(40 * var(--width)) calc(44 * var(--width));
}
.sec05-inner-contents-text h3 {
    font-size: calc(34 * var(--width));
    color: #333333;
    font-weight: 800;
    padding-bottom: calc(16 * var(--width));
    line-height: 1.4;
}
.sec05-inner-contents-text .name {
    font-size: calc(20 * var(--width));
    color: #333333;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.16em;
    padding-bottom: calc(8 * var(--width));
}
.sec05-inner-contents-text .text {
    font-size: calc(14 * var(--width));
    color: #333333;
    font-weight: 800;
    line-height: 2.4;
    letter-spacing: 0.05em;
}
.sec06 {
    padding-top: calc(70 * var(--width));
    padding-bottom: calc(40 * var(--width));
}
.sec06-inner {
    width: calc(990 * var(--width));
    margin: 0 auto;
    position: relative;
    padding-bottom: calc(50 * var(--width));
}
.sec06-inner-contents {
    width: 100%;
    margin: 0 auto;
}
.pattern05 {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(160 * var(--width));
}
.pattern06 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(160 * var(--width));
}
.sec06-inner-contents {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
.tel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(8 * var(--width));
    text-decoration: none;
}
.tel img {
    width: calc(24 * var(--width));
}
.tel p {
    font-size: calc(20 * var(--width));
    color: #333333;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.10em;
    font-family: aralet-n, sans-serif;
}
.address {
    font-size: calc(18 * var(--width));
    color: #333333;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.05em;
    padding-top: calc(30 * var(--width));
}
.address span {
    color: #333333;
    font-size: calc(14 * var(--width));
}
.address span a {
    color: #333333;
    font-size: calc(14 * var(--width));
}
footer {
    padding-top: calc(40 * var(--width));
}
.footer-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
.footer-inner-logo {
    width: calc(190 * var(--width));
}
.footer-inner-address {
    font-size: calc(16 * var(--width));
    color: #333333;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.10em;
    font-family: aralet-n, sans-serif;
    text-align: center;
    padding-top: calc(20 * var(--width));
}
.footer-inner-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: calc(32 * var(--width));
    padding-bottom: calc(60 * var(--width));
}
.footer-inner-nav a {
    font-size: calc(18 * var(--width));
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.10em;
    font-family: aralet-n, sans-serif;
    padding: calc(10 * var(--width)) calc(32 * var(--width));
    border-right: 1px solid #333333;
}
.footer-inner-nav a:last-child {
    border-right: none;
}
.footer-inner-text {
    font-size: calc(15 * var(--width));
    color: #fff;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    width: 100%;
    background-color: #D1932F;
    height: calc(57 * var(--width));
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-btn {
    display: none;
}
.menu {
    display: none;
}

@media screen and (max-width: 780px) {
    html,body {
        scroll-behavior: smooth;
        scroll-padding-top: calc(64 * var(--width));
    }
    .menu-btn {
        display: block;
        top: calc(19 * var(--width));
        right: calc(20 * var(--width));
        width: calc(33 * var(--width));
        height: calc(27 * var(--width));
        z-index: 101;
        position: fixed;
        cursor: pointer;
    }
    .menu-btn span {
        position: absolute;
        width: 100%;
        height: 1px;
        background-color: #333333;
        transition: all 0.3s ease;
    }
    .menu-btn span:nth-of-type(1) {
        top: 0;
    }
    .menu-btn span:nth-of-type(2) {
        top: calc(13 * var(--width));
    }
    .menu-btn span:nth-of-type(3) {
        top: calc(26 * var(--width));
    }
    .menu-btn.open span:nth-of-type(1) {
        top: 50%;
        transform: rotate(45deg) translateY(-50%);
    }
    .menu-btn.open span:nth-of-type(2) {
        display: none;
    }
    .menu-btn.open span:nth-of-type(3) {
        top: 50%;
        transform: rotate(-45deg) translateY(-50%);
    }
    .menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("../images/bg.webp") repeat center center / contain;
        z-index: 100;
        padding: calc(20 * var(--width));
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }
    .menu.open {
        visibility: visible;
        opacity: 1;
    }
    .menu-logo {
        width: calc(90 * var(--width));
    }
    .menu-nav {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        width: calc(335 * var(--width));
        padding-top: calc(48 * var(--width));
    }
    .menu-nav a {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: calc(8 * var(--width));
        text-decoration: none;
        padding: calc(20 * var(--width)) 0;
        border-bottom: 1px dashed #333333;
        width: 100%;
    }
    .menu-nav a img {
        width: calc(16 * var(--width));
    }
    .menu-nav a p {
        font-size: calc(18 * var(--width));
        color: #333333;
        font-weight: 500;
        line-height: 1;
        letter-spacing: 0.10em;
        font-family: aralet-n, sans-serif;
    }
    .pattern01 {
        top: calc(1470 * var(--width));
        right: auto;
        left: 0;
        width: calc(180 * var(--width));
    }
    .pattern02 {
        top: calc(2720 * var(--width));
        left: auto;
        right: 0;
        width: calc(180 * var(--width));
    }
    .pattern03 {
        display: none;
    }
    .pattern04 {
        top: calc(5500 * var(--width));
        left: 0;
        width: calc(180 * var(--width));
    }
    header {
        height: calc(64 * var(--width));
    }
    .header-inner {
        padding: calc(20 * var(--width)) calc(20 * var(--width));
    }
    .header-logo {
        width: calc(118 * var(--width));
    }
    .header-nav {
        display: none;
    }
    main {
        padding-top: calc(64 * var(--width));
    }
    .sec01 {
        padding-bottom: calc(60 * var(--width));
    }
    .sec01-inner {
        padding-top: calc(64 * var(--width));
        flex-direction: column;
        align-items: center;
        gap: calc(40 * var(--width));
    }
    .sec01-inner-left {
        width: 100%;
    }
    .sec01-inner-left h2, .sec02-inner-left h2 {
        padding-left: calc(20 * var(--width));
        padding-right: calc(20 * var(--width));
        margin-bottom: calc(20 * var(--width));
    }
    .sec01-inner-left h2 img, .sec02-inner-left h2 img {
        width: calc(16 * var(--width));
    }
    .sec01-inner-left h2 span, .sec02-inner-left h2 span {
        font-size: calc(24 * var(--width));
    }
    .sec01-inner-left p, .sec02-inner-left p {
        padding-left: calc(20 * var(--width));
        padding-right: calc(20 * var(--width));
        padding-top: calc(20 * var(--width));
        font-size: calc(14 * var(--width));
        font-weight: 800;
    }
    .sec01-inner-left p .yellow, .sec02-inner-left p .yellow {
        font-size: calc(14 * var(--width));
    }
    .sec01-inner-left p img, .sec02-inner-left p img {
        width: calc(280 * var(--width));
        margin: 0 auto calc(20 * var(--width));
    }
    .sec02-inner-left .history {
        padding: calc(20 * var(--width)) calc(20 * var(--width)) 0;
    }
    .sec02-inner-left .history > li {
        gap: calc(14 * var(--width));
    }
    .sec02-inner-left .history-year {
        flex: 0 0 calc(46 * var(--width));
        font-size: calc(16 * var(--width));
        line-height: calc(28 * var(--width));
    }
    .sec02-inner-left .history-body {
        padding: 0 0 calc(20 * var(--width)) calc(18 * var(--width));
        font-size: calc(14 * var(--width));
    }
    .sec02-inner-left .history-body::before {
        left: calc(-10 * var(--width));
        top: calc(5 * var(--width));
        width: calc(18 * var(--width));
        height: calc(18 * var(--width));
    }
    .sec02-inner-left .history > li:last-child .history-body::after {
        left: calc(-2 * var(--width));
        top: calc(26 * var(--width));
        height: calc(22 * var(--width));
    }
    .sec01-inner-right {
        display: none;
    }
    .sec01-inner-left p,
    .sec01-inner-left p .yellow {
        /* line-height: 2; */
        /* font-size: calc(14 * var(--width)); */
        /* letter-spacing: 0.08em; */
        /* font-weight: 800; */
    }
    .sec02-inner-left p {
        font-size: calc(14 * var(--width));
        font-weight: 800;
    }
    .sec03 {
        padding-top: calc(40 * var(--width));
    }
    .sec03-inner {
        flex-direction: column;
        padding: 0 0 calc(20 * var(--width));
    }
    .sec03-content {
        width: 100%;
    }
    .sec03-photo {
        display: none;
    }
    .sec03-content h2 {
        padding-left: calc(20 * var(--width));
        padding-right: calc(20 * var(--width));
        margin-bottom: calc(20 * var(--width));
    }
    .sec03-content h2 img {
        width: calc(16 * var(--width));
    }
    .sec03-content h2 span {
        font-size: calc(24 * var(--width));
    }
    .sec03-content > img.sp {
        width: calc(280 * var(--width));
        margin: calc(28 * var(--width)) auto 0;
    }
    .sec03-content .sec03-inner-table {
        width: auto;
        margin: calc(36 * var(--width)) calc(20 * var(--width)) 0;
    }
    .sec03-inner-table {
        width: 100%;
    }
    .sec03-inner-table table tbody tr th {
        font-size: calc(13 * var(--width));
        width: calc(96 * var(--width));
        height: calc(36 * var(--width));
        line-height: 1.4;
    }
    .sec03-inner-table table tbody tr td {
        font-size: calc(12 * var(--width));
        width: calc(100% - 96 * var(--width));
        height: calc(36 * var(--width));
        padding: calc(16 * var(--width)) calc(14 * var(--width));
        line-height: 1.5;
    }
    .sec04 {
        padding-top: calc(50 * var(--width));
        padding-bottom: calc(60 * var(--width));
    }
    .sec04-inner {
        padding: 0 calc(50 * var(--width));
    }
    .sec04-inner-contents {
        gap: calc(16 * var(--width));
    }
    .sec05 {
        padding-top: calc(60 * var(--width));
        padding-bottom: calc(30 * var(--width));
    }
    .sec05-inner-contents {
        flex-direction: column;
        align-items: center;
        width: calc(320 * var(--width));
        margin: 0 auto;
    }
    .sec05-inner-title, .sec06-inner-title {
        padding-bottom: calc(24 * var(--width));
    }
    .sec05-inner-title h2 {
        font-size: calc(24 * var(--width));
    }
    .sec05-inner-title img, .sec06-inner-title img {
        width: calc(58 * var(--width));
    }
    .sec05-inner-contents-img {
        width: calc(252 * var(--width));
        height: auto;
        z-index: 2;
    }
    .sec05-inner-contents-text {
        width: 100%;
        height: auto;
        margin-top: calc(-50 * var(--width));
        z-index: 1;
        padding: calc(70 * var(--width)) calc(24 * var(--width)) calc(36 * var(--width));
    }
    .sec05-inner-contents-text h3 {
        font-size: calc(24 * var(--width));
        padding-bottom: calc(10 * var(--width));
    }
    .sec05-inner-contents-text .name {
        font-size: calc(16 * var(--width));
        padding-bottom: calc(10 * var(--width));
    }
    .sec05-inner-contents-text .text {
        font-size: calc(14 * var(--width));
        line-height: 2;
    }
    .sec06 {
        padding-top: 0;
        padding-bottom: 0;
    }
    .sec06-inner {
        width: calc(275 * var(--width));
        padding-top: calc(30 * var(--width));
        padding-bottom: calc(24 * var(--width));
    }
    .sec06-inner-title h2 {
        font-size: calc(18 * var(--width));
    }
    .tel p {
        font-size: calc(16 * var(--width));
    }
    .address {
        font-size: calc(10 * var(--width));
    }
    .address span {
        font-size: calc(8 * var(--width));
    }
    .address span a {
        font-size: calc(8 * var(--width));
    }
    .sec06-inner-contents {
        width: 100%;
        margin: 0 auto;
    }
    .sec06-inner-contents-item {
        width: calc(320 * var(--width));
        height: calc(320 * var(--width));
    }
    .pattern05 {
        width: calc(68 * var(--width));
    }
    .pattern06 {
        width: calc(68 * var(--width));
    }
    .footer-inner-logo {
        width: calc(120 * var(--width));
    }
    .footer-inner-address {
        padding-top: calc(10 * var(--width));
        font-size: calc(12 * var(--width));
    }
    .footer-inner-nav {
        padding-top: calc(32 * var(--width));
        padding-bottom: calc(40 * var(--width));
    }
    .footer-inner-nav a {
        font-size: calc(10 * var(--width));
        padding: calc(3 * var(--width)) calc(23 * var(--width));
    }
    .footer-inner-text {
        font-size: calc(8 * var(--width));
    }
}

/* === sec03 リンク色 + 活動実績(sec03b) 2026-06-11 === */
.sec03-inner-table th a {
    color: #1565c0;
    text-decoration: underline;
    font-weight: 800;
}
.sec03-inner-table th a:hover { opacity: 0.7; }

.sec03b {
    padding-top: calc(60 * var(--width));
    padding-bottom: calc(60 * var(--width));
    position: relative;
    z-index: 2;
}
.sec03b-inner {
    width: calc(1140 * var(--width));
    margin: 0 auto;
}
.sec03-content .achievements {
    padding-left: calc(56 * var(--width));
    padding-right: calc(88 * var(--width));
}
.achievements {
    display: flex;
    flex-direction: column;
    gap: calc(36 * var(--width));
    padding-top: calc(40 * var(--width));
}
.achievements-block h3 {
    font-size: calc(28 * var(--width));
    color: #D1932F;
    font-weight: 800;
    letter-spacing: 0.08em;
    border-bottom: 2px solid #D1932F;
    padding-bottom: calc(10 * var(--width));
    margin-bottom: calc(18 * var(--width));
}
.achievements-block ul {
    list-style: none;
}
.achievements-block li {
    font-size: calc(16 * var(--width));
    color: #333333;
    font-weight: 800;
    line-height: 1.9;
    letter-spacing: 0.05em;
    padding-left: calc(22 * var(--width));
    position: relative;
}
.achievements-block li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #D1932F;
}
.achievements-detail {
    font-size: calc(15 * var(--width));
    color: #333333;
    font-weight: 800;
    line-height: 1.8;
    letter-spacing: 0.05em;
    padding-left: calc(22 * var(--width));
    margin-top: calc(6 * var(--width));
}
.sec03b-schedule {
    padding-top: calc(60 * var(--width));
}
.sec03-inner.sec03-inner--photo-right {
    flex-direction: row;
}
@media (max-width: 780px) {
    .sec03b {
        padding-top: calc(40 * var(--width));
        padding-bottom: calc(50 * var(--width));
    }
    .sec03b-inner {
        width: calc(335 * var(--width));
    }
    .achievements {
        gap: calc(28 * var(--width));
        padding-top: calc(30 * var(--width));
    }
    .achievements-block h3 {
        font-size: calc(17 * var(--width));
    }
    .achievements-block li {
        font-size: calc(13 * var(--width));
    }
    .achievements-detail {
        font-size: calc(12 * var(--width));
    }
    .sec03b-schedule {
        padding-top: calc(40 * var(--width));
    }
    .sec02-inner {
        padding-top: calc(40 * var(--width));
        padding-bottom: calc(20 * var(--width));
    }
    .sec05 {
        padding-top: calc(40 * var(--width));
    }
    .sec06 {
        padding-top: calc(9 * var(--width));
    }
    .sec03-content .achievements {
        padding-top: calc(36 * var(--width));
        padding-left: calc(20 * var(--width));
        padding-right: calc(20 * var(--width));
    }
}

/* === 個別ページタイトルをトップのご挨拶風に 2026-06-11 === */
.c-pageTitle {
    text-align: left !important;
    border: none !important;
    background: none !important;
    padding: 48px 16px 0 !important;
}
.post_content { margin-top: 24px !important; }
.c-pageTitle__inner {
    margin-left: -0.8em;
    font-family: aralet-n, sans-serif;
    font-size: clamp(24px, 6vw, 32px);
    color: #333333;
    letter-spacing: 0.08em;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
}
.c-pageTitle__inner::before {
    content: "";
    width: 0.85em;
    height: 0.85em;
    background: url("/assets/images/icon01.webp") no-repeat center / contain;
    flex-shrink: 0;
}
.c-pageTitle::after {
    content: "";
    display: block;
    width: 100%;
    max-width: 680px;
    height: 2px;
    margin: 14px 0 0;
    background: url("/assets/images/line01.webp") no-repeat center / cover;
}
@media (max-width: 780px) {
    .c-pageTitle { padding: 32px 16px 0 !important; }
    .c-pageTitle::after { max-width: 88%; }
}

/* === 固定ページ本文をトップと同じ太字フォントに 2026-06-11 === */
.post_content,
.post_content p,
.post_content li,
.post_content h2,
.post_content h3,
.post_content h4,
.post_content a,
.post_content strong {
    font-family: fot-tsukuardgothic-std, sans-serif;
    font-weight: 800;
}

/* === 背景装飾(pattern)をコンテンツ背面へ・かぶり解消 2026-06-12 === */
.sec01, .sec02, .sec03, .sec03b, .sec04, .sec05, .sec06 {
    position: relative;
    z-index: 2;
}
.pattern01, .pattern02, .pattern03, .pattern04 {
    z-index: 0;
}
/* 代表者略歴の下線を文字幅に合わせて延長（line01=長線に差し替え済み・縮小表示で歪まない） */
.sec05-inner-title img {
    width: calc(200 * var(--width));
    height: auto;
}

/* === pattern被り多発のため下半分の波模様装飾を非表示（PC/SP共通）2026-06-12 ===
   位置調整は画面幅比例で不安定なため、被りの多いpattern02/03/04を一旦OFF。
   装飾を戻す場合はこのブロックを削除し、各patternのtopを再調整すること。 */
.pattern01, .pattern02, .pattern03, .pattern04 {
    display: none !important;
}

/* sec02: 見出し下線と画像の重なりを防ぐ余白（SP）2026-06-12 */
@media (max-width: 780px) {
    .sec02-inner-left > .line01 {
        margin-bottom: calc(24 * var(--width));
    }
}

/* オープニング演出（トップのみ・1セッション1回） */
.splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999999;
    background: #F7F0DF url("../images/bg.webp") repeat center center / contain;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease;
}
.splash.is-done {
    opacity: 0;
    pointer-events: none;
}
html.has-splash {
    overflow: hidden;
}
.splash-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.splash-mark {
    width: 30px;
    height: auto;
    opacity: 0;
    animation: splashFade 1.1s ease 0.2s forwards;
}
.splash-sub {
    font-family: aralet-n, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-indent: 0.3em;
    color: #333333;
    opacity: 0;
    animation: splashFade 1.1s ease 0.35s forwards;
}
.splash-title {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-family: aralet-n, sans-serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.4em;
    color: #333333;
    opacity: 0;
    animation: splashFade 1.1s ease 0.45s forwards;
}
.splash-line {
    width: 2px;
    height: 64px;
    background: #D1932F;
    transform: scaleY(0);
    transform-origin: top center;
    animation: splashLine 0.8s ease 0.8s forwards;
}
@keyframes splashFade {
    to { opacity: 1; }
}
@keyframes splashLine {
    to { transform: scaleY(1); }
}
