@charset "UTF-8";

/* =========
common
=========*/
::selection {
    color: var(--primary-blue);
    background-color: yellow;
}

:root {
    --primary-black: #1A1A1A;
    --primary-blue:  #005CF8;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: var(--primary-blue);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.4rem;
    position: relative;
    
}

img {
    max-width: 100%;
}

/* 個別 */

.header {
    padding: 30px 44px 0px 44px;
    display: flex;
    justify-content: space-between;
}

.ttl {
    width: 127px;
}

.logo {
    color: #1A1A1A;
    font-size: 2.6rem;
    font-style: normal;
    letter-spacing: 5.2px;
}

.logo__sub {
    font-size: 1.2rem;
    margin-top: 13px;
}

/* ナビゲーションアニメ */
.nav__list {
    display: flex;
    gap: 20px;
    font-size: 1.8rem;
}

.navcontainer {
    position: relative;
    width: 65px;
    height: 25px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s;
}

.text-1 {
    color: #949494;
}

.text-2 {
    color: var(--primary-black);
    transform: translateY(100%);
}

.navcontainer:hover .text-1 {
    transform: translateY(-100%);
}

.navcontainer:hover .text-2 {
    transform: translateY(0);
}

/* ナビゲーションポイント */

.point {
    border-bottom: 1px solid var(--primary-black); 
}

.nav-point {
    margin-top: 2px;
    color: var(--primary-black);
}

.hamburger_open {
    display: none;
}

.hamburger {
    display: none;
}

/* +++++++++++++
sp
+++++++++++++ */

@media (max-width: 650px) {
    .header {
        padding: 0;
        
    }
    .hamburger {
        position: fixed;
        display: block;
        width: 39px;
        height: 39px;
        margin: 21px 15px 0 0;
        right: 0;
        cursor: pointer;
        z-index: 10;
    }

    .hamburger_open {
        color: #005CF8;
        position: relative;
        background-color: #A6A9B0;
        width: 100%;
        height: 100vh;
        position: fixed;
        z-index: 5;
        top: 0;
        left: 0;
        display: block;
        opacity: 0;
        transition: opacity 0.2s ease;
        display: none;
        z-index: -1; 
        transition: opacity 0.2s ease, z-index 0s 0.2s; 
    }

    .hamburger_open.active {
        display: block;
        opacity: 1;
        z-index: 5; 
        transition: opacity 0.2s ease, z-index 0s; 
    }

    .batsu {
        width: 39px;
        height: 39px;
        margin: 21px 15px 0 0;
        cursor: pointer;
        z-index: 20;
    }

    .hamburger_open.active .hamburger {
        z-index: 5;
    }
    

    .hamburger_open_head {
        display: flex;
        justify-content: space-between;
        padding-bottom: 15px;
        width: 100%;
        border-bottom: 2px solid #CFCFCF;
    }

   

    .open__nav__list {
        margin-top: 110px;
    }

    .nav__logo {
        margin: 21px 0 0 15px;
        color: #005CF8;
        font-size: 2.6rem;
        font-style: normal;
        line-height: normal;
        letter-spacing: 5.2px;
    }

    .open__nav__item {
        font-weight: 400;
        font-size: 3.6rem;
        font-style: normal;
        line-height: normal;
        margin-top: 17px;
        padding-left: 15px;
        position: relative;
    }

    .text {
        display: inline-block;
        opacity: 0;
        transform: translateY(100%);
        animation: slideUp 1s forwards;
    }

    .text-split {
        overflow: hidden;
      }
      
      .text-split span {
        display: inline-block;
        transform: translateY(100%);
        opacity: 0; /* 最初は透明 */
      }
      
      .text-split.is-active span {
        animation: slideUp 0.8s cubic-bezier(0.7, 0.2, 0.1, 1) forwards;
      }
      
      @keyframes slideUp {
        to {
          transform: translateY(0);
          opacity: 1;
        }
      }
      

    .open__nav__item a {
        transition: color 0.2s ease;
    }

    .open__nav__item a:hover {
        color: #FFF;
    }

    .now {
        color: #FFF;
    }

    .tip {
        width: 3px;
        height: 80%;
        background-color: yellow;
        border-radius: 0 2px 2px 0;
        position: absolute;
        top: 6px;
        left: 0px;
    }

    .open__nav__item__icon {
        margin-top: 38px;
    }

    .open__nav__icon__insta {
        width: 35px;
        height: 36px;
    }

    .open__nav__icon__X {
        width: 38px;
        height: 36px;
        margin-left: 31px;
    }

    .batsu {
        width: 39px;
        height: 39px;
    }


    .ttl {
        margin-top: 25px;
        margin-left: 15px;
    }

   .nav__list{
        display: none;
   }
    
}


/* プロフィール */

.profile {
    padding: 0px 44px 115px 44px;
}

.profileImg {
    width: 343px;
    height: auto;
    margin-right: 77px;
}

.profileGroup {
    display: flex;
    justify-content: center;
    margin-top: 126px;
}

.name {
    color: var(--primary-blue);
    font-family: "Noto Sans JP";
    font-size: 2.3rem;
    font-weight: 700;
}

.fullName {
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.24px;
    margin-left: 11px;
}

.profile__read {
    margin-top: 32px;
    color: var(--primary-blue);
    font-family: "Noto Sans JP";
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 200%;
    letter-spacing: 0.42px;
}

.blank {
    position: absolute;
    display: inline-block;
    top: 10px;
    margin-left: 5px;
}

.goods {
    margin-top: 15px;
    position: relative;
    display: inline-block;
}

.goods::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1px;
    right: 0;
    height: 1px;
    background-color: currentColor;
    transition: transform 0.3s ease;
    transform: scaleX(0); 
}

.goods:hover::after {
    transform: scaleX(1);
}

.catchCopy {
    display: flex;
    justify-content: center;
    margin-top: 90px;
    gap: 21px;
}

.catchCopy__img {
    width: 124px;
}

.catchCopy__txt {
    color: var(--primary-blue);
    font-family: "Noto Sans JP";
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.35px;
}

/* +++++++++++++
sp
+++++++++++++ */

@media (max-width: 650px) {
    
    .profile {
        padding: 0 8% 55px 8%;
    }

    .profileImg {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    
    .profileGroup {
        display: block;
        margin-top: 43px;
        text-align: center;
    }

    .profile__read {
        margin-top: 32px;
        font-size: 1.4rem;
        text-align: left;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        display: block; /* 追加 */
    }

    .profileTxt {
        margin-top: 47px;
    }

    .catchCopy {
        display: block;
        margin-top: 37px;
    }

    .catchCopy__txt {
        font-size: 1.95rem;
        text-align: center;
    }

    .catchCopy__img {
        width: 91px;
        height: 37px;
        margin: 45px auto 0 auto;
        display: flex;
        justify-content: center;
    }

}

/* コンタクト */
.article__contact {
    overflow: hidden;
    background-color: #005CF8;
    color: #ffffff;
    text-align: center;
}

.scroll {
    display: flex;
}

.scroll {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.scrollContent {
    display: flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

.scrollGroup {
    margin-left: 30px;
    display: flex;
    align-items: center;
    gap: 13px;
    margin-right: 30px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.scrolltxt {
    font-size: 2.8rem;
    font-weight: 300;
}

.scrollHand {
    width: 25px;
    height: 24px;
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.scrolltxt {
    font-size: 2.8rem;
    font-weight: 300;
}

.scrollHand {
    width: 25px;
    height: 24px;
}

.contact_txt {
    margin-top: 128px;
    letter-spacing: 0.42px;
    line-height: 2.5;
}

.Email {
    padding: 15px;
    margin: 0 auto;
    margin-top: 55px;
    width: 226px;
    height: 90px;
    border-radius: 50px;
    border: solid 1px #ffffff;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.Email::before {
    content: '';
    position: absolute;
    border-radius: 50px;
    background: #FFF;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.Email:hover::before {
    transform: scale(1);
}

.Email a {
    color: #FFF;
    font-size: 4rem;
    line-height: normal;
    display: inline-block;
    transition: transform 1s ease, color 0.3s ease; 
    position: relative;
    z-index: 1;
}

.Email:hover a {
    color: var(--primary-blue); 
    transform: scale(1.1);
}

.FOLLOW {
    margin-top: 123px;
}

.Icon {
    margin-top: 39px;
    margin-bottom: 136px;
}

.Icon_instagram {
    width: 52px;
    height: 53px;
    margin-right: 75px;
}

.Icon_X {
    width: 56px;
    height: 53px;
}
.spbr{
    display: none;
}

/* +++++++++++++
sp
+++++++++++++ */
@media (max-width: 650px) {
    .spbr{
        display: block;
    }

    .contact_txt {
        margin-top: 91px;
    }

    .FOLLOW {
        margin-top: 99px;
    }

    .Icon {
        margin-bottom: 130px;
    }
}


/* canDo */

.canDo {
    padding: 0 12% 34px 12%;
    margin: 0 auto;
}

.canDo__ttl__sub {
    margin-top: 136px;
    font-family: "Noto Sans JP";
    letter-spacing: 0.42px;
}

.canDo__list {
    display: flex;
    gap: 21px;
    justify-content: center
}

.canDo__ttl {
    font-size: 7.6rem;
    line-height: 149.715%;
}

.canDo__ttl__group {
    display: flex;
    gap: 32px;
    align-items: center;
}

.btnlinestretches5 {
    margin-left: 26px;
}

.canDo__ttl__link {
    display: flex;
    gap: 30px;
    margin-left: 30px;
}

.Wlink {
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
    color: var(--primary-blue); 
    transition: color 0.2s ease;
}

.Wlink::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0); 
    transform-origin: center;
    transition: transform 0.3s ease;
}

.Wlink:hover {
    color: #1CCDF3;
}

.Wlink:hover::after {
    transform: scaleX(1);
}

.canDo__WlinkGroup {
    display: flex;
    align-items: center;
}


.canDo__img {
    width: 290px;
}

.canDo__txt__div {
    width: 290px;
    height: 80px;
    background-color: yellow;
    padding: 4px 26px 17px 26px;
    border-radius: 0 0 30px 30px;
}

.canDo__txt__div2 {
    background-color: #A8D4C9;
}

.canDo__txt__div3 {
    background-color: #00A0EF;
    color: #FFF;
}

.canDo__txt {
    font-family: "Noto Sans JP";
    line-height: 1.7;
}

.canDo__list {
    margin-top: 40px;
}

.copy {
    margin-top: 70px;
    text-align: center;
    color: #B3B3B3;
    font-size: 1.2rem;
}

/* +++++++++++++
sp
+++++++++++++ */
@media (max-width: 650px) {
    .canDo {
        padding: 0 10%;
    }

    .canDo__list {
        display: block;
        text-align: center;
    }
    .canDo__ttl {
        font-size: 4.2rem;
    }

    .canDo__ttl__sub {
        margin-top: 70px;
    }

    .canDo__item {
        width: 299px;
        height: 457px;
        display: inline-block;
    }

    .canDo__img {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .canDo__txt__div {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .canDo__ttl__group {
        display: block;
    }

    .canDo__WlinkGroup {
        display: flex;
        align-items: center;
        margin-top: 10px;
    }

    .canDo__ttl__link {
        gap: 16px;
        margin-left: 30px;
    }
    
    .copy {
        margin-top: 27px;
        margin-bottom: 20px;
    }
}

/* ふわふわ */
.contact {
    position: fixed;
    display: block;
    width: 80.989px;
    height: auto;
    right: 18px;
    bottom: 15px;

    animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
    0% {
        transform: translateY(-5%);
    }
    100% {
        transform: translateY(5%);
    }
}

.btnlinestretches {
    position:relative;
    color: var(--primary-blue);
    display:inline-block;
    width: 95px;
}

.btnlinestretches::before {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: var(--primary-blue);
}


.btnlinestretches::after {
    content: "";
    position: absolute;
    bottom:-6px;
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--primary-blue);
    border-right: 1px solid var(--primary-blue);
    transform: rotate(45deg);
}

.btnlinestretches::before {
    animation: arrowlong01 2s ease infinite;
}

.btnlinestretches::after {
    animation: arrowlong02 2s ease infinite;
}

@keyframes arrowlong01 {
    0%{width:0;opacity:0}
    20%{width:0;opacity:1}
    80%{width:105%;opacity:1}
    100%{width:105%;opacity:0}
}

@keyframes arrowlong02 {
    0%{left:0;opacity:0}
    20%{left:0;opacity:1}
    80%{left:103%;opacity:1}
    100%{left:103%;opacity:0}
}

/* ＋＋＋＋＋＋＋＋＋＋＋
JS
＋＋＋＋＋＋＋＋＋＋＋ */

.box {
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
    transform: translateY(100px);
}

.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

