@charset "UTF-8";

/*
Theme Name: fitness_lp
Version: 1.0
*/

/*基本設定*/
body {
    font-family: 'Noto Sans JP';
}

p {
    font-size: 14px;
    line-height: 1.5;
    color: #0A0A0A;
}

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

h1 {
    width: 120px;
}

.inner {
    width: 90%;
    margin: 0 auto;
}

.color {
    color: #229EBF;
}

.section-title {
    position: relative;
    text-align: center;
}

.section-title h2 {
    font-family: 'Noto Sans Javanese';
    font-size: 64px;
    font-weight: bold;
    color: rgba(34, 158, 191, 0.2);
}

.section-title h3 {
    position: absolute;
    font-weight: 500;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

/*ハンバーガーメニュー*/
.hamburger-overlay {
    position: fixed;
    right: 20px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.hamburger-overlay__line {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 2px;
    background: linear-gradient(90deg, #18C77C 0%, #229EBF 80%);
    transition: all .6s;
    border-radius: 2px;
}

.hamburger-overlay__line:nth-of-type(1) {
    top: 14px;
}

.hamburger-overlay__line:nth-of-type(2) {
    top: 23px;
}

.hamburger-overlay__line:nth-of-type(3) {
    top: 32px;
}

.hamburger-overlay.active .hamburger-overlay__line {
    background-color: #fff;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
    opacity: 0;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #060606;
    visibility: hidden;
    opacity: 0;
    transition: all .6s;
    z-index: 900;
}

.nav-overlay.active {
    visibility: visible;
    opacity: 1;
}

.nav-overlay__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.nav-overlay__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-overlay__item {
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s;
}

.nav-overlay.active .nav-overlay__item {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) {
    transition-delay: 0.1s;
}

.nav-overlay.active .nav-overlay__item:nth-child(2) {
    transition-delay: 0.2s;
}

.nav-overlay.active .nav-overlay__item:nth-child(3) {
    transition-delay: 0.3s;
}

.nav-overlay.active .nav-overlay__item:nth-child(4) {
    transition-delay: 0.4s;
}

[id] {
    scroll-margin-top: 55px;
}

.nav-overlay__link {
    padding: 20px 0px;
    color: #fff;
    text-decoration: none;
    transition: color .3s;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav-text-main {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 3px;
}

.nav-text-sub {
    font-size: 13px;
    margin-top: 5px;
}

.nav-overlay__link:hover {
    color: #229EBF;
}

/*CTAボタン*/
.nav-overlay__btn,
.section-cta__btn {
    display: inline-block;
    position: relative;
    padding: 14px 28px;
    margin-top: 30px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    overflow: visible;
    transition: opacity 0.3s ease;
    z-index: 5;
}

/* 外枠のグラデーション線 */
.nav-overlay__btn::before,
.section-cta__btn::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #18C77C 0%, #229EBF 80%);
    padding: 2px;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.nav-overlay__btn::after,
.section-cta__btn::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #18C77C 0%, #229EBF 80%);
    z-index: -1;
}

.nav-overlay__btn:hover,
.section-cta__btn:hover {
    opacity: 0.8;
}

.cta-arrow-img {
    width: 14px;
    height: auto;
    margin-left: 10px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.nav-pc {
    display: none;
}

/*ヘッダー header*/
.header {
    background-color: #060606;
    position: fixed;
    height: 55px;
    padding: 19px 20px;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*メイン main*/
main {
    padding: 50px 0 0 0;
}

/*ファーストビュー fv*/
.fv-slider {
    margin: auto;
    position: relative;
    overflow: hidden;
    display: block;
    visibility: visible;
    opacity: 1;
}

.fv-slider img {
    height: 80vh;
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: 90%;
}

.fv-text {
    position: absolute;
    left: 5%;
    top: 16%;
}

.main-text {
    font-size: 26px;
    font-weight: bold;
    color: #fff;
}

.sub-text {
    font-size: 24px;
    color: #fff;
    line-height: 1.7;
}

.catchcopy {
    display: flex;
    position: absolute;
    left: 2%;
    bottom: 33%;
}

.catchcopy img {
    height: 50px;
    width: auto;
}

.fv-cta {
    position: absolute;
    left: 6%;
    bottom: 22%;
}

.fv-cta__btn,
.scroll_cta__btn {
    display: inline-block;
    position: relative;
    padding: 14px 60px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    overflow: visible;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.fv-cta__btn::before,
.scroll_cta__btn::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #18C77C 0%, #229EBF 80%);
    padding: 2px;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    mask-composite: exclude;
    pointer-events: none;
}

.fv-cta__btn::after,
.scroll_cta__btn::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #18C77C 0%, #229EBF 80%);
    z-index: -1;
}

.fv-cta__btn:hover,
.scroll_cta__btn:hover {
    opacity: 0.8;
}

.fv-arrow-img {
    width: 22px;
    margin-left: 15px;
    vertical-align: middle;
}

/*ファーストビュー過ぎてから画面下部に表示*/
.scroll_cta {
    position: fixed;
    text-align: center;
    width: 100%;
    z-index: 10;
    transition: opacity .3s, bottom .3s ease;
    bottom: -60px;

}

.scroll_cta.show {
    opacity: 1;
    bottom: 15px;
    pointer-events: auto;
}

/*課題 case*/
.case {
    padding: 40px 0 50px 0;
}

.case h2 {
    font-size: 24px;
    text-align: center;
    padding-bottom: 40px;
    line-height: 1.4;
    font-weight: 600;
}

.case ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.case ul li {
    background-color: #F3F3F3;
    border-radius: 100%;
    width: 40%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 3px 3px 5px rgb(183, 183, 183);
}

.case ul li:nth-child(1),
.case ul li:nth-child(2) {
    margin-bottom: 27vh;
}

.case .wrapper {
    position: relative;
}

.case .illustration {
    position: absolute;
    top: 49%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78%;
}

/*提案 solutions*/
.solutions {
    background-color: #F7FBFF;
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
}

/*（グラデーション境界線）*/
.triangle {
    position: relative;
    width: 120vw;
    height: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #18C77C 0%, #229EBF 80%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    overflow: hidden;
    z-index: 1;
}

.triangle::before {
    content: "";
    position: absolute;
    top: -1.5px;
    left: 50%;
    width: 119vw;
    height: 59px;
    background: #ffffff;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transform: translateX(-50%);
    z-index: 2;
}

.triangle::after {
    content: "";
    position: absolute;
    top: 0;
    left: -2vw;
    width: 124vw;
    height: 4px;
    background: #ffffff;
    z-index: 3;
}

/*（矢印）*/
.arrow-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 76px;
}

:root {
    --arrow-color: #0A0A0A;
    --line-width: 1.5px;
    --line-height: 80px;
    --head-length: 20px;
    --head-thickness: 1.5px;
}

.arrow {
    position: relative;
    width: var(--line-width);
    height: var(--line-height);
    background: var(--arrow-color);
    border-radius: 10px;
}

.arrow::after {
    content: "";
    position: absolute;
    bottom: 0px;
    width: var(--head-length);
    height: var(--head-thickness);
    background: var(--arrow-color);
    border-radius: 10px;
    transform-origin: left bottom;
    transform: translateX(1px) rotate(-45deg);
}

.solutions h2 {
    text-align: center;
    padding: 40px 0 25px 0;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
}

.under_line {
    color: #229EBF;
    position: relative;
    display: inline;
    padding-bottom: 4px;
}

.under_line::before,
.under_line::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    border-radius: 10px;
    background-color: #229EBF;
}

.under_line::before {
    bottom: 0;
}

.under_line::after {
    bottom: 3px;
}

.solutions-attention {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 25px 0 20px 0;
}

.solutions-attention img {
    display: block;
}

.solutions-attention p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.solutions-attention .text-size {
    font-size: 24px;
    font-weight: 600;
    display: block;
}

.name-list {
    text-align: center;
    margin-top: 12px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.job-title {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #18C77C 0%, #229EBF 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 3px 15px;
    z-index: 1;
    font-size: 12px;
}

.job-title::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    padding: 2px;
    background: linear-gradient(90deg, #18C77C 0%, #229EBF 80%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.profile-name {
    font-size: 16px;
}

.name {
    font-size: 14px;
    color: #777777;
}

.solutions-message {
    background-color: #fff;
    border-radius: 30px;
}

.solutions-message p {
    padding: 20px 17px;
}

.solutions-message p br {
    display: none;
}

/*実績　achievement*/
.achievement-li.pc {
    display: none;
}

.achievement {
    background-color: #F7FBFF;
    text-align: center;
    padding-bottom: 40px;
}

.heading-color {
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 10px 0;
    background: linear-gradient(to right,
            transparent,
            #229EBF 30%,
            #229EBF 70%,
            transparent);
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
}

.heading-color .small-size {
    font-size: 12px;
}

.slider {
    position: relative;
    width: 70%;
    margin: 0 auto;
}

.arrow_box {
    position: absolute;
    top: 34%;
    width: 125%;
    left: -13%;
    display: flex;
    justify-content: space-between;
}

.slide-arrow {
    width: 22px;
    height: 22px;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.prev-arrow {

    background-image: url("images/arrow-prev.png");
}

.next-arrow {

    background-image: url("images/arrow-next.png");
}

.slider p {
    padding: 15px 0 35px 0;
    display: inline-block;
    text-align: left;
}

.speech-bubble {
    position: relative;
    display: block;
    margin-top: 20px;
    padding: 16px;
    border-top: 2px solid #229ebf;
    border-bottom: 2px solid #229ebf;
    background-color: #ffffff;
    font-weight: 400;
    line-height: 1.5;
    width: 99%;
    margin-left: auto;
    margin-right: auto;
}

.speech-bubble br {
    display: none;
}

.speech-bubble::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    border-style: solid;
    border-width: 0 10px 20px 10px;
    border-color: transparent transparent #229ebf;
    translate: -50% -100%;
    transform: skew(-1deg);
    transform-origin: bottom;
}

.speech-bubble::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    border-style: solid;
    border-width: 0 7.8px 15.5px 7.8px;
    border-color: transparent transparent #ffffff;
    translate: -50% -100%;
    transform: skew(-1deg);
    transform-origin: bottom;
}

.speech-bubble .color-size {
    color: #229EBF;
    font-weight: 600;
}

/*サービス内容　service*/
.service {
    padding: 40px 0;
    text-align: center;
}

.service h2 {
    margin-right: 14%;
}

.service .section-title h3 {
    right: 7%;
    bottom: 1%;
}

.service-group {
    background-color: #F7FBFF;
    padding: 25px 18px 0 18px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.service-group-firstchild {
    margin-top: -30px;
}

.service-title {
    font-family: 'Noto Sans Javanese';
    font-size: 18px;
    font-weight: bold;
    color: #229EBF;
    margin-bottom: 20px;
}

.service-item img {
    margin-bottom: 15px;
}

.service-item p {
    font-size: 16px;
    padding-bottom: 25px;
}

.service-attention,
.cta-attention {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.service-attention img,
.cta-attention img {
    display: block;
}

.service-attention p,
.cta-attention p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.size_clor {
    font-size: 18px;
    font-weight: 500;
    color: #229EBF;
}

/*選ばれる5つの理由　reason*/
.reason {
    overflow: hidden;
}

.reason h2 {
    padding-top: 40px;
    margin-right: 14%;
}

.reason .section-title h3 {
    right: 9%;
    bottom: 48%;
}

.reason ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: -30px;
}

.reason li {
    position: relative;
    height: 150px;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.reason li h4,
.reason li p {
    position: relative;
    z-index: 1;
}

.reason li.left {
    justify-content: flex-start;
    padding-left: 20px;
}

.reason li.right {
    padding-right: 20px;
    text-align: right;
}

.reason li h4 {
    background: linear-gradient(90deg, #18C77C 0%, #229EBF 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Noto Sans Javanese';
    font-size: 20px;
    font-weight: bold;
    padding: 20px 0px 8px 10px;
    display: inline-block;
}

.reason li h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 45%;
    transform: translateY(-50%);
    width: 4px;
    height: 25px;
    background: linear-gradient(180deg, #18C77C 0%, #229EBF 80%);
}

.reason li p {
    color: #fff;
}

.reason01 {
    background-image: url("images/reason-1.png");
}

.reason02 {
    background-image: url("images/reason-2.png");
}

.reason03 {
    background-image: url("images/reason-3.png");
}

.reason04 {
    background-image: url("images/reason-4.png");
}

.reason05 {
    background-image: url("images/reason-5.png");
}

/*制作の流れ　flow*/
.flow {
    background-color: #F7FBFF;
    padding: 40px 0;
    text-align: center;
}

.flow h2 {
    margin-right: 18%;
}

.flow .section-title h3 {
    right: 13%;
    bottom: 1%;
}

.flow-list {
    position: relative;
    padding-left: 20px;
    max-width: 380px;
    margin: 0 auto;
    margin-bottom: 90px;
}

.flow-list:last-child {
    margin-bottom: 10px;
}

.circle {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -40px;
    left: 20px;
    z-index: 2;
}

.circle-inner {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(90deg, #18C77C 0%, #229EBF 80%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-inner p {
    color: #fff;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    line-height: 1.2;
}

.circle-inner span {
    font-size: 30px;
}

.flow-box {
    display: flex;
    align-items: center;
    text-align: center;
    height: 110px;
    width: 270px;
    padding: 25px;
    gap: 8px;
    background-color: #fff;
    border: 1px solid #0A0A0A;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    margin: 30px auto 0;
}

.flow-box img {
    width: 30%;
}

.flow-box p {
    font-size: 16px;
}

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

.flow-list::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);

    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid #229EBF;
}

/*料金プラン　price*/
.price {
    padding: 40px 0;
    text-align: center;
}

.price .section-title h2 {
    margin-right: 14%;
}

.price .section-title h3 {
    right: 14%;
    bottom: 2%;
}

.price-box {
    margin-top: -30px;
}

.price-name {
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 10px 0;
    background-color: #229EBF;
    color: #fff;
    font-size: 16px;
}

.price-main {
    background-image: url(images/price.jpg);
    position: relative;
    background-size: cover;
    background-position: top center;
    width: 100%;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 0;
}

.price-main h2 {
    font-size: 20px;
    color: #fff;
}

.price-main span {
    font-size: 40px;
    font-weight: bold;
    background: linear-gradient(60deg, #CE9600 0%, #FFDD63 50%, #CE9600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price__details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 25px;
}

.price__details li {
    background-color: #fff;
    font-size: 14px;
    width: 260px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.price__details li br {
    display: none;
}

.price-line {
    position: absolute;
    top: 295px;
    width: 300px;
    height: 2px;
    background-color: #fff;
    border-radius: 60px;
}

.price__options {
    padding-top: 25px;
}

.price__options li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-top: 15px;
}

.price__options p {
    color: #fff;
    text-align: left;
}

.price__options img {
    width: 20px;
    height: auto;
}

/* お客様の声　voice*/
.voice {
    background-color: #F7FBFF;
    padding: 40px 0;
    text-align: center;
}

.voice h2 {
    margin-right: 14%;
}

.voice .section-title h3 {
    right: 13%;
    bottom: 2%;
}

.user-info {
    width: 34%;
    margin: 0 auto;
}

.voice-item {
    background-color: #F3F3F3;
    margin-top: -62px;
    padding: 37px 20px 20px;
    border-radius: 30px;
}

.voice-item .comment {
    background-color: #fff;
    padding: 12px 42px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-align: left;
    display: inline-block;
}

.voice-item .comment:before,
.voice-item .comment:after {
    content: '';
    width: 27px;
    height: 40px;
    position: absolute;
    display: inline-block;
}

.voice-item .comment:before {
    border-left: solid 1px #0A0A0A;
    border-top: solid 1px #0A0A0A;
    top: 0;
    left: 0;
}

.voice-item .comment:after {
    border-right: solid 1px #0A0A0A;
    border-bottom: solid 1px #0A0A0A;
    bottom: 0;
    right: 0;
}

.user-info {
    max-width: 120PX;
}

.user-info img {
    position: relative;
    z-index: 1;
}

/*サポート体制　support*/
.support {
    background-color: #F7FBFF;
    padding-bottom: 60px;
    /*ctaボタン非表示にする際の余白分少し多めに下あけてます。*/
}

.support ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
}

.support li {
    margin-bottom: 25px;
}

.support-list {
    background-color: #F3F3F3;
    border-radius: 100%;
    width: 150px;
    height: 150px;
    padding: 30px;
    margin-bottom: 10px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.support li p {
    font-size: 16px;
}

.support-list img {
    width: auto;
    height: 100%;
    object-fit: cover;
}

.support .small-size {
    font-size: 12px;
    margin-top: 5px;
}

.support .speech-bubble {
    text-align: center;
}

.support-voice .comment {
    background-color: #fff;
    border-radius: 30px;
    padding: 12px 0;
    text-align: center;
    border: 2px solid;
    border-color: #0A0A0A;
    position: relative;
    z-index: 2;
}

.support-user-info img {
    width: 34%;
    position: relative;
    z-index: 1;
    padding-top: 25px;
    margin-left: 30px;
}

.support-text {
    text-align: center;
    padding-top: 20px;
}

/*　cta　*/
.cta {
    background-image: url(images/backgroundimage.png);
    background-color: #0A0A0A;
    position: relative;
    background-size: cover;
    padding: 40px 0;
    text-align: center;
    color: #fff;
}

.cta h2 {
    font-size: 22px;
    line-height: 1.7;
    font-weight: 600;
    margin-bottom: 30px;
}

.works-img img {
    margin-bottom: 15px;
}

.cta-attention {
    margin-top: 20px;
}

.cta-attention p {
    color: #fff;
}


/*　footer　*/
.footer {
    background-color: #229EBF;
    color: #fff;
    padding: 40px 0;
}

.footer-symbol-logo {
    width: 50px;
    height: auto;
    margin: auto;
}

.footer-navname-logo {
    width: 215px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 30px;
}

.footer-navname-logo::before,
.footer-navname-logo::after {
    content: "";
    width: 50px;
    height: 2px;
    background-color: #fff;
    border-radius: 60px;
    position: absolute;
    top: 44%;

}

.footer-navname-logo::before {
    left: -60px;
}

.footer-navname-logo::after {
    right: -60px;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    justify-content: center;
}

.footer-nav ul:first-child {
    margin-bottom: 15px;
}

.footer-nav li {
    white-space: nowrap;
    text-align: center;
    padding: 0 15px;
    border-right: #fff 1px solid;
}


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

.copyright p {
    font-size: 10px;
    text-align: center;
    padding: 4px 0;
}

@media screen and (768px <=width) {
    p {
        font-size: 20px;
    }

    .main-text {
        font-size: 38px;
    }

    .sub-text {
        font-size: 26px;
    }

    .catchcopy {
        left: 7%;
        bottom: 32%;
    }

    .catchcopy img {
        height: 70px;
    }

    .fv-cta {
        left: 7%;
        bottom: 24%;
    }

    .fv-cta__btn,
    .scroll_cta__btn {
        font-size: 20px;
        padding: 18px 60px;
    }

    .scroll_cta {
        bottom: -600px;
    }

    .scroll_cta.show {
        bottom: 25px;
    }

    .case h2 {
        font-size: 32px;
    }

    .case .illustration {
        width: 62%;
    }

    .case ul li:nth-child(2) {
        margin-bottom: 27vh;
    }

    .case ul li {
        width: 35%;
    }

    .solutions h2,
    .solutions-attention .text-size {
        font-size: 32px;
    }

    .solutions-attention p {
        font-size: 20px;
    }

    .solutions-list-item {
        width: 600px;
        margin: auto;
    }

    .name-list {
        margin-top: 20px;
        margin-bottom: 60px;
        gap: 20px;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .job-title {
        font-size: 14px;
    }

    .profile-name {
        font-size: 24px;
    }

    .name {
        font-size: 16px;
    }

    .solutions-message {
        text-align: center;
        margin: 0 auto;
    }

    .solutions-message p br {
        display: block;
    }

    .heading-color {
        font-size: 28px;
    }

    .heading-color .small-size {
        font-size: 16px;
    }

    .nav-overlay__btn,
    .section-cta__btn {
        font-size: 20px;
    }

    .cta-arrow-img {
        width: 23px;
    }

    .service .section-title h3 {
        right: 30%;
        bottom: 9%;
    }

    .service-item p {
        font-size: 20px;
    }

    .service-title {
        font-size: 24px;
    }

    .service-group {
        padding-right: 50px;
        padding-left: 50px;
    }

    .service-attention p,
    .cta-attention p {
        font-size: 20px;
    }

    .size_clor {
        font-size: 24px;
    }

    .reason .section-title h3 {
        right: 33%;
        bottom: 60%;
    }

    .reason li {
        height: 220px;
    }

    .reason li h4 {
        font-size: 22px;
    }

    .flow .section-title h3 {
        right: 38%;
        bottom: 2%;
    }

    .flow-box {
        width: 83%;
    }

    .flow-box p {
        font-size: 18px;
    }

    .price .section-title h3 {
        right: 37%;
        bottom: 2%;
    }

    .voice .section-title h3 {
        right: 36%;
        bottom: 2%;
    }

    .user-info {
        width: 17%;
        margin-bottom: -64px;
    }

    .voice-item {
        max-width: 500px;
        margin: auto;
    }

    .support-voice-list {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding-top: 20px;
    }

    .support-voice {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .support-voice .comment {
        width: 350px;
    }

    .support-user-info img {
        width: 60%;
    }

    .works-img img {
        width: 60%;
    }

    .support li p {
        font-size: 20px;
    }

    .support .small-size {
        font-size: 14px;
    }

    .support .speech-bubble {
        font-size: 24px;
    }

    .support-text {
        font-size: 24px;
    }

    .cta h2 {
        font-size: 36px;
    }

    .footer-nav ul {
        font-size: 14px;
    }

    .copyright p {
        font-size: 13px;
        padding: 12px 0;
    }
}



@media screen and (1024px <=width) {
    p {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .hamburger-overlay,
    .nav-overlay {
        display: none;
    }

    .nav-pc {
        display: flex;
        align-items: center;
        gap: 40px;
        margin-left: auto;
    }

    .nav-pc__list {
        display: flex;
        gap: 40px;
        list-style: none;
        color: #fff;
    }

    .nav-pc__list a {
        text-decoration: none;
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .nav-pc__list a:hover {
        color: #229EBF;
    }

    .nav-pc__cta {
        display: inline-block;
        position: relative;
        padding: 12px 15px;
        background: transparent;
        color: #fff;
        border-radius: 999px;
        text-align: center;
        text-decoration: none;
        overflow: visible;
        transition: opacity 0.3s ease;
    }

    .nav-pc__cta::before {
        content: "";
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        border-radius: 999px;
        background: linear-gradient(90deg, #18C77C 0%, #229EBF 80%);
        padding: 2px;
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .nav-pc__cta::after {
        content: "";
        position: absolute;
        inset: 3px;
        border-radius: 999px;
        background: linear-gradient(90deg, #18C77C 0%, #229EBF 80%);
        z-index: -1;
    }

    .nav-pc__cta:hover {
        opacity: 0.8;
    }

    .section-cta__btn {
        margin-top: 80px;
        padding: 24px 35px;
        font-size: 26px;
    }

    .cta-arrow-img {
        width: 19px;
        height: auto;
        margin-left: 10px;
        vertical-align: middle;
        position: relative;
        top: -1px;
    }

    .section-cta__btn img {
        width: 34px;
        margin-left: 17px;
    }

    .header {
        height: 74px;
    }

    h1 {
        width: 220px;
    }

    main {
        padding: 50px 0 0 0;
    }

    .scroll_cta {
        display: none;
    }

    /*ファーストビュー fv*/
    .fv-slider img {
        height: 100vh;
        width: 100%;
        display: block;
    }

    .fv-text {
        left: 4%;
        top: 18%;
    }

    .main-text {
        font-size: 70px;
    }

    .sub-text {
        font-size: 48px;
    }

    .catchcopy {
        left: 4%;
        bottom: 24%;
    }

    .catchcopy img {
        height: 110px;
        width: auto;
    }

    .fv-cta {
        left: 4%;
        bottom: 8%;
    }

    .fv-cta__btn {
        font-size: 26px;
        padding: 25px 35px;
    }

    .fv-arrow-img {
        width: 35px;
        margin-left: 15px;
        vertical-align: middle;
    }

    .inner {
        width: 100%;
        margin: 0;
    }

    /*課題 case*/
    .case {
        padding-top: 80px;
    }

    .case h2 {
        font-size: 48px;
        line-height: 1.7;
    }

    .case .wrapper {
        position: relative;
        height: 500px;
    }

    .case ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .case ul li {
        position: absolute;
        width: 220px;
        aspect-ratio: 1/1;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .case .illustration {
        width: 31%;
        position: relative;
        top: 220px;
        z-index: 1;
    }

    .case ul li:nth-child(1) {
        top: 35%;
        left: 20%;
        transform: translate(-50%, -80%);
        margin: 0;
    }

    .case ul li:nth-child(2) {
        top: 35%;
        left: 80%;
        transform: translate(-50%, -80%);
        margin: 0;
    }

    .case ul li:nth-child(3) {
        top: 45%;
        left: 26%;
        transform: translate(-50%, 20%);
    }

    .case ul li:nth-child(4) {
        top: 45%;
        left: 74%;
        transform: translate(-50%, 20%);
    }

    /*提案 solutions*/
    .triangle {
        height: 130px;
    }

    .triangle::before {
        height: 128px;
    }

    .solutions {
        padding-bottom: 140px;
    }

    .solutions h2 {
        font-size: 48px;
        line-height: 1.7;
        padding: 80px 0 30px 0;
    }

    .solutions h2 br:nth-of-type(2) {
        display: none;
    }

    .under_line::before,
    .under_line::after {
        height: 2px;
    }

    .under_line::after {
        bottom: 4px;
    }

    .solutions-attention p {
        font-size: 24px;
    }

    .solutions-attention .text-size {
        font-size: 40px;
    }

    .solutions-attention {
        padding: 30px 0 35px 0;
    }

    .solutions-attention img {
        width: 54%;
        display: block;
        margin: auto;
    }

    .solutions-list {
        display: flex;
        justify-content: center;
        gap: 42px;
    }

    .solutions-list-item {
        width: 430px;
        margin: 0;
    }

    .job-title {
        padding: 5px 20px;
    }

    .job-title::before {
        padding: 3px;
    }

    .solutions-message {
        max-width: 900px;
    }

    .solutions-message p {
        font-size: 24px;
        padding: 22px 68px;
    }

    /*実績　achievement*/
    .slider.sp {
        display: none;
    }

    .achievement {
        padding-bottom: 140px;
    }

    .heading-color {
        width: 84%;
        padding: 14px 0;
        margin-bottom: 80px;
        font-size: 40px;
    }

    .heading-color .small-size {
        font-size: 24px;
    }

    .speech-bubble {
        width: 80%;
        padding: 53px 0;
        margin-bottom: 70px;
        margin: 0 auto;
        display: block;
    }

    .speech-bubble br {
        display: block;
    }

    .speech-bubble .color-size {
        font-size: 36px;
    }

    .achievement-li.pc {
        display: block;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
        margin-bottom: 60px;
    }

    .img_size {
        width: 18.1%;
    }

    .achievement-li.pc img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .achievement-li.pc p {
        font-size: 20px;
        padding-top: 20px;
        display: inline-block;
        text-align: left;
    }

    /*サービス内容　service*/
    .service {
        padding: 140px 0;
    }

    .section-title h2 {
        font-size: 200px;
    }

    .section-title h3 {
        font-size: 40px;
        font-weight: bold;
    }

    .service h2 {
        margin-right: 9%;
    }

    .service .section-title h3 {
        right: 13%;
        bottom: 9%;
    }

    .service-item {
        display: flex;
        gap: 48px;
        justify-content: center;
    }

    .service-group {
        width: 87%;
        padding: 32px 0 45px 0;
        margin: 0 auto;
        margin-bottom: 48px;
    }

    .service-group-firstchild {
        margin-top: -93px;
    }

    .service-group_box {
        display: flex;
        gap: 48px;
        justify-content: center;
    }

    .service-group_box .service-group {
        width: 33%;
        margin: 0;
    }

    .service-title {
        font-size: 31px;
        margin-bottom: 24px;
    }

    .service-item img {
        margin-bottom: 16px;
    }

    .service-item p {
        font-size: 24px;
        padding: 0;
    }

    .service-attention p,
    .cta-attention p {
        font-size: 32px;
        width: 100%;
    }

    .service-attention p br {
        display: none;
    }

    .size_clor {
        font-size: 45px;
    }

    .service-attention img {
        width: 90%;
        height: 178px;
        padding-top: 50px;
        margin: 0 auto;
        max-width: 1000px;
    }

    /*選ばれる5つの理由　reason*/
    .section-title {
        text-align: center;
        position: relative;
    }

    .reason h2 {
        padding-top: 140px;
        margin-right: 9%;
    }

    .reason .section-title h3 {
        right: 8%;
        bottom: 60%;
    }

    .reason ul {
        margin-top: -92px;
    }

    .reason li {
        height: 380px;
    }

    .reason li.left {
        padding-left: 130px;
    }

    .reason li.right {
        padding-right: 130px;
    }

    .reason li h4 {
        font-size: 33px;
        padding: 48px 0 22px 21px;
    }

    .reason li h4::before {
        width: 9px;
        height: 30px;
        top: 52%;
    }

    .reason li p {
        font-size: 32px;
    }

    /*制作の流れ　flow*/
    .flow {
        padding: 140px 0;
    }

    .flow h2 {
        margin-right: 9%;
    }

    .flow .section-title h3 {
        right: 19%;
        bottom: 2%;
    }

    .wrap {
        display: flex;
        justify-content: center;
        gap: 30px;
        padding-bottom: 40px;
    }

    .flow-box {
        width: 85%;
        height: 103%;
        flex-wrap: wrap;
        justify-content: center;
        align-content: flex-start;
        padding: 0;
    }

    .flow-box img {
        width: 46%;
        height: 42%;
        object-fit: contain;
        margin-top: 27px;
    }

    .flow-list {
        width: 18%;
        padding: 0;
        margin-bottom: 0;
    }

    .flow-list::after {
        top: 50%;
        transform: translate(0, -50%);
        right: -30px;
        left: auto;
        transform: rotate(-90deg);
    }

    .circle {
        left: 50%;
        transform: translate(-50%);
    }

    .circle-inner {
        width: 100px;
        height: 100px;
    }

    .circle-inner p {
        font-size: 24px;
    }

    .circle-inner span {
        font-size: 40px;
    }

    /*料金プラン　price*/
    .price {
        padding: 140px 0;
    }

    .price .section-title h2 {
        margin-right: 10%;
    }

    .price .section-title h3 {
        right: 20%;
        bottom: 2%;
    }

    .price-box {
        margin-top: -91px;
    }

    .price-name {
        width: 88%;
        padding: 14px 0;
        font-size: 34px;
        font-weight: bold;
    }

    .price-main {
        width: 88%;
        padding: 70px 0;
        margin: 0 auto;
    }

    .price-main h2 {
        font-size: 48px;
    }

    .price-main span {
        font-size: 100px;
    }

    .price-line {
        top: 71%;
        width: 74%;
        height: 3px;
    }

    .price__details {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 40px;
        padding-top: 50px;
    }

    .price__details li {
        font-size: 24px;
        width: 220px;
        height: 220px;
        border-radius: 100%;
        padding: 50px 30px;
        letter-spacing: 1px;
        line-height: 1.4;
    }

    .price__options {
        padding-top: 70px;
    }

    .price__options p {
        font-size: 24px;
    }

    .price__details li br {
        display: block;
    }

    .price__options li br {
        display: none;
    }

    .price__options img {
        width: 35px;
    }

    /*お客様の声　voice*/
    .voice {
        padding: 140px 0;
    }

    .voice h2 {
        margin-right: 10%;
    }

    .voice .section-title h3 {
        right: 20%;
        bottom: 2%;
    }

    .voice-item .size_clor,
    .support-voice .size_clor {
        font-size: 32px;
    }

    .voice-box {
        display: flex;
        justify-content: center;
        gap: 60px;
    }

    .voice-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .user-info {
        width: 160px;
        height: 174px;
        max-width: 160PX;
        margin-bottom: -9px;
        object-fit: contain;
    }


    .voice-item {
        width: 470px;
        padding: 66px 38px 0px 38px;
        margin-top: -83px;
    }

    .voice-item .comment {
        padding: 26px 29px;
        margin-bottom: 40px;
    }

    .voice-item .user-profile p {
        font-size: 20px;
        margin-bottom: 40px;
    }

    /*サポート体制　support*/
    .support {
        text-align: center;
        padding-bottom: 140px;
    }

    .support ul {
        justify-content: center;
        gap: 60px;
    }

    .support-list {
        width: 250px;
        height: 250px;
        padding: 50px;
        margin-bottom: 20px;
    }

    .support li {
        margin-bottom: 50px;
    }

    .support li p {
        font-size: 32px;
    }

    .support .small-size {
        font-size: 20px;
        margin-top: 20px;
    }

    .support .speech-bubble {
        padding: 41px;
        font-size: 36px;
    }

    .support-voice-list {
        gap: 40px;
        padding-top: 60px;
    }

    .support-user-info img {
        width: 100%;
        height: 140px;
        padding: 0;
        margin: 0;
        left: -80%;
        object-fit: contain;
    }

    .support-voice .comment {
        width: 500px;
        height: 90px;
        padding: 0;
        border: 3px solid;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 60px;
    }

    .support-text {
        font-size: 36px;
        padding-top: 60px;
    }

    /*CTA*/
    .cta {
        padding: 140px 0;
        text-align: center;
    }

    .cta h2 {
        font-size: 40px;
        width: 70%;
        margin: auto;
        margin-bottom: 70px;
        letter-spacing: 2px;
    }

    .cta h2 br {
        display: none;
    }

    .works-img {
        display: flex;
        text-align: center;
        justify-content: center;
        gap: 80px;
        align-items: center;
    }

    .works-img img {
        width: 35%;
    }

    .cta-attention img {
        width: 54%;
        margin: auto;
        padding-top: 70px;
    }

    .cta-attention p {
        top: 62%;
    }

    /*フッター　footer*/
    .footer {
        padding: 50px 0;
    }

    .footer-symbol-logo {
        width: 70px;
    }

    .footer-navname-logo {
        width: 320px;
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .footer-navname-logo::before,
    .footer-navname-logo::after {
        width: 250px;
        height: 3px;
        top: 44%;
    }

    .footer-navname-logo::before {
        left: -280px;
    }

    .footer-navname-logo::after {
        right: -280px;
    }

    .footer-nav ul:first-child {
        margin-bottom: 30px;
    }

}