<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* ローディング画面のアニメーション */
@keyframes fadeIn {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}



/* ポートフォリオエリアのアニメーション */

@keyframes loop {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* プロフィールエリアとワークスエリアのアニメーション */
@keyframes fadeZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
* {
    margin: 0;
    padding: 0;
    list-style: none;
    scroll-behavior: smooth;
}


section {
    padding-top: 40px;
    margin-top: -40px;
}

/* body */
body {
    font-family: serif;
    background-color: #F0F0F0;
}


/*ローディング画面*/
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 2s ease-in-out forwards;
    /* アニメーションの適用 */
}

.progress-container {
    width: 300px;
    height: 20px;
    background: rgb(240, 240, 240);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #454545, #707070);
    transition: width 1s ease;
}

.loading-text {
    color: #707070;
    font-size: 12px;
}

.content {
    display: none;
}

.show {
    display: block;
}




/* ヘッダー */
.header_a {
    position: fixed;
    background-color: #454545;
    height: 80px;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header_a_container {
    display: flex;
    line-height: 80px;
}

/* ロゴ */
.area_logo_header {
    height: 40px;
    position: relative;
    top: 4px;
    left: 24px;
}

.area_logo_header &gt; h1 &gt;a{
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 400;
    text-decoration: none;

}

/* ナビゲーション */
.area_pc_nav_header {
    margin-left: auto;
    display: flex;
    margin-right: 32px;
}

/*  PCナビ  */
.pc_nav_header {
    display: flex;
    align-items: center;
    list-style: none;
}

.pc_nav_header &gt; li {
    position: relative; /* サブメニューを親要素に対して配置 */
}

.pc_nav_header &gt; li+li {
    margin-left: 40px;
}

.pc_nav_header a {
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 2px;
    text-decoration: none;
    padding-bottom: 3px;
    background-image: linear-gradient(#ffffffba, #ffffff9f);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 0 1px;
    transition: background-size 0.5s;
}

.pc_nav_header a:hover {
    color: #989898;
    background-position: bottom left;
    background-size: 100% 1px;
}

/* ▼ サブメニューのスクロール対応 */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    list-style: none;
    width: 180px; /* 横幅を少し広めに */
    max-height: 400px; /* 高さを制限（超えたらスクロール） */
    padding: 10px 0;
    display: none; /* 初期状態は非表示 */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow-y: auto; /* 縦スクロールを追加 */
}

/* ▼ スクロールバーのスタイル（Webkit系ブラウザ用） */
.submenu::-webkit-scrollbar {
    width: 8px; /* スクロールバーの幅 */
}

.submenu::-webkit-scrollbar-thumb {
    background-color: #bbb; /* スクロールバーの色 */
    border-radius: 4px;
}

.submenu::-webkit-scrollbar-track {
    background-color: #f0f0f0; /* スクロールバーの背景 */
}

/* ▼ サブメニューのアイテム */
.submenu li {
    width: 100%;
}

.submenu li a {
    display: block;
    color: #707070;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 13px;
}

.submenu li a:hover {
    background-color: #f0f0f0;
}

/* ▼ ホバー時にサブメニューを表示 */
.pc_nav_header &gt; li:hover .submenu {
    display: block;
}

/* 　SPナビ（変更なし） */
.sp_menu {
    display: none;
}


/* メイン */

/* トップエリア */
.slider-container {
    position: relative;
    max-width: 1280px;
    max-height: 400px;
    margin: auto;
    padding: 100px 0 40px 0;
    overflow: hidden;
  }
  
  .slider-wrapper {
    overflow: hidden;
    width: 100%;
  }
  
  .slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .slider img {
    width: calc(100% / 3); /* 3枚表示 */
    flex-shrink: 0;
    height: auto;
    object-fit: cover;
    margin-right: 32px;
  }
  
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
  }
  
  .prev {
    left: 10px;
  }
  .next {
    right: 10px;
  }
  


/* ポートフォリオエリア */
#sec-2 {
    max-width: 1280px;
    margin: 80px auto 0;
    padding: 40px;
    max-height: 560px;
    background: white;
}

#sec-2 h2 {
    text-align: center;
    padding: 40px 0;
    color: #707070;
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: 500;
}

#sec-2 p {
    max-width: 800px;
    margin: auto;
    padding: 16px 40px 32px;
    color: #707070;
    font-size: 14px;
    letter-spacing: 2px; 
}

.works-container {
    display: flex;
    max-width: 800px;
    margin: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .work-item {
    max-width: 240px;
    text-align: center;
  }

  .work-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: opacity 2s ease-in-out;  /* 画像を薄色に*/
    transition: transform .3s ease-in;
  
  }
  
  .work-item img:hover {
    opacity: .6;
    transform: scale(1.1);
  }


/* プロフィールエリア */
#sec-3 {
    max-width: 1280px;
    max-height: 480px;
    background: white;
    margin: 80px auto 0;
    padding: 40px;
}

#sec-3 h2 {
    text-align: center;
    letter-spacing: 2px;
    font-weight: 500;
    color: #707070;
    font-size: 24px;
    padding: 40px 0;
}

.sec-3-container {
    max-width: 725px;
    height: 237px;
    margin: auto;
    display: flex;
}

.sec-3-container-img {
    max-width: 178px;
}

.sec-3-container-img img {
    width: 100%;
    vertical-align: bottom;
    animation: fadeZoomIn 8s ease both;
}

.sec-3-container-txt {
    max-width: 480px;
    height: 237px;
    margin-left: auto;
}

.sec-3-container-txt .name {
    font-size: 12px;
    color: #707070;
    letter-spacing: 2px;
}

.sec-3-container-txt .name-2 {
    font-size: 20px;
    color: #707070;
    letter-spacing: 2px;
}

.sec-3-container-txt .profile-txt {
    font-size: 14px;
    color: #707070;
    margin: 40px 0;
}

/* 料金エリア */
#sec-4 {
  max-width: 1280px; /* 少し狭めてバランス調整 */
  background: white;
  margin: 80px auto 0;
  padding: 40px;
}

#sec-4 h2 {
  text-align: center;
  letter-spacing: 2px;
  font-weight: 500;
  color: #707070;
  font-size: 24px;
  padding: 40px 0;
}

.pricing-container {
  display: flex;
  justify-content: center; /* 中央寄せ */
}

.pricing-info {
  max-width: 100%;
  text-align: left;
}

.pricing-info h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #454545;
  font-weight: 300;
}

.pricing-info p {
  max-width: 600px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  
}

.price-link-btn {
  display: inline-block;
  background-color: #00a2e5;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s;
  margin-top: 20px;
}

.price-link-btn:hover {
  background-color: #007cb6;
}

/* フッターエリア */
#footer {
    background-color: #454545;
    padding: 40px 40px;
    margin-top: 80px;
    text-align: center;
  }
  
  #footer h2 {
    text-align: center;
    letter-spacing: 2px;
    font-weight: 500;
    color: #ffffff;
    font-size: 24px;
    padding: 40px 0 20px;
  }
  
  /* 2カラムレイアウト */
  .contact-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 40px;
    text-align: left;
  }
  
  /* 左側：テキスト＋クラウドワークスボタン */
  .contact-info {
    flex: 1;
    min-width: 280px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
  }
  
  .cw-btn {
    display: inline-block;
    margin-top: 20px;
    background-color: #00a2e5;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s;
  }
  
  .cw-btn:hover {
    background-color: #007cb6;
  }
  
 /* 右側：お問い合わせフォーム */
.contact-form {
  flex: 1;
  min-width: 280px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
}

/* ラベル */
.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
}

/* フォーム全体 */
.wpcf7 {
  width: 100%;
  text-align: left;
}

/* 入力欄共通 */
.wpcf7-form-control {
  width: 100%;
  max-width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #ffffff;
  color: #333;
  margin-bottom: 20px;
  padding: 12px 14px;
  box-sizing: border-box;
  font-size: 15px;
}

/* テキストエリア */
.wpcf7-textarea {
  height: 120px;
  resize: vertical;
}

/* フォーカス時 */
.wpcf7-form-control:focus {
  background-color: #eef8ff;
  border-color: #00a2e5;
  outline: none;
}

/* 送信ボタン */
.wpcf7-submit {
  display: inline-block;
  padding: 12px 24px;
  background: #00a2e5;
  color: white;
  border: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wpcf7-submit:hover {
  background-color: #007cb6;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


/* ------エラー時の表示----- */
.wpcf7-not-valid-tip {
  color: red;
  font-size: 16px;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  max-width: 320px;
  border: 1px solid red;
  margin: 40px auto 0;
}
input &gt; .wpcf7-response-output , textarea &gt; .wpcf7-response-output{
  color: red;
  font-size: 14px;
}

/* 送信後のメッセージ */
#footer .wpcf7 form.sent .wpcf7-response-output {
  border-color: #00a2e5 !important;/* 優先度を上げるためセレクタを強くする */
  color: #00a2e5 !important;/* 優先度を上げるためセレクタを強くする */
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2;
}

  
  /* 最下層 small */
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
  }
  
  small {
    color: white;
    letter-spacing: 2px;
    font-size: 12px;
  }
  

/*-------------レスポンシブ--------------- */
@media (max-width: 1080px) {

    /* ナビゲーション */
    /* PCナビ */
    .area_pc_nav_header {
        display: none;
    }

    /* SPナビ */
    .sp_menu {
        display: block;
    }

    .menu-btn {
        position: fixed;
        top: 10px;
        right: 10px;
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 100;
    }

    .menu-btn span,
    .menu-btn span::before,
    .menu-btn span::after {
        content: "";
        background: white;
        width: 25px;
        height: 3px;
        position: absolute;
        transition: all.5s;
    }

    .menu-btn span::before {
        bottom: 8px;
    }

    .menu-btn span::after {
        top: 8px;
    }

    #menu-btn-check:checked~.menu-btn span {
        background: none;
    }

    #menu-btn-check:checked~.menu-btn span::before {
        bottom: 0;
        transform: rotate(-45deg);
        background: white;
    }

    #menu-btn-check:checked~.menu-btn span::after {
        top: 0;
        transform: rotate(45deg);
        background: white;
    }

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

    .sp-menu-box {
        width: 100%;
        height: 100vh;
        background-color: #454545a3;
        position: fixed;
        top: 0;
        left: 100%;
        padding: 100px 10px 0;
        box-sizing: border-box;
        z-index: 50;
    }

    .sp-menu-box li a {
        display: block;
        color: white;
        text-decoration: none;
        text-align: center;
        letter-spacing: 4px;
        padding: 10px 15px;
        font-size: 14px;
        border-bottom: 1px solid white;
    }

    .sp-menu-box a:hover {
        transform: scale(1.2);
    }

    #menu-btn-check:checked~.sp-menu-box {
        left: 0;
    }
}
/* ---------------------------------------- */
@media (max-width: 820px) {
  /* 共通 */
  #sec-2,#sec-3,#sec-4 {
    padding: 24px;
  }
  #sec-2&gt; h2 , #sec-3&gt; h2, #sec-4&gt; h2  {
    font-size: 18px;
    padding: 16px 0;
  }
  /* ポートフォリオエリア */
#sec-2 p {
  font-size: 12px;
}
  .works-container {
    gap: 24px;
  }
  
  .work-item {
    max-width: 160px;
  }
  /* プロフィールエリア */
  .sec-3-container-txt .name {
    padding: 0 16px;
  }
.sec-3-container-txt .name-2 {
  padding: 0 16px;
}
  .sec-3-container-txt .profile-txt {
    font-size: 12px;
  padding: 16px;
  margin: 24px 0;
}
/* 料金エリア */
.pricing-info p {
  font-size: 12px;
}
}


/* ---------------------------------------- */
@media (max-width: 768px) {
  /* プロフィールエリア */
  .sec-3-container-txt .name {
font-size: 10px;
  }
.sec-3-container-txt .name-2 {
font-size: 16px;
}
}

/* ---------------------------------------- */
@media (max-width: 430px) {
  /* ヘッダーのロゴ */
  .area_logo_header &gt; h1 &gt;a{
    font-size: 12px;
}
    /* ポートフォリオエリア */
    #sec-2 p {
      padding: 16px;
      letter-spacing: none;
  }
  .work-item {
    max-width: 124px;
  }
    /* プロフィールエリア */
    .sec-3-container-txt .profile-txt {
      padding: 16px;
      margin: 0;
}
}

/* ---------------------------------------- */
@media (max-width: 360px) {
    /* ポートフォリオエリア */
#sec-2 p {
  font-size: 10px;
}
  /* プロフィールエリア */
  .sec-3-container-txt .profile-txt {
font-size: 10px;
  }
  /* 料金エリア */
.pricing-info p {
  font-size: 10px;
}
}


/* JavaScript */
/* ふわっと表示用 */

.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s, transform 2s ease-in; /* アニメーション時間 */
}

.fade.active {
  opacity: 1;
  transform: translateY(0);
}
</pre></body></html>