@charset "UTF-8";

/**
 * Base Styles
 */

:root {
    --tcd-font-type1: "Noto Sans JP", sans-serif;
    --tcd-font-type2: "Noto Sans JP", sans-serif;
    --tcd-font-type3: "Noto Sans JP", sans-serif;
    --tcd-font-type-logo: "Noto Sans JP", sans-serif;
}

body {
    background: #fff;
    color: #000;
    line-height: 1;
    min-width: 320px;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    font-family: var(--tcd-font-type1);
}

a {
    color: #000;
    text-decoration: none;
    -webkit-transition-property: background-color, border-color, color, opacity;
    -webkit-transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
    -moz-transition-property: background-color, border-color, color, opacity;
    -moz-transition-duration: 0.3s;
    -moz-transition-timing-function: ease;
    -ms-transition-property: background-color, border-color, color, opacity;
    -ms-transition-duration: 0.3s;
    -ms-transition-timing-function: ease;
    transition-property: background-color, border-color, color, opacity;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

b, strong {
    font-weight: 700;
}

/**
 * Layout
 */

/* Header */
.l-header {
    position: relative;
}

.l-header__bar {
    position: relative;
    width: 100%;
    z-index: 999;
}

.l-header.is-header-fixed .l-header__bar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Inner */
.l-inner {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 88.8888%;
    max-width: 1110px;
}

@media (max-width: 991px) {
    .l-inner {
        width: 90%;
    }
}

/* Header Upper */
.p-header__upper {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.p-header__upper-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.p-logo {
    flex-shrink: 0;
}

.p-logo a {
    display: block;
    line-height: 0;
}

.p-logo__img {
    height: 40px;
    width: auto;
    display: block;
}

@media (max-width: 767px) {
    .p-logo__img {
        height: 30px;
    }
}

/**
 * Keyframes
 */

@-webkit-keyframes headerSlideDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes headerSlideDown {
    0% {
        transform: translate3d(0, -100%, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/**
 * Section Titles
 */

/* スタイル付きH2タイトル（青い背景、全幅） */
.styled_h2 {
    width: 100%;
    background: linear-gradient(135deg, #357CBD 0%, #2563A8 100%);
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    padding: 40px 20px;
    margin: 80px 0 0;
    line-height: 1.4;
    position: relative;
    box-shadow: 0 4px 20px rgba(53, 124, 189, 0.2);
}

/* レスポンシブ対応 */
@media (max-width: 991px) {
    .styled_h2 {
        font-size: 40px;
        padding: 35px 20px;
        margin: 60px 0 0;
    }
}

@media (max-width: 767px) {
    .styled_h2 {
        font-size: 32px;
        padding: 30px 15px;
        margin: 40px 0 0;
    }
}

/* FAQセクション内のスタイル付きH3 */
.styled_h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin: 30px 0 15px;
    padding-left: 15px;
    border-left: 4px solid #E84B8A;
}

