/* Reset CSS */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
    font-family: 'Heebo', 'Noto Sans JP', sans-serif, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 19px 20px;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

header h1 {
    width: 195px;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
}

.cta-button {
    margin-right: 80px;
    width: 230px;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #333;
}
header .cta {
    top: 3px;
    position: relative;
    margin-right: 80px;
}

header .cta img {
    height: 56px;
}

@media (max-width: 767px) {
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 7px 10px;
        background-color: #fff;
        position: sticky;
        top: 0;
        z-index: 100;
    }

    header h1 {
        width: 100px;
        position: relative;
        top: 3px;
    }

    .header-left {
        display: flex;
        align-items: center;
    }

    .header-right {
        padding-top: 5px;
        display: flex;
        align-items: flex-start;
    }

    .cta-button {
        margin-right: 80px;
        width: 230px;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 100%;
        height: 2px;
        background-color: #333;
    }
    header .cta {
        width: auto;
        position: relative;
        margin-right: 40px;
        height: 35px;
        text-align: right;
        top: 0;
    }
    header .cta img {
        width: auto;
        height: 35px;
    }
}

header .pc-menu-btn {
    background: #fff;
    width: 100px;
    height: 100px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999999999999;
}
header .pc-menu-btn:hover {
    cursor: pointer;
}
header .pc-menu-btn div {
    position: relative;
}
header .pc-menu-btn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    height: 2px;
    border-radius: 5px;
    background: #000;
    width: 45%;
}
header .pc-menu-btn span:nth-of-type(1) {
    top: 31px;
}
header .pc-menu-btn span:nth-of-type(2) {
    top: 45px;
}
header .pc-menu-btn span:nth-of-type(3) {
    top: 60px;
}
header .pc-menu-btn span:nth-of-type(3)::after {
    content: 'MENU';
    position: absolute;
    top: 8px;
    left: 0;
    color: #000;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    right: 0;
    font-weight: bold;
}
header .pc-menu-btn.active span:nth-of-type(1) {
    top: 26px;
    left: 0px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
header .pc-menu-btn.active span:nth-of-type(2) {
    opacity: 0;
}
header .pc-menu-btn.active span:nth-of-type(3) {
    top: 38px;
    left: 0;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
header .pc-menu-btn.active span:nth-of-type(3)::after {
    content: 'CLOSE';
    transform: translateY(0) rotate(-45deg);
    top: 8px;
    left: 8px;
}

@media (max-width: 767px) {
    header .pc-menu-btn {
        width: 50px;
        height: 50px;
        border-left: 1px solid #000;
    }
    header .pc-menu-btn span {
        width: 49%;
    }
    header .pc-menu-btn span:nth-of-type(1) {
        top: 12px;
    }
    header .pc-menu-btn span:nth-of-type(2) {
        top: 20px;
    }
    header .pc-menu-btn span:nth-of-type(3) {
        top: 28px;
    }
    header .pc-menu-btn span:nth-of-type(3)::after {
        top: 6px;
        font-size: 6px;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-align: center;
        right: 0;
    }
}

/*===================================
    drawer
===================================*/
.drawer {
    position: relative;
    background: rgb(255, 255, 255);
    overflow-y: auto;
    height: calc(-80px + 100dvh);
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s;
    display: none;
}

.drawer-inner {
}

.sidebar-is-open .drawer {
    opacity: 1;
    visibility: visible;
}

.sidebar-is-open header {
}

/* sp-navi-box */
.sp-navi-box {
    position: relative;
    border-top: 1px solid rgb(204, 216, 224);
    padding: 0px 0px 35px;
    margin: 0 35px;
}

.sp-header-navi {
    margin: 0px;
    padding: 0px;
}

.sp-header-navi > li {
}

.sp-header-navi > li:first-child {
    margin-top: 0px;
}

.sp-header-navi > li > a {
    color: #000;
    font-weight: 700;
    padding: 18px 0px;
    display: flex;
    border-bottom: 1px solid rgb(204, 216, 224);
    text-decoration: none;
    position: relative;
    font-size: 18px;
}

.sp-header-navi > li > a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 20px;
    transform: translateX(-50%);
    display: inline-block;
    vertical-align: middle;
    color: #b9b9b9;
    line-height: 1;
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(45deg);
    top: 0;
    margin: auto;
}
.sp-header-navi > li.is-accordion-open a::after {
    transform: scale(1, -1);
}

.sp-header-navi .accordion-panel {
    display: none;
    overflow: hidden;
}

/* sp-header-mega-navi */
.sp-header-mega-navi {
    padding: 20px 0px 35px 55px;
    margin: 0px;
}

.sp-header-mega-navi > li {
    width: 100%;
    background: rgb(249, 243, 225);
    border-radius: 15px;
    letter-spacing: 1px;
    margin-top: 15px;
}

.sp-header-mega-navi > li:first-child {
    margin-top: 0px;
}

.sp-header-mega-navi > li > a {
    display: block;
    position: relative;
}

.sp-header-mega-navi > li > a .body {
    border-top: 1px solid rgb(179, 196, 208);
    padding: 18px 15px;
}

.sp-header-mega-navi > li > a .title {
    font-size: var(--18px);
    display: flex;
    justify-content: space-between;
    font-weight: 700;
}

.sp-header-mega-navi > li > a .title::after {
    font-family: iconfont;
    line-height: 1;
    display: inline-block;
    content: '\e903';
    top: 0px;
    position: relative;
    font-size: 14px;
    transform: rotate(-90deg);
    left: 4px;
}

/* sp-header-utility-navi */
.sp-header-utility-navi {
    margin: 35px 0px 0px;
    font-size: 15px;
    padding: 0px;
}

.sp-header-utility-navi > li {
    margin: 20px 0px 0px;
}

/* sp-header-search */
.sp-header-search {
    position: relative;
    margin-top: 65px;
}

.sp-header-search input {
    width: 100%;
    height: 50px;
    padding: 0px 18px;
    background-color: rgb(237, 236, 234);
    border: none;
    border-radius: 9999px;
    font-weight: 700;
    font-size: var(--16px);
}

.sp-header-search input::placeholder {
    font-size: var(--18px);
    color: rgb(32, 64, 104);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 8px;
}

.sp-header-search-label {
    position: absolute;
    color: rgb(32, 64, 104);
    font-size: var(--16px);
    line-height: 1.2;
    pointer-events: none;
    display: block;
    padding-left: 16px;
    width: 100%;
    transform: translateY(-50%);
    top: 50%;
}

.sp-header-search-label::before {
    display: block;
    font-family: iconfont;
    line-height: 1;
    content: '\e902';
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    font-size: var(--26px);
    font-weight: normal;
    color: rgb(32, 64, 104);
}

/* sp-copyright-box */
.sp-copyright-box {
    margin-top: 40px;
    display: flex;
    align-items: center;
}

.sp-copyright-box .copyright-primary-box {
    display: flex;
    align-items: center;
    border-top: 1px solid rgb(204, 216, 225);
    padding: 25px 0px;
    flex-wrap: wrap;
}

.sp-copyright-box .sp-copyright-logo {
    max-width: 190px;
    width: 100%;
    margin: 0px;
}

.sp-copyright-box .sp-language {
    margin: 0px 0px 0px auto;
}

.sp-copyright-box .sp-language-navi > li {
    margin-left: 8px;
    padding: 0px 0px 0px 8px;
    border-left: 1px solid rgb(0, 58, 105);
    line-height: 1;
}

.sp-copyright-box .sp-language-navi > li:first-child {
    margin-left: 0px;
    border-left: none;
}

.sp-copyright-box .sp-language-navi > li > a {
    display: block;
    padding: 2px 11px 3px;
    border-radius: 200px;
    background: rgb(239, 240, 244);
    color: rgb(142, 150, 177);
    font-size: var(--17px);
}

.sp-copyright-box .sp-language-navi > .active > a {
    background: rgb(29, 45, 100);
    color: rgb(255, 255, 255);
}

/* sp-navi-toggle */
.sp-navi-toggle {
    font-size: 10px;
    font-weight: bold;
    line-height: 1;
    position: absolute;
    top: 26px;
    right: 20px;
    display: block;
    width: 47px;
    height: 53px;
    transition: all 0.4s ease 0s;
    color: rgb(70, 70, 70);
    border: none;
    outline: none;
    background: none;
    appearance: unset;
    cursor: pointer;
}

.sp-navi-toggle .menu,
.sp-navi-toggle .close {
    position: absolute;
    bottom: 0px;
    left: -50%;
    display: block;
    width: 34px;
    height: 11px;
}

.sp-navi-toggle .close {
    display: none;
}

.sp-navi-toggle .bar {
    position: absolute;
    left: 0px;
    width: 100%;
    height: 1px;
    background-color: #000;
}

.sp-navi-toggle .bar:nth-of-type(1) {
    top: 0px;
}

.sp-navi-toggle .bar:nth-of-type(2) {
    top: -18px;
    bottom: 0px;
    margin: auto;
}

.sp-navi-toggle .bar:nth-of-type(3) {
    bottom: 19px;
}

.sp-navi-toggle .label:after {
    position: absolute;
    content: 'MENU';
    top: 46px;
    left: 0;
    color: #000;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    right: 0;
    font-weight: bold;
    height: 19px;
    display: block;
}
.sidebar-is-open .sp-navi-toggle .label:after {
    content: 'CLOSE';
}

@media screen and (max-width: 767px) {
    .drawer {
        height: calc(-50px + 100dvh);
    }
    .sp-navi-box {
        margin-top: 40px;
    }
    .sp-navi-toggle .bar:nth-of-type(1) {
        top: 0px;
    }

    .sp-navi-toggle .bar:nth-of-type(2) {
        top: -12px;
        bottom: 0px;
        margin: auto;
    }

    .sp-navi-toggle .bar:nth-of-type(3) {
        bottom: 11px;
    }
    .sp-navi-toggle .label:after {
        top: 26px;
        color: #000;
        font-size: 7px;
    }
    .sp-header-navi > li > a {
        font-size: 12px;
    }
}

body.index .sp-navi-toggle .bar {
    background-color: rgb(32, 64, 104);
}

html.sidebar-is-open .sp-navi-toggle .bar:nth-of-type(1) {
    top: 5px;
    transform: rotate(45deg);
}

html.sidebar-is-open .sp-navi-toggle .bar:nth-of-type(2) {
    top: 5px;
    transform: rotate(-45deg);
}

html.sidebar-is-open .sp-navi-toggle .bar:nth-of-type(3) {
    display: none;
}

html.sidebar-is-open .sp-navi-toggle .menu {
    display: none;
}

html.sidebar-is-open .sp-navi-toggle .close {
    display: block;
}

html.sidebar-is-open .sp-navi-toggle .bar:nth-of-type(1) {
    top: 13px;
}

html.sidebar-is-open .sp-navi-toggle .bar:nth-of-type(2) {
    top: -25px;
}

html.sidebar-is-open .sp-navi-toggle {
    top: 26px;
}

.header-navi-box {
    display: none !important;
}

html.sidebar-is-open .sp-header {
    display: block !important;
}

html.sidebar-is-open {
    position: fixed;
    inset: 0px;
    overflow: hidden;
    width: 100%;
}

.sidebar-is-open body {
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    html.sidebar-is-open .sp-navi-toggle {
        top: 3px;
    }
    html.sidebar-is-open .sp-navi-toggle .bar:nth-of-type(1) {
        top: 10px;
    }

    html.sidebar-is-open .sp-navi-toggle .bar:nth-of-type(2) {
        top: -10px;
    }
    .sp-navi-toggle {
        width: 28px;
        top: 3px;
        right: 0;
        margin: 10px;
        height: 30px;
    }
}

main {
    overflow: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 0;
    background-color: #f5f5f5;
    background: url(../images/hero_bg.png) no-repeat;
    background-position: right top;
    height: 855px;
    margin-top: 40px;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero_bg_gray.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    height: 100%;
    padding: 0 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.hero .img01 {
    position: absolute;
    bottom: 200px;
    left: 70px;
    width: 350px;
}

.hero .cta {
    position: absolute;
    bottom: 190px;
    right: 101px;
    width: 180px;
    margin: 0;
    bottom: 225px;
}

.hero h1 {
    z-index: 2;
    font-weight: bold;
    position: absolute;
    top: 95px;
    left: 50px;
    margin: auto;
    width: 640px;
}

.highlight-box {
    background-color: #00b4e1;
    color: white;
    padding: 5px 10px;
    font-size: 81px;
    font-weight: bold;
}

.hero-image {
    width: 100%;
    border-radius: 10px;
}

@media screen and (max-width: 767px) {
    .hero {
        padding: 0;
        height: 600px;
        margin-top: 0px;
        background: url(../images/hero_bg_sp.png) no-repeat;
        background-position: center;
        background-size: cover;
    }

    .hero::before {
        bottom: 0px;
        right: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/hero_bg_gray.png');
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: contain;
        z-index: 0;
    }

    .hero-content {
        height: 100%;
        padding: 0 50px;
        max-width: 100%;
    }

    .hero .img01 {
        position: absolute;
        bottom: 10px;
        left: 10px;
        width: 175px;
    }

    .hero .cta {
        right: 20px;
        width: 120px;
        bottom: -10px;
    }

    .hero h1 {
        top: 160px;
        left: 0;
        width: 100%;
        max-width: 310px;
        right: 0;
        display: flex;
        margin: auto;
    }

    .highlight-box {
        padding: 6px 10px;
        font-size: 28px;
        line-height: 28px;
        display: inline-block;
    }

    .hero-image {
        width: 100%;
        border-radius: 10px;
    }
}

/* Pain Points Section */
.pain-points {
    padding: 0 20px 40px;
    text-align: center;
    background: #edeff4;
}

.pain-points h2 {
    font-size: 51px;
    margin-bottom: 85px;
    font-weight: bold;
    position: relative;
}

.pain-points h2 .large::before {
    content: '';
    display: block;
    background: url(../images/pain_img_03.png) no-repeat;
    width: 230px;
    height: 47px;
    background-position: left;
    position: absolute;
    left: -20px;
    right: 0;
    margin: auto;
    top: 81px;
}

.pain-points h2 .large {
    position: relative;
    display: inline-block;
    font-size: 66px;
    margin-bottom: 30px;
    font-weight: bold;
}

.pain-points .container {
    max-width: 850px;
    margin: 0 auto;
}

.pain-points-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 70px;
    position: relative;
    background: url(../images/pain_img_04.png) no-repeat;
    background-position: center bottom;
    padding: 0 0px 80px;
}

.pain-point {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pain-point-inner {
    padding: 60px 60px;
    margin-bottom: 10px;
    position: relative;
    width: 100%;
    font-size: 28px;
    font-weight: bold;
    background: #fff;
    border-radius: 50px;
}

.pain-points .img01 {
    position: absolute;
    right: -120px;
    top: -100px;
}
.pain-points .img02 {
    position: absolute;
    left: -186px;
    bottom: 20px;
    margin: auto;
}

@media screen and (max-width: 767px) {
    .pain-points {
        padding: 20px 20px 80px;
        background: #edeff4;
    }

    .pain-points h2 {
        font-size: 20px;
        margin-bottom: 0;
        font-weight: bold;
        position: relative;
    }

    .pain-points h2 .large::before {
        content: '';
        display: block;
        background: url(../images/pain_img_03.png) no-repeat;
        width: 80px;
        height: 47px;
        background-position: left;
        position: absolute;
        left: 0px;
        right: 0;
        margin: auto;
        top: 18px;
        background-size: cover;
    }

    .pain-points h2 .large {
        position: relative;
        display: inline-block;
        font-size: 26px;
        margin-bottom: 0;
        font-weight: bold;
    }

    .pain-points .container {
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
    }

    .pain-points-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 70px;
        position: relative;
        background: url(../images/pain_img_04.png) no-repeat;
        background-position: center bottom;
        padding: 0 0px 80px;
    }

    .pain-point {
        position: relative;
        display: flex;
        border-radius: 20px;
        width: calc(50% - 10px);
        word-break: break-all;
    }

    .pain-point.is-top-margin {
        margin-top: -25px !important;
    }
    .pain-point:nth-child(1) {
    }

    .pain-point:nth-child(2) {
        margin-top: 60px;
    }

    .pain-point:nth-child(3) {
        margin-top: -45px;
    }

    .pain-point:nth-child(4) {
        margin-top: 15px;
    }

    .pain-point-inner {
        padding: 20px 10px;
        margin-bottom: 0;
        width: 100%;
        font-size: 16px;
        font-weight: bold;
        box-sizing: border-box;
        border-radius: 20px;
        margin-top: 0px;
    }

    .pain-points .img01 {
        position: absolute;
        right: 15px;
        top: -25px;
        width: 88px;
    }
    .pain-points .img02 {
        width: 138px;
        position: absolute;
        left: 12px;
        right: auto;
        bottom: -70px;
        margin: auto;
    }
    .pain-point .bubble01 {
        position: absolute;
        width: 18px;
        left: 15px;
        bottom: 0;
    }
    .pain-point .bubble02 {
        position: absolute;
        width: 18px;
        top: 92px;
        left: 10px;
        transform: scale(-1, 1);
    }
}

/* Solution Section */
.solution {
    padding: 70px 0 0;
    text-align: center;
    margin-bottom: 40px;
    background: url(../images/solution_bg.png) no-repeat;
    background-size: contain;
}

.solution h3 {
    font-size: 63px;
    margin-bottom: 15px;
    font-weight: bold;
}

.highlight-text {
    margin-bottom: 15px;
    font-size: 18px;
}

.solution-text {
    font-size: 63px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .solution {
        padding: 0px 0 105px;
        background: url(../images/solution_bg_sp.png) no-repeat;
        background-size: cover;
        background-position: left bottom;
        margin-bottom: 0px;
    }

    .solution h3 {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .highlight-text {
        margin-bottom: 5px;
        font-size: 18px;
    }

    .solution-text {
        font-size: 22px;
    }
}

/* point */

.point-block {
    padding: 170px 0;
    background: url(../images/point_bg.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.point-block .point-item + .point-item {
    margin-top: 150px;
}

.point-block .point-label {
    font-size: 45px;
    font-family: 'Heebo';
    font-weight: 700;
    text-align: center;
    color: #00b4e1;
    letter-spacing: 3px;
}

.point-block .point-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin: 10px 0 0;
    line-height: 1.5;
}

.point-block .point-description {
    font-size: 20px;
    margin: 30px auto 0;
    max-width: 600px;
    width: 100%;
}

.point-block .point-staff-block {
    border: 3px solid #00b4e1;
    border-radius: 20px;
    padding: 50px;
    margin: 70px 0 0;
}

.point-block .point-staff-label {
    font-size: 29px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
    margin: 0 auto;
    line-height: 1;
    letter-spacing: 1px;
}

.point-block .point-staff-label span {
    background-color: #00b4e1;
    display: inline-block;
    padding: 10px 20px 6px;
}

.point-block .point-staff-list {
    display: flex;
    gap: 0 120px;
    justify-content: center;
    margin: 35px 0 45px;
}

.point-block .point-staff-item {
    max-width: 300px;
}

.point-block .point-staff-item .job {
    font-size: 15px;
    color: #00b4e1;
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
    margin: 7px 0 0;
}

.point-block .point-staff-item .name {
    font-size: 19px;
    margin: 6px 0 0;
    color: #00b4e1;
    text-align: center;
    font-weight: 600;
}

.point-block .point-staff-company-block {
    display: flex;
    gap: 0 75px;
    justify-content: center;
    margin: 40px 0 0;
}

.point-block .point-staff-company-block .image {
    max-width: 360px;
}

.point-block .point-staff-company-block .image2 {
    max-width: 225px;
    margin: 30px auto 0;
}

.point-block .point-staff-company-block .description {
    max-width: 440px;
}

.point-block .point-staff-company-block .company-name {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1px;
    color: #00b4e1;
    position: relative;
}

.point-block .point-staff-company-block .company-name a {
    color: #00b4e1;
    text-decoration: none;
}
.point-block .point-staff-company-block .company-name a:hover {
    text-decoration: underline;
}
.point-block .point-staff-company-block .company-description {
    font-size: 17px;
    line-height: 1.8;
    margin: 20px 0 0;
}

.point-block .point-staff-company-block .company-home {
    position: absolute;
    top: -30px;
    right: 0;
    width: 32px;
    height: 32px;
}

.point-block .point-cost-list {
    display: flex;
    gap: 0 120px;
    justify-content: center;
    margin: 35px 0 45px;
}

.point-block .point-cost-item {
    max-width: 400px;
    border: 3px solid #00b4e1;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
}

.point-block .point-cost-item .title {
    font-size: 35px;
    color: #00b4e1;
    font-weight: 600;
    text-align: center;
    line-height: 1.1;
}

.point-block .point-cost-item .title span {
    font-weight: 700;
    font-size: 45px;
}

.point-block .point-cost-item .description {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    margin: 10px 0 0;
}

.point-block .point-cost-item .image {
    max-width: 220px;
    margin: 30px auto 0;
}

@media screen and (max-width: 767px) {
    .point-block {
        padding: 0;
        background: url(../images/point_bg.png) no-repeat;
        background-size: cover;
        background-position: center;
    }

    .point-block .point-item + .point-item {
        margin-top: 50px;
    }

    .point-block .point-label {
        font-size: 24px;
        letter-spacing: 3px;
    }

    .point-block .point-title {
        font-size: 20px;
        margin: 10px 0 0;
    }

    .point-block .point-description {
        font-size: 16px;
        margin: 20px auto 0;
        max-width: 100%;
        width: 100%;
        line-height: 2;
    }

    .point-block .point-staff-block {
        border: 2px solid #00b4e1;
        border-radius: 10px;
        padding: 30px 20px;
        margin: 20px 0 0;
    }

    .point-block .point-staff-label {
        font-size: 18px;
        width: 100%;
    }

    .point-block .point-staff-label span {
        background-color: #00b4e1;
        display: block;
        padding: 7px 20px 4px;
    }

    .point-block .point-staff-list {
        display: block;
        margin: 25px 0 45px;
        padding: 0 20px;
    }

    .point-block .point-staff-item {
        max-width: 100%;
    }

    .point-block .point-staff-item .job {
        font-size: 16px;
        margin: 7px 0 0;
    }

    .point-block .point-staff-item .name {
        font-size: 18px;
    }

    .point-block .point-staff-item + .point-staff-item {
        margin-top: 30px;
    }

    .point-block .point-staff-company-block {
        display: block;
        margin: 30px 0 0;
    }

    .point-block .point-staff-company-block .image {
        max-width: 190px;
        margin: 0 auto;
    }

    .point-block .point-staff-company-block .description {
        max-width: 440px;
    }

    .point-block .point-staff-company-block .company-name {
        font-size: 13px;
        text-align: center;
        margin: 10px 0 0;
    }

    .point-block .point-staff-company-block .company-description {
        font-size: 16px;
        line-height: 2;
        margin: 20px 0 0;
    }

    .point-block .point-staff-company-block .company-home {
        position: relative;
        top: 0;
        right: 0;
        width: 23px;
        height: 23px;
        text-align: center;
        margin: 10px auto 0;
    }

    .point-block .point-cost-list {
        display: block;
        margin: 35px 0 45px;
    }

    .point-block .point-cost-item {
        max-width: 100%;
        border: none;
        padding: 0;
        width: 100%;
    }

    .point-block .point-cost-item + .point-cost-item {
        margin-top: 30px;
    }

    .point-block .point-cost-item .title {
        line-height: 1.3;
        font-size: 18px;
        background-color: #00b4e1;
        color: #fff;
        padding: 4px 0;
    }

    .point-block .point-cost-item .title span {
        font-size: 18px;
    }

    .point-block .point-cost-item .description {
        font-size: 15px;
        margin: 21px 0 20px;
    }

    .point-block .point-cost-item .image {
        max-width: 155px;
        margin: 7px auto 0;
    }
}

.sodan-block {
    background-size: cover;
    background-position: center;
    background-color: #eff8ff;
    padding: 55px 0;
    margin: 70px 0 0;
    border-radius: 20px;
}

.sodan-block .title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
}

.sodan-block .sodan-flex {
    display: flex;
    gap: 0 60px;
    justify-content: center;
    margin: 40px 0 0;
}

.sodan-block .sodan-flex .image {
    max-width: 180px;
}

.sodan-block .sodan-flex .description {
    max-width: 750px;
    font-size: 20px;
    padding: 10px 0 0;
}

.sodan-block .sodan-flex .action {
    margin: 25px 0 0;
    max-width: 400px;
}

.sodan-block .sodan-flex .action a {
    font-size: 20px;
    letter-spacing: 0;
    padding: 16px 0;
}

.sodan-block .sodan-flex .action a .icon {
    margin-left: 10px;
    width: 36px;
}

@media screen and (max-width: 767px) {
    .sodan-block {
        padding: 45px 0 60px;
        margin: 30px -20px 0px;
        border-radius: 0;
    }

    .sodan-block .title {
        font-size: 20px;
        font-weight: 600;
        text-align: center;
    }

    .sodan-block .sodan-flex {
        display: block;
        margin: 15px 0 0;
    }

    .sodan-block .sodan-flex .image {
        max-width: 115px;
        margin: 0 auto;
    }

    .sodan-block .sodan-flex .description {
        max-width: 750px;
        line-height: 2;
        font-size: 16px;
        padding: 10px 20px 0;
        margin: 10px 0 0;
    }

    .sodan-block .sodan-flex .action {
        margin: 25px 0 0;
        max-width: 100%;
    }

    .sodan-block .sodan-flex .action a {
        font-size: 14px;
        letter-spacing: 0;
        padding: 8px 0 5px;
    }

    .sodan-block .sodan-flex .action a .icon {
        margin-left: 10px;
        width: 25px;
        top: -2px;
    }
}

/* Features Section */
.features {
    padding: 120px 0px 100px;
    background-color: #fffeed;
}

.features .section-title {
    font-size: 63px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 3px;
    line-height: 1.5;
}

.features .section-title span {
    color: #00b4e1;
}

.inner {
    max-width: 1300px;
    padding: 0 50px;
    margin: 0 auto;
    width: 100%;
}

.features h2,
.flow h2,
.faq h2,
.profile h2 {
    font-size: 90px;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1;
    font-family: 'Heebo';
    letter-spacing: 3px;
}

.section-subtitle {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: bold;
    letter-spacing: 2px;
}

.section-description {
    color: #707070;
    font-size: 16px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    margin-top: 105px;
}

.feature {
    position: relative;
    padding: 65px 35px 35px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    border: 7px solid #fdf5c9;
    background: #fff;
}

.feature .title {
    font-size: 70px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.5;
    font-family: 'Heebo';
}

.feature .subtitle {
    font-size: 24px;
}

.feature .img01 {
    position: absolute;
    right: 0;
    top: -53px;
    width: 120px;
}

.feature .img02 {
    position: absolute;
    right: 0;
    top: -43px;
    width: 95px;
}

.feature .img03 {
    position: absolute;
    right: -17px;
    top: -48px;
    width: 102px;
}

.feature-number {
    position: absolute;
    top: -24px;
    left: 0;
    display: flex;
    justify-content: center;
    right: 0;
    margin: auto;
    width: 70px;
}

.features .title {
    font-size: 24px;
    text-align: center;
}

.feature p {
    font-weight: bold;
    margin-bottom: 0;
}

.feature-description {
    font-size: 20px;
    font-weight: normal !important;
    margin-bottom: 20px;
    line-height: 1.5;
    margin-top: 0px;
}

.feature-image {
    width: 100%;
    border-radius: 5px;
    margin-top: auto;
}

.cta-button-large {
    display: flex;
    background-color: #00b4e1;
    color: white;
    padding: 35px 30px;
    border-radius: 110px;
    text-align: center;
    margin: 0 auto;
    max-width: 620px;
    cursor: pointer;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 3px;
    text-decoration: none;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.cta-button-large .icon {
    margin-left: 20px;
    top: -4px;
    position: relative;
}
.cta-button-large.contact .icon {
    width: 42px;
    margin-left: 10px;
    top: 1px;
}

@media screen and (max-width: 767px) {
    .features {
        padding: 60px 0 0;
        margin-top: 0;
    }

    .features .section-title {
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 20px;
        letter-spacing: 2px;
        line-height: 1.5;
    }

    .features .section-title span {
        color: #00b4e1;
    }

    .inner {
        max-width: 100%;
        padding: 0 20px;
        margin: 0 auto;
        width: 100%;
    }

    .features h2,
    .works h2,
    .flow h2,
    .faq h2,
    .profile h2 {
        font-size: 44px;
        margin-bottom: 15px;
        line-height: 1;
        padding: 0 10px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 0;
        letter-spacing: 1px;
        padding: 0 10px;
    }

    .section-description {
        color: #707070;
        font-size: 16px;
    }

    .features-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 45px;
        margin-top: 40px;
        padding-bottom: 20px;
    }

    .feature {
        position: relative;
        padding: 65px 30px 25px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
    }

    .feature .img01 {
        position: absolute;
        right: 19px;
        top: -38px;
        width: 90px;
    }

    .feature .img02 {
        position: absolute;
        right: auto;
        top: -18px;
        width: 57px;
        left: 40px;
    }

    .feature .img03 {
        position: absolute;
        right: auto;
        top: auto;
        width: 81px;
        bottom: -15px;
        left: 8px;
    }

    .feature-number {
        position: absolute;
        top: -19px;
        left: 0;
        display: flex;
        justify-content: center;
        right: 0;
        margin: auto;
        width: 65px;
    }

    .features .title {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .feature p {
        font-weight: bold;
        margin-bottom: 0;
    }

    .feature-description {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 2;
        margin-top: 0px;
    }

    .feature-image {
        width: 100%;
        border-radius: 5px;
        margin-top: auto;
    }

    .cta-button-large {
        padding: 15px 30px;
        max-width: 310px;
        cursor: pointer;
        font-size: 14px;
        letter-spacing: 1px;
        width: 100%;
    }

    .cta-button-large .icon {
        margin-left: 12px;
        width: 16px;
        top: -1px;
        position: relative;
    }

    .cta-button-large.contact .icon {
        width: 24px;
    }
}

/* Works Section */
.works {
    margin-top: 0px;
    padding: 100px 0px 160px;
    background-color: #fffeed;
}

.works .title {
    font-size: 70px;
    font-weight: 700;
    line-height: 1;
    font-family: 'Heebo';
    letter-spacing: 3px;
    text-align: center;
}

.works .subtitle {
    font-size: 24px;
    text-align: center;
    font-weight: 600;
    margin: 10px 0 0;
    letter-spacing: 4px;
}

.works .cta-button-large {
    margin: 110px auto 0;
}

.works .note {
    text-align: center;
    margin: 20px 0;
    font-size: 22px;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 90px;
}

.work-item {
    margin-bottom: 20px;
}

.work-item a {
    text-decoration: none;
    font-weight: normal;
    color: inherit;
}

.work-item img {
    width: 100%;
    border-radius: 5px;
}

.work-item .image {
}

.work-item .description {
    margin-top: 5px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .works {
        padding: 90px 0 80px;
        position: relative;
        margin-top: 0px;
    }

    .works .title {
        font-size: 45px;
        font-family: 'Heebo';
        text-align: center;
        margin: 0 0 3px;
    }

    .works .subtitle {
        font-size: 14px;
        margin: 0px 0 0;
        letter-spacing: 2px;
    }

    .works .cta-button-large {
        margin: 40px auto 0;
    }

    .works .note {
        font-size: 14px;
    }

    .works-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px 20px;
        margin-top: 35px;
    }

    .work-item {
        margin-bottom: 0px;
    }

    .work-item img {
        width: 100%;
        border-radius: 5px;
    }

    .work-item .image {
    }

    .work-item .description {
        margin-top: 0;
        font-size: 12px;
    }
}

/* Flow Section */
.flow {
    padding: 0 20px 0;
    background-color: #fff;
    position: relative;
    margin-top: 140px;
}
.flow-box {
    display: flex;
}

.flow-header {
    position: relative;
    z-index: 1;
}

.flow::before {
    content: '';
    position: absolute;
    top: 253px;
    left: -240px;
    width: 100%;
    height: 100%;
    background-image: url('../images/flow_img_01.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    background-size: 700px;
}

.flow-container {
    position: relative;
    z-index: 1;
    margin: 0 0 0 auto;
    max-width: 720px;
    width: 100%;
    padding: 50px 0 0 0;
}

.flow-item {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    padding: 23px 0 0;
}

.flow-container .img01 {
    width: 137px;
    position: absolute;
    left: -90px;
}

.flow-container .img02 {
    width: 120px;
    position: absolute;
    left: -90px;
    top: -30px;
}
.flow-container .img03 {
    width: 215px;
    position: absolute;
    left: -170px;
    top: 22px;
}
.flow-container .img04 {
    display: none;
}

.flow-step {
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: -28px;
}

.flow-content {
    justify-content: space-between;
    width: 100%;
    background-color: #f0f0f0;
    padding: 17px 25px 25px;
    border-radius: 20px;
    text-align: center;
}

.flow-item {
    position: relative;
}

.flow-item:after {
    content: '';
    position: absolute;
    bottom: -29px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    vertical-align: middle;
    color: #b9b9b9;
    line-height: 1;
    width: 1em;
    height: 1em;
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(135deg);
}

.flow-item:last-child:after {
    display: none;
}

.flow-title {
    font-weight: bold;
    font-size: 28px;
}

.flow-sub-title {
    font-size: 18px;
}

.flow-description {
    font-size: 16px;
    color: #707070;
    margin: 10px 0 0;
    line-height: 1.5;
}

.flow-icon {
    width: 40px;
}

@media (max-width: 768px) {
    .flow {
        padding: 111px 0 100px;
        background-color: #fff;
        position: relative;
        margin-top: 0;
        right: auto;
        background-image: url(../images/flow_img_02_sp.png);
        background-position: 0 127px;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .flow-box {
        display: block;
    }

    .flow-header {
        position: relative;
    }

    .flow::before {
        right: -132px;
        top: -40px;
        left: auto;
        background-image: url('../images/flow_img_01_sp.png');
        z-index: 0;
        background-size: 320px;
    }

    .flow-container {
        position: relative;
        z-index: 1;
        margin: 30px 0 0 auto;
        max-width: 720px;
        width: 100%;
        padding: 0px 0 0 0;
    }

    .flow-item {
        display: block;
        margin-bottom: 20px;
        padding: 5px 0 0;
    }

    .flow-container .img01 {
        width: 80px;
        position: absolute;
        left: -10px;
        z-index: 1;
        top: -40px;
    }

    .flow-container .img02 {
        width: 90px;
        position: absolute;
        left: -10px;
        top: -35px;
    }
    .flow-container .img03 {
        width: 120px;
        position: absolute;
        left: auto;
        top: 200px;
        right: 0;
    }
    .flow .img04 {
        width: 100px;
        position: absolute;
        bottom: 15px;
        left: 40px;
    }

    .flow-step {
        width: 45px;
        right: 0;
        top: -5px;
    }

    .flow-content {
        justify-content: space-between;
        background-color: #fff;
        padding: 35px 25px;
        border-radius: 10px;
        border: 1px solid #c6ccd9;
    }

    .flow-item:after {
        bottom: -17px;
        width: 10px;
        height: 10px;
        border: 1px solid currentColor;
        border-left: 0;
        border-bottom: 0;
    }

    .flow-title {
        font-size: 16px;
    }

    .flow-sub-title {
        font-size: 16px;
    }

    .flow-description {
        text-align: left;
        font-size: 16px;
    }

    .flow-description br {
        display: none;
    }

    .flow-icon {
        width: 40px;
    }
}

/* FAQ Section */
.faq {
    padding: 0;
    margin-top: 130px;
    display: flex;
    padding-top: 90px;
}
.faq-header {
    position: relative;
    margin-right: 40px;
}
.faq .img01 {
    position: absolute;
    left: 0;
    top: 220px;
    width: 140px;
}
.faq-box {
    display: flex;
    width: 100%;
}

.faq .section-subtitle {
    margin-top: 30px;
}

.faq-container {
    width: 100%;
    margin-left: auto;
    max-width: 720px;
    border-top: 1px solid #d5d5d6;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
}

.faq-question {
    display: flex;
    background-color: #fff;
    padding: 30px 0 45px;
    cursor: pointer;
    border-bottom: 1px solid #d5d5d6;
    width: 100%;
}

.question-mark {
    color: #00a0e9;
    font-weight: bold;
    margin-right: 20px;
    font-size: 35px;
    font-family: 'heebo';
    top: 2px;
    position: relative;
    line-height: 1;
}

.question-text {
    flex-grow: 1;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

.toggle-icon {
    font-size: 40px;
    color: #00a0e9;
    position: relative;
    top: 0px;
    line-height: 1;
}

.faq-answer {
    font-size: 20px;
    line-height: 1.5;
    padding: 40px 0 50px 45px;
}

@media (max-width: 768px) {
    .faq {
        padding: 50px 0 0;
        margin-top: 0px;
        display: block;
    }
    .faq-header {
        margin-right: 0;
    }
    .faq-box {
        display: block;
        width: 100%;
    }

    .faq .section-subtitle {
        margin-top: 0;
        font-size: 14px;
    }

    .faq-container {
        border-top: 1px solid #d5d5d6;
        margin: 55px 0px 0;
    }

    .faq-item {
        margin-bottom: 0;
        border-radius: 0;
    }

    .faq-question {
        padding: 20px;
    }

    .question-mark {
        margin-right: 10px;
        font-size: 18px;
    }

    .question-text {
        flex-grow: 1;
        font-size: 16px;
        font-weight: bold;
        letter-spacing: 2px;
    }

    .toggle-icon {
        font-size: 24px;
    }

    .faq-answer {
        font-size: 16px;
        line-height: 2;
        padding: 20px 0 20px 21px;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .features-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pain-points-container {
        grid-template-columns: none;
        flex-wrap: wrap;
        display: flex;
        gap: 0 20px;
        margin-top: 55px;
        justify-content: space-between;
    }
}

/* Profile Header */
.profile {
    display: flex;
    margin-top: 150px;
    padding-top: 100px;
}

.profile-box {
    display: flex;
}

.profile-header {
    margin-bottom: 30px;
    margin-right: 20px;
}
.profile h2 {
    margin-bottom: 50px;
    font-size: 70px;
}

.profile-title {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.profile-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Profile Table */
.profile-table {
    max-width: 720px;
    margin-left: auto;
}

.profile-table table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #707070;
    font-size: 20px;
    letter-spacing: 2px;
}

.profile-table th,
.profile-table td {
    border: 1px solid #707070;
    padding: 15px;
    vertical-align: top;
}

.profile-table th {
    background-color: #f8f8f8;
    width: 25%;
    text-align: left;
    padding: 30px;
    vertical-align: middle;
}

.profile-table th br {
    display: none;
}

.profile-table td {
    width: 80%;
    vertical-align: middle;
    padding: 35px 90px;
}

@media screen and (max-width: 767px) {
    .profile {
        display: flex;
        margin-top: 0px;
        padding-top: 60px;
    }

    .profile-box {
        display: block;
    }

    .profile-header {
        margin-bottom: 30px;
    }
    .profile h2 {
        margin-bottom: 20px;
        font-size: 30px;
    }

    .profile-title {
        font-size: 32px;
        font-weight: bold;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .profile-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }

    /* Profile Table */
    .profile-table {
        padding: 0;
    }

    .profile-table table,
    .profile-table tbody,
    .profile-table tr,
    .profile-table th,
    .profile-table td {
        width: 100%;
        display: block;
    }

    .profile-table table {
        border: none;
        border-top: 1px solid #707070;
    }

    .profile-table th {
        padding: 5px 10px;
        border-top: none;
        font-size: 14px;
    }
    .profile-table td {
        padding: 10px;
        border-top: none;
        font-size: 16px;
    }
}

/* CTA Buttons */
.cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    margin-top: 190px;
}

.cta-button.website {
    background-color: #00b6de;
    color: white;
}

.cta-button.contact {
    background-color: #fddb1f !important;
    color: #333;
}

.cta-action .cta-button.contact {
    margin-top: 20px;
}

@media (max-width: 767px) {
    .cta-action {
        margin-bottom: 0px;
        margin-top: 40px;
        display: block;
    }

    .cta-button.website {
        background-color: #00b6de;
        color: white;
    }

    .cta-button.contact {
        background-color: #fddb1f !important;
        color: #333;
    }

    .cta-action .cta-button.contact {
        margin-top: 20px;
        padding: 10px 0;
    }
}

/* Footer */
footer {
    background-color: #f5f5f5;
    padding: 65px 0 70px;
    text-align: center;
    margin-top: 160px;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    margin-bottom: 50px;
}

.footer-logo img {
    max-width: 270px;
}

.footer-text {
    margin-bottom: 50px;
    font-size: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 45px;
    margin-bottom: 30px;
}

.social-link {
    display: inline-block;
    text-decoration: none;
    color: #333;
    width: 95px;
    text-align: center;
}

.social-link img {
    width: 75px;
}

.social-link span {
    display: block;
    margin-top: 5px;
    font-size: 18px;
}

.copyright {
    font-size: 14px;
    color: #454444;
    margin-top: 125px;
}

.copyright a {
    color: currentColor;
    text-decoration: none;
}

@media (max-width: 767px) {
    footer {
        padding: 30px 0 40px;
        margin-top: 50px;
    }

    .footer-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-logo img {
        max-width: 140px;
    }

    .footer-text {
        margin-bottom: 30px;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .social-links {
        gap: 25px;
        margin-bottom: 0;
        padding: 0 45px;
    }

    .social-link {
        display: block;
        width: 43px;
    }

    .social-link img {
        width: 75px;
    }

    .social-link span {
        display: block;
        margin-top: 5px;
        font-size: 9px;
    }

    .copyright {
        font-size: 12px;
        margin-top: 65px;
    }
}

/* Media Queries */
@media (max-width: 767px) {
    th,
    td {
        width: 100%;
    }

    th {
        border-bottom: none;
    }

    .cta-button {
    }
}

.sp {
    display: none !important;
}

@media screen and (max-width: 767px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }
}

.over:hover {
    transition: opacity 300ms ease 0s;
    opacity: 0.5;
}

/* Dropdown */

.dropdown {
    position: relative;
    width: 174px;
    margin: 0 20px;
    top: 3px;
    cursor: pointer;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border: 2px solid #000;
    margin-top: 1px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.dropdown-content.active {
    max-height: 400px;
    opacity: 1;
}

.dropdown-content a {
    display: block;
    padding: 14px 16px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #fafafa;
}

@media screen and (max-width: 767px) {
    .dropdown {
        width: auto;
        position: relative;
        margin-right: 10px;
        top: 0;
    }
    .dropdown img {
        height: 35px;
    }
    .dropdown-button {
        position: relative;
    }
    .dropdown-content {
        width: 90px;
        border: 1px solid #c6ccd9;
        text-align: center;
    }
    .dropdown-content.active {
        max-height: 100px;
    }
    .dropdown-content a {
        padding: 5px 8px;
        font-size: 14px;
    }
}
