/* 2022.11.22 hitomi: 新規編集 */

/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,*::before,*::after{box-sizing:border-box}*{margin:0}html,body{height:100%}body{line-height:1.5;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}#root,#__next{isolation:isolate}


/* カラー変数 */
:root {
    --base-text-color:#111;
    --main-bg-color:#5fc4c1;
  }
  body,html {
      overflow-x: hidden;
  }
  /* 基礎フォント */
body{ 
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
    width: 100%;
    height: 100%;
    /* --edit 2022.11.22 ST */
    /* background-color: #fa9dbc; */
    /* background-image: linear-gradient(135deg, #7dfdf9 0%, #ffffff 50%,#fa9dba 100%); */
    background-color: #fff;;
    background-image: linear-gradient(135deg, #ffe2bc 0%, #ffffff 50%,#bcfffc 100%);
    /* --edit 2022.11.22 End */
}
/* 英字フォント */
.en-font{
     font-family: 'Montserrat', sans-serif;
    }
 /* 背景色の指定 */
.wrap {
    width: 100%;
    height: 100%;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    padding: 1rem 1rem 2rem;
    position: relative;
    z-index: 1;
}
/* 枠 */
.main-container {
    max-width: 375px;
    width: 90%;
    max-height: 540px;
    height: 90%;
    border-radius: 30px;
    backdrop-filter: blur(20px);
    /* -webkit-backdrop-filter: blur(20px); */
    background-image: linear-gradient(135deg, rgba(255,255,255, 0) 0%, rgba(255,255,255, 0.6) 100%);
    box-shadow: rgba(0, 0, 0, 0.05) 2px 2px 10px;
    border: 1px rgba(255,255,255,0.1) solid;
    padding: 2rem 1rem 0;
}

/* プロフィール画像のコンテナー */
.profile-container {
    position: relative;
    padding-top: 2.1rem;
}
.profile-container .image {
    background: url(./images/img01.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    width: 102px;
    height: 102px;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.3) 3px 3px 10px;
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    margin:auto;
}
/* 名前 */
.profile-container .name {
    color:var(--base-text-color);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
}
/* スキル一覧 */
.profile-container .name .skils {
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
}
/* SNSアイコンコンテナー */
.sns-main-container {
    list-style: none;
    padding-left: 0;
    max-width: 180px;
    height: 190px;
    margin: 1rem auto 0.5rem;
    position: relative;
}
.sns-main-container .items {
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 10px;
    transform-style: preserve-3d;
    transform: perspective(300px);
    position: absolute;
}
.sns-main-container .items a {
    display: block;
    width: 100%;
    height: 100%;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    justify-content: center;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    transform-style: preserve-3d;
    transform: perspective(300px);
}
.sns-main-container .items img {
    width: 30px;
    transform: translateZ(10px);
}
/* インスタアイコン */
.sns-main-container .items-insta {
    width: 84px;
    height: 84px;
    background-color: #d574ce;
    background-image: linear-gradient(297deg, #4c66e7 0%, #d574ce 46%, #FFCC70 100%);
    top: 0;
    left: 0;
    position: relative;
    z-index: 1;
}
/* インスタアイコン影 */
.sns-main-container .items-insta::before {
    /* content: ""; */
    width: 40px;
    height: 20px;
    background: #c048b8;
    border-radius: 50%;
    filter: blur(10px);
    position: absolute;
    bottom: -8px;
    left: 23px;
}
/* Twitterアイコン */
.sns-main-container .items-twitter {
    width: 72px;
    height: 72px;
    background-color: #1D9BF0;
    background-image: linear-gradient(296deg, #1D9BF0 0%, #79f2e4 100%);
    top: 30px;
    right: 10px;
}
/* Twitterアイコン影 */
.sns-main-container .items-twitter::before {
    /* content: ""; */
    width: 40px;
    height: 10px;
    background: #1D9BF0;
    border-radius: 50%;
    filter: blur(9px);
    position: absolute;
    bottom: -10px;
    left: 18px;
}
/* YouTubeアイコン */
.sns-main-container .items-youtube {
    width: 61px;
    height: 61px;
    background-color: #b60101;
    background-image: linear-gradient(140deg, #fa9f9f 0%, #b60101 100%);
    top: 93px;
    left: 25px;
}
/* YouTubeアイコン影 */
.sns-main-container .items-youtube::before {
    content: "";
    width: 30px;
    height: 10px;
    background: #d45d5d;
    border-radius: 50%;
    filter: blur(10px);
    position: absolute;
    bottom: -10px;
    left: 17px;
}
/* githubアイコン */
.sns-main-container .items-github {
    width: 70px;
    height: 70px;
    background-color: #d069f2;
    background-image: linear-gradient(296deg, #58347e 0%, #d069f2 100%);
    top: 115px;
    right: 15px;
}
/* githubアイコン影 */
.sns-main-container .items-github::before {
    content: "";
    width: 30px;
    height: 10px;
    background: #ad6db0;
    border-radius: 50%;
    filter: blur(8px);
    position: absolute;
    bottom: -3px;
    left: 22px;
}

/* --add 2022.11.22 ST */
/* Intentionアイコン */
.sns-main-container .items-intn {
    width: 72px;
    height: 72px;
    background-color: #1D9BF0;
    background-image: linear-gradient(296deg, #1D9BF0 0%, #79f2e4 100%);
    top: 30px;
    right: 10px;
}
/* Intentionアイコン影 */
.sns-main-container .items-intn::before {
    /* content: ""; */
    width: 40px;
    height: 10px;
    background: #1D9BF0;
    border-radius: 50%;
    filter: blur(9px);
    position: absolute;
    bottom: -10px;
    left: 18px;
}
.sns-main-container .items.items-intn img {
    width: 40px;
}

/* noteアイコン */
.sns-main-container .items-note {
    width: 70px;
    height: 70px;
    background-color: #d069f2;
    background-image: linear-gradient(296deg, #58347e 0%, #d069f2 100%);
    top: 115px;
    right: 15px;
}
/* noteアイコン影 */
.sns-main-container .items-note::before {
    content: "";
    width: 30px;
    height: 10px;
    background: #ad6db0;
    border-radius: 50%;
    filter: blur(8px);
    position: absolute;
    bottom: -3px;
    left: 22px;
}
.sns-main-container .items.items-note img {
    width: 50px;
}
/* --add 2022.11.22 End */

/* サブコンテンツ一覧 */
.sns-sub-container {
    max-width: 180px;
    margin: 0 auto 1rem;
    list-style: none;
    padding-left: 0;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}
.sns-sub-container .items {
    width: 48%;
    margin-bottom: 0.5rem;
    position: relative;
}
/* リンク1 */
.sns-sub-container .items:first-child {
    padding-left: 20px;
}
.sns-sub-container .items:first-child::before {
    content: "";
    width: 15px;
    height: 15px;
    background: url(./images/icon-link.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
/* リンク2 */
.sns-sub-container .items:nth-child(2) {
    padding-left: 20px;
}
.sns-sub-container .items:nth-child(2)::before {
    content: "";
    width: 15px;
    height: 15px;
    background: url(./images/icon-link.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
/* リンク3 */
.sns-sub-container .items:nth-child(3) {
    padding-left: 20px;
}
.sns-sub-container .items:nth-child(3)::before {
    content: "";
    width: 15px;
    height: 15px;
    background: url(./images/icon-link.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.sns-sub-container .items-note img {
    max-width: 60px;
}
.sns-sub-container .items a {
color: var(--base-text-color);
text-decoration: none;
font-weight: bold;
font-size: 0.7rem;
}
/* おすすめアイテム一覧 */
.recommend-container {
    list-style: none;
    padding: 1rem 1rem 0.5rem;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    overflow-x: scroll;
    width: calc(100% + 150px);
    margin: 0 -80px;
}
/* おすすめアイテム一覧のアイテム */
.recommend-container .items {
    min-width: 200px;
    min-height: 100px;
    margin: 0 0.5rem;
    flex: 1 1 auto;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 10px;
    border: 1px rgba(255,255,255,0.1) solid;
    background-image: linear-gradient(135deg, rgba(255,255,255, 0) 0%, rgba(255,255,255, 0.7) 100%);
    padding: 1rem;
}
.recommend-container .items .image {
    /* width: 80px; --edit 2022.11.22 */
    width: 90%;
    /* height: 80px; --edit 2022.11.22 */
    height: 100px;
    /* border-radius: 50%; --del 2022.11.22 */
    background-color: #fff;
    margin: 0 auto 0.5rem;
}
/* おすすめアイテム一覧の画像指定 */
.recommend-container .items:nth-child(1) .image {
    background: url(./images/news-1.jpg) no-repeat;
    background-color: #fff;
    background-size: 100%;
    background-position: center;
}
.recommend-container .items:nth-child(2) .image {
    background: url(./images/news-2.jpg) no-repeat;
    background-color: #fff;
    background-size: 100%;
    background-position: center;
}
.recommend-container .items:nth-child(3) .image {
    background: url(./images/img-Lecommend.png) no-repeat;
    background-color: #fff;
    background-size: 100%;
    background-position: center;
}
.recommend-container .items .title {
    line-height: 1;
    margin-bottom: 0.3rem;
    text-align: center;
}
.recommend-container .items .title a {
    display: inline-block;
    padding: 8px 10px;
    background: var(--main-bg-color);
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: .2s;
}
.recommend-container .items .title a:hover {
    opacity: 0.8;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 8px;
}
.recommend-container .items .content {
    font-size: 0.65rem;
    color: var(--base-text-color);
}
/*
.recommend-container .items p.content {
    padding: 10px 20px 5px 20px;
}
*/