@charset "UTF-8";

/* 共通 */

.wrapper {
    max-width: 980px;
    margin: 0 auto;
}

html {
  scroll-behavior: smooth;
}

/* TOPへ戻るボタン */

#page-top {
  position: fixed; /*固定*/
  right: 20px;
  bottom: 20px;
  background: #fff;
}

.top-back a {
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 60px;
  height: 60px;
  border: solid 1px rgba(0, 77, 154, 0.533);
  border-radius: 50%;
}

.top-back a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background-color: rgba(0, 77, 154, 0.533);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0, 0);
  transition: transform ease 0.4s;
}

.top-back :hover:after {
  transform: translate(-50%, -50%) scale(0.55, 0.55);
}

.top-back a:before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 55%;
  left: 50%;
  width: 15px;
  height: 15px;
  border-style: solid;
  border-color: rgba(0, 77, 154, 0.533);
  border-width: 2px 0 0 2px;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: border-color ease 0.1s;
}

.top-back a:hover:before {
  border-color: #fff;
}



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

/* ロゴ */

.logo{
    width: 300px;
    opacity: 0.815;
    margin: 120px;
    animation: fadein 1s ease-out forwards;
    filter: drop-shadow(0  0 20px rgb(44, 44, 44));
}

.page-header {
    background-image: url(../images/sora.jpg);
    background-repeat: no-repeat;
    background-position: bottom ;
    background-size: cover;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* メインナビゲーション */

.main-nav {
  display: flex;
  list-style: none;
  animation: fadein 1s ease-out forwards;
  justify-content: space-between;
 
}

.main-nav a {
  text-decoration: none;
  font-size: 25px;
  color: #ffffffea;
  font-family: serif;
  padding: 15px;
  margin: 0 8px;
}

.main-nav a:hover {
  border: 2px solid #ffffff8b;
  margin: 0 6px;
  box-shadow: 0 0 10px #ffffff61;
  background-color: #ffffff13;
}


.header-back {
  border: 2px solid #ffffff61;
  width: 98%;
  height: 96%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 1s ease-out forwards;
}

/* 途中からのナビゲーション */
#menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.916);
  width: 100%;
  animation: fadein 1s ease-out forwards;
  align-items: center;
  }

  .menu {
    display: flex;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    font-weight: bold;
    padding: 15px 20px;
    justify-content: space-between;
  }

  .f-menu {
    display: flex;
    list-style:none;
    font-weight: bold;
  }

  .f-menu li {
    margin: 0 3px;
  }

  .f-menu li a {
    display:block;
    padding:5px 15px;
    color: rgba(113, 113, 113, 0.827);
    text-decoration:none;
    font-family: serif;
    font-weight: bold;
    font-size: 18px;
  }

  .f-menu a:hover {
   padding: 5px 15px 2px 15px;
  }

  .f-menu li:first-child {
    margin-right:auto;
  }
  
  .menu-logo {
      width: 130px;
      padding-left: 5px;
      padding-top: 3px;
  }

  .menu-logo:hover {
    opacity: 0.8;
  }

  .f-menu a {
    position: relative;
  }
  .f-menu a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: rgba(87, 124, 160, 0.444);
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
  }
  .f-menu a:hover::after {
    transform: scale(1, 1);
  }

  .f-menu a:hover {
    color: rgb(87, 123, 160);
  }

  #menu-btn-check {
    display: none;
  }

  .menu-content {
    display: none;
  }

/* icon */
.main-nav i {
  margin-left: 10px;
  font-size: 18px;
  vertical-align: 1px;
}

.menu-content i {
  margin-left: 10px;
}

.f-menu i {
  margin-left: 10px;
  font-size: 16px;
  vertical-align: 1px;
}

/* scroll */

.scrolldown{
  position:absolute;
  left: 50%;
  bottom: 50px;
  height: 50px;
}

.scrolldown span{
  position: absolute;
  left:-15px;
  top: -15px;
  color: #eee;
  font-size:12px;
  letter-spacing: 0.05em;
  font-family: serif;
}

.scrolldown::after{
content: "";
position: absolute;
top: 0;
width: 1px;
height: 30px;
background: #eee;
animation: pathmove 1.4s ease-in-out infinite;
opacity:0;
}
 
/* Loading背景画面設定　*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
}
  
/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  }
  
  /* Loading アイコンの大きさ設定　*/
  #splash_logo img {
    width:260px;
  }
  
  /* fadeUpをするアイコンの動き */
  .fadeUp{
  animation-name: fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity: 0;
  }
 
/* メイン ------------------------------------------*/


main {
  animation: fadein 1s ease-out forwards;
}

/* メイン共通 -----*/

.top-box {
  margin: 120px auto;
  width: 80%;
}


/* タイトル */
.top-title {
  position: relative;
  font-size: 30px;
  padding: 0 45px 8px 50px; 
  color: rgba(113, 113, 113, 0.827);
  font-family: serif;
  margin-bottom: 20px;
  letter-spacing: 5px;
}

.top-title span {
  font-size: 18px;
  margin-left: 10px;
}

.top-title::before,
.top-title::after {
  position: absolute;
  content: '';
  border-radius: 100%;
}

.top-title::before {
  z-index: 3;
  background: rgba(99, 176, 212, 0.382);
  width: 18px;
  height: 18px;
  top: 5px;
  left: 5px
}

.top-title::after {
  background: rgba(46, 99, 151, 0.533);
  width: 13px;
  height: 13px;
  top: 22px;
  left: 20px;
}

/* viewmore ボタン２ */

.viewmore {
  display: flex;
  justify-content: end;
}

.viewmore img {
  width: 200px;
  
}

.viewmore img:hover {
  opacity: 0.5;
}

/* jQueryフェードイン */

.fadeUpTrigger{
  opacity: 0;
  }

  .fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}



/* TOP-ABOUT -----------------------------------*/

/* 写真 */
.a-p {
  width: 350px;
  height: auto;
  border-radius: 5px;
}

/* 内容 */

.top-about {
  display: flex;
  margin: 0 15px;

}

.about-text {
  margin-left: 30px;
  text-align: justify;
  font-size: 16px;
  color: rgb(113, 113, 113, 0.827);
  line-height: 30px;
  font-family: serif;
}

.about-button {
  margin: 0 15px;
}


/* TOP-WORKS ----------------------------------------*/


.top-works {
  margin: 0 15px;
}

/* TOP-GALLERY --------------------*/

.top-gallery {
  margin: 0 15px;
}

/* スライドショー */

.slider {
  width: 94%;
   margin:50px auto 0px auto;
}

.slider img {
   width:100%;
   height:auto;
   border-radius: 5%;
}

.slider .slick-slide {
   margin:0 10px;/*スライド左右の余白調整*/
}

/* 矢印の設定 */

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
   position: absolute;
   top: 35%;
   cursor: pointer;/*マウスカーソルを指マーク*/
   outline: none;/*クリック 枠線消去 */
   border-top: 2px solid rgba(0, 77, 154, 0.478);/*矢印の色*/
   border-right: 2px solid rgba(0, 77, 154, 0.478);/*矢印の色*/
   height: 15px;
   width: 15px;
}

.slick-prev {/*左矢印*/
   left: -3%;
   transform: rotate(-135deg);
}

.slick-next {/*右矢印*/
   right: -3%;
   transform: rotate(45deg);
}

/*ドットナビ*/

.slick-dots {
  text-align: center;
  margin: 30px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
   color: transparent;
   outline: none;
   width: 10px;/*ドットボタンのサイズ*/
   height: 10px;/*ドットボタンのサイズ*/
   display: block;
   border-radius: 50%;
   background:rgba(99, 176, 212, 0.382);/*ドットボタンの色*/
}

.slick-dots .slick-active button{
   background:rgba(0, 77, 154, 0.478);/*ドットボタンの現在地の色*/
}


/* フッダー --------------------*/

footer {
  background-color: rgba(0, 77, 154, 0.533);
  height: 150px;
  margin-top: 150px;
}

.my-name p {
  color: #fff;
  text-align: center;
  padding: 60px 0;
}

.wave{
  position:relative;
  height:200px;/*何も表示されない場合は各波の親要素に高さを持たせましょう。*/
  background:#fff;/*背景を塗りつぶして重ねた波を表現したい場合は、波を描画する親要素に波と同じ背景色を設定しましょう。*/
  }
  canvas{
  position: absolute;
  bottom: 0;
  left:0;
  width: 100%;
  }


/* ABOUT --------------------*/

.article-box {
  margin: 150px auto 80px auto;
  width: 80%;
}

.about-box {
  margin: 80px auto 150px auto;
  width: 80%;
}

.about-box2 {
  margin: 100px auto 80px auto;
  width: 80%;
}

.about-box3 {
  margin: 150px auto 80px auto;
  width: 100%;
}

/* タイトル */

.main-title {
  font-family: serif;
  font-size: 22px;
  text-align: center;
  color: rgb(113, 113, 113, 0.827);
  margin-bottom: 85px;
  font-weight: 500;
}

.main-title span {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* 内容 */

.main-about {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
}

.about-myname {
  font-size: 16px;
  color: rgb(113, 113, 113, 0.827);
}

.about-myname h1 {
  font-size: 37.2px;
  font-family: serif;
  letter-spacing: 10px;
  white-space: nowrap;
}

.about-myname span {
  font-size: 18px;
  font-family: 'Kaisei Decol', serif;
  letter-spacing: 5px;
}

.about-mytext p {
  background-color: rgb(237, 247, 255, 0.416);
  padding: 40px;
  margin-top: 70px;
  color: rgb(113, 113, 113, 0.827);
  font-family: serif;
  line-height: 30px;
  letter-spacing: 3px;
  text-align: justify;
}

/* 写真 */
.main-aboutphoto {
  text-align: center;
}

.m-a-p {
  width: 50%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 45px;
}

/* Skills */


.sub-title {
  font-size: 18px;
  padding: 15px; 
  color: white;
  font-family: serif;
  margin-bottom: 60px;
  letter-spacing: 10px;
  text-align: center;
  background: rgba(0, 77, 154, 0.478);
  border-radius: 2px;
}

.sub-title h2 {
  font-weight: 200;
}

.sub-title span {
  font-size: 18px;
  margin-left: 10px;
}



/* Skills list */

.sub-skills-box {
  display: flex;
  width: 95%;
  margin: 0 auto;
  gap: 10px;
}

.skills-photo {
  color: rgb(113, 113, 113, 0.827);
  font-family: serif;
}

.skills-photo h3 {
  font-size: 25px;
  letter-spacing: 2px;
  text-align: center;
  margin: 12px 0;
}

.skills-photo p {
  font-size: 15px;
}

.skills-photo img {
  width: 100%;
}

.sub-skills p {
  padding: 8px 8px 0 0;
  color: rgb(113, 113, 113, 0.827);
  font-size: 18px;
}

/* Skills Mark */

.sub-skills {
  width: 95%;
  margin: 50px auto 0 auto;
  display: flex;
}

.skils-mark {
  border: 2px solid rgba(0, 77, 154, 0.478);
  color: rgba(0, 77, 154, 0.478);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  text-align: center;
  padding: 6px;
  font-size: 16px;
  margin: 0 5px;
}

/* 経歴 -----*/

.career-timeline {
  color: rgb(113, 113, 113, 0.827);
  list-style: none;
  font-family: serif;
  margin: 80px 0 auto;  
}

.career-list {
  width: 65%;
  margin: 0 auto;
}

.career-timeline dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  
}

.career-timeline h2 {
  white-space: nowrap;
  font-size: 20px;
  letter-spacing: 5px;
}

.career-timeline p {
  margin-top: 10px;
  font-size: 15px;
}

.career-timeline dl dt {
  text-align: left;
  padding: 5px 51.5px 0 0;
  position: relative;
}

.career-timeline dl dd {
  width: calc(100% - 8.5em);
  padding: 0 0 50px 50px;
  border-left: 2px solid #ccc;
}

.career-timeline dl dt::after {
  content: '●';
  position: absolute;
  right: -0.55em;
  top: 2px;
  font-size: 18px;
  color: rgba(0, 77, 154, 0.478);
  
}

/* プロフィール -----*/

.profile {
  display: flex;
  justify-content: center;
  padding: 25px;
  color: rgb(113, 113, 113, 0.827);
  font-family: serif;
  letter-spacing: 5px;
}

.sub-pfl-box {
  margin: 80px auto 0px auto;
  width: 80%;
  border-top: 2px dotted rgb(222, 222, 222);
  border-bottom: 2px dotted rgb(222, 222, 222);
  font-size: 18px;
}

.profile h1 {
  font-weight: bold;
}

.profile span {
  margin: 0 10px;
  font-weight: normal;
}

.sub-pfl-list {
  list-style: inside;
  margin-top: 100px;
  font-size: 20px;
  color: rgba(113, 113, 113, 0.827);
  font-family: serif;
  font-weight: 500;
  letter-spacing: 10px;
}


.sub-pfl-list ul, .sub-pfl-list li {
  position: relative;
  list-style-type: none!important;/*ポチ消す*/
}


.sub-pfl-list li:before{ 
  display:inline-block; 
  vertical-align: middle;
  /*白丸つくる*/
  content:'';
  width: 1em;
  height: 1em;
  background: #fff;
  border-radius: 50%;
  margin-right: 20px;
}

.sub-pfl-list ul {
  background: rgb(237, 247, 255, 0.416);
  padding: 40px;
}

.sub-pfl-list li {
  line-height: 1.5;
  padding: 8px 0;
}


.about-pfl-title {
  margin: 0 0 15px 0px;
  font-weight: bold;

}

.about-pfl-title span {
  padding-left: 15px;
  vertical-align: 3px;
  font-size: 20px;
}

.about-pfl-title i {
  padding-left: 15px;
}

.comment p{
  color: rgba(113, 113, 113, 0.827);
  text-align: center;
  padding: 20px;
  margin: 30px 0 100px 0;
}
/* Woeks --------------------*/

.works-text {
  margin: 60px auto 10px auto;
  width: 80%;
  border-top: 2px dotted rgb(222, 222, 222);
  border-bottom: 2px dotted rgb(222, 222, 222);
}


.w-mytext p {
  text-align: center;
  padding: 40px;
  color: rgb(113, 113, 113, 0.827);
}


.pagebox {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin: 0 10px;
}

.pagebox img {
  width: 100%;
  box-shadow:  0 0 20px rgba(229, 229, 229, 0.827);
}

.pagebox img:hover {
  opacity: 0.5;
}


/* 作品ページ */

.worksgallery-box {
  margin: 150px auto 50px auto;
  width: 100%;
}

.works-main {
  margin: 0 auto 100px auto;
}

.worksgallery-box h1 {
  text-align: center;
  color: rgb(113, 113, 113, 0.827);
  font-family: serif;
  letter-spacing: 5px;
}


.works-p-title::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  margin: 10px auto 0;
  background-color: rgba(113, 113, 113, 0.452);
}

/* 作品写真 */

.works-m-photo img {
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(113, 113, 113, 0.053);
}

/* ボタン*/

.w-button {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.w-button a {
  text-decoration: none;
}

.prev {
  margin: 0 5px;
  vertical-align: -2px;
}

.next {
  margin: 0 5px;
  vertical-align: -1px;
}

.w-btn1 {
  padding: 15px 15px 13px;
  margin: 10px 0 70px 5px;
  border: 1px solid rgba(113, 113, 113, 0.308);
  color: rgb(113, 113, 113, 0.827);
  width: 250px;
  text-align: center;
}

.w-btn2 {
  padding: 15px;
  margin: 10px 0 70px 0;
  border: 1px solid rgba(113, 113, 113, 0.308);
  color: rgb(113, 113, 113, 0.827);
  width: 250px;
  text-align: center;
}

.w-btn3 {
  padding: 15px 15px 14px;
  margin: 10px 5px 70px 0;
  border: 1px solid rgba(113, 113, 113, 0.308);
  color: rgb(113, 113, 113, 0.827);
  width: 250px;
  text-align: center;
}

/* 作品情報 */
.w-m-info h1 {
  text-align: center;
  font-family: serif;
  color: rgba(113, 113, 113, 0.827);
  font-size: 25px;
  margin: 20px 0;
}

.w-m-text {
  margin: 30px auto 100px auto;
  width: 90%;
  font-family: serif;
  font-size: 18px;
  padding: 10px 0;
  border-top: 2px dotted rgb(222, 222, 222);
  border-bottom: 2px dotted rgb(222, 222, 222);
  line-height: 30px;
}


.w-m-t {
  display: flex;
  margin: 80px 0;
  justify-content: center;
}

.w-m-t dt {
  color: rgba(185, 185, 185, 0.827);
  width: 25%;
  white-space: nowrap;
  text-align: justify;
  letter-spacing: 3px;
}

.w-m-t dd {
  color: rgb(113, 113, 113, 0.827);
  width: 50%;
  letter-spacing: 5px;
  text-align: justify;
}

/* 別案 */

.w-m-title {
  padding-top: 10px;
}

.sub-works-p {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.sub-works-p img {
  width: 40%;
}

/* webスクショ */

.sub-web-p {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 100px;
}
.sub-web-p img {
  width: 50%;
  box-shadow: 0 0 20px rgba(113, 113, 113, 0.37);
}

/* Gallery --------------------*/

.gallery-box{
  columns: 4;/*段組数*/
  padding:0 15px;/*ギャラリー左右余白*/
  margin: 0 auto;
  width: 80%;
}

.gallery-text {
  margin: 60px auto 10px auto;
  width: 80%;
  border-top: 2px dotted rgb(222, 222, 222);
  border-bottom: 2px dotted rgb(222, 222, 222);
}


.g-mytext p {
  text-align: center;
  padding: 40px;
  color: rgb(113, 113, 113, 0.827);
}

  
.gallery-box li {
  margin-bottom: 20px;/*各画像下余白*/
  list-style:none;
}
  
.gallery-box img{
  width:100%;
  height:auto;
  vertical-align: bottom;/*画像下余白を削除*/
}

.gallery-box img:hover {
  opacity: 0.5;
  box-shadow: 0 0 20px #ccc;
}

.gallery-slider {
  padding-bottom: 100px;
}


.lb-nav a.lb-next {
  opacity: 0.5;
}

.lb-nav a.lb-next:hover {
  opacity: 1;
}


.lb-nav a.lb-prev {
  opacity: 0.5;
}


.lb-nav a.lb-prev:hover {
  opacity: 1;
}

.lightbox .lb-image {
  border: none;
}

.coming-soon {
  text-align: center;
  color: rgb(113, 113, 113, 0.827);
}

/* アニメーション ----------*/

/* フェードイン */
@keyframes fadein {
    0% {
       opacity: 0
    }
    100% {
       opacity: 1
    }

  }

/* scroll */
  @keyframes pathmove{
0%{
  height:0;
  top:0;
  opacity: 0;
}
30%{
  height:30px;
  opacity: 1;
}
100%{
  height:0;
  top:50px;
  opacity: 0;
}

}

/* loading */
@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


/*　900px以下ギャラリー　*/
@media only screen and (max-width: 900px) {
  .gallery-box {
  columns:3;
  }	
}

@media only screen and (max-width: 768px) {
  .gallery-box{
  columns: 2;
  }	
}

/* 767px以下 */
@media (max-width: 767px){



.header-back {
  width: 97%;
  height: 97%;
}

/* ロゴ */

.logo{
  width: 200px;
}

.main-nav a {
  font-size: 20px;
}



.main-nav {
  justify-content: space-evenly;

}

.f-menu {
  display: none;
}

 /* icon */
.main-nav i {
  margin-left: 5px;
  font-size: 14px;
  vertical-align: 1px;
}



/* scroll */

.scrolldown{
  display: none;
}


/* ハンバーガーメニュー --------------------*/

#menu-btn-check {
  display: none;
}
.menu-btn {  
  display: flex;
  z-index: 90;
}

.menu-content li {
  padding: 7px 0;
}

.menu-content ul {
  padding: 100px 10px;
}
.menu-content ul li {
  border-bottom: solid 1px rgba(215, 215, 215, 0.368);
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 20px;
  box-sizing: border-box;
  color:rgba(0, 77, 154, 0.533);
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
  font-family: serif;
  letter-spacing: 3px;
}

/* > */
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px rgba(0, 77, 154, 0.533);
  border-right: solid 2px rgba(0, 77, 154, 0.533);
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.menu-content {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;/*メニューを画面外へ*/
  z-index: 80;
  background-color: rgba(255, 255, 255, 0.916);
  transition: all 0.5s;/*アニメーション設定*/
  text-align: center;
  border-bottom: 40px solid rgba(0, 77, 154, 0.533);
}

#menu-btn-check:checked ~ .menu-content {
  left: 0;/*メニューを画面内へ*/
}

/*ボタン外側*/
.menu-btn{
	position: relative;
	cursor: pointer;
  width: 55px;
  height: 55px;
	border-radius: 5px;
}

/*ボタン内側*/
.menu-btn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    right: 14px;
    height: 2px;
    border-radius: 5px;
    background: rgba(0, 77, 154, 0.533);
  	width: 45%;
}

/* 三本線 */
.menu-btn span:nth-of-type(1) {
	top:15px;	
}

.menu-btn span:nth-of-type(2) {
	top:21px;
}

.menu-btn span:nth-of-type(3) {
	top:27px;
}

/* MENU */
.menu-btn span:nth-of-type(3)::after {
	content:"Menu";
	position: absolute;
	top:5px;
	left:-4px;
	color: rgba(0, 77, 154, 0.533);
	font-size: 0.6rem;
	text-transform: uppercase;
  padding-top: 5px;
}

/* MENUからCLOSE×になる*/

.menu-btn.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.menu-btn.active span:nth-of-type(2) {
	opacity: 0;
}

.menu-btn.active span:nth-of-type(3){
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.menu-btn.active span:nth-of-type(3)::after {
	content:"Close";
  transform: translateY(0) rotate(-45deg);
	top:5px;
	left:2px;
}

/* TOP -----*/

.top-box {
  margin-bottom: 10px;
}

.top-about {
  flex-direction: column;
  text-align: center;
}

/* タイトル */
.top-title {
  font-size: 26px;
}

.top-title span {
  font-size: 16px;
}

/* 内容 */

/* 写真 */
.a-p {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.about-text {
  margin: 30px 0;
  text-align: justify;
  font-size: 16px;
  color: rgb(113, 113, 113, 0.827);

}

.more-button2 {
  margin: 25px 0px;
}

/* 矢印の設定 */
/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
  top: 32%;
}

.main-title {
  font-size: 20px;
  margin-bottom: 50px;
}

.main-title span {
  font-size: 30px;
}


/* ABOUT -----*/


.article-box {
  margin: 150px auto 50px auto;
  width: 90%;
}

.about-box {
  margin: 80px auto 100px auto;
  width: 90%;
}

.about-box2 {
  margin: 150px auto 50px auto;
  width: 90%;
}

.m-a-p {
  margin: 2px 0 45px 0;
  width: 80%;
}


.about-myname {
  font-size: 12px;
  color: rgb(113, 113, 113, 0.827);
}

.about-myname h1 {
  font-size: 30px;
}

.about-myname span {
  font-size: 14px;

}

.sub-title {
  font-size: 15px;
}

.sub-title span {
  font-size: 14px;
}

/* Skills list */

.sub-skills-box {
  flex-direction: column;
}

/* 経歴 -----*/

.career-timeline dl dd {
  padding-left: 28px;
}

.career-timeline h2 {
  font-size: 18px;
  letter-spacing: 0px;
}

.career-timeline dl dt::after {
  content: '●';
  position: absolute;
  right: -0.55em;
  top: 2px;
  font-size: 18px;
  color: rgba(0, 77, 154, 0.478);
  
}

.career-list {
  width: 100%;
  margin: 0 auto;
}

/* プロフィール */

.sub-pfl-list li {
  font-size: 17px;
}

.comment p {
  font-size: 15px;
}

/* Woeks --------------------*/

.works-text {
  margin: 0 auto;
  width: 90%;
}

.pagebox {
  grid-template-columns: repeat(1,1fr);
  gap: 20px;
  margin: 0 10px;
}


/* 作品ページ */

/* ボタン */
.w-btn1 {
  padding: 9px;
  width: 150px;
  margin-left: 5px;
}

.w-btn2 {
  padding: 10px;
  width: 150px;

}

.w-btn3 {
  padding: 9.6px;
  width: 150px;
  margin-right: 5px;
}

/* 作品情報 */
.w-m-info h1 {
  font-size: 22px;
}

.w-m-text {
  margin: 0 auto;
  width: 90%;
  padding: 0;
  font-size: 16px;
}

.w-m-t dt {
  width: 25%;
}

.w-m-t dd {
  width: 70%;
}

.gallery-box{
  columns: 2;/*段組数*/
  padding:0 5px;/*ギャラリー左右余白*/
  width: 90%;
}

.gallery-text {
  margin: 60px auto 100px auto;
  width: 90%;
}

/* 別案 */

.w-m-title {
  padding-top: 55px;
}


}

/* 667px以下 */
@media (max-width: 667px){

  .page-logo {
    overflow: hidden;
  }

  .logo{
    width: 200px;
    margin: 120px 0;
}

/* メインナビゲーション */

nav {
  display: flex;
  justify-content: center;

}

.main-nav a {
  font-size: 18px;
  padding: 5px;
  margin: 0 0;
}

.main-nav li {
  width: 100%;
}

.header-back {
  width: 97%;
  height: 98%;
}


/* タイトル */
.top-title {
  font-size: 22px;
  padding: 0 0px 8px 50px; 
}

.top-title span {
  font-size: 14px;
}

.top-title::before {
  width: 16px;
  height: 16px;
  top: 4px;
  left: 4px
}

.top-title::after {
  width: 11px;
  height: 11px;
  top: 20px;
  left: 18px;
}

/* ボタン*/

.w-btn1 {
  padding: 15px 5px 13px;
  margin: 10px 0 70px 5px;
  width: 120px;
}

.w-btn2 {
  padding: 15px 5px 15px;
  margin: 10px 0 70px 0;
  width: 120px;
}

.w-btn3 {
  padding: 15px 5px 14px;
  margin: 10px 5px 70px 0;
  width: 120px;
}

/* 作品情報 */
.w-m-info h1 {
  font-size: 20px;
}

.w-m-t {
  justify-content: space-between;
}

.w-m-text {
  font-size: 16px;
}
.w-m-t dt {
  width: 20%;
}

.w-m-t dd {
  width: 65%;
}


}
