@charset "UTF-8";
/*================================================================
reset
================================================================*/
/*================================================================
Chrome/Firefox/Edgeなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

/*================================================================
header
================================================================*/
/*================================================================
メディアクエリ
================================================================*/
/*================================================================
loader
================================================================*/
.loader {
  margin: auto;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 555;
  top: 0;
  left: 0;
  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;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

.loader_img {
  width: 30%;
}
@media (max-width: 767px) {
  .loader_img {
    width: 40%;
  }
}

/*================================================================
header


header{
    background-color: #fff;
    z-index: 999;
    padding: 20px 0;
    height: 100px;

    position: fixed;
    width: 100%;
    top:0;


    @include mq(sp){
        text-align: center;
        padding: 20px 0;
        height: 150px;
    }
    @include mq(tab){
        width: 100%;
    }

        .container-header{
            display: flex;
            justify-content: space-between;

            @include mq(sp){
                display: block;
            }
        }

        .header-nav{

            font-family: 'JetBrains Mono', monospace;
            display: flex;
            margin-left: 20px;
            margin-top: 15px;
            color: $text-color;
            font-size: 20px;

            @include mq(sp){
                justify-content: center;
                margin-left: 0px;
                justify-content: space-between;
            }
        }



}
.header-left{
    display: flex;
}

.header-logo{
    width: 70px;
}

.header-logo_text{
    padding-top: 30px;
    font-size: 20px;
    font-family: "JetBrains Mono", monospace;
    font-weight: bold;
    color:$text-color-sub;
}================================================================*/
/*================================================================
header
================================================================*/
.header {
  color: white;
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 100;
  height: 100px;
}

.header-logo {
  padding-top: 10px;
  width: 60px;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-nav-list {
  margin-left: auto;
}

.header-nav-item-link {
  text-decoration: none;
  display: block;
}

.header-nav-menu {
  font-family: "JetBrains Mono", monospace;
  color: rgb(0, 14, 103);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  line-height: 70px;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .header-nav-menu {
    display: none;
  }
}

.header-nav-item + .header-nav-item {
  margin-left: 46px;
}

.header-logo_text {
  padding-top: 30px;
  font-size: 20px;
  font-family: "JetBrains Mono", monospace;
  font-weight: bold;
  color: #0022ff;
}

/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.menu-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  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;
  background: rgb(0, 14, 103);
  color: #fff;
}
@media (min-width: 1151px) {
  .menu-btn {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1150px) {
  .menu-btn {
    display: none;
  }
}

/*----------------------------
* メニュー本体
*----------------------------*/
.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: white;
}

.menu__item {
  width: 100%;
  height: auto;
  padding: 0.5em 1em;
  text-align: center;
  color: rgb(0, 14, 103);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*----------------------------
* アニメーション部分
*----------------------------*/
/* アニメーション前のメニューの状態 */
.menu {
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/* アニメーション後のメニューの状態 */
.menu.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*================================================================
top
================================================================*/
/*================================================================
メディアクエリ
================================================================*/
/*================================================================
top
================================================================*/
.top {
  height: 100vh;
  padding-top: 200px;
}
@media (min-width: 768px) and (max-width: 1150px) {
  .top {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .top {
    height: 100%;
  }
}

.top_wappaer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .top_wappaer {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1150px) {
  .top_wappaer {
    display: block;
    margin-top: -80px;
  }
}

.top_right {
  text-align: center;
}

.top_img {
  width: 100%;
  margin-top: 10px;
  max-width: 760px;
}
@media (max-width: 767px) {
  .top_img {
    width: 100%;
    margin-top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1150px) {
  .top_img {
    width: 100%;
  }
}

.top-texts {
  text-align: left;
  margin-left: 100px;
  font-family: "JetBrains Mono", monospace;
}
.top-texts .top-title {
  font-size: 90px;
  padding-top: 100px;
  line-height: 90px;
}
@media (max-width: 767px) {
  .top-texts .top-title {
    font-size: 70px;
    line-height: 60px;
    text-align: left;
    margin: auto;
    padding-top: 0px;
  }
}
@media (min-width: 768px) and (max-width: 1150px) {
  .top-texts .top-title {
    margin: auto;
    text-align: left;
    padding-top: 0px;
  }
}
.top-texts .top-title {
  display: inline-block;
  background: linear-gradient(45deg, rgb(0, 14, 103) 16%, #0022ff 57%, #e6f8ff 90%);
  background: -webkit-linear-gradient(45deg, rgb(0, 14, 103) 16%, #0022ff 57%, #e6f8ff 90%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: gradientEffect 2.5s infinite alternate;
          animation: gradientEffect 2.5s infinite alternate;
}
@-webkit-keyframes gradientEffect {
  from {
    background-position: left;
  }
  to {
    background-position: right;
  }
}
@keyframes gradientEffect {
  from {
    background-position: left;
  }
  to {
    background-position: right;
  }
}
.top-texts .top-text {
  padding-top: 45px;
  font-size: 25px;
  font-family: "JetBrains Mono", monospace;
}
@media (max-width: 767px) {
  .top-texts {
    margin: auto;
    text-align: left;
    padding: 0 30px 0 30px;
  }
}
@media (min-width: 768px) and (max-width: 1150px) {
  .top-texts {
    margin: auto;
    text-align: left;
    padding: 0 30px 0 30px;
  }
}

/*================================================================
aboutページ
================================================================*/
/*================================================================
about_page_main
================================================================*/
.about_main {
  margin-top: 80px;
}

.about_main_wrapper {
  padding-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 100px;
  border-bottom: 1px solid #000;
}
@media (max-width: 767px) {
  .about_main_wrapper {
    display: block;
  }
}

.about_main_left {
  text-align: center;
  width: 50%;
}
@media (max-width: 767px) {
  .about_main_left {
    width: 100%;
  }
}
.about_main_left img {
  width: 50%;
}

.about_main_right {
  margin: auto;
  margin-top: 10px;
  width: 50%;
}
@media (max-width: 767px) {
  .about_main_right {
    width: 100%;
  }
}
.about_main_right h3 {
  font-size: 20px;
  padding-bottom: 20px;
}
.about_main_right h3 span {
  padding-top: 10px;
  font-size: 50px;
  line-height: 50px;
  font-family: "JetBrains Mono", monospace;
  color: rgb(0, 14, 103);
}

/*================================================================
about_career
================================================================*/
.about_career {
  padding-top: 100px;
  border-bottom: 1px solid black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .about_career {
    display: block;
  }
}

.about_career_title {
  width: 30%;
  font-size: 20px;
  margin-left: 30px;
  line-height: 50px;
}
@media (max-width: 767px) {
  .about_career_title {
    width: 100%;
  }
}
.about_career_title span {
  font-size: 50px;
  font-weight: bold;
  color: rgb(0, 14, 103);
  font-family: "JetBrains Mono", monospace;
}

.about_career_text {
  width: 70%;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .about_career_text {
    width: 100%;
  }
}

/*================================================================
about_strength
================================================================*/
.about_strength {
  padding-top: 100px;
  border-bottom: 1px solid black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .about_strength {
    display: block;
  }
}

.about_strength_title {
  width: 30%;
  font-size: 20px;
  margin-left: 30px;
  line-height: 50px;
}
@media (max-width: 767px) {
  .about_strength_title {
    width: 100%;
  }
}
.about_strength_title span {
  font-size: 50px;
  font-weight: bold;
  color: rgb(0, 14, 103);
  font-family: "JetBrains Mono", monospace;
}

.about_strength_text {
  width: 70%;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .about_strength_text {
    width: 100%;
  }
}
.about_strength_text dl {
  padding: 30px 0 0 0;
}
.about_strength_text dl dt {
  padding-top: 50px;
}
.about_strength_text dl dd {
  padding-top: 50px;
}
@media (max-width: 767px) {
  .about_strength_text dl dd {
    padding: 20px;
  }
}

/*================================================================
about_picture
================================================================*/
.about_picture {
  padding: 100px 0 100px 0;
}

.about_picture_title {
  font-size: 50px;
  margin-left: 30px;
  padding-bottom: 50px;
  line-height: 50px;
}

.about_picture_title {
  width: 30%;
  font-size: 20px;
  margin-left: 30px;
  line-height: 50px;
}
.about_picture_title span {
  font-size: 50px;
  font-weight: bold;
  color: rgb(0, 14, 103);
  font-family: "JetBrains Mono", monospace;
}

.about_picture_img {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .about_picture_img {
    display: block;
  }
}
.about_picture_img img {
  width: 30%;
  padding: 20px;
}
@media (max-width: 767px) {
  .about_picture_img img {
    width: 100%;
  }
}

/*================================================================
work_yorisoi
================================================================*/
/*================================================================
work共通
================================================================*/
body {
  line-height: 25px;
}

.work_main {
  padding-top: 120px;
}
.work_main a {
  border-bottom: 1px solid rgb(89, 89, 89);
}

.work_title {
  font-size: 30px;
  font-family: "JetBrains Mono", monospace;
  margin-bottom: 90px;
  line-height: 40px;
  letter-spacing: 5px;
}

.work_sub_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .work_sub_wrapper {
    display: block;
  }
}

.work_left {
  padding-top: 30px;
  width: 50%;
}

.work_right {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  width: 50%;
}
@media (max-width: 767px) {
  .work_right {
    padding-top: 30px;
    width: 100%;
  }
}

dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 80px 20px 0px 20px;
}
@media (max-width: 767px) {
  dl {
    display: block;
  }
}

dl dt {
  font-weight: bold;
  width: 30%;
  padding: 10px;
}
@media (max-width: 767px) {
  dl dt {
    width: 100%;
    padding: 20px 0 0 0;
  }
}

dl dd {
  width: 70%;
  padding-top: 10px;
}
@media (max-width: 767px) {
  dl dd {
    width: 100%;
    padding-top: 3px;
  }
}
dl dd span {
  font-weight: bold;
}

/*================================================================
情報設計
================================================================*/
.work_wrapper {
  border: 1px solid black;
}
.work_wrapper dt {
  font-weight: bold;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .work_wrapper dt {
    padding-bottom: 15px;
  }
}
.work_wrapper dd {
  padding-bottom: 80px;
}

footer p {
  text-align: center;
  padding-top: 30px;
  color: rgb(0, 14, 103);
}

/*================================================================
情報設計
================================================================*/
.work_design {
  padding: 100px 0 100px 0;
  border-bottom: 1px solid #000;
}
.work_design h3 {
  padding-top: 30px;
}
@media (max-width: 767px) {
  .work_design h3 {
    padding-top: 0px;
  }
}
.work_design p {
  font-size: 16px;
  padding-top: 10px;
}

.work_design_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 100px;
}
.work_design_wrapper .work_design_left {
  width: 50%;
}
.work_design_wrapper .work_design_right {
  width: 50%;
  padding-left: 20px;
}

.work_design_img {
  margin-top: 100px;
}

.work_comment {
  padding: 100px 0 100px 0;
  font-size: 16px;
}

/*================================================================
marucame.html
================================================================*/
.scroll {
  margin-top: 30px;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .scroll {
    border: none;
  }
}
.scroll dl {
  padding: 20px;
}
.scroll dl dd {
  margin-right: 20px;
  padding: 10px 0 30px 0;
}

.scroll h3 {
  text-align: center;
  padding: 20px;
  font-size: 25px;
}

.work_wrapper_scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  white-space: nowrap;
  overflow-x: auto; /* スクロールを有効にする */
}
@media (max-width: 768px) {
  .work_wrapper_scroll { /* スマートフォンの幅に応じて調整 */
    overflow-x: hidden; /* スクロールを非表示にする */
    white-space: initial; /* 改行を許可する */
    scroll-behavior: smooth; /* スムーズスクロールを有効にする（任意） */
  }
}
@media (max-width: 767px) {
  .work_wrapper_scroll {
    display: block;
  }
}

.work_maru_rogo {
  width: 50%;
  margin: auto;
}

.scroll {
  border-right: 1px solid black;
  padding-left: 10px;
}
.scroll dl {
  padding: 10px;
}
@media (max-width: 767px) {
  .scroll {
    border: none;
  }
}

.scroll h3 {
  text-align: center;
  padding: 20px;
  font-size: 25px;
}

@media (max-width: 767px) {
  .scroll_rogo {
    border-top: 1px solid black;
  }
}

/*================================================================
marucame_web.html
================================================================*/
.work_wrapper_marucame {
  border-bottom: 1px solid #000;
}
.work_wrapper_marucame h3 {
  padding: 80px 50px 80px 50px;
}

.marucame_iPhone {
  padding: 0 20px 0 40px;
}
@media (max-width: 767px) {
  .marucame_iPhone {
    padding: 0;
  }
}

.marucame_web {
  padding: 0 40px 100px 20px;
}
@media (max-width: 767px) {
  .marucame_web {
    padding: 30px 0;
  }
}

/*================================================================
pottery
================================================================*/
.pottery_gif {
  width: 100%;
}

/*================================================================
portfolio
================================================================*/
.work_design_btn {
  padding: 33px 20px;
  border: 1px solid black;
  border-radius: 99px;
  display: inline-block;
}

.work_design_btn:hover {
  color: #fff;
  background: rgb(0, 14, 103);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/*================================================================
loader
================================================================*/
/*=============================s===================================
メディアクエリ
================================================================*/
/*================================================================
共通カラー
================================================================*/
/*================================================================
共通スタイル
================================================================*/
.body {
  line-height: 1.5px;
  color: rgb(0, 14, 103);
}

h2 {
  position: relative;
  display: inline-block;
  padding: 0 65px;
  text-align: center;
}

h2:before,
h2:after {
  position: absolute;
  top: calc(50% - 3px);
  width: 50px;
  height: 6px;
  content: "";
  border-top: solid 2px #000;
  border-bottom: solid 2px #000;
}

h2:before {
  left: 0;
}

h2:after {
  right: 0;
}

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

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  opacity: 0.7;
}

.container {
  width: 80%;
  max-width: 980%;
  margin: auto;
}

.clear::after {
  content: "";
  clear: both;
  display: block;
}

/*================================================================
section共通
================================================================*/
.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 70px;
  font-family: "JetBrains Mono", monospace;
  text-align: center;
  color: rgb(0, 14, 103);
}

h3 {
  line-height: 30px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 25px;
}

/*================================================================
about
================================================================*/
.about {
  height: 100vh;
  height: 100%;
  text-align: center;
  padding: 100px 0;
  background-color: white;
}
@media (min-width: 768px) and (max-width: 1150px) {
  .about {
    height: auto;
  }
}

.about-wapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .about-wapper {
    display: block;
  }
}

.about-left {
  width: 50%;
}
@media (max-width: 767px) {
  .about-left {
    width: 70%;
    margin: auto;
  }
}
.about-left img {
  width: 50%;
  border-radius: 10px;
  max-width: 600px;
  min-width: 300px;
}
@media (max-width: 767px) {
  .about-left img {
    width: 100%;
    border-radius: 150px;
    max-width: 300px;
    min-width: 50px;
    margin-bottom: 30px;
  }
}

.about-right {
  width: 50%;
  text-align: left;
  color: rgb(0, 14, 103);
  line-height: 30px;
  padding: 5px 40px 40px 70px;
  font-size: 15px;
}
@media (max-width: 767px) {
  .about-right {
    width: 100%;
    margin: auto;
    padding: 0;
  }
}
.about-right h3 {
  padding: 30px;
  font-size: 30px;
  line-height: 20x;
}
.about-right h3 span {
  font-size: 13px;
  font-family: "JetBrains Mono", monospace;
}
@media (max-width: 767px) {
  .about-right h3 {
    text-align: center;
    padding: 0px;
    width: auto;
    margin-bottom: 20px;
  }
}
.about-right h3 span {
  font-size: 25px;
  padding-top: 10px;
}
.about-right p {
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .about-right p {
    padding-bottom: 50px;
  }
}

.more {
  padding: 27px 20px;
  border: 1px solid black;
  border-radius: 99px;
  display: inline-block;
}

.more:hover {
  color: #fff;
  background: rgb(0, 14, 103);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/*================================================================
skills
================================================================*/
.skills {
  text-align: center;
  background-color: white;
  padding: 100px 0;
  width: 100%;
  height: 100vh;
  height: 100%;
}
@media (min-width: 768px) and (max-width: 1150px) {
  .skills {
    height: auto;
  }
}

#skill_title {
  color: rgb(0, 14, 103);
}

@media (max-width: 767px) {
  .skills-title {
    margin-bottom: 30px;
    font-size: 30px;
  }
}

.skills-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.skills-item {
  height: 420px;
  margin: auto;
  color: rgb(0, 14, 103);
  line-height: 25px;
  background-color: white;
  padding: 20px 20px;
  border: 1px solid #202020;
  width: calc(33.3% - 16px);
}
@media (min-width: 1151px) {
  .skills-item:not(:nth-child(3n+1)) {
    margin-left: 24px;
  }
  .skills-item:nth-child(n+4) {
    margin-top: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1150px) {
  .skills-item {
    width: calc(50% - 12px);
  }
  .skills-item .card_item:not(:nth-child(2n+1)) {
    margin-left: 24px;
  }
  .skills-item:nth-child(n+3) {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .skills-item {
    width: 100%;
    margin-left: 0px;
  }
  .skills-item:nth-child(n+2) {
    margin-top: 24px;
  }
  .skills-item:nth-child(n+2) img {
    padding: 0px;
  }
  .skills-item:nth-child(n+2) p {
    padding: 10px 0 0 0;
    font-size: 13px;
  }
}
.skills-item h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  font-family: "JetBrains Mono", monospace;
}
.skills-item p {
  padding: 15px 20px;
  font-size: 15px;
}
.skills-item img {
  max-width: 200px;
  width: 50%;
  padding: 20px;
}

/* 要素の影 
.skills-item{
    background-color: rgb(255, 255, 255);
    transition: box-shadow 0.5s;
    box-shadow:
    10px 10px 30px rgba(18, 47, 61, 0.5),
    -10px -10px 30px rgba(255, 255, 255, 0.9),
    inset 10px 10px 30px transparent,
    inset -10px -10px 30px transparent;
}
.skills-item img,
.skills-item h3,
.skills-item p {
  pointer-events: none; 
}*/
/*================================================================
work
================================================================*/
.work_point {
  padding: 20px;
}

.work {
  text-align: center;
  padding: 100px 0;
}

.work-wapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.work-item {
  height: 600px;
  margin: auto;
  color: rgb(0, 14, 103);
  line-height: 25px;
  background-color: white;
  padding: 50px 20px;
  border: 1px solid #202020;
  width: calc(33.3% - 16px);
}
.work-item h3 {
  text-align: left;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
}
.work-item p {
  text-align: left;
  font-size: 15px;
  padding: 5px 0 60px 20px;
}
@media (min-width: 1151px) {
  .work-item:not(:nth-child(3n+1)) {
    margin-left: 24px;
  }
  .work-item:nth-child(n+4) {
    margin-top: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1150px) {
  .work-item {
    width: calc(50% - 12px);
  }
  .work-item .card_item:not(:nth-child(2n+1)) {
    margin-left: 24px;
  }
  .work-item:nth-child(n+3) {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .work-item {
    width: 100%;
    margin-left: 0x;
  }
  .work-item:nth-child(n+2) {
    margin-top: 24px;
  }
}
.work-item img {
  max-width: 416px;
}

.slick-dots li {
  display: none;
}

/* ボタン */
.work_btn {
  margin-top: 100px;
  text-align: center;
  padding: 30px 12px;
  border: 0.5px solid rgb(0, 14, 103);
  border-radius: 999px;
  background-color: white;
  color: rgb(0, 14, 103);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slick-next:before {
  content: none;
}

.slick-prev:before {
  content: none;
}

.work-item:hover a {
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

/* btnのホバーアニメーション */
.work_btn:hover {
  color: #fff;
  background: rgb(0, 14, 103);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.work_btn span {
  display: inline-block;
}

.work-item:hover span {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

/* 要素の影 
.work-item{
    background-color: rgb(255, 255, 255);
    transition: box-shadow 0.5s;
    box-shadow:
    10px 10px 30px rgba(18, 47, 61, 0.5),
    -10px -10px 30px rgba(255, 255, 255, 0.9),
    inset 10px 10px 30px transparent,
    inset -10px -10px 30px transparent;
}
.work-item img,
.work-item h3,
.work-item p ,
.work_slider ,

.slick-slider .slick-list{
  pointer-events: none; 
}*/
/*================================================================
contact
================================================================*/
.contact {
  text-align: center;
  padding: 100px;
  background-color: white;
  color: rgb(0, 14, 103);
}
@media (max-width: 767px) {
  .contact {
    padding: 80px 50px;
    line-height: 20px;
  }
}
.contact h2 {
  color: rgb(0, 14, 103);
}

.contact-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 42px;
  text-align: center;
}

.contact-item {
  text-align: center;
  margin: 25px;
}

.contact-item img {
  width: 80px;
  display: block;
  margin-left: 10px;
}

.contact-item a {
  margin-top: 8px;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  color: blue;
}

/*================================================================
footer
================================================================*/
footer {
  border-top: 1px solid rgb(0, 14, 103);
  background-color: white;
}

.footer-text {
  font-size: 13px;
  padding: 15px;
  color: rgb(0, 14, 103);
  text-align: end;
}
@media (max-width: 767px) {
  .footer-text {
    padding: 15px;
    color: rgb(0, 14, 103);
    text-align: center;
    font-size: 10px;
  }
}

.contact h2 {
  margin: auto;
}

#back-btn {
  display: none;
  opacity: 0.7;
  position: fixed;
  bottom: 40px;
  right: 30px;
  padding: 15px 25px;
  background-color: rgb(0, 14, 103);
  border: none;
  color: white;
  border-radius: 60px;
}
#back-btn img {
  width: 20px;
}

/*================================================================
377px以下
================================================================*/
@media screen and (min-width: 200px) and (max-width: 377px) {
  .section-title {
    font-size: 20px;
  }
  .skills-item h3 {
    font-size: 10px;
  }
}