@charset "UTF-8";
/* import : 共通項目 */
/* 共通設定 */
/* Webサイト横幅 */
/* フォントサイズ */
/* フッターサイズ */
/* フォント色 */
/* フォント */
/* Webフォント：ComicNeue(英数字) */
@font-face {
  font-family: "MyFont_main";
  src: url("../font/Comic_Neue/ComicNeue-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: "MyFont_main";
  src: url("../font/Comic_Neue/ComicNeue-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal; }
/* Webフォント：Mamelon(日本語) */
@font-face {
  font-family: "MyFont_sub";
  src: url("../font/mamelon_hireg/Mamelon-3.5-Hi-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: "MyFont_sub";
  src: url("../font/mamelon_hireg/Mamelon-5-Hi-Regular.otf") format("opentype");
  font-weight: bold;
  font-style: normal; }
/* 重複処理：アニメーションの重なり(PC/SP) */
/* 重複処理：アニメーションふわっと表示 */
/* import : TOPページ */
/* TOP画面 */
/* アニメーション表示 */
/* 風船アニメーション */
header {
  /* ロゴ */ }
  header #top_logo {
    width: 24rem;
    padding: 1.5rem 0;
    margin: 0 auto; }

main {
  /* 背景切替ボタン */
  /* 表示切替 */ }
  main #top_anim {
    display: block;
    position: relative;
    width: 100%;
    /* 風船メニュー */
    /* PC用 */
    /* SP用 */ }
    main #top_anim .top_menu {
      max-width: 700px;
      position: absolute;
      left: 0;
      right: 0;
      margin: auto;
      width: 90%; }
      main #top_anim .top_menu #top_about {
        float: left;
        z-index: 801;
        position: relative;
        animation-name: balloon_float;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        animation-duration: 1.5s; }
@keyframes balloon_float {
  0% {
    top: 2.5rem; }
  100% {
    top: 5.5rem; } }
      main #top_anim .top_menu #top_works {
        float: right;
        z-index: 802;
        position: relative;
        animation-name: balloon_float;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        animation-duration: 2.2s; }
@keyframes balloon_float {
  0% {
    top: 3rem; }
  100% {
    top: 6rem; } }
      main #top_anim .top_menu .top_balloon {
        width: 16%; }
    main #top_anim #top_anim_pc {
      /* フェードインアニメ */
      animation-name: fadeInAnime;
      animation-duration: 4s;
      animation-fill-mode: forwards;
      opacity: 0;
      max-width: 940px;
      margin: 0 auto; }
@keyframes fadeInAnime {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
      main #top_anim #top_anim_pc .top_pic_pc {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        width: 100%;
        max-width: 940px;
        visibility: hidden; }
      main #top_anim #top_anim_pc #top_sheep_pc {
        visibility: visible !important; }
    main #top_anim #top_anim_sp {
      display: none;
      /* フェードインアニメ */
      animation-name: fadeInAnime;
      animation-duration: 4s;
      animation-fill-mode: forwards;
      opacity: 0; }
@keyframes fadeInAnime {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
      main #top_anim #top_anim_sp .top_pic_sp {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        width: 100%;
        visibility: hidden; }
      main #top_anim #top_anim_sp #top_sheep_sp {
        visibility: visible !important; }
  main .top_bg_btn {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    position: relative;
    z-index: 803; }
    main .top_bg_btn .top_anim_btn {
      margin: 1.2rem 0.5rem;
      width: 2rem;
      height: 2rem;
      border-radius: 2rem;
      cursor: pointer; }
    main .top_bg_btn #btn_bgm {
      background-color: skyblue; }
    main .top_bg_btn #btn_bge {
      background-color: orange; }
    main .top_bg_btn #btn_bgn {
      background-color: darkblue; }
  main .active {
    visibility: visible !important; }

/* import : プライバシーポリシーページ */
/* プライバシーポリシー画面 */
.policies_content {
  margin: 2.8rem 0 3rem; }
  .policies_content h1, .policies_content p, .policies_content li, .policies_content a {
    font-family: "MyFont_sub"; }
  .policies_content h1 {
    font-weight: bold;
    font-size: 1.5rem;
    margin: 1.2rem 0 0.6rem; }
  .policies_content p {
    font-size: 1rem; }
    .policies_content p a {
      text-decoration: none;
      color: hotpink; }
      .policies_content p a:visited {
        color: hotpink; }
      .policies_content p a:hover {
        color: lightpink; }

/* import : お問い合わせページ */
/* お問い合わせ画面 */
.contact_form {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  /* 送信ボタン */
  /* 活性時 */
  /* 非活性時 */ }
  .contact_form .contact_column {
    width: 100%;
    margin-bottom: 1.2rem;
    /* 入力欄 */
    /* エラーメッセージ */ }
    .contact_form .contact_column .contact_column_item {
      display: flex;
      justify-content: flex-start;
      margin-bottom: 12px; }
      .contact_form .contact_column .contact_column_item span {
        font-family: "MyFont_sub";
        color: #fff;
        background-color: #E30000;
        padding: 0 8px;
        margin-right: 8px; }
      .contact_form .contact_column .contact_column_item div {
        font-family: "MyFont_sub"; }
    .contact_form .contact_column .input_contact {
      font-family: "MyFont_sub";
      font-size: 1rem;
      width: 100%;
      border-color: dimgray;
      border-radius: 4px;
      border: 1.2px solid; }
    .contact_form .contact_column input {
      height: 2rem; }
    .contact_form .contact_column .err_message {
      font-family: "MyFont_sub";
      color: red;
      margin-top: 4px; }
  .contact_form input[type="submit"] {
    width: 100%;
    font-family: "MyFont_sub";
    font-size: 1rem;
    color: #fff;
    background-color: #535151;
    padding: 0.6rem 0;
    border-radius: 20px;
    border: none;
    outline: none;
    cursor: pointer;
    margin: 2rem 0 4rem; }
  .contact_form input[type="submit"][disabled] {
    background-color: darkgray;
    cursor: not-allowed; }

/* お問い合わせ送信結果 */
.mail_result {
  text-align: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 3rem;
  margin-bottom: 3rem; }
  .mail_result .mail_result_msg {
    font-family: "MyFont_sub";
    font-size: 1rem; }

/* import : Aboutページ */
/* ABOUT画面 */
/* ABOUT画面横幅 */
/* CONCEPT */
.concept_content {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  margin-bottom: 3rem;
  /* スクロールアニメーション */
  opacity: 0; }
  .concept_content .concept_sentence {
    width: 90%;
    background-color: #FFF7AA;
    transform: rotate(-2deg);
    border-radius: 12px;
    margin: 0 auto; }
    .concept_content .concept_sentence p {
      transform: rotate(2deg);
      padding: 3rem 2.6rem 2.8rem;
      font-family: "MyFont_sub";
      font-size: 1rem; }
  .concept_content #sheep_maritozzo {
    width: 9rem;
    margin: -3.8rem 0 0 auto; }

/* SKILL */
/* カテゴリ */
.skill_category {
  display: flex;
  margin-bottom: 2rem;
  justify-content: center; }
  .skill_category .category_label {
    font-family: "MyFont_sub";
    font-size: 1rem; }
    .skill_category .category_label:not(:last-of-type) {
      margin-right: 1rem; }
  .skill_category .s_label {
    width: 3.5rem;
    margin-right: 0.4rem; }
  .skill_category .l_red {
    background-color: #FFBBBB; }
  .skill_category .l_blue {
    background-color: #98C8FE; }
  .skill_category .l_green {
    background-color: #81D4AD; }

/* パイチャート */
.skill_content {
  width: 100%;
  max-width: 890px;
  margin: 0 auto;
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
  justify-content: center; }
  .skill_content .chart {
    position: relative;
    margin: 0.4rem 0.5rem;
    width: 8.2rem;
    /* スクロールアニメーション */
    opacity: 0; }
    .skill_content .chart .chart_category {
      width: 100%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      overflow-wrap: break-word;
      padding: 1.2rem;
      font-size: 1rem;
      z-index: 800; }
      .skill_content .chart .chart_category span {
        display: block; }
      .skill_content .chart .chart_category .percent {
        font-size: 1.5rem; }
        .skill_content .chart .chart_category .percent::after {
          content: '%'; }
    .skill_content .chart canvas {
      width: 100% !important;
      height: 100% !important; }

/* フッターアニメーション */
#sheep_parfait {
  width: 100%;
  max-width: 890px;
  margin: 0 auto; }

/* 初期表示アニメーション */
.show_concept {
  animation-name: fadeUpAnime;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  opacity: 0; }
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(200px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* スクロールアニメーション */
.show_skill {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0; }
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(200px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* SKILLスクロール空白調整 */
.empty_content {
  padding-top: 1500px; }

/* import : Worksページ */
/* WORKS画面 */
/* カテゴリー */
.works_category .item_title {
  cursor: pointer; }
  .works_category .item_title:not(:last-of-type) {
    margin-right: 2rem; }
.works_category #category_all {
  width: 100%; }
.works_category .works_category_detail {
  display: flex;
  justify-content: center;
  margin: -1rem 0 1rem; }

/* コンテンツ */
.works_content {
  border: 1px #808080 solid;
  width: 100%;
  margin-bottom: 1rem;
  /* Worksデータ全体(ボタン以外) */
  /* アコーディオンボタン */
  /* 表示切替 */ }
  .works_content div, .works_content a {
    font-family: "MyFont_sub";
    font-size: 1rem; }
  .works_content .works_data {
    display: flex;
    /* 動画・画像 */
    /* 詳細事項等 */ }
    .works_content .works_data .works_data_left {
      width: 40%; }
      .works_content .works_data .works_data_left .works_image {
        text-align: center; }
        .works_content .works_data .works_data_left .works_image .website_video {
          width: 100%; }
        .works_content .works_data .works_data_left .works_image img, .works_content .works_data .works_data_left .works_image .others_video {
          width: 70%;
          margin: 0.4rem 0; }
    .works_content .works_data .works_data_right {
      width: 60%;
      /* コメント */
      /* 素材データダウンロード */
      /* アコーディオン表示切替箇所 */ }
      .works_content .works_data .works_data_right .works_comment {
        width: 100%;
        padding: 1rem 0.8rem; }
        .works_content .works_data .works_data_right .works_comment a {
          color: hotpink;
          text-decoration: none; }
          .works_content .works_data .works_data_right .works_comment a:visited {
            color: hotpink; }
          .works_content .works_data .works_data_right .works_comment a:hover {
            color: lightpink; }
      .works_content .works_data .works_data_right .works_download {
        width: 60%;
        background-color: #6B6B6B;
        border-radius: 5px;
        text-align: center;
        margin: 0.6rem 0.8rem 1rem;
        padding: 0.6rem;
        color: #fff;
        text-decoration: none;
        display: block;
        white-space: nowrap; }
        .works_content .works_data .works_data_right .works_download:visited {
          color: #fff; }
      .works_content .works_data .works_data_right .works_content_detail {
        display: none;
        margin-top: 1rem; }
        .works_content .works_data .works_data_right .works_content_detail .works_column {
          width: 100%;
          display: flex;
          justify-content: flex-start;
          padding: 1rem 0.8rem; }
          .works_content .works_data .works_data_right .works_content_detail .works_column .works_item {
            width: 20%; }
          .works_content .works_data .works_data_right .works_content_detail .works_column .works_detail {
            width: 80%;
            overflow-wrap: break-word; }
  .works_content .btn_accordion {
    width: 100%;
    height: 24px;
    text-align: center;
    cursor: pointer;
    margin-top: 8px;
    margin-bottom: 8px; }
    .works_content .btn_accordion .btn_arrow {
      width: 1.5rem;
      margin: 0 auto; }
    .works_content .btn_accordion .btn_arrow_up {
      display: none; }
  .works_content .active_arrow {
    display: block !important; }

/* 初回表示アニメーション */
.wc_fadeup {
  animation-name: fadeUpAnime;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  opacity: 0; }
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(200px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* 画像・動画拡大 */
#exdisplay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100% !important;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 906; }
  #exdisplay .works_image img, #exdisplay .works_image video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    height: fit-content; }

/* フッターアニメーション */
#sheep_sweetget {
  width: 100%;
  max-width: 940px;
  margin: 0 auto; }

* {
  box-sizing: border-box;
  margin: 0;
  font-family: "MyFont_main";
  color: #000;
  /* スクロールバー非表示 */
  -ms-overflow-style: none;
  /* Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
  /* Chrome 対応 */ }
  *::-webkit-scrollbar {
    display: none; }

/* 共通部分：ローディング start */
#loading {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 905; }
  #loading #anim_loading {
    display: none;
    position: fixed;
    top: 0%;
    left: 50%;
    width: 200px;
    height: 200px;
    margin-top: 0px;
    margin-left: -100px; }
    #loading #anim_loading svg {
      background: #fff; }

/* 共通部分：ローディング end */
/* 共通部分：ローディング後表示領域 start */
#main_content {
  width: 100%;
  position: absolute;
  min-height: 100%;
  overflow: hidden; }

/* 共通部分：ローディング後表示領域 end */
/* 共通部分：メイン start */
main {
  /* フッター分調整 */
  padding-bottom: 110px; }

/* 共通部分：メイン end */
/* 共通部分：ヘッダー start */
header .header_sheep {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 1.0rem;
  /* 線回転「×」 */ }
  header .header_sheep .header_logo {
    width: 11rem;
    height: fit-content; }
  header .header_sheep .hamburger_btn {
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 50px;
    z-index: 904;
    /*ボタン内側*/ }
    header .header_sheep .hamburger_btn span {
      display: inline-block;
      transition: all .3s;
      position: absolute;
      left: 14px;
      height: 3px;
      border-radius: 2px;
      background: #000;
      width: 45%; }
      header .header_sheep .hamburger_btn span:nth-of-type(1) {
        top: 15px; }
      header .header_sheep .hamburger_btn span:nth-of-type(2) {
        top: 23px; }
      header .header_sheep .hamburger_btn span:nth-of-type(3) {
        top: 31px; }
  header .header_sheep .ham_btn_active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%; }
  header .header_sheep .ham_btn_active span:nth-of-type(2) {
    opacity: 0; }
  header .header_sheep .ham_btn_active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%; }

aside {
  /* ハンバーガーメニュー */
  /* ハンバーガーメニュー表示 */
  /* ハンバーガーメニュー表示時背景 */ }
  aside .hamburger_menu {
    width: 36%;
    max-width: 300px;
    position: absolute;
    height: 100%;
    background-color: #8CC63F;
    right: 0;
    top: 0;
    z-index: 903;
    /* ハンバーガーメニュー初期位置 */
    transform: translateX(100%);
    transition: all .3s linear; }
    aside .hamburger_menu .menu_logo {
      position: relative; }
      aside .hamburger_menu .menu_logo #menu_logo_bg {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        display: contents; }
      aside .hamburger_menu .menu_logo .side_menu_logo {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        width: 90%;
        top: 100px; }
      aside .hamburger_menu .menu_logo .side_menu_bottom {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        width: 100%;
        bottom: 0; }
    aside .hamburger_menu .side_menulist {
      width: 90%;
      margin: 0 auto;
      /* 区切り線 */ }
      aside .hamburger_menu .side_menulist div:not(:first-of-type) {
        border-top: dotted 4px #fff;
        padding-top: 20px;
        width: 56%;
        margin: 0 auto; }
      aside .hamburger_menu .side_menulist .menu {
        margin-bottom: 20px; }
        aside .hamburger_menu .side_menulist .menu a {
          display: flex;
          justify-content: center;
          text-decoration: none; }
          aside .hamburger_menu .side_menulist .menu a:visited {
            color: #fff; }
          aside .hamburger_menu .side_menulist .menu a .menu_ribbon {
            width: 2.4rem;
            height: fit-content; }
          aside .hamburger_menu .side_menulist .menu a div {
            color: #fff;
            font-size: 1.6rem;
            margin: 0 12px;
            font-weight: bold; }
  aside .ham_menu_active {
    transform: translateX(0); }
  aside .side_bg_active {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 902; }

/* 共通部分：ヘッダー end */
/* 共通部分：TOPへ戻る start */
#page_top {
  position: fixed;
  bottom: 30px;
  right: 0px;
  z-index: 901;
  display: flex; }
  #page_top a {
    position: relative; }
    #page_top a span {
      color: #fff;
      position: absolute;
      padding: 2.5rem 1.7rem; }
    #page_top a .back_top {
      width: 5rem; }

/* 共通部分：TOPへ戻る end */
/* 共通部分：フッター start */
footer {
  width: 100%;
  height: 110px;
  text-align: center;
  padding: 48px 0;
  background-image: url("../img/common/footer.png");
  background-size: contain;
  background-repeat: repeat-x;
  /* フッター下部固定 */
  position: absolute;
  bottom: 0;
  z-index: 900; }
  footer .footer-list {
    display: flex;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    width: 200px; }
    footer .footer-list li {
      flex: auto;
      color: #fff; }
      footer .footer-list li a {
        text-decoration: none;
        color: #fff; }
        footer .footer-list li a:visited {
          color: #fff; }
  footer div {
    margin-top: 4px; }
    footer div small {
      color: #fff; }

/* 共通部分：フッター end */
/* 重複処理：各ページ題目 */
.item_title {
  display: flex;
  font-weight: bold;
  font-size: 1.4rem;
  justify-content: center;
  margin: 1.4rem 0 1.6rem; }
  .item_title .menu_ribbon {
    width: 2.4rem;
    height: fit-content; }
  .item_title .title_text {
    font-size: 1.6rem;
    margin: 0 0.6rem; }

/* 重複処理：各ページ内容 */
.wrapper_content {
  width: 90%;
  max-width: 940px;
  margin: 0 auto; }

/* 重複処理：羊アニメーション題目 */
.sheep_title {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  margin-top: 1rem;
  margin-bottom: 2rem; }
