/* 全体ーーーーーーーーー */

* {
    padding: 0;
    margin: 0;
    font-family: Helvetica;
}

html {
    background-color: rgb(255, 255, 255);
    scroll-behavior: smooth;
}


/* エラーーーーーーーーーーーー */

.error {
    text-align: center;
}

.error p {
    color: red;
    font-size: large;
    text-align: center;
    font-weight: 500;
}



/* ヘッダー----------------- */


header {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    left: 0px;
    top: 0px;
    z-index: 10;
    width: 100%;

}


.logo {
    margin: 40px auto;
    z-index: 99;
}

.logo h2 {
    display: inline-block;
    background: linear-gradient(135deg, #e72a89, #00aeff 100%);
    background: -webkit-linear-gradient(-45deg, #e72a89, #00aeff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-family: Helvetica;
    font-size: 40px;
}

.error-msg {
    margin: 40px auto;
    z-index: 99;
    align-items: center;
}

.error-msg p {
    display: inline-block;
    color: #980a0a;
    font-family: Helvetica;
    text-align: center;
    font-size: 10px;
}



/* Login メインーーーーーーーーーー */


#logionMain form {
    height: 250px;
}



/* From uiverse.io by @satyamchaudharydev */
.login {
    --width-of-input: 300px;
    --border-height: 1px;
    --border-before-color: rgb(165, 165, 165);
    --border-after-color: linear-gradient(135deg, #e72a89, #00aeff 100%);
    --input-hovered-color: linear-gradient(135deg, #e72a894c, #00aeff56 100%);
    ;
    position: relative;
    width: var(--width-of-input);
    margin: 20px auto;
}

/* styling of Input */
.loginInput {
    letter-spacing: 2px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: black;
    font-size: 16px;
    transform: scale();
    background-color: transparent;
    width: 100%;
    box-sizing: border-box;
    padding-inline: 0.7em;
    padding-block: 0.9em;
    border: none;
    border-bottom: var(--border-height) solid var(--border-before-color);
}



/* styling of animated border */
.input-border {
    position: absolute;
    background: var(--border-after-color);
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    transition: 0.7s;
}

.login input {
    background-color: #5d00ff21;
}

/* Hover on Input */
.login input:hover {
    background: var(--input-hovered-color);
}

.login input:focus {
    outline: none;
}

/* here is code of animated border */
.login input:focus~.input-border {
    width: 100%;
}

.login input:placeholder-shown {
    background-color: rgba(255, 0, 0, 0);
}

/* ボタン */

/* From uiverse.io by @kirzin */
.loginBtn {
    text-decoration: none;
    position: absolute;
    left: 0;
    right: 0;
    margin: 30px auto;

    border: none;
    font-size: 20px;
    font-family: inherit;
    color: #fff;
    width: 16em;
    height: 2.5em;
    line-height: 2em;
    text-align: center;
    background: linear-gradient(45deg, #03a9f4, #f441a5, #f441a5, #ffeb3b, #03a9f4);
    background-size: 300%;
    border-radius: 30px;
    z-index: 1;
    animation: ani 25s linear infinite;
}

.loginBtn:hover {

    border: none;
}

@keyframes ani {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 1000%;
    }
}

.loginBtn:before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: -1;
    background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
    background-size: 400%;
    border-radius: 35px;
    transition: 1s;
    filter: blur(20px);
}

.lineLogin a {
    text-decoration: none;
}

/* LINEログイン ーーーー*/
.lineLogin div {
    display: flex;
    align-items: center;
    margin: 30px auto;
    text-align: left;
    background-color: #06c755;
    width: 200px;
    border-radius: 10px;
}


.lineLogin div img {
    width: 50px;
    margin-right: 30px;
    border-right: solid 1px rgba(150, 150, 150, 0.556)
}


.lineLogin p {
    font-size: 20px;
    font-weight: 500;
    color: white;
}

/* パスワードリセット------ */

.forgotPass a {
    color: rgb(127, 127, 127);
    font-weight: 100;
    display: block;

    text-align: center;
}

.createAccount a {
    color: rgb(127, 127, 127);
    font-weight: 100;
    display: block;

    text-align: center;
}

.createAccount p {
    color: rgb(127, 127, 127);
    font-weight: 100;
    display: block;

    text-align: center;
}



/* register÷------------------ */

.nregisterTitle {
    margin: 0 auto;
    display: block;
    width: 90%;
    border-bottom: solid 0.5px black;
    padding-bottom: 0.9rem;
    margin-bottom: 50px;

    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
}

#register-1 .login {
    margin-bottom: 50px;
    --input-hovered-color: none;

}

#register-1 .login input {
    background-color: rgba(124, 124, 124, 0.133);
}

#register-1 .login input:placeholder-shown {
    background-color: rgba(214, 214, 214, 0);
}

#register-1 .lineLogin {
    border-top: solid 0.5px black;
    width: 90%;
    margin: 0 auto;
    margin-top: 60px;
}


.registerBtn {
    background-color: aliceblue;
    border: solid 0.5px black;
    padding: 10px;
    margin: 0 auto;
    width: 50%;
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    color: black;
}

#register-2 p {
    text-align: center;
    font-size: 20px;
    margin-top: 40%;
}


/* signup page------------------ */
#signup_1 {
    padding-bottom: 30px;
}

#signupEdit {
    width: 90%;
    margin: 0 auto;
}

#signupEdit button {
    display: block;
    margin: 30px auto;
}

#signup_2 {
    padding-bottom: 30px;
}

#signupConfirm {
    width: 90%;
    margin: 0 auto;
}

#signupConfirm input {
    border: solid 0.5px black;
}

#signupConfirm textarea {
    border: solid 0.5px black;
}


.TwoOptionBtn {
    display: flex;
    justify-content: center;

}

.TwoOptionBtn button {
    /* padding: 10px;
    border: solid 0.5px black; */
    border-radius: 10px;
    width: 40%;
    margin: 10px;
}


/* From uiverse.io by @nikk7007 */
.colorfullBtn {
    --color: #006ba9;
    padding: 0.7em 1.7em;
    background-color: transparent;
    border-radius: .8em;

    font-weight: 400;
    font-size: 17px;
    border: 2px solid;
    font-family: inherit;
    text-transform: uppercase;
    color: var(--color);
    z-index: 1;

    display: block;
    margin: 30px auto;
    text-decoration: none;
    width: 55%;
    text-align: center;
    font-weight: 700;
}

.backBtn {
    --color: #000000;
    padding: 0.8em 1.7em;
    background-color: transparent;
    border-radius: .3em;

    font-weight: 400;
    font-size: 17px;
    border: 2px solid;
    font-family: inherit;
    text-transform: uppercase;
    color: var(--color);
    z-index: 1;
}







/* Thank you page::------------ */

#signup_3 p {
    text-align: center;
    margin: 50px 0 100px 0;
    font-size: 20px;
    font-weight: 800;
}

#signup_3 iframe {
    width: 95%;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
}



/* マイページーーーーーーーーーーーーーーーーー */


/* アイコンーーーーーーーーーー */






/* headaer-- */

.gradient {
    width: 100%;
    height: 100%;
    padding: 30px 0 100px 0;
}

.mypagelogo {
    margin: 0;
    background-color: rgba(255, 255, 255, 0.324);
    width: 100%;
    text-align: center;
    padding: 10px;
}

.mypagelogo h2 {
    font-size: 15px;
}

/* main------ */

/* プロ÷フィール編集ーーーー￥￥￥ */

#profileEdit {
    display: flex;
    align-items: center;
}

#profileName {
    font-size: 18px;
    font-weight: 700;
}

#profileDetail {
    font-size: 15px;
    font-weight: 200;
    margin-top: 7px;
}

.profilePic {
    border: solid 1px rgba(0, 0, 0, 0.072);
    width: 100px;
    height: 100px;
    border-radius: 50%;

    display: block;
    margin: 20px 20px;
}

.editRow{
    display: flex;
    width: 90%;
    padding: 0 10px;
    justify-content: space-between;
       position: relative;
}

#profileEditBtn {
    font-size: 18px;
    font-weight: 900;
    color: black;
    background-color: whitesmoke;
    border: solid 1px rgba(128, 128, 128, 0.242);
    text-decoration: none;
    padding: 10px;
    border-radius: 50px;
    margin: 0 auto;
    display: block;
    width: 50%;
    text-align: center;
    /* position: relative; */
}


.mypage-share-btn{
    /* background-color: red; */
    border: solid 0.5px rgba(128, 128, 128, 0.242);
    background-color: whitesmoke;
    text-align: center;
    font-size: 1rem;
    padding: 10px 12px;
    font-weight: 700;
    border-radius: 50px;
    position: absolute;
    right: 0;
    top:6px
}






/* ／￥／ーーーートップ３アイコン */

#topIcons {
    /* background-color: #03a9f4; */
    width: 60%;
    margin: 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#topIcons .icon {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: solid 0.5px black;
    border-radius: 50%;
    margin: 0 10px;

    color: black;
}


#topIcons a {
    text-decoration: none;
}

#topMore {
    font-weight: 900;
    font-size: 30px;
}


.topIcon{
    display: flex;
}

/* マイページリンクアイテム */

#mypage .linkItem{
    column-gap: 0px;
}

#mypage .linkItem a{
   text-decoration: none;
}



/* ダイレクトリンクーーーーー */
/* From uiverse.io by @mobinkakei */
.switch-holder {
    width: 90%;
    margin: 40px auto;
    display: flex;
    padding: 10px 10px;
    border-radius: 25px;
    box-shadow:
        3px 3px 13px rgba(0, 0, 0, .2),
        inset 8px 8px 15px rgba(255, 255, 255, .7);
    justify-content: space-between;
    align-items: center;
}

/* .switch-label {
    padding: 0 20px 0 10px
} */

.switch-label span {
    font-weight: 600;
}

/* .switch-toggle {
    height: 40px;
} */

.switch-toggle input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    z-index: -2;
}

.switch-toggle input[type="checkbox"]+label {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 21px;
    border-radius: 20px;
    margin: 0;
    cursor: pointer;
    box-shadow: inset -8px -8px 15px rgba(255, 255, 255, .6),
        inset 10px 10px 10px rgba(0, 0, 0, .25);
}

.switch-toggle input[type="checkbox"]+label::before {
    position: absolute;
    content: 'OFF';
    font-size: 12px;
    text-align: center;
    line-height: 19px;
    top: 2px;
    left: 3px;
    width: 36px;
    height: 18px;
    border-radius: 20px;
    background-color: #eeeeee;
    box-shadow: -3px -3px 5px rgba(255, 255, 255, .5),
        3px 3px 5px rgba(0, 0, 0, .25);
    transition: .3s ease-in-out;
}

.switch-toggle input[type="checkbox"]:checked+label::before {
    left: 32%;
    content: 'ON';
    color: #fff;
    background-color: #1d1d1d;
    box-shadow: -3px -3px 5px rgba(255, 255, 255, .5),
        3px 3px 5px #1d1d1d;
}

#mypage .linkName{
    width: 36%;
}

.directBtn{
    background-color: rgba(245, 245, 245, 0.265);
    border-radius: 50px;
    border: solid 0.5px black;
    padding: 7px;
    font-weight: 600;
    text-decoration: none;
    color: black;
    font-size: 0.8rem;
}


.linkaddBtn {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 9px 0 9px 0px;
    align-items: center;
    /* background-color: #ffffff2b; */
    background-color: #0000002b;
    width: 95%;
    border-radius: 10px;
    margin: 15px auto;

    border: solid 0.5px black;
    line-height: 29px;

    text-decoration: none;
    color: #000000;
}
.linkaddBtn .plus{
    font-size: 50px;
    font-weight: 100;
    margin-bottom: 11px;
}

/* 編集ボタン＾＾＾＾＾ */

.editBtn{
    background-color: transparent;
    padding: 0.3rem 1rem;
    color: black;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin: 0px 0.3rem;

    border: solid 0.5px black;
}

.location{
    /* background-color: red; */
    padding: 3px 0 0 6px;
    border: solid 0.5px black;
    border-radius: 50%;
    width: 22px;
    height:24px;
    margin: 5px 15px;
    color: black;
    background-color: #00000019;
}


.editSubmit{
    /* background-color: red; */
    display: flex;
}

.editSubmit .saveLink{
    /* background-color: rebeccapurple; */
    width: 40%;
    padding: 10px 0;
    font-size: 17px;
}



/* プロフィールを編集 */

#editing {
    width: 90%;
    margin: 0 auto;
    display: block;
}


#editing img {
    width: 150px;
    height: 150px;
    margin: 20px auto;
    border: solid 0.5px rgb(75, 75, 75);
}


/* 編集欄−ーーーーー */

.input-group {
    display: block;
}


.input {
    display: block;
    /* max-width: 200px; */
    width: 90%;
    height: 44px;
    background-color: #ffffff9c;
    border-radius: .5rem;
    padding: 0 1rem;
    border: 2px solid transparent;
    font-size: 1rem;
    transition: border-color .3s cubic-bezier(.25, .01, .25, 1) 0s, color .3s cubic-bezier(.25, .01, .25, 1) 0s, background .2s cubic-bezier(.25, .01, .25, 1) 0s;
}

.label {
    display: block;
    margin-bottom: .3rem;
    margin-top: 1.5rem;
    font-size: .9rem;
    font-weight: bold;
    color: #05060f99;
    transition: color .3s cubic-bezier(.25, .01, .25, 1) 0s;
}

.input:hover,
.input:focus {
    outline: none;
    border-color: #05060f;
}

.input-group:hover .label,
.input:focus {
    color: #05060fc2;

}

.input-group textarea {
    height: 50px;
    padding-top: 5px;
}

.input-group .profile textarea {
    height: 100px;
}

.themeBtn {
    font-weight: 900;
    color: #05060f;
    text-decoration: none;
    width: 60%;
    display: block;
    margin: 30px auto 0 auto;
    text-align: center;

    height: 30pxpx;
    background-color: #05060f0a;
    border-radius: .5rem;
    border: solid 0.5px gray;
    padding: 0.7rem 1rem;
    /* border: 2px solid transparent; */
    font-size: 1rem;
}


/* リンク追加ーーーーーーーーー */

#linkadd p {
    text-align: left;
    margin: 10px 0 10px 20px;
}

.linkTitle {
    font-weight: 700;
    font-size: 20px;
    padding-top: 30px;
}

.linkSentence {
    padding: 0;
    margin: 0;
    font-weight: 500;
    line-height: 5px;
}


/* From uivers */
.search {
    width: 90%;
    margin: 0px auto 30px auto;

    display: flex;
    line-height: 28px;
    align-items: center;
    position: relative;
    /* max-width: 190px; */
}

.searchBar {
    width: 100%;
    height: 40px;
    line-height: 28px;
    padding: 0 1rem;
    padding-left: 2.5rem;
    border: 2px solid transparent;
    border-radius: 50px;
    outline: none;
    background-color: #f3f3f4;
    color: #0d0c22;
    transition: .3s ease;
    font-size: 16px;
}

.searchBar::placeholder {
    color: #9e9ea7;
}

.searchBar:focus,
input:hover {
    outline: none;
    border-color: rgba(0, 0, 0, 0.4);
    /* background-color: #fff; */
    box-shadow: 0 0 0 4px rgb(234 76 137 / 10%);
}

.searchIcon {
    position: absolute;
    left: 1rem;
    fill: #9e9ea7;
    width: 1rem;
    height: 1rem;
}

.directON .linkItem{
    background-color: #0000006a;
    box-shadow: 2px 2px 4px gray
}

.directOFF .linkItem{
    background-color: #0000006a;
    /* box-shadow: 2px 2px 4px gray; */
    opacity: 50%;
    pointer-events: none;
}


.linkItem {
    display: flex;
    flex-wrap: wrap;
    padding: 9px 0 9px 0px;

    align-items: center;
    /* background-color: #ffffff2b; */
    background-color: #0000002b;
    width: 95%;
    border-radius: 10px;
    margin: 15px auto;
    column-gap: 20px;
    transition: all 2s;
}


.icon {
    margin-left: 7px;
    /*width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(0, 255, 204);*/

    border-radius: 100%;
	/* min-width: 50px; */
	height: 50px;
    width: 50px;
	display: flex;
	justify-content: center;
	align-items: center;

    /*background-color: red;*/
    border-color: #000000;
    border-width: 1px;
    border-style: solid;
}

.icon  i{
	font-size: 35px;
    margin-bottom: 3px;
}



.linkName {
    font-weight: 700;
    margin-left: 7px;
    text-align: left;
    width: 50%;
}

.linkItem .addBtn {
    border: solid 0.4px rgba(0, 0, 0, 0.354);
    padding: 7px 15px 8px 15px;
    border-radius: 50px;
    background-color: #ffffff8a;
    text-decoration: none;
    color: black;
    font-weight: 900;
}

.descriptionOfLink{
    /* background-color: #006ba9; */
    /* margin: 0 auto; */
    font-size: 12px;
    color: #5c5c5c;
    font-weight: 100;
    width: 55%;
    text-align: left;
    margin: 0 auto;
}



.editSection {
    width: 100%;
}

.editSection form {
    width: 100%;

}

.editSection form .editLink {
    /* background-color: rebeccapurple; */
    display: flex;
    border-radius: 10px;
    align-items: center;
    justify-content: left;
    justify-items: center;
    width: 90%;
    margin: 0.5rem auto;
    /* column-gap: 17px; */
}

.editSection .input {
    padding: 2px;
}



.editSection form input {
    width: 70%;
    background-color: #05060f00;
    padding: 5px 0.5rem;
    font-size: 1rem;
    border: solid transparent;
    border-radius: 10px;
    text-align: right;
}

.editSection form input:hover {
    box-shadow: none;
}

.saveLink {
    border: solid 2px rgb(142, 142, 142);
    margin: 0 auto;
    background-color: #05060f3b
}

.editLink div {
    text-align: left;
    width: 80px;
}

/* .editSection .linkOption{
    display: block;
    background-color: red;
} */

.linkOption select {
    width: 70%;
    background-color: #05060f00;
    padding: 5px 0.5rem;
    font-size: 0.8rem;
    border: solid transparent;
    border-radius: 10px;
    text-align: right;
}

label>input {
    display: none;
    /* アップロードボタンのスタイルを無効にする */
}

/* label {
    color: black;
    text-align: center;
    background-color: #ffffff9c;

    padding: 10px;

    border: double 5px #939393;

    border-radius: 10px;
    margin: 9px auto;
    display: block;
    width: 85%;
} */


/* スクロール〜〜〜〜〜〜〜ーーー */

.scrollItems {
    padding-left: 10px;
    display: flex;



    white-space: nowrap;
    overflow-x: scroll;


    scroll-snap-type: x mandatory;
    scroll-padding: 0 10px;
}

.scrollItems>.linkRow {
    /* display: flex; */
    column-gap: 5px;

    /* background-color: red; */

    padding-right: 5px;
}

.scrollItems>.linkRow>.linkItem {

    white-space: nowrap;

    width: 350px;


    scroll-snap-align: start;

}

/*トップページ*/
.section-right{
    background-color: red;
    text-align: right;
    margin: 10px;
    height: 500px;
}

.section-left{
    background-color: red;
    text-align: left;
    margin: 10px;
    height: 500px;
}

.section-center{
    background-color: red;
    text-align: center;
}

.section-clear{
    clear: right;
    clear: left;
    clear: center;
}

.section-right .article{
    float: right;
    background-color: white;
    width: 60%;
    margin-top: 150px;
}

.article h3{
    margin: 10px;
    text-align: center;
}
.article p{
    margin: 10px;
    text-align: left;
}

.section-left .article{
    float: left;
    background-color: white;
    width: 60%;
    margin-top: 150px;
}

.section-nopicture{
    background-color: #00aeff;
    color: white;
}

.section-nopicture .article{
    text-align: center;
    margin: 10px;
}