@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+Antique&display=swap");

/* CSSカスタムプロパティ（:root） */
:root {
    --color-primary: #bf4300;
    --color-text: #333;
    --color-light-gray: #eee;
    --color-highlight-gray: #f2f0ee;
    --color-gray: #bebebd;
    --color-dark-gray: #555;
    --color-medium-gray: #666;
    --color-black: #000000;
    --color-red: #d90000;
    --color-highlight: #f7f7f7;
    --header-height-sp: 50px;
    --header-height-pc: 60px;
    --breakpoint-pc: 769px;
    --border-radius-pill: 50rem;
}

/* Sass変数はカスタムプロパティを参照して統一 */
/* アニメーションの共通設定 */
/* リセット */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Roboto", "Zen Kaku Gothic New", sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    font-size: 16px;
    overflow-x: hidden;
    /* 横スクロールバーの発生を防ぐ */
}

p {
    margin-bottom: 1.4rem;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    opacity: 1;
}

a:hover {
    opacity: 0.8;
}

button {
    border: none;
    outline: none;
    background-color: #fff;
}

span {
    display: inline-block;
}

/*SPスクロールバー----------------------------------*/
/* Chrome, Safari, Edge */
.scrollable-element::-webkit-scrollbar {
    display: none;
}

/* Firefox */
.scrollable-element {
    scrollbar-width: none;
}

/* IE, Edge */
.scrollable-element {
    -ms-overflow-style: none;
}

/* 共通スタイル */
.small {
    font-size: 0.7rem;
}

.large {
    font-size: 1.3rem;
}

section {
    margin: 0 auto 1.5rem;
}

@media screen and (min-width: 769px) {
    section {
        margin: 0 auto 3rem;
    }
}

article {
    margin: 0 auto 2.5rem;
    width: 100%;
    background: #fff;
}

@media screen and (min-width: 769px) {
    article {
        /* margin: 0 auto 5rem;*/
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.pdfIcon img {
    display: inline-block;
}

.mb1 {
    margin-bottom: 1rem;
}

.mb2 {
    margin-bottom: 2rem;
}

.mb3 {
    margin-bottom: 3rem;
}

.mb5 {
    margin-bottom: 5rem;
}

.mr1 {
    margin-right: 1rem;
}

.mt1 {
    margin-top: 1rem;
}

.pl1 {
    padding-left: 1rem;
}

.tl {
    text-align: left !important;
}

.tr {
    text-align: right !important;
}

.tc {
    text-align: center !important;
}

.m0auto {
    margin: 0 auto;
}

.textlink {
    color: var(--color-primary);
    text-decoration: none;
}

.textlink:hover {
    color: rgb(140, 49.109947644, 0);
}

.footholdPdf {
    display: inline-block;
    vertical-align: bottom;
    background: url(../img/base/pdf.png) 100% 4px no-repeat;
    padding-right: 23px;
}

.mappin {
    display: inline-block;
    vertical-align: middle;
    background: url(../img/base/mappin.png) 100% 8px no-repeat;
    padding-top: 5px;
    padding-right: 18px;
}

.note {
    font-size: 0.8rem !important;
}

.rounded-pill {
    border-radius: 50rem !important;
}

/* ヘッダー共通スタイル（モバイルを基準に記述） */
.header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    height: var(--header-height-sp);
}

.header__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    height: 100%;
}

.header__logo {
    height: 23px;
}

.header__logo img.logo {
    width: 100%;
    max-width: 150px;
}

.header__nav {
    display: none;
}

.header__menu {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
    flex-direction: row;
    justify-content: flex-end;
}

.header__menu>li>a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    padding: 15px 10px;
    display: block;
    transition: color 0.3s ease;
}

.header__menu>li>a:hover {
    color: var(--color-primary);
}

.has-megamenu {
    position: relative;
}

.has-megamenu:hover .megamenu-panel {
    opacity: 1;
    visibility: visible;
}

.megamenu-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.megamenu-inner {
    padding: 20px;
}

.megamenu-group-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--color-text);
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 5px;
}

.submenu-pc {
    list-style: none;
}

.submenu-pc li {
    margin-bottom: 8px;
}

.submenu-pc a {
    text-decoration: none;
    color: var(--color-dark-gray);
    display: block;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.submenu-pc a:hover {
    color: var(--color-primary);
}

.hamburger {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

.hamburger.is-active span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}

.location-icon {
    display: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1100;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyIDJDMTYuNDE4IDIgMjAgNS41ODIgMjAgMTBDMjAgMTQuNDE4IDE2LjQxOCAxOCAxMiAxOEM3LjU4MiAxOCA0IDE0LjQxOCA0IDEwQzQgNS41ODIgNy41ODIgMiAxMiAyWk0xMiA4QzEwLjg5NSA4IDEwIDguODk1IDEwIDEwQzEwIDExLjEwNSAxMC44OTUgMTIgMTIgMTJDMTMuMTA1IDEyIDE0IDExLjEwNSAxNCAxMEMxNCA4Ljg5NSAxMy4xMDUgOCAxMiA4WiIgZmlsbD0iIzMzMyIvPgo8cGF0aCBkPSJNMTIgMjJMMTUgMTVIOUwxMiAyMloiIGZpbGw9IiMzMzMiLz4KPC9zdmc+") no-repeat center center;
    background-size: 24px 24px;
    border: none;
    background-color: transparent;
    transition: opacity 0.2s ease;
}

.location-icon:hover {
    opacity: 0.7;
}

.slide-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: auto;
    min-width: 320px;
    max-width: 500px;
    height: 100dvh;
    max-height: 100dvh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    /*transition: right 0.8s cubic-bezier(0.16, 1, 0.3, 1);*/
    z-index: 2000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-menu.is-open {
    right: 0;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.slide-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
    z-index: 1999;
}

.slide-menu-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.slide-menu-header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--color-light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-primary);
    color: white;
    min-height: var(--header-height-sp);
    flex-shrink: 0;
}

.slide-menu-title {
    font-size: 18px;
    font-weight: bold;
}

.slide-menu-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: env(safe-area-inset-bottom, 20px);
}

.slide-menu-nav {
    padding: 0;
}

.slide-menu-list {
    display: flex;
    flex-direction: column;
}

.slide-menu-list a {
    color: initial;
}

.slide-menu-item {
    border-bottom: 1px solid var(--color-light-gray);
}

.slide-menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.slide-menu-item.has-submenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-height: 44px;
}

.slide-menu-item.has-submenu>.slide-menu-link {
    flex-grow: 1;
    margin-right: 15px;
    position: relative;
    z-index: 1;
}

.slide-menu-item.has-submenu.is-open>.toggle-button .icon-plus {
    opacity: 0;
}

.slide-menu-item.has-submenu.is-open>.toggle-button .icon-minus {
    opacity: 1;
}

.slide-menu-link {
    display: block;
    font-size: 20px;
    padding: 10px;
    color: var(--color-text);
    transition: color 0.2s ease;
}

@media screen and (min-width: 769px) {
    .slide-menu-link:hover {
        color: var(--color-primary);
    }
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.close-btn:hover {
    transform: scale(1.1);
}

.navTitlemenu {
    color: #fff;
    background-color: #999999;
    padding: 0.5rem;
    font-weight: bold;
}

.navSearch {
    position: relative;
    display: block;
    font-weight: bold;
    padding: 11px 15px 10px 40px;
    background: #d8d8d8 url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTExIDJDMTUuOTcgMiAyMCA2LjAzIDIwIDExQzIwIDEzLjEyIDE5LjMzIDE1LjA3IDE4LjE5IDE2LjZMMjIgMjAuMzlMMjAuMzkgMjJMMTYuNiAxOC4xOUMxNS4wNyAxOS4zMyAxMy4xMiAyMCAxMSAyMEM2LjAzIDIwIDIgMTUuOTcgMiAxMUMyIDYuMDMgNi4wMyAyIDExIDJaTTExIDRDNy4xNCA0IDQgNy4xNCA0IDExQzQgMTQuODYgNy4xNCAxOCAxMSAxOEMxNC44NiAxOCAxOCAxNC44NiAxOCAxMUMxOCA3LjE0IDE0Ljg2IDQgMTEgNFoiIGZpbGw9IiM2NjYiLz4KPC9zdmc+") no-repeat 10px;
    background-size: 24px;
    background-position-y: center;
    color: #666666;
    border-bottom: 1px solid var(--color-light-gray);
}

.navMail {
    position: relative;
    display: block;
    font-weight: bold;
    padding: 11px 15px 10px 40px;
    background: #e5e5e5 url("/img/common/mailLogo.png") no-repeat 10px;
    background-size: 24px;
    background-position-y: center;
    color: #666666;
    border-bottom: 1px solid var(--color-light-gray);
}

.linewidget {
    position: relative;
    display: block;
    font-weight: bold;
    padding: 11px 15px 10px 40px;
    background: #f3f3f3 url("/images/LINEwidget.png") no-repeat 9px;
    background-size: 24px;
    background-position-y: center;
    color: #666666;
    border-bottom: 1px solid var(--color-light-gray);
}

.submenu {
    width: 100%;
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.3s;
    padding-left: 0;
    will-change: height, opacity;
}

.submenu.is-open-active {
    opacity: 1;
    visibility: visible;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear;
}

.submenu li {
    padding: 8px 0 4px 0;
    border-top: 1px solid var(--color-light-gray);
}

.submenu li.has-submenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.submenu li.has-submenu>a {
    flex-grow: 1;
    margin-right: 15px;
}

.submenu li.has-submenu.is-open>.toggle-button .icon-plus {
    opacity: 0;
}

.submenu li.has-submenu.is-open>.toggle-button .icon-minus {
    opacity: 1;
}

.submenu>li {
    padding-left: 30px;
}

.submenu>li>.submenu>li {
    padding-left: 30px;
}

.submenu a {
    font-size: 16px;
    color: var(--color-medium-gray);
    display: block;
}

.toggle-button {
    background: none;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 0;
    margin: 0 1rem 0 0;
}

.toggle-button img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}

.icon-plus {
    opacity: 1;
}

.icon-minus {
    opacity: 0;
}

.main-content {
    margin-top: var(--header-height-sp);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.main-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.main-content p {
    margin-bottom: 1.4rem;
    line-height: 1.8;
}

.main-content ul {
    margin-left: 20px;
    list-style: disc;
}

.main-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media screen and (min-width: 769px) {
    .header {
        height: var(--header-height-pc);
    }

    .header__inner {
        padding: 15px 20px;
    }

    .header__nav {
        display: block;
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .header__menu>li {
        margin-left: 30px;
        position: relative;
    }

    .header__menu>li>a {
        font-size: 16px;
        padding: 5px 0;
        position: relative;
    }

    .header__menu>li>a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--color-primary);
        transition: width 0.3s ease;
    }

    .header__menu>li>a:hover {
        opacity: 1;
    }

    .header__menu>li>a:hover::after {
        width: 100%;
    }

    .header__menu>li:last-child>a::after {
        display: none;
    }

    .location-icon {
        display: block;
    }

    .main-content {
        margin-top: var(--header-height-pc);
    }

    .has-megamenu:hover .megamenu-panel {
        opacity: 1;
        visibility: visible;
    }

    .slide-menu {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .slide-menu {
        min-width: 300px;
        max-width: 85%;
    }

    .slide-menu-header {
        padding: 10px 15px;
    }

    .slide-menu-title {
        font-size: 16px;
    }
}

/* ハンバーガーアイコン */
@media screen and (min-width: 769px) {
    .hamburger {
        display: none;
    }
}

/* ロケーションアイコン（PC用） */
.location-icon {
    display: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1100;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyIDJDMTYuNDE4IDIgMjAgNS41ODIgMjAgMTBDMjAgMTQuNDE4IDE2LjQxOCAxOCAxMiAxOEM3LjU4MiAxOCA0IDE0LjQxOCA0IDEwQzQgNS41ODIgNy41ODIgMiAxMiAyWk0xMiA4QzEwLjg5NSA4IDEwIDguODk1IDEwIDEwQzEwIDExLjEwNSAxMC44OTUgMTIgMTIgMTJDMTMuMTA1IDEyIDE0IDExLjEwNSAxNCAxMEMxNCA4Ljg5NSAxMy4xMDUgOCAxMiA4WiIgZmlsbD0iIzMzMyIvPgo8cGF0aCBkPSJNMTIgMjJMMTUgMTVIOUwxMiAyMloiIGZpbGw9IiMzMzMiLz4KPC9zdmc+") no-repeat center center;
    background-size: 24px 24px;
    border: none;
    background-color: transparent;
    transition: opacity 0.2s ease;
}

.location-icon:hover {
    opacity: 0.7;
}

/*アニメーション------------*/
.hero-section {
    position: relative;
    width: 100%;
    height: 100dvh;
    background: url(/corporate/images/top_Parallaxback.jpg) center / cover no-repeat;
    background-attachment: fixed;
    /* これがパララックス効果を作る */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    will-change: initial !important;
}

.hero-section:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 2rem;
    opacity: 0;
    animation: contentFadeIn 1.2s ease-out 0.3s forwards;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.company-tagline {
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 1);
    opacity: 0;
    animation: fadeIn 3.5s ease forwards;
    animation-delay: 3.5s;
}

.main-title {
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 3.5s ease forwards;
    animation-delay: 3.5s;
    line-height: 1.2;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.subtitle {
    font-size: 2.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff 0%, #e6f3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border-right: 3px solid rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    animation: typewriter 2.5s steps(40) 1s forwards, blinkCursor 1s infinite 3.5s;
    width: 0;
    letter-spacing: 0.05em;
}

@keyframes typewriter {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blinkCursor {

    0%,
    50% {
        border-color: rgba(255, 255, 255, 0.7);
    }

    51%,
    100% {
        border-color: transparent;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: scrollIndicatorFade 1s ease-out 3.5s forwards, bounce 3s ease-in-out 4.5s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

@keyframes scrollIndicatorFade {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

.scroll-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.6);
    margin: 0 auto;
    position: relative;
}

.scroll-arrow::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 5px;
    height: 5px;
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.3rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .company-tagline {
        font-size: 1rem;
    }

    .hero-section {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.2rem;
    }
}

/*トップアニメーション----------------------*/
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("https://www.townnews.co.jp/recruit/202508/saiyou_top_slide0.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    background-attachment: fixed;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.catch-copy {
    position: relative;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    z-index: 2;
    margin-bottom: 20px;
    animation: fadeInUp 2s ease forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.townlogo {
    width: 180px;
    height: auto;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 2.5s ease forwards;
    animation-delay: 1.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .catch-copy {
        font-size: 2rem;
    }

    .logo {
        width: 140px;
    }
}

/* コンテンツ部分 */
.content {
    margin-top: var(--header-height-sp);
    padding: 20px;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.content ul.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    padding: 1rem 0 1.5rem;
}

.content ul.breadcrumbs li {
    color: #999;
    font-size: 0.9rem;
    position: relative;
    padding-right: 1.5rem;
}

.content ul.breadcrumbs li::after {
    content: "";
    display: block;
    position: absolute;
    right: 10px;
    top: calc(50% - 3px);
    width: 6px;
    height: 6px;
    border-top: 1px solid #aaa;
    border-right: 1px solid #aaa;
    transform: rotate(45deg);
}

.content ul.breadcrumbs li:first-child::after {
    top: 25%;
    right: 12px;
    width: 1px;
    height: 50%;
    border: 0;
    background: #aaa;
    transform: none;
}

.content ul.breadcrumbs li:last-child {
    color: initial;
}

.content ul.breadcrumbs li:last-child::after {
    display: none;
}

.content .main {
    /*プルダウン-------------------------*/
    /*▲▲▲プルダウン▲▲▲-------------------------*/
    /*-----bottom_link-----------------*/
    /*-----bottom_link-----------------*/
    /*-----dtdd------------------------*/
}

.content .main h1.headline {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.content .main h2.subheadline {
    border-left-width: 4px;
    border-left-style: solid;
    border-left-color: var(--color-gray);
    color: var(--color-dark-gray);
    padding-left: 0.5rem;
    margin-bottom: 1rem;
}

.content .main h2.articlesubheadline {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
    margin: 2rem 0 1.5rem;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.content .main h2.articlesubheadline::after {
    content: "";
    display: block;
    margin: 0.5rem auto;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.content .main h2.articlesubheadline.is-animate::after {
    transform: scaleX(1);
}

.content .main #divSelect {
    position: relative;
    display: block;
    width: 100%;
    max-width: 200px;
    margin-bottom: 1rem;
}

.content .main #divSelect #yearSelect {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    padding: 10px 40px 10px 16px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    background-color: white;
    color: #1f2937;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M7 8l3 3 3-3'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 24px 24px;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.content .main #divSelect #yearSelect:hover {
    border-color: none;
}

.content .main #divSelect #yearSelect:focus {
    outline: none;
    border-color: #d1d5db;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.content .main .selected-value-display {
    font-size: 14px;
    color: #4b5563;
    margin-top: 16px;
    text-align: center;
}

.content .main .selected-value {
    font-weight: 500;
    color: #2563eb;
}

.content .main #corporate .news_flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

@media screen and (min-width: 769px) {
    .content .main #corporate .news_flex {
        flex-direction: row;
    }
}

.content .main .news_flexwrap,
.content .main .news_flexwrap.release {
    width: 100%;
    margin-bottom: 1rem;
}

@media screen and (min-width: 769px) {
    .content .main .news_flexwrap {
        width: calc(50% - 1rem);
        margin-bottom: 2rem;
    }
}

.content .main .news_flexwrap .news_flexwrap_title {
    text-align: center;
    padding: 1rem 0;
}

.content .main #corporate .newsList,
.content .main #corporate .irnewsList {
    margin-bottom: 1rem;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 769px) {

    .content .main #corporate .newsList,
    .content .main #corporate .irnewsList {
        margin-bottom: 2rem;
    }
}

.content .main #corporate .newsList li .newsListWrap a,
.content .main #corporate .irnewsList li .newsListWrap a {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    transition: background-color 0.2s ease-out;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    min-height: 115px;
    justify-content: center;
    color: initial;
}

.content .main #corporate .release .newsList li .newsListWrap a {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    transition: background-color 0.2s ease-out;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    min-height: 115px;
}

@media screen and (min-width: 769px) {
    .content .main #corporate .release .newsList li .newsListWrap a {
        flex-direction: row;
        min-height: 75px;
        justify-content: flex-start;
        align-items: center;
    }
}

.content .main #corporate .newsList li .newsListWrap a:hover,
.content .main #corporate .irnewsList li .newsListWrap a:hover,
.content .main #corporate .release .newsList li .newsListWrap a:hover {
    background: #fff6ee;
    opacity: 1;
}

.content .main #corporate .newsList li .newsListWrap a .data,
.content .main #corporate .irnewsList li .newsListWrap a .data {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.content .main #corporate .release .newsList li .newsListWrap a .data {
    font-size: 0.9rem;
    margin: 0;
}

@media screen and (min-width: 769px) {
    .content .main #corporate .release .newsList li .newsListWrap a .data {
        width: 20%;
    }
}

.content .main #corporate .newsList li .newsListWrap a .data .category,
.content .main #corporate .irnewsList li .newsListWrap a .data .category,
.content .main #corporate .release .newsList li .newsListWrap a .data .category {
    padding: 0 0.4rem;
    border: 1px solid var(--color-light-gray);
    margin-left: 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    color: #aaa;
    background-color: var(--color-light-gray);
}

.content .main #corporate .newsList li .newsListWrap a .text,
.content .main #corporate .irnewsList li .newsListWrap a .text {
    font-weight: 600;
}

.content .main #corporate .release .newsList li .newsListWrap a .text {
    font-weight: 600;
}

@media screen and (min-width: 769px) {
    .content .main #corporate .release .newsList li .newsListWrap a .text {
        width: 80%;
    }
}

.content .main #corporate .newsList li .newsListWrap a .text img,
.content .main #corporate .irnewsList li .newsListWrap a .text img,
.content .main #corporate .release .newsList li .newsListWrap a .text img {
    vertical-align: text-top;
}

.content .main #corporate .newsList li .newsListWrap a .filesize,
.content .main #corporate .irnewsList li .newsListWrap a .filesize,
.content .main #corporate .release .newsList li .newsListWrap a .filesize {
    font-size: 0.8rem;
    font-weight: 400;
    color: #999;
}

.content .main #corporate .company-info-section .graph,
.content .main #company_library .company-info-section .graph {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
}

.content .main #corporate .articlewrap,
.content .main #company_library .articlewrap {
    max-width: 750px;
    margin: 0 auto;
    /* グリッドコンテナの共通スタイル */
    /* グリッドアイテムの共通スタイル */
}

.content .main #corporate .articlewrap ul.privacy,
.content .main #company_library .articlewrap ul.privacy {
    margin-bottom: 2rem;
}

.content .main #corporate .articlewrap ul.privacy::marker,
.content .main #company_library .articlewrap ul.privacy::marker {
    color: color-dark-gray;
}

.content .main #corporate .articlewrap ul.privacy li,
.content .main #company_library .articlewrap ul.privacy li {
    font-weight: bold;
    list-style-type: disc;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.content .main #corporate .articlewrap ul.privacySecond,
.content .main #company_library .articlewrap ul.privacySecond {
    padding: 20px 0 0 25px;
}

.content .main #corporate .articlewrap ul.privacySecond li,
.content .main #company_library .articlewrap ul.privacySecond li {
    margin-bottom: 0.5rem;
    line-height: 1.3;
    list-style-type: decimal;
    font-weight: normal;
}

.content .main #corporate .articlewrap ul.privacySecond li::marker,
.content .main #company_library .articlewrap ul.privacySecond li::marker {
    color: var(--color-dark-gray);
}

.content .main #corporate .articlewrap ul.privacySecond li .privacyThird,
.content .main #company_library .articlewrap ul.privacySecond li .privacyThird {
    padding: 10px 0 0 15px;
    margin-bottom: 1rem;
}

.content .main #corporate .articlewrap ul.privacySecond li .privacyThird li,
.content .main #company_library .articlewrap ul.privacySecond li .privacyThird li {
    margin-bottom: 0.5rem;
    line-height: 1.3;
    list-style-type: square;
    font-weight: normal;
}

.content .main #corporate .articlewrap ul.privacySecond li .privacyThird li:first-child,
.content .main #company_library .articlewrap ul.privacySecond li .privacyThird li:first-child {
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-weight: normal;
}

.content .main #corporate .articlewrap ul.privacyother,
.content .main #company_library .articlewrap ul.privacyother {
    margin: 1rem 0;
}

.content .main #corporate .articlewrap ul.privacyother li,
.content .main #company_library .articlewrap ul.privacyother li {
    margin-bottom: 1rem;
    line-height: 1.3;
    list-style-type: none;
    font-weight: normal;
}

.content .main #corporate .articlewrap ul.privacyother li:last-child,
.content .main #company_library .articlewrap ul.privacyother li:last-child {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.content .main #corporate .articlewrap ul.privacyother .privacyThird,
.content .main #company_library .articlewrap ul.privacyother .privacyThird {
    padding: 1rem 0 0.3rem 1rem;
    margin-bottom: 1rem;
}

.content .main #corporate .articlewrap ul.privacyother .privacyThird li,
.content .main #company_library .articlewrap ul.privacyother .privacyThird li {
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-weight: normal;
}

.content .main #corporate .articlewrap ul.privacyother .privacyThird li:first-child,
.content .main #company_library .articlewrap ul.privacyother .privacyThird li:first-child {
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-weight: normal;
}

.content .main #corporate .articlewrap .guide .cap,
.content .main #company_library .articlewrap .guide .cap {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-dark-gray);
}

.content .main #corporate .articlewrap .box,
.content .main #company_library .articlewrap .box {
    margin-bottom: 20px;
    padding: 15px;
    border: #ebebeb 3px solid;
}

.content .main #corporate .articlewrap .grid-container,
.content .main #company_library .articlewrap .grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    /* gap-4 */
    margin-bottom: 2rem;
}

.content .main #corporate .articlewrap .grid-item,
.content .main #company_library .articlewrap .grid-item {
    align-items: center;
    justify-content: center;
}

.content .main #corporate .articlewrap .grid-item img,
.content .main #company_library .articlewrap .grid-item img {
    max-width: 400px;
    width: 100%;
}

@media screen and (min-width: 769px) {

    .content .main #corporate .articlewrap,
    .content .main #company_library .articlewrap {
        /* 1:1:1:1 レイアウト */
        /* 1:3 レイアウト */
        /* 3:1 レイアウト */
        /* 2:2 (1:1) レイアウト */
    }

    .content .main #corporate .articlewrap .grid-4-cols,
    .content .main #company_library .articlewrap .grid-4-cols {
        grid-template-columns: repeat(4, 1fr);
    }

    .content .main #corporate .articlewrap .grid-1-3-cols,
    .content .main #company_library .articlewrap .grid-1-3-cols {
        grid-template-columns: 1fr 3fr;
    }

    .content .main #corporate .articlewrap .grid-3-1-cols,
    .content .main #company_library .articlewrap .grid-3-1-cols {
        grid-template-columns: 3fr 1fr;
    }

    .content .main #corporate .articlewrap .grid-2-cols,
    .content .main #company_library .articlewrap .grid-2-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

.content .main #corporate .articlewrap .philosophy {
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
    font-style: italic;
    text-align: left;
}

@media screen and (min-width: 769px) {
    .content .main #corporate .articlewrap .philosophy {
        font-size: 1.5rem;
        text-align: center;
    }
}

.content .main #corporate .cardbutton,
.content .main #company_library .cardbutton {
    width: 100%;
    max-width: 350px;
    margin: 0 0 0.5rem;
    position: relative;
}

.content .main #corporate .cardbutton a,
.content .main #company_library .cardbutton a {
    padding-left: 2rem;
    transition: 0.5s, background-color 0.5s;
    display: block;
    color: initial;
}

.content .main #corporate .cardbutton a::before,
.content .main #company_library .cardbutton a::before {
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    height: 25px;
    /*margin: auto;*/
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity 0.5s;
    width: 25px;
    background-image: url(/corporate/images/arrow_right_circle_line_orange.svg);
}

.content .main #corporate .cardbutton a::after,
.content .main #company_library .cardbutton a::after {
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    height: 25px;
    /*margin: auto;*/
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity 0.5s;
    width: 25px;
    background-image: url(/corporate/images/arrow_right_circle_fill.svg);
    opacity: 0;
}

.content .main #corporate .cardbutton a:hover,
.content .main #company_library .cardbutton a:hover {
    opacity: 1;
}

.content .main #corporate .cardbutton a:hover::before,
.content .main #company_library .cardbutton a:hover::before {
    opacity: 0;
}

.content .main #corporate .cardbutton a:hover,
.content .main #company_library .cardbutton a:hover {
    opacity: 1;
}

.content .main #corporate .cardbutton a:hover::after,
.content .main #company_library .cardbutton a:hover::after {
    opacity: 1;
}

.content .main #corporate .cardbutton_wrap,
.content .main #company_library .cardbutton_wrap {
    width: 100%;
    margin: 0 0 0.5rem;
    position: relative;
    display: inline;
}

.content .main #corporate .cardbutton_wrap a,
.content .main #company_library .cardbutton_wrap a {
    padding: 1rem 1rem 1rem 3rem;
    display: block;
    transition: color 0.5s, background-color 0.5s;
    border-radius: 8px;
    border: 1px solid var(--color-gray);
}

.content .main #corporate .cardbutton_wrap a::before,
.content .main #company_library .cardbutton_wrap a::before {
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    height: 25px;
    margin: auto;
    position: absolute;
    left: 10px;
    top: 0;
    transition: opacity 0.5s;
    width: 25px;
    background-image: url(/corporate/images/arrow_right_circle_line_orange.svg);
}

.content .main #corporate .cardbutton_wrap a::after,
.content .main #company_library .cardbutton_wrap a::after {
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    height: 25px;
    margin: auto;
    position: absolute;
    left: 10px;
    top: 0;
    transition: opacity 0.5s;
    width: 25px;
    background-image: url(/corporate/images/arrow_right_circle_fill.svg);
    opacity: 0;
}

.content .main #corporate .cardbutton_wrap a:hover,
.content .main #company_library .cardbutton_wrap a:hover {
    opacity: 1;
}

.content .main #corporate .cardbutton_wrap a:hover::before,
.content .main #company_library .cardbutton_wrap a:hover::before {
    opacity: 0;
}

.content .main #corporate .cardbutton_wrap a:hover,
.content .main #company_library .cardbutton_wrap a:hover {
    opacity: 1;
}

.content .main #corporate .cardbutton_wrap a:hover::after,
.content .main #company_library .cardbutton_wrap a:hover::after {
    opacity: 1;
}

.content .main #corporate .teamwrapper,
.content .main #company_library .teamwrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 400px;
}

.content .main #corporate .teamwrapper .teammember,
.content .main #company_library .teamwrapper .teammember {
    width: calc(50% - 20px);
    margin: 0 1rem 2rem 0;
    max-width: 130px;
}

.content .main #corporate .teamwrapper .teammember img,
.content .main #company_library .teamwrapper .teammember img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.content .main #corporate .teamwrapper .teammember .position,
.content .main #company_library .teamwrapper .teammember .position {
    font-size: 0.8rem;
    color: var(--color-medium-gray);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.content .main #corporate .teamwrapper .teammember .name,
.content .main #company_library .teamwrapper .teammember .name {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.content .main #corporate .teamwrapper .teammemberwrap,
.content .main #company_library .teamwrapper .teammemberwrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.content .main #corporate .teamwrapper .teammemberwrap .teammember,
.content .main #company_library .teamwrapper .teammemberwrap .teammember {
    width: 100%;
}

.content .main .bottom_link .bottom_linkwrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
}

.content .main .bottom_link .bottom_linkwrapper .linkwrap {
    margin: 0 0 1.5rem;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.content .main .bottom_link .bottom_linkwrapper .linkwrap h3.link_menutitle {
    color: var(--color-gray);
    padding: 1rem;
}

.content .main .bottom_link .bottom_linkwrapper .linkwrap ul.link_menu li {
    position: relative;
    border-bottom: 1px solid var(--color-light-gray);
}

.content .main .bottom_link .bottom_linkwrapper .linkwrap ul.link_menu li:last-child {
    border-bottom: none;
}

.content .main .bottom_link .bottom_linkwrapper .linkwrap ul.link_menu li::after {
    content: "";
    display: block;
    position: absolute;
    right: 15px;
    top: calc(50% - 3px);
    width: 6px;
    height: 6px;
    border-top: 1px solid #aaa;
    border-right: 1px solid #aaa;
    transform: rotate(45deg);
}

.content .main .bottom_link .bottom_linkwrapper .linkwrap ul.link_menu li .link_menuwrap a {
    display: block;
    color: var(--color-dark-gray);
    font-size: 0.9rem;
    transition: background-color 0.2s ease-out;
    padding: 0.8rem 1rem;
}

.content .main .bottom_link .bottom_linkwrapper .linkwrap ul.link_menu li .link_menuwrap a:hover {
    background: #fff6ee;
    opacity: 1;
}

.content .main .company-info {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
}

.content .main .company-info div {
    display: flex;
    flex-direction: column;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--color-gray);
}

@media screen and (min-width: 769px) {
    .content .main .company-info div {
        flex-direction: row;
        align-items: flex-start;
    }
}

.content .main .company-info div:last-child {
    border-bottom: none;
}

.content .main .company-info div dt {
    min-width: 8rem;
    font-weight: bold;
    color: var(--color-dark-gray);
    margin-bottom: 1rem;
    border-radius: 6px;
}

@media screen and (min-width: 769px) {
    .content .main .company-info div dt {
        margin-bottom: 0;
        margin-right: 1.5em;
        text-align: right;
    }
}

.content .main .company-info div dt.year {
    min-width: 4em;
    width: 4em;
}

.content .main .company-info div dt.month {
    min-width: 2.5em;
    width: 2.5em;
}

.content .main .company-info div dt.dt140 {
    width: 140px;
}

.content .main .company-info div dt.dt190 {
    width: 190px;
}

.content .main .company-info div dt.dt335 {
    width: initial;
}

.content .main .company-info div dt.dt285 {
    width: initial;
}

.content .main .company-info div dt span.branch {
    font-size: 1.2rem;
    display: block;
    border-left-width: 4px;
    border-left-style: solid;
    border-left-color: #bebebd;
    color: #555;
    padding-left: 0.5rem;
    margin-bottom: 1rem;
}

.content .main .company-info div dt span.editingroom {
    padding-left: 1rem;
    display: block;
    font-weight: normal;
}

.content .main .company-info div dd {
    flex: 1;
    margin: 0;
    color: var(--color-dark-gray);
    line-height: 1.7;
    word-break: break-word;
    padding-left: 1rem;
}

@media screen and (min-width: 769px) {
    .content .main .company-info div dd {
        padding-left: 0.5em;
    }
}

.content .main .company-info div.column {
    flex-direction: column;
    padding: 0;
}

.content .main .company-info div.column .cardbutton {
    max-width: initial !important;
}

.content .main .company-info div.row {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
}

.content .main .company-info div.row dd {
    flex: none;
    margin: 0;
    color: var(--color-dark-gray);
    line-height: 1.7;
    word-break: break-word;
    padding-left: 1rem;
}

@media screen and (min-width: 769px) {
    .content .main .company-info div.row dd {
        padding-left: 0.5em;
    }
}

.content .main .company-info div.row .cardbutton {
    max-width: initial !important;
}

.footer {
    background: #eee;
    padding: 0;
}

.footer .footerWrap1 {
    padding: 0;
    border-top: none;
}

.footer .footerWrap1 .footerWrap2 .footerTop {
    padding: 1rem;
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    width: 100%;
    max-width: 1140px;
    justify-content: space-between;
    gap: 40px;
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock:nth-child(-n+3) {
    flex-basis: calc(22% - 30px);
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock:nth-child(4) {
    flex-basis: calc(34% - 30px);
    flex-grow: 0;
    flex-shrink: 0;
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock h3.footerAreaNavHeadline {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--color-medium-gray);
    color: var(--color-dark-gray);
    font-size: 1rem;
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock ul.footerAreaNavList li {
    font-size: 0.85rem;
    line-height: 1.3;
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock ul.footerAreaNavList li:hover {
    background-color: var(--color-highlight);
    transition: background-color 0.2s ease-out;
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock ul.footerAreaNavList li a {
    padding: 0.4rem 0;
    display: block;
    color: var(--color-dark-gray);
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock ul.footerAreaNavList li a:hover {
    opacity: 1;
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock .snsiconwrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock .snsiconwrap li {
    padding: 0 0.3rem;
    margin-right: 0.5rem;
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock_ad {
    margin-bottom: 2rem;
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav {
    display: grid;
    grid-template: 1fr/2fr 1fr 1fr;
    width: 100%;
    max-width: 1140px;
    gap: 40px;
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock h3.footerAreaNavHeadline {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--color-medium-gray);
    color: var(--color-dark-gray);
    font-size: 1rem;
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock ul.footerAreaNavList li {
    font-size: 0.85rem;
    line-height: 1.3;
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock ul.footerAreaNavList li:hover {
    background-color: var(--color-highlight);
    transition: background-color 0.2s ease-out;
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock ul.footerAreaNavList li a {
    padding: 0.4rem 0;
    display: block;
    color: var(--color-dark-gray);
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock ul.footerAreaNavList li a:hover {
    opacity: 1;
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock .corpflex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media screen and (min-width: 769px) {
    .footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock .corpflex {
        flex-wrap: nowrap;
    }
}

@media screen and (min-width: 769px) {
    .footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock .corpflex .corpflex_wrap:nth-child(1) {
        width: 30%;
    }

    .footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock .corpflex .corpflex_wrap:nth-child(2) {
        width: 30%;
    }

    .footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock .corpflex .corpflex_wrap:nth-child(3) {
        width: 40%;
    }
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock .corpflex h3 {
    color: #555;
    font-size: 1rem;
    margin: 0.5rem 0;
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock .corpflex .corpAreaNavList li {
    font-size: 0.85rem;
    line-height: 1.3;
    color: #555;
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock .corpflex .corpAreaNavList li:hover {
    background-color: var(--color-highlight);
    transition: background-color 0.2s ease-out;
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock .corpflex .corpAreaNavList li a {
    padding: 0.4rem 0;
    display: block;
    color: var(--color-dark-gray);
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock .corpflex .corpAreaNavList li a:hover {
    opacity: 1;
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock .snsiconwrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock .snsiconwrap li {
    padding: 0 0.3rem;
    margin-right: 0.5rem;
}

.footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock_ad {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock:nth-child(-n+3),
    .footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock:nth-child(4) {
        grid-column: span 1;
    }
}

.footer .footerWrap1 .footerWrap2 .footerBottom {
    border-top: #ccc 1px solid;
    background: #fff;
    width: 100%;
}

.footer .footerWrap1 .footerWrap2 .footerBottom .footerBottomWrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: end;
    padding: 0.5rem;
}

.footer .footerWrap1 .footerWrap2 .footerBottom .footerBottomWrap .left {
    display: none;
}

.footer .footerWrap1 .footerWrap2 .footerBottom .footerBottomWrap .right {
    font-size: 10px;
    margin-bottom: 0;
    text-align: center;
}

/* --- ここからPC向けスタイル（min-width） ------------------------------------------- */
@media screen and (min-width: 769px) {

    /*スクロールバー-----------------------------*/
    /* Chrome, Safari, Edge */
    .scrollable-element::-webkit-scrollbar {
        display: initial;
    }

    /* Firefox */
    .scrollable-element {
        scrollbar-width: initial;
    }

    /* IE, Edge */
    .scrollable-element {
        -ms-overflow-style: initial;
    }

    /* コンテンツ部分 */
    .content {
        margin-top: var(--header-height-pc);
    }

    .content .main {
        /*-----bottom_link-----------------*/
    }

    .content .main #corporate .company-info-section .graph,
    .content .main #company_library .company-info-section .graph {
        flex-direction: row;
    }

    .content .main #corporate .company-info-section .company-info,
    .content .main #company_library .company-info-section .company-info {
        padding: 2rem 1rem;
    }

    .content .main #corporate .company-info-section .company-info dt,
    .content .main #company_library .company-info-section .company-info dt {
        margin-bottom: 0.5rem;
    }

    .content .main #corporate .company-info-section .company-info dt.dt335,
    .content .main #company_library .company-info-section .company-info dt.dt335 {
        width: 335px;
    }

    .content .main #corporate .company-info-section .company-info dt.dt285,
    .content .main #company_library .company-info-section .company-info dt.dt285 {
        width: 285px;
    }

    .content .main #corporate .teamwrapper,
    .content .main #company_library .teamwrapper {
        justify-content: flex-start;
        margin: 0 auto;
        max-width: 100%;
    }

    .content .main #corporate .teamwrapper .teammember,
    .content .main #company_library .teamwrapper .teammember {
        width: calc(20% - 20px);
        margin: 0 1.5rem 2rem 0;
        max-width: 150px;
    }

    .content .main #corporate .teamwrapper .teammemberwrap,
    .content .main #company_library .teamwrapper .teammemberwrap {
        flex-direction: column;
        justify-content: flex-start;
        width: calc(20% - 20px);
    }

    .content .main #corporate .teamwrapper .teammemberwrap .teammember,
    .content .main #company_library .teamwrapper .teammemberwrap .teammember {
        width: 100%;
        margin: 0;
    }

    .content .main .bottom_link .bottom_linkwrapper {
        flex-direction: row;
    }

    .content .main .bottom_link .bottom_linkwrapper .linkwrap {
        width: calc(25% - 20px);
    }

    .overlay-menu__item.is-open>.submenu,
    .overlay-menu__item .submenu>li.is-open>.submenu {
        height: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        overflow: visible !important;
        transition: none !important;
    }

    .overlay-menu__item .toggle-button {
        display: none !important;
    }

    .footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap {
        padding: 1rem;
    }

    .footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav {
        flex-direction: row;
        width: 100%;
        max-width: 1140px;
        justify-content: space-between;
        gap: 40px;
    }

    .footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock:nth-child(-n+3) {
        flex-basis: calc(22% - 30px);
    }

    .footer .footerWrap1 .footerWrap2 .footerTop .footerTopWrap .footerAreaNav .footerAreaNavBlock:nth-child(4) {
        flex-basis: calc(34% - 30px);
        flex-grow: 0;
        flex-shrink: 0;
    }

    .footer .footerWrap1 .footerWrap2 .footerBottom {
        border-top: #ccc 1px solid;
        background: #fff;
    }

    .footer .footerWrap1 .footerWrap2 .footerBottom .footerBottomWrap {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-around;
        align-items: end;
        padding: 1rem;
    }

    .footer .footerWrap1 .footerWrap2 .footerBottom .footerBottomWrap .left {
        display: inline-block;
    }

    .footer .footerWrap1 .footerWrap2 .footerBottom .footerBottomWrap .left ul {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
    }

    .footer .footerWrap1 .footerWrap2 .footerBottom .footerBottomWrap .left ul li {
        margin-right: 1rem;
    }

    .footer .footerWrap1 .footerWrap2 .footerBottom .footerBottomWrap .right {
        font-size: 0.8rem;
        text-align: left;
    }
}

/* bannerArea----*/
.main .bannerArea {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 3rem;
}

@media screen and (min-width: 769px) {
    .main .bannerArea {
        flex-direction: row;
        flex-wrap: nowrap;
        max-width: 850px;
        justify-content: space-between;
    }
}

.main .bannerArea img {
    margin: 0 auto 3rem;
}

/* haighlight */
#qir_menu td a {
    color: var(--color-primary) !important;
}

/*highlight menu---------------*/
/* PC表示（横並び） */
.nav-pc {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.nav-pc a {
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
}

.nav-pc a:hover {
    text-decoration: underline;
}

.nav-pc .separator {
    color: #999;
}

/* SP表示（プルダウン） */
.nav-sp {
    display: none;
}

.nav-sp select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
}

/* レスポンシブ切り替え */
@media screen and (max-width: 768px) {
    .nav-pc {
        display: none;
    }

    .nav-sp {
        display: block;
        margin-bottom: 2rem;
    }
}



/* pagetop */
.pagetop {
    position: absolute;
    top: 0;
    right: 30px;
    z-index: 1000;
    display: none;
}

.pagetop.fix {
    position: fixed;
    top: inherit;
    bottom: 30px;
}

.pagetop img {
    max-width: 30px;
    max-height: 30px;
}

/*# sourceMappingURL=corporate2.css.map */