@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;600;700&family=Cormorant+Garamond:wght@400;600&family=DM+Sans:wght@300;400;500&display=swap");

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
    --base-color: #1facd0;
    --base-dark: #0e7fa0;
    --base-light: #7fd4e8;
    --base-color-rgb: 31, 172, 208;
    --accent: #0a3d52;
    --accent-rgb: 10, 61, 82;
    --text-color: #1a1f2e;
    --text-muted: #5a6275;
    --surface: rgba(255, 255, 255, 0.75);
    --surface-strong: rgba(255, 255, 255, 0.92);
    --border: rgba(31, 172, 208, 0.18);
    --border-strong: rgba(31, 172, 208, 0.4);
    --shadow-sm: 0 2px 12px rgba(10, 61, 82, 0.08);
    --shadow-md: 0 8px 32px rgba(10, 61, 82, 0.12);
    --shadow-lg: 0 20px 60px rgba(10, 61, 82, 0.16);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-xl: 48px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

:root {
    --font-gothic: "Noto Sans JP", "YuGothic", "游ゴシック",
        "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
    --font-en: "DM Sans", sans-serif;
    --font-display: "Cormorant Garamond", serif;
    --font-marugothic: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro",
        "Hiragino Maru Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
}

/* =============================================
   BASE RESET & BODY
   ============================================= */
*, *::before, *::after {
    word-break: break-all;
    box-sizing: border-box;
}

body {
    color: var(--text-color);
    font-family: var(--font-gothic);
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 1.8;
    background:
        url(https://assets.toriaez.jp/thp2/pc/images/246/bgi-wartercolor_blue_001.jpg) 0 0 no-repeat fixed,
        linear-gradient(160deg, #eaf7fc 0%, #f5fbfd 50%, #e8f4f8 100%);
    background-size: 768px, cover;
    -webkit-font-smoothing: antialiased;
}

table, iframe, img {
    max-width: 100%;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--base-color);
    opacity: 0.85;
}

/* =============================================
   LAYOUT
   ============================================= */
#container {}

#container .inner {
    width: 1200px;
    margin: 0 auto;
}

#content {
    width: 1200px;
    margin: 0 auto 135px;
}

#main {
    width: 890px;
    float: left;
}

#side {
    width: 260px;
    float: right;
}

/* =============================================
   HEADER
   ============================================= */
header {
    width: 100%;
    min-width: 1220px;
    margin: 0 auto;
    padding-left: 50px;
    display: table;
    table-layout: fixed;
    min-height: 123px;
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

header .headNav {
    letter-spacing: -0.4em;
    display: table-cell;
    vertical-align: top;
    text-align: right;
}

header .headNav li {
    display: inline-block;
    letter-spacing: 0;
    font-size: 1.28em;
    margin-left: 3px;
    font-family: var(--font-en);
    line-height: 1;
}

header .headNav li a {
    background: var(--base-color);
    width: 120px;
    text-decoration: none;
    color: #fff;
    display: block;
    text-align: center;
    padding: 80px 0 30px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

header .headNav li a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 60%);
    pointer-events: none;
}

header .headNav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.35);
    transform: scaleX(0);
    transition: var(--transition);
}

header .headNav li a:hover::after {
    transform: scaleX(1);
}

header .headNav li a:hover {
    background: var(--base-dark);
    opacity: 1;
    transform: translateY(-2px);
}

header .headNav li.profileNav a {
    background: url(https://assets.toriaez.jp/thp2/pc/images/246/ico-headNav_001.png) center 29px
        var(--base-color) no-repeat;
}

header .headNav li.accessNav a {
    background: url(https://assets.toriaez.jp/thp2/pc/images/246/ico-headNav_002.png) center 28px
        var(--base-color) no-repeat;
}

header .headNav li.contactNav a {
    background: url(https://assets.toriaez.jp/thp2/pc/images/246/ico-headNav_003.png) center 33px
        var(--base-color) no-repeat;
}

header .headNav li:first-child a {
    border-bottom-left-radius: var(--radius-sm);
}

header #siteTtl {
    display: table-cell;
    vertical-align: middle;
    font-size: 28px;
    width: 800px;
}

header #siteTtl a {
    text-decoration: none;
    color: var(--base-color);
    font-family: var(--font-display);
    letter-spacing: 0.04em;
}

header #siteTtl a img {
    max-width: 500px;
    height: auto;
}

/* =============================================
   NAV
   ============================================= */
nav {}

nav ul {
    letter-spacing: -0.4em;
    text-align: center;
    background: var(--surface-strong);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    border: 1px solid var(--border);
    border-top: none;
    box-shadow: var(--shadow-sm);
}

nav ul li.parent {
    letter-spacing: 0.06em;
    display: inline-block;
    border-right: 1px solid var(--border);
    position: relative;
}

nav ul li.parent:last-child {
    border-right: none;
}

nav ul li.parent > a {
    color: var(--text-color);
    text-decoration: none;
    padding: 28px 26px;
    display: block;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    position: relative;
    transition: var(--transition);
}

nav ul li.parent > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 2px;
    background: var(--base-color);
    border-radius: 2px;
    transition: var(--transition);
}

nav ul li.parent:hover > a {
    color: var(--base-color);
    opacity: 1;
}

nav ul li.parent:hover > a::after {
    transform: translateX(-50%) scaleX(1);
}

nav .child {
    position: absolute;
    letter-spacing: 0;
    left: -3px;
    min-width: 100%;
    width: 260px;
    text-align: left;
    padding: 8px 0;
    display: none;
    z-index: 100;
    background: var(--surface-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    top: calc(100% - 2px);
    animation: fadeSlideDown 0.25s ease forwards;
}

@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

nav .child li a {
    color: var(--text-color);
    font-size: 0.95em;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 10px 20px 10px 38px;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.06em;
}

nav .child li a::before {
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--base-color);
    border-radius: 50%;
    left: 20px;
    top: 50%;
    margin-top: -2.5px;
    transition: var(--transition);
}

nav .child li a:hover {
    opacity: 1;
    color: var(--base-color);
    background: rgba(var(--base-color-rgb), 0.07);
    padding-left: 44px;
}

nav .child li a:hover::before {
    transform: scale(1.4);
}

nav .child li:first-child { padding-top: 5px; }
nav .child li:last-child  { padding-bottom: 5px; }

/* =============================================
   MAIN SLIDE
   ============================================= */
#top nav {}

.mainSlideIn {
    width: 1200px;
    margin: 0 auto 120px;
}

.bx-wrapper .bx-viewport {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

#mainSlide li {
    height: 500px !important;
    position: relative;
    background: rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

#mainSlide li img {
    position: absolute;
    left: 0;
    width: 1200px;
    height: auto;
    transition: transform 6s ease;
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: rgba(255,255,255,0.5);
    text-indent: -9999px;
    display: block;
    width: 8px;
    height: 8px;
    margin: 0 5px;
    outline: 0;
    border-radius: 4px;
    transition: var(--transition);
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
    background: var(--base-color);
    width: 24px;
    opacity: 1;
}

.bx-wrapper .bx-controls-direction a {
    width: 50px;
    height: 50px;
    margin: 0;
    top: 225px;
    border-radius: 50%;
    transition: var(--transition);
}

.bx-wrapper .bx-prev {
    background: url(https://assets.toriaez.jp/thp2/pc/images/246/btn-slider_001.png) center center no-repeat
        rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255,255,255,0.6);
    left: -70px;
}

.bx-wrapper .bx-prev:hover {
    background: url(https://assets.toriaez.jp/thp2/pc/images/246/btn-slider_001.png) center center no-repeat
        #fff;
    box-shadow: var(--shadow-lg);
    opacity: 1;
    transform: scale(1.08);
}

.bx-wrapper .bx-next {
    background: url(https://assets.toriaez.jp/thp2/pc/images/246/btn-slider_002.png) center center no-repeat
        rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255,255,255,0.6);
    right: -70px;
}

.bx-wrapper .bx-next:hover {
    background: url(https://assets.toriaez.jp/thp2/pc/images/246/btn-slider_002.png) center center no-repeat
        #fff;
    box-shadow: var(--shadow-lg);
    opacity: 1;
    transform: scale(1.08);
}

/* =============================================
   MAIN IMAGE / LEAD
   ============================================= */
.mainImgIn {
    margin-bottom: 95px;
}

.mainImgIn .inner {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: table;
    width: 100%;
    padding: 50px 55px;
    box-shadow: var(--shadow-md);
}

.mainImgIn .inner #mainImg {
    width: 365px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.mainImgIn .inner #mainImg img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.mainImgIn .inner #leadTxt {
    display: table-cell;
    vertical-align: middle;
    padding-left: 50px;
    font-weight: 300;
    line-height: 2.1;
    font-size: 1.2em;
    color: var(--text-color);
}

/* =============================================
   CONTENT TITLES
   ============================================= */
#main .contTtl {
    font-size: 1.85em;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.06em;
}

#main div:last-child {
    margin-bottom: 0;
}

/* =============================================
   NEWS
   ============================================= */
#news .contTtl {
    color: var(--base-color);
    border-bottom: 2px solid var(--border-strong);
    padding-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

#news .contTtl::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.2em;
    background: linear-gradient(180deg, var(--base-color), var(--base-light));
    border-radius: 2px;
    flex-shrink: 0;
}

#news ul {
    max-height: 255px;
    height: auto;
    overflow-y: auto;
    line-height: 1.5;
    margin-bottom: 73px;
    scrollbar-width: thin;
    scrollbar-color: var(--border-strong) transparent;
}

#news ul::-webkit-scrollbar {
    width: 4px;
}

#news ul::-webkit-scrollbar-track {
    background: transparent;
}

#news ul::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 2px;
}

#news ul li {
    padding: 16px 20px 16px 130px;
    position: relative;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

#news ul li:hover {
    background: rgba(var(--base-color-rgb), 0.04);
    padding-left: 136px;
}

#news ul .day {
    display: block;
    width: 108px;
    position: absolute;
    left: 22px;
    font-family: var(--font-en);
    font-size: 0.88em;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.08em;
    top: 50%;
    transform: translateY(-50%);
}

#news dl dd {
    float: left;
    width: 782px;
    padding: 10px 0;
    border-top: 1px solid var(--border);
}

/* =============================================
   ARTICLE BOX
   ============================================= */
.articleBox {
    margin-bottom: 70px;
    background: var(--surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 45px 50px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.articleBox:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-strong);
}

.articleBox .contTtl {
    font-weight: 600;
    margin-bottom: 28px;
    padding-left: 16px;
    position: relative;
}

.articleBox .contTtl::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.15em;
    bottom: 0.15em;
    width: 3px;
    background: linear-gradient(180deg, var(--base-color), var(--base-light));
    border-radius: 2px;
}

.articleIn .articleBox:last-child {}

.articleBox .txtArea {
    width: 560px;
    float: left;
    font-size: 1.08em;
    line-height: 2;
    color: var(--text-color);
    font-weight: 300;
}

.articleBox.noImg .txtArea {
    width: auto;
    float: none;
}

.articleBox .txtArea strong {
    font-weight: 600;
    color: var(--accent);
}

.articleBox .txtArea p:last-child {
    margin-bottom: 0;
}

.articleBox .imgArea {
    width: 300px;
    float: right;
}

.articleBox .imgArea figure {
    margin-bottom: 25px;
}

.articleBox .imgArea figure img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.articleBox .imgArea figure img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.articleBox .imgArea figure:last-child {
    margin-bottom: 0;
}

.articleBox .imgArea figure figcaption {
    display: block;
    font-size: 0.82em;
    padding-top: 10px;
    line-height: 1.6;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

#main .articleBox table {
    width: auto;
    font-size: 1em;
}

.articleBox table,
.articleBox table td,
.articleBox table th {
    border: 1px solid var(--border);
}

.articleBox table td,
.articleBox table th {
    text-align: left;
    padding: 12px 18px;
}

.articleBox table th {
    background: rgba(var(--base-color-rgb), 0.06);
    font-weight: 500;
}

/* =============================================
   CONTACT BUTTON
   ============================================= */
.contactBtn {
    width: 505px;
    margin: 0 auto 70px;
}

.contactBtn a {
    display: block;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    color: var(--base-color);
    border: 2px solid var(--base-color);
    line-height: 88px;
    height: 90px;
    font-family: var(--font-en);
    font-size: 2em;
    border-radius: var(--radius-md);
    box-shadow: 0 6px 0 rgba(var(--base-color-rgb), 0.25), var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.1em;
}

.contactBtn a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--base-color-rgb), 0.08), transparent);
    transition: var(--transition);
}

.contactBtn a:hover {
    transform: translateY(4px);
    box-shadow: 0 2px 0 rgba(var(--base-color-rgb), 0.25), var(--shadow-sm);
    opacity: 1;
    color: var(--base-dark);
    border-color: var(--base-dark);
}

.contactBtn a:hover::before {
    background: linear-gradient(135deg, rgba(var(--base-color-rgb), 0.14), transparent);
}

/* =============================================
   SIDEBAR
   ============================================= */
#top #side {
    padding-top: 56px;
}

#side div:last-child,
#side h2:last-child {
    margin-bottom: 0;
}

#side .sideTtl {
    font-size: 1.15em;
    color: var(--base-color);
    padding: 0 0 16px 16px;
    border-bottom: 2px solid var(--border-strong);
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 10px;
}

#side .sideTtl::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 1.1em;
    background: linear-gradient(180deg, var(--base-color), var(--base-light));
    border-radius: 2px;
    flex-shrink: 0;
}

#side #leadTxt {
    background: var(--surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    line-height: 2;
    padding: 22px 24px;
    font-weight: 300;
    font-size: 0.95em;
    margin-bottom: 55px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

#side #sideCont .sideTtl {
    font-family: var(--font-en);
    font-size: 1.35em;
    font-weight: 500;
}

#side #sideCont {
    letter-spacing: 0.06em;
    line-height: 1;
    margin-bottom: 55px;
    background: var(--surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    padding-top: 20px;
}

#side #sideCont ul li {
    border-bottom: 1px solid var(--border);
    font-size: 1.1em;
}

#side #sideCont ul li:last-child {
    border-bottom: none;
}

#side #sideCont ul li a {
    display: block;
    text-decoration: none;
    font-weight: 500;
    padding: 22px 20px;
    position: relative;
    font-family: var(--font-en);
    transition: var(--transition);
    letter-spacing: 0.06em;
}

#side #sideCont ul li a::before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 7px;
    border-color: transparent transparent transparent var(--base-color);
    right: 20px;
    top: 50%;
    margin-top: -4px;
    transition: var(--transition);
}

#side #sideCont ul li a:hover {
    opacity: 1;
    background: rgba(var(--base-color-rgb), 0.08);
    color: var(--base-color);
    padding-left: 28px;
}

#side #sideCont ul li a:hover::before {
    right: 16px;
}

#side #blog {
    line-height: 1.4;
    margin-bottom: 60px;
    background: var(--surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    padding: 20px 0 0;
}

#side #blog dl dt {
    margin-bottom: 4px;
    padding: 10px 20px 0;
    font-size: 0.82em;
    color: var(--text-muted);
    font-family: var(--font-en);
    letter-spacing: 0.08em;
}

#side #blog dl dd {
    border-bottom: 1px solid var(--border);
    padding: 0 20px 12px;
    font-weight: 400;
}

#side #blog dl dd a {
    text-decoration: none;
    transition: var(--transition);
}

#side #blog dl dd a:hover {
    color: var(--base-color);
}

#side #blog .btn {
    width: 130px;
    margin: 0 auto;
}

#side #blog .btn a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    background: linear-gradient(135deg, var(--accent), #2a5f78);
    padding: 12px 10px 12px 0;
    text-align: center;
    position: relative;
    font-size: 0.9em;
    letter-spacing: 0.08em;
    transition: var(--transition);
}

#side #blog .btn a:hover {
    opacity: 0.85;
}

#side #blog .btn a::before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3.5px 0 3.5px 6px;
    border-color: transparent transparent transparent #fff;
    right: 12px;
    top: 50%;
    margin-top: -3px;
}

#side #mobile {
    margin-bottom: 60px;
    background: var(--surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

#side #mobile figure {
    padding: 28px 28px 24px;
    text-align: center;
}

#side #mobile figure img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
}

#side #mobile figure figcaption {
    text-align: left;
    line-height: 2;
    padding-top: 20px;
    font-size: 0.92em;
    font-weight: 300;
}

/* =============================================
   PAGE TOP BUTTON
   ============================================= */
#pageTop {
    position: fixed;
    z-index: 1000;
    right: 24px;
    bottom: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: transparent;
    display: none;
}

#pageTop a {
    display: block;
    width: 56px;
    height: 56px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    border-radius: 50%;
    background: url(https://assets.toriaez.jp/thp2/pc/images/246/ico-pageTop_001.png) center 18px no-repeat
        rgba(255,255,255,0.85);
    background-size: 18px;
    box-shadow: 0 4px 20px rgba(var(--base-color-rgb), 0.3), 0 0 0 1px var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
}

#pageTop a:hover {
    background: url(https://assets.toriaez.jp/thp2/pc/images/246/ico-pageTop_001.png) center 14px no-repeat
        rgba(var(--base-color-rgb), 0.15);
    background-size: 18px;
    box-shadow: 0 8px 30px rgba(var(--base-color-rgb), 0.4), 0 0 0 1px var(--border-strong);
    opacity: 1;
    transform: translateY(-3px);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: linear-gradient(
        135deg,
        rgba(var(--accent-rgb), 0.96) 0%,
        rgba(var(--base-color-rgb), 0.9) 60%,
        rgba(var(--base-color-rgb), 0.75) 100%
    );
    border-radius: 50px 50px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

footer .copy {
    width: 1200px;
    text-align: center;
    margin: 0 auto;
    color: rgba(255,255,255,0.9);
    line-height: 1.3;
    font-weight: 300;
    padding: 80px 0;
    font-size: 0.92em;
    letter-spacing: 0.12em;
    position: relative;
}

/* =============================================
   FREE AREA & PAGES
   ============================================= */
.freeArea {
    line-height: 2;
}

.pageTtl {
    border-bottom: 1px solid var(--border);
    padding: 65px 0;
    width: 1200px;
    margin: 0 auto 15px;
    text-align: center;
    position: relative;
}

.pageTtl::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--base-color);
    border-radius: 2px;
}

.pageTtl h2 {
    font-size: 2.4em;
    line-height: 1.35;
    color: var(--base-color);
    font-weight: 600;
    letter-spacing: 0.08em;
}

/* =============================================
   BREADCRUMB
   ============================================= */
#pnkz {
    letter-spacing: -0.4em;
    text-align: right;
    width: 1200px;
    margin: 0 auto 65px;
    font-size: 0.82em;
}

#pnkz li {
    letter-spacing: 0;
    display: inline-block;
    color: var(--text-muted);
}

#pnkz li a {
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition);
}

#pnkz li a:hover {
    color: var(--base-color);
}

#pnkz li::after {
    content: "/";
    margin: 0 10px;
    opacity: 0.4;
}

#pnkz li:last-child::after {
    display: none;
}

/* =============================================
   PROFILE / MAP / FORM TABLES
   ============================================= */
#main.form table,
#main.profile table,
#main.map table {
    border-bottom: 1px solid var(--border);
    width: 100%;
    font-size: 1.08em;
    margin-bottom: 70px;
    background: var(--surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

#main.form table th,
#main.form table td,
#main.profile table th,
#main.profile table td,
#main.map table th,
#main.map table td {
    vertical-align: middle;
    text-align: left;
    border-top: 1px solid var(--border);
    padding: 22px 24px;
}

#main.form table th,
#main.profile table th,
#main.map table th {
    font-weight: 600;
    padding-right: 0;
    background: rgba(var(--base-color-rgb), 0.05);
    color: var(--accent);
}

#main.form .txtBox,
#main.profile .txtBox,
#main.map .txtBox {
    font-size: 1.08em;
    line-height: 2;
    margin-bottom: 70px;
    font-weight: 300;
}

#main.form .txtBox p,
#main.profile .txtBox p,
#main.map .txtBox p {
    margin-bottom: 30px;
}

/* =============================================
   FORM
   ============================================= */
#main.form .requiredMark {
    color: #e03030;
    font-size: 0.85em;
    margin-left: 4px;
}

#main.form table th {
    width: 270px;
}

#main.form table td {
    height: 80px;
}

#main.form .inputArea {
    background: rgba(255,255,255,0.9);
    line-height: 1;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    width: 520px;
    border: 1.5px solid var(--border);
    transition: var(--transition);
}

#main.form .inputArea:focus-within {
    border-color: var(--base-color);
    box-shadow: 0 0 0 3px rgba(var(--base-color-rgb), 0.12);
    background: #fff;
}

#main.form .inputArea.short {
    width: 200px;
    display: inline-block;
}

#main.form .inputArea input {
    width: 100%;
    border: none;
    background: transparent;
    font-family: var(--font-gothic);
    font-size: 1em;
    color: var(--text-color);
}

#main.form .inputArea input:focus,
#main.form .inputArea textarea:focus,
#main.form .inputArea button:focus {
    outline: none;
}

#main.form .inputArea textarea {
    width: 100%;
    height: 190px;
    padding: 10px 0;
    line-height: 1.7;
    border: none;
    background: transparent;
    font-family: var(--font-gothic);
    font-size: 1em;
    color: var(--text-color);
    resize: vertical;
}

#main.form table {
    border-bottom: none;
}

#main.form #submit td {
    text-align: center;
    letter-spacing: -0.4em;
    padding-top: 40px;
}

#main.form #submit input {
    display: inline-block;
    width: 240px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    border-radius: var(--radius-sm);
    line-height: 1;
    padding: 18px 0;
    cursor: pointer;
    letter-spacing: 0.12em;
    margin: 0 10px;
    font-size: 1em;
    border: none;
    transition: var(--transition);
    font-family: var(--font-gothic);
}

#main.form #submit input.submitBtn {
    background: linear-gradient(135deg, var(--base-color), var(--base-dark));
    box-shadow: 0 4px 16px rgba(var(--base-color-rgb), 0.4);
}

#main.form #submit input.submitBtn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(var(--base-color-rgb), 0.45);
}

#main.form #submit input.resetBtn {
    background: linear-gradient(135deg, #9aa0ae, #787e8c);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

#main.form #submit input.resetBtn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* =============================================
   MAP
   ============================================= */
#main.map #frame {
    margin-bottom: 70px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

#main.map #frame iframe {
    width: 890px;
    height: 478px;
    display: block;
}

/* =============================================
   SIDE AREAS
   ============================================= */
#side-area img { max-width: 100%; }
#foot-area img { max-width: 100%; }

/* =============================================
   LIST STYLES IN CONTENT BOXES
   ============================================= */
.box ul, .box1 ul, .box2 ul, .box3 ul,
.articleBox ul, .entry_box ul, .entryBox ul,
.article-box ul, .article ul, .article_box ul {
    list-style-type: disc;
}

.box ol, .box1 ol, .box2 ol, .box3 ol,
.articleBox ol, .entry_box ol, .entryBox ol,
.article-box ol, .article ol, .article_box ol {
    list-style-type: decimal;
}

.box ul, .box1 ul, .box2 ul, .box3 ul,
.articleBox ul, .entry_box ul, .entryBox ul,
.article-box ul, .article ul, .article_box ul,
.box ol, .box1 ol, .box2 ol, .box3 ol,
.articleBox ol, .entry_box ol, .entryBox ol,
.article-box ol, .article ol, .article_box ol {
    margin-left: 20px;
}

/* =============================================
   SNS
   ============================================= */
html body #sns {
    right: 25px;
}

/* =============================================
   UTILITY ANIMATIONS
   ============================================= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.articleBox,
.mainImgIn .inner,
#news {
    animation: fadeIn 0.5s ease forwards;
}