@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* ====== サイドメニュー ====== */
#container-sidemenu #sidemenu {
  top: 14.0rem;
  position: sticky;
  /* position: -webkit-sticky; 効いていない？　*/
  padding-top: 0.4rem;
  padding-bottom: 5rem;
}
@media screen and (min-width:888px) {
  #container-sidemenu #sidemenu {
    width: calc(26vw - 8rem); /* FIXME: 計算は適当 */
  }
}

/* ====== ページ全体にわたる広い要素 ====== */
.contentPage .inner_content {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width:888px) {
  .contentPage .inner_content {
    display: flex;
    flex-direction: row;
    gap: 6.0rem;
    justify-content: space-between;
  }
}
@media screen and (min-width:888px) {
  .contentPage .scrollContent .inner_content {
    gap: 0rem;
  }
}
.contentPage .scrollContent {
  width: 100%;
  padding-bottom: 16rem;
}
@media screen and (min-width:888px) {
  .contentPage .scrollContent {
    width: 63.3%;
  }
}
.contentPage article.inner_content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  border-bottom: 1px solid #35085d80;
  padding-bottom: 6rem;
}


/* ====== ページネーション ====== */
.pagination {
  padding-top: 2.0rem;
}
.pagination ul.page-numbers {
  display: flex;
  gap: 0 2.0rem;
}
.pagination ul.page-numbers li>* {
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  line-height: 4.8rem;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
  border: 0.16rem solid rgba(255, 255, 255, 0);
  box-sizing: border-box;
  transition: border .2s ease;
}
.pagination ul.page-numbers li>*:hover,
.pagination ul.page-numbers li>*:active {
  border-radius: 50%;
  border-color: #35085D;
}
.pagination ul.page-numbers li>*.current {
  background-color: #35085D;
  color: #f9f2f6;
  border-color: #35085D;
}

/* ====== BLOG：検索フォーム ====== */
.page_blog form.search {
  display: flex;
  border-bottom: 1px solid #35085d80;
}
.page_blog form.search button {
  display: none;
}
.page_blog form.search input[type="text"] {
  border: none;
  background-color: rgba(255, 255, 255, 0);
  color: #35085D;
  font-family: "Noto Sans JP";
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  padding-block: 0;
  padding-inline: 0;
  outline: none;
  width: 100%;
}
@media screen and (min-width:888px) {
  .page_blog form.search input[type="text"] {
    font-size: 20px;
    padding-block: 0.2rem;
  }
}
.page_blog .menu_search.pc_none {
  padding-bottom: 4.0rem;
}
.page_blog .icon_search {
  display: block;
  height: 2.08rem;
  width: 2.4rem;
  padding-right: 2.046rem;
  padding-top: 1.5rem; /* FIXME: 仮で高さ調整 */
  padding-bottom: 1.6rem;
}
@media screen and (min-width:888px) {
  .page_blog .icon_search {
    padding-right: 1.62rem;
    height: 2.1rem;
  }
}

/* ====== BLOG：カテゴリーメニュー ====== */
#category-list {
  display: flex;
  border-bottom: 1px solid #35085d80;
  padding-top: 2.0rem;
  padding-bottom: 2.0rem;
  color: #35085d;
  font-family: "Noto Sans JP";
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
}
#category-list .parent_category {
  padding-bottom: 1.0rem;
}
#category-list .child_category {
  opacity: 60%;
  padding-top: 1.0rem;
  margin-left: 3.0rem;
}
.toggle-children {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.toggle-children::after {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 5px 5px 5px 0; /* 右向きの三角形 */
  border-color: transparent #333 transparent transparent;
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
  transform: rotate(180deg);
}
.toggle-children.active::after {
  transform: rotate(270deg);
}



/* ====== BLOG：一覧 ====== */
#main-title {
  padding-top: 2.0rem;
  padding-bottom: 5.0rem;
  flex-direction: row;
  display: flex;
  align-items: flex-end;
}
#main-title .triangle {
  height: 1.6rem;
  width: 1.6rem;
  clip-path: polygon(0 100%, 100% 100%, 0 0);
  right: 0.4rem;
  bottom: 0.4rem;
  background-color: #7B88FF;
}
.page_blog h1 {
  font-family: "Noto Sans";
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 70px;
  padding-right: 2.0rem;
}
.page_blog h2 {
  font-family: "Noto Sans";
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  padding-right: 2.0rem;
}
.page_blog h3 {
  font-family: "Noto Sans";
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  padding-bottom: 2.0rem;
}
@media screen and (min-width:888px) {
  .page_blog h3 {
    padding-bottom: 3.4rem;
    padding-top: 6.0rem;
    padding-left: 0.0rem;
  }
}
.page_blog h4 {
  font-family: "Noto Sans";
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
}
#category-title {
  padding-top: 2.0rem;
  padding-bottom: 2.0rem;
  display: flex;
  align-items: flex-end;
}
#blog-part::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  mix-blend-mode: overlay;
  /* backdrop-filter: blur(2.4px); これどこに使ってるんだろ */
  /* -webkit-backdrop-filter: blur(2.4px); */
  background: rgba(0, 0, 0, 0.8);
}
#blog-part .title_area {
  position: absolute;
  top: -4.8rem;
}
#blog-part .unit_area {
  padding-top: 15.0rem;
}

#blog-part .unit_area .pickup {
  display: flex;
  flex-direction: column;
  padding-bottom: 4.0rem;
}
@media screen and (min-width:888px) {
  #blog-part .unit_area .pickup {
    flex-direction: row;
    padding-bottom: 8.0rem;
  }
}
#blog-part .unit_area .unit {
  display: block;
  padding-top: 4.0rem;
  padding-bottom: 4.0rem;
  border-top: 1px solid #35085D;
}
@media screen and (min-width:888px) {
  #blog-part .unit_area .unit {
    display: flex;
    padding-top: 0rem;
    padding-bottom: 0rem;
    height: 31.8rem;
  }
}
#blog-part .unit_area .unit>a:last-of-type {
  border: none;
}
#blog-part .unit_area .pickup .unit {
  padding-top: 0rem;
  border: none;
}
#blog-part .unit_area .pickup>a:last-of-type {
  padding-bottom: 0rem;
}

/* ====== BLOG：記事サムネイル ====== */
#blog-part .thumbnail_area {
  justify-content: center;
  width: 32rem;
  height: 18rem;
}
@media screen and (min-width:888px) {
  #blog-part .thumbnail_area {
    padding-right: 3.0rem;
    width: 42.3rem;
    height: 23.8rem;
    margin: auto;
  }
}
#blog-part .thumbnail_area img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width:888px) {
  #blog-part .thumbnail_area img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
#blog-part .pickup .thumbnail_area {
  width: 100%;
}
@media screen and (min-width:888px) {
  #blog-part .pickup .thumbnail_area img {
    width: auto;
    height: 18.8rem;
  }
}
#blog-part article .thumbnail_area {
  width: 100%;
}

/* ====== BLOG：文字による概要 ====== */
#blog-part .unit_area .supplementary_info {
  color: #35085D;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  flex-direction: column;
  justify-content: center;
  white-space: normal;
  word-wrap: break-word;
  font-weight: 700;
  padding-top: 1.6rem;
}
@media screen and (min-width:888px) {
  #blog-part .unit_area .supplementary_info {
    max-width: 35%;
    display: flex;
    justify-content: space-around;
    height: 24.8rem;
    padding-top: 0rem;
    margin: auto;
  }
}
#blog-part .pickup .supplementary_info {
  max-width: 100%;
}
@media screen and (min-width:888px) {
  #blog-part .pickup .supplementary_info  {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
#blog-part .unit_area .supplementary_info .category {
  font-size: 14px;
  color: #35085d93;
}
#blog-part .unit_area .supplementary_info .title {
  font-size: 14px;
  white-space: normal;
  word-wrap: break-word;
  word-break: break-all;
  padding-top: 1rem;
}
@media screen and (min-width:888px) {
  #blog-part .unit_area .supplementary_info .title {
    display: -webkit-box;
    padding-top: 1.0rem;
    padding-bottom: 2.0rem;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}
#blog-part .unit_area .supplementary_info .subscription {
  display: none;
}
@media screen and (min-width:888px) {
  #blog-part .unit_area .supplementary_info .subscription {
    display: -webkit-box;
    font-size: 16px;
    white-space: normal;
    word-break: break-all;
    word-wrap: break-word;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
  }
}
#blog-part .unit_area .supplementary_info span:nth-of-type(1) {
  padding-right: 1.6rem;
}
#blog-part .link_area {
  position: relative;
  padding-top: 2.0rem;
}
#blog-part .link_area .link {
  position: absolute;
  right: -2.0rem;
}

/* ====== BLOG：未分類（FIXME） ====== */
.contentPage.page_blog #blog-part {
  padding-top: 6.0rem;
}
@media screen and (min-width:888px) {
  .contentPage.page_blog #blog-part {
    padding-top: 6.4rem;
  }
}
.contentPage.page_blog #blog-part::before {
  display: none;
}
.contentPage.page_blog #blog-part .unit_area {
  overflow-x: visible;
  padding-top: 4.0rem;
}
@media screen and (min-width:888px) {
  .contentPage.page_blog #blog-part .unit_area {
    padding-top: 0.0rem;
  }
}
.contentPage.page_blog #blog-part .unit_area .pickup .unit {
  border: none;
}
@media screen and (min-width:888px) {
  .contentPage.page_blog #blog-part .unit_area .pickup .unit {
    /* width: 33.4rem; サイドメニューを伸縮させたい */
    width: 48%;
    padding-right: 2.5rem;
    display: flex;
    flex-direction: column;
  }
}

/* ====== BLOG：詳細 ======= */
.contentPage.page_blog.detail #blog-part article .title {
  padding-top: 1.0rem;
  padding-bottom: 3.0rem;
}
@media screen and (min-width:888px) {
  .contentPage.page_blog.detail #blog-part article .title {
    padding-top: 3.0rem;
  }
}
.contentPage.page_blog.detail #blog-part article .supplementary_info {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding-bottom: 1.0rem;
}
@media screen and (min-width:888px) {
  .contentPage.page_blog.detail #blog-part article .supplementary_info {
    font-size: 14px;
    padding-bottom: 3.0rem;
  }
}
.contentPage.page_blog.detail #blog-part article .supplementary_info .category {
  opacity: 60%;
}
.contentPage.page_blog.detail #blog-part article .supplementary_info>span:nth-child(1) {
  padding-right: 3.0rem;
}
.contentPage.page_blog.detail #blog-part article .thumbnail_area {
  padding-bottom: 8.0rem;
}
@media screen and (min-width:888px) {
  .contentPage.page_blog.detail #blog-part article .thumbnail_area {
    padding-bottom: 3.6rem;
  }
}

/* BLOG：リクルートトップページ */
#top-blog-part {
  position: relative;
  padding-top: 0;
  padding-bottom: 12.0rem;
  color: #FFFFFF;
}
#top-blog-part::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  mix-blend-mode: overlay;
  backdrop-filter: blur(2.4px);
  -webkit-backdrop-filter: blur(2.4px);
  /* background: rgba(0, 0, 0, 0.8); /* ブログ：背景色が変わってしまう？ *? */
}
#top-blog-part hr {
  width: calc((100% - 83.7%) / 3.4);
  border-width: 0.5px;
  position: absolute;
  top: 2.6rem;
  left: 0;
}
@media screen and (min-width:888px) {
  #top-blog-part hr {
    width: 14.0rem;
  }
}
#top-blog-part>div.inner_content {
  width: calc(100vw - 8.0rem);
  margin-left: 3.2rem;
  margin-right: auto;
  max-width: 100%;
}
@media screen and (min-width:888px) {
  #top-blog-part >div.inner_content {
    width: calc(100% - (18.0rem + 2.4rem));
    margin-left: 18.3rem;
    max-width: 100%;
  }
}
#top-blog-part .inner_unit {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 4rem;
}
@media screen and (min-width:888px) {
  #top-blog-part .inner_unit {
    justify-content: row;
  }
}

#top-blog-part .blog_interview>.title_area {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding-bottom: 2.0rem;;
}
@media screen and (min-width:888px) {
  #top-blog-part .blog_interview>.title_area {
    padding-bottom: 7.2rem;;
  }
}
#top-blog-part .title_area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width:888px) {
  #top-blog-part .title_area {
    flex-direction: row;
    top: -3.1rem;
    left: calc((100vw - 78.6vw) / 2); /* コンテンツベースで計算 */
    flex-direction: row;
  }
}
#top-blog-part .title_area .triangle {
  height: 1.6rem;
  width: 1.6rem;
  clip-path: polygon(0 100%, 100% 100%, 0 0);
  position: relative;
  bottom: -2.6rem; /* 調整 */
  background-color: #7B88FF;
  margin-right: 1rem;
  
}
#top-blog-part .triangle_title {
  display: flex;
  flex-direction: row;
}
#top-blog-part .title_area h1 {
  font-size: 42px;
  font-weight: bold;
  padding-bottom: 0px; /* 打ち消しのため */
  padding-right: 2.5rem;
}
@media screen and (min-width:888px) {
  #top-blog-part .title_area h1 {
    font-size: 64px;
  }
}
#top-blog-part .title_area h2 {
  font-size: 35px;
  font-weight: bold;
  padding-right: 1.5rem;
}
#top-blog-part .title_area h3 {
  display: none;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (min-width:888px) {
  #top-blog-part .title_area h3 {
    display: block;
  }
}
#top-blog-part .title_area h4 {
  font-size: 16px;
  font-weight: bold;
}

#top-blog-part .blog_interview {
  padding-bottom: 8.0rem;
}

#top-blog-part .blog_environment {
  padding-bottom: 12.0rem;
}
#top-blog-part .unit_area {
  display: flex;
  flex-direction: column;
  overflow-x: scroll;
  -ms-overflow-style: none; /*スクロールバー非表示（IE・Edge）*/
  scrollbar-width: none;   /*スクロールバー非表示（Firefox）*/
  /* height: 30rem; サムネの高さに合わせるなら不要 */
}
@media screen and (min-width:888px) {
  #top-blog-part .unit_area {
    flex-direction: row;
  }
}
#top-blog-part .unit_area::-webkit-scrollbar { /*スクロールバー非表示（Chrome・Safari）*/
  display: none;
}
#top-blog-part .unit_area .unit {
  flex-shrink: 0;
  display: block;
  padding-bottom: 4.0rem;
}
@media screen and (min-width:888px) {
  #top-blog-part .unit_area .unit {
    padding-right: 4.0rem;
  }
}
#top-blog-part .unit_area .unit .title_area {
  width: calc(100% - (18.0rem + 2.4rem));
  padding-bottom: 1.6rem;
}
#top-blog-part .unit_area .unit .title_area h1 {
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  padding-bottom: 0;
  height: auto;
}
#top-blog-part .unit_area .unit .text_area {
  width: calc(100% - (18.0rem + 2.4rem));
}
#top-blog-part .unit_area .unit .text_area p {
  font-size: 1.6rem;
}

#top-blog-part .blog_interview .thumbnail_area {
  position: relative;
  width: 32.9rem;
  height: 26rem;
  overflow: hidden;
  display: block;
}
@media screen and (min-width:888px) {
  #top-blog-part .blog_interview .thumbnail_area {
    width: 24rem;
    height: 35rem;
  }
}
#top-blog-part .blog_environment .thumbnail_area {
  width: 40rem;
  height: 22rem;
  overflow: hidden;
  display: block;
  padding-bottom: 2.0rem;
}
#top-blog-part .unit_area .unit .thumbnail_area img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#top-blog-part .unit_area .supplementary_info {
  white-space: normal;
  word-wrap: break-word;
  width: 100%;
}
#top-blog-part .unit_area .internal_info {
  width: 88%;
  position: absolute;
  bottom: 1.3rem;
  left: 1.6rem;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width:888px) {
  #top-blog-part .unit_area .internal_info {
    bottom: 1.6rem;
  }
}
#top-blog-part .unit_area .internal_info .blog_title {
  padding-bottom: 1rem;
  font-family: "Jost", "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 17px;
  font-weight: 600;
  white-space: normal;
  word-wrap: break-word;
  width: 100%;
}
#top-blog-part .unit_area .internal_info .blog_category_area {
  display: flex;
  white-space: normal;
  flex-wrap: wrap;
  word-wrap: break-word;
  width: auto;
}
#top-blog-part .unit_area .internal_info .category {
  background-color: #FFFFFF;
  border-radius: 100px;
  padding: 0.4rem 0.8rem;
  margin-right: 0.6rem;
  color: #35085D;
  font-size: 10px;
  font-weight: 500;
  white-space: normal;
  word-wrap: break-word;
  width: auto;
}
@media screen and (min-width:888px) {
  #top-blog-part .unit_area .internal_info .category {
    margin-right: 0.8rem;
  }
}
#top-blog-part .blog_environment .supplementary_info span {
  opacity: 60%;
  font-size: 14px;
  font-weight: 700;
  padding-right: 2.0rem;
}
@media screen and (min-width:888px) {
  #top-blog-part .blog_environment .supplementary_info span {
    padding-right: 1.0rem;
  }
}
#top-blog-part .blog_environment .blog_title {
  font-family: "Jost", "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 20px;
  padding-top: 1.6rem;
}
@media screen and (min-width:888px) {
  #top-blog-part .blog_environment .blog_title {
    font-size: 16px;
    padding-top: 0.8rem;
  }
}
#top-blog-part .unit_area>*:nth-child(n+4) {
  display: block;
}
#top-blog-part .unit_area>*:nth-child(n+4) { /* ブログ3つ目以降は非表示 */
  display: none;
}
@media screen and (min-width:888px) {
  #top-blog-part .unit_area>*:nth-child(n+7) { /* ブログ7つ目以降は非表示 */
    display: none;
  }
}
#top-blog-part .link_area {
  position: relative; /* 追加 */
}
#top-blog-part .link_area .link {
  position: absolute; /* 追加 */
  /* right: calc((100vw - 78.6vw) / 2); コンテンツベースで計算 */
  right: 0px; /* ブログの場合はこれくらい？ */
}



/* ====================================================================================================================== */
/* ====================================================================================================================== */
/* ====================================================================================================================== */
/* ====================================================================================================================== */




body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
}
/*==================================================
初期設定
iPhone SE の Portrait 横幅 320px
==================================================*/
/* 共通部分 */
a {
  text-decoration: none;
}

ul li{
  list-style: none;
}

div.part div.inner_content {
  width: 83.7%; /* width: 32.9rem; */
  min-width: 32.9rem;
  margin-left: auto;
  margin-right: auto;
}
div.part p {
  line-height: 178%;
}

div.part h1 {
  font-size: 4.0rem;
  font-weight: bold;
}

.vr {
  width: 1px;
  height: 9.6rem;
  content: '';
}


div.part h2 {
}

.sp_none {
  display: none;
}
.pc_none {
  display: block;
}
.temporary_01 {
  display: none;
}
.temporary_02 {
  display: none;
}

.scrollIn {
  opacity: 0.1;
  transform: translateY(20px);
  transition: all 1s;
/*  opacity: 1;
    transform: translateY(0);*/
}
.fadeIn{
  animation-name:fadeInAnime;
  animation-duration: 3.0s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ボタン */
a.btn_type_001 {
  display: block;
  text-align: center;
  position: relative;
  transition: 0.3s;
}
a.btn_type_001 div.btn-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
a.btn_type_001 div.triangle {
  height: 1.6rem;
  width: 1.6rem;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  position: absolute;
  right: 0.4rem;
  bottom: 0.4rem;
}
a.btn_entry {
  width: 19.0rem;
  height: 5.6rem;
  font-size: 1.6rem;
}

/* ハンバーガーメニュー */
.btn_menu {
  box-sizing: border-box;
  width: 1.8rem;
  height: 1.7rem;
  border: none;
  outline: none;
  cursor: pointer;
  position: absolute;
  top: 1.6rem;
  z-index: 1001;
  content: '';
}
.btn_menu .line,
.btn_menu .line::before,
.btn_menu .line::after {
  position: absolute;
  height: 0.3rem;
  width: 1.8rem;
  display: block;
  content: '';
  cursor: pointer;
  z-index: 1002;
  transition: 0.4s all;
}
.btn_menu .line {
  top: 0;
}
.btn_menu .line::before {
  top: 0.6rem;
}
.btn_menu .line::after {
  top: 1.2rem;
}
.open .line {
  transform: translateY(0.6rem) rotate(45deg);
}
.open .line::before {
  transform: translateY(-1.2rem) rotate(-45deg);
  opacity: 0;
}
.open .line::after {
  transform: translateY(-1.2rem) rotate(-90deg);
}

.part .title_area h1 {
  padding-bottom: 4.8rem;
}

/* ヘッダー */
header {
  height: 4.9rem;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 1000;
}
header .inner_content {
  width: 100vw;
  display: flex;
  content: '';
}
header .logo_area {
  padding: 1.6rem;
}
header .logo_area img.logo {
  display: block;
  width: 8.8rem;
  object-fit: cover;
}
header .menu_area {
  position: absolute;
  top: 4.8rem;
  left: 120vw;
  height: 100vh;
  transition: 0.4s all;
}
header.open .menu_area {
  display: block;
  left: 0;
  transition: 0.4s all;
}
header .menu_area ul {

}
header .menu_area ul li {
  display: block;
  width: 100vw;
}
header .menu_area ul li a {
  display: block;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
  text-align: center;
  font-size: 1.4rem;
  white-space: nowrap;
}
header .menu_area ul li:nth-of-type(1) a {
  padding-top: 6.4rem;
}
header .menu_area ul li a.btn_entry {
  width: 17.6rem;
  height: 4.0rem;
  margin-top: 6.4rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
}
header .menu_button_area {
  position: absolute;
  top: 0;
  right: calc(1.8rem + 1.6rem); /* 3.4rem; */
}

/* FV */
#fv-part {
  height: 67.5rem;
}
#fv-part .inner_content {
  position: relative;
  width: 100vw;
  padding-top: 4.8rem;
  margin-left: 0;
  margin-right: 0;
}
#fv-part .title_area {
  position: absolute;
  top: 40.8rem;
  left: 2.4rem;
  z-index: 110;
}
#fv-part .title_area h1 {
  text-shadow: 0 0.2px 20px rgba(0,0,0,0.25);
  font-size: 4.0rem;
  letter-spacing: 0.64rem; /* calc( 4.0 * (16/100))rem */
  padding-bottom: 0;
}
#fv-part .title_area h1 .bigger {
  font-size: 5.6rem;
}
#fv-part .title_area h2 {
  font-size: 1.65rem;
  padding-top: 1.2rem;
}
#fv-part .image_area {
  z-index: 100;
}
#fv-part .image_area img {
  width: 100%;
  height: 40.2rem;
  object-fit: cover;
}
#fv-part .image_area img.fv_s {
  display: block;
}
#fv-part .image_area img.fv_m {
  display: none;
}
#fv-part .image_area img.fv_l {
  display: none;
}

/* メッセージ */
#messages-part {
  padding-top: 0;
  /* padding-bottom: 16.0rem; */
  position: relative;
}
#messages-part .inner_content {
  padding-top: 16.0rem;
  padding-bottom: 16.0rem;
}
#messages-part::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url('../images/lp/for_the_future_sp.png');
  background-size: cover;
  background-repeat : no-repeat;
  z-index: -10;
}
#messages-part::after {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 16.0rem;
  bottom: 0;
}
#messages-part hr {
  width: calc((100% - 83.7%) / 3.4); /* width: 2.2rem; */
  border-width: 0.5px;
  position: absolute;
  top: calc(16.0rem + 2.14rem);
  left: 0;
}
#messages-part .title_area h1 {
  padding-bottom: 7.0rem;
}

/* 事業内容 */
#business-part {
  padding-top: 4.0rem;
  padding-bottom: 16.0rem;
}
#business-part .text_area {
  padding-bottom: 4.0rem;
}
#business-part .unit_area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.9rem;
}
#business-part .unit_area {
}
#business-part .unit_area .unit {
  width: 15.5rem;
  height: 15.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}
#business-part .unit_area .unit::before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  z-index: 9;
}
#business-part .unit_area .unit h1 {
  display: block;
  width: 13.2rem;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  z-index: 10;
  position: absolute;
  top: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
}
#business-part .unit_area .unit_01 {
  background-image: url('../images/lp/business_image_system_integration.png');
}
#business-part .unit_area .unit_02 {
  background-image: url('../images/lp/business_image_it_surpport.png');
}
#business-part .unit_area .unit_03 {
  background-image: url('../images/lp/business_image_entrusted_development.png');
}
#business-part .unit_area .unit_04 {
  background-image: url('../images/lp/business_image_dawn.png');
}
#business-part .unit_area .unit_05 {
  background-image: url('../images/lp/business_image_join.png');
}
#business-part .unit_area .unit_06 {
  background-image: url('../images/lp/business_image_general_worker_dispatching_undertaking.png');
}
/* Service */
.diagram_area {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 2.0rem; /* padding: 4.0rem; */
  z-index: 1;
}
.diagram_area figure {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.2rem; /* margin-bottom: 2.4rem; */
}
.diagram_area figure img {
  width: 100%;
}
.diagram_area::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  mix-blend-mode: overlay;
  backdrop-filter: blur(2.0px);
  -webkit-backdrop-filter: blur(2.0px);
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
.diagram_area .accordion_area>div:last-child {
  border-bottom: none;
}
.diagram_area .accordion {
  border-bottom: 1px solid #C8C8C8;
  padding-top: 3.0rem; /* padding-top: 6.0rem; */
  padding-bottom: 3.0rem; /* padding-bottom: 6.0rem; */
}
.diagram_area .accordion .openOrClose {
  display: flex;
  justify-content: space-between;
}
.diagram_area .accordion h3 {
  font-size: 1.7rem; /* font-size: 3.6rem; */
  font-weight: 700;
}
.diagram_area .accordion .button_openOrClose {
  margin-top: auto;
  margin-bottom: auto;
}
.diagram_area .accordion .explanation {
  font-size: 1.4rem; /* font-size: 2.8rem; */
  margin-top: 1.5rem; /*margin-top: 3.0rem; */
  display: none;
}
.diagram_area .accordion .explanation.open {
  display: block;
}
/* アコーディオン開閉ボタン */
.button_openOrClose {
  box-sizing: border-box;
  width: 1.4rem; /* width: 2.4rem; */
  height: 1.4rem; /* height: 2.4rem; */
  outline: none;
  cursor: pointer;
  position: relative;
  content: '';
}
.button_openOrClose .line,
.button_openOrClose .line::before {
  position: absolute;
  height: 0.2rem; /* height: 0.4rem; */
  width: 1.4rem; /* width: 2.4rem; */
  background-color: #FFFFFF;
  display: block;
  content: '';
  cursor: pointer;
  transition: 0.4s; /* あとで(動作確認して問題なければ消し) */
}
.button_openOrClose .line {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.button_openOrClose .line::before {
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-90deg);
  opacity: 0.0;
}
.button_openOrClose.open .line {
  transform: translateY(-50%) rotate(-90deg);
}
.button_openOrClose.open .line::before {
  opacity: 1.0;
}

/* 取り組み */
#initiatives-part {
  padding-top: 4.0rem;
  padding-bottom: 4.0rem; /* padding-bottom: 16.0rem; */
}
#initiatives-part .text_area {
  padding-bottom: 4.8rem;
}
#initiatives-part .unit_area .unit {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
#initiatives-part .unit_area .unit .image_area {
  width: 100%; /* width: 17.4rem; */
  height: 44.0vw; /* height: 20.0rem; /* height: 12.0rem; */
/* padding-top: 0.6rem; */
/* padding-right: 1.6rem; */
  padding-bottom: 1.6rem;
}
#initiatives-part .unit_area .unit .image_area .image {
  width: 100%;
  height: 100%;
}
#initiatives-part .unit_area .unit .image_area .image img {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  object-fit: cover;
}
#initiatives-part .unit_area .unit .title_area {
  width: 100%; /* width: calc(100% - (12.0rem + 1.6rem)); /* width: 19.3rem; */
  padding-bottom: 1.6rem;
}
#initiatives-part .unit_area .unit .title_area h1 {
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  padding-bottom: 0;
}
#initiatives-part .unit_area .unit .text_area {
}
#initiatives-part .unit_area .unit .text_area p {
  font-size: 1.6rem;
}

/* インフォグラフィックス */
#infographics-part {
  padding-top: 4.0rem;
  padding-bottom: 16.0rem;
}
#infographics-part .image_area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
}
#infographics-part .image_area .image {
  width: 15.6rem;
  height: 15.6rem;
}
#infographics-part .image_area .image_large {
  width: 32.7rem;
  height: 15.6rem;
}
#infographics-part .image_area .image img,
#infographics-part .image_area .image_large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#infographics-part .title_area br.for_sp {
  display: inline;
}
#infographics-part .image_area .for_sp {
  display: block;
}
#infographics-part .image_area .for_pc {
  display: none;
}
#infographics-part .image_area .decoration {
  position: relative;
}
#infographics-part .image_area .decoration .triangle {
  width: 15.6rem;
  height: 15.6rem;
}
#infographics-part .image_area .decoration .top_left{
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
#infographics-part .image_area .decoration .top_right {
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
#infographics-part .image_area .decoration .bottom_left {
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
#infographics-part .image_area .decoration .bottom_right {
  clip-path: polygon(0 100%, 0 0, 100% 0);
}

/* 社員の特徴 */
#positive-employee-part {
  padding-top: 16.0rem;
  padding-bottom: 16.0rem;
  position: relative;
  z-index: 8;
}
#positive-employee-part hr {
  width: calc((100% - 83.7%) / 3.4);
  border-width: 0.5px;
  position: absolute;
  top: calc(16.0rem + 2.14rem);
  left: 0;
}
.parallax {
}
.parallax::before {
  width: 100vw;
  height: 100%;
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  background-image: url('../images/lp/img_hris_sp.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  z-index: -100;
}
#positive-employee-part .unit_area h1 {
  font-size: 2.1rem;
  padding-bottom: 0.8rem;
}
#positive-employee-part .unit_area .unit {
  margin-top: 4.0rem;
  margin-bottom: 4.0rem;
}
#positive-employee-part .image_area {
  width: 100vw;
}
#positive-employee-part .image_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#positive-employee-part .inner_content {
}

/* エントリー */
#entry-part {
  height: 55.2rem;
  position: relative;
}
#entry-part .vr {
  position: absolute;
  top: 6.8rem;
  left: 50%;
  transform: translateX(-50%);
}
#entry-part .inner_content{
  padding-top: 30.8rem
}
#entry-part a.btn_type_001 {
  margin-left: auto;
  margin-right: auto;
}

/* フッター */
footer {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
}
.copy_right {
  text-align: center;
  white-space: nowrap;
}
/*==================================================
一般的な Android の Portrait 横幅 360px
==================================================*/
@media screen and (min-width:360px) {

}


/*==================================================
iPhone 8,7,6 の Portrait 横幅 375px
==================================================*/
@media screen and (min-width:375px) {

}


/*==================================================
iPhone X の Portrait 横幅 375px 高さ 812px
==================================================*/
@media screen and (width:375px) and (height:812px) {

}


/*==================================================
iPhone 8plus,7plus,6plus の Portrait 横幅 414px
==================================================*/
@media screen and (min-width:414px) {
/* FV */
#fv-part .title_area {
  top: 39.6rem;
  left: 3.2rem;
}
#fv-part .title_area h1 {
  font-size: 4.8rem;
  letter-spacing: 0.768rem; /* calc( 4.8 * (16/100))rem */
  padding-bottom: 0;
}
#fv-part .title_area h1 .bigger {
  font-size: 6.72rem;
}
#fv-part .title_area h2 {
  font-size: 1.92rem;
}

}


/*==================================================
iPhone SE の Landscape 横幅 568px
==================================================*/
@media screen and (min-width:568px) {

}


/* 特殊ブレイクポイント：595px以上 */
@media screen and (min-width:595px) {

#infographics-part .title_area br.for_sp {
  display: none;
}
#infographics-part .image_area .for_sp {
  display: none;
}

}


/*==================================================
一般的な Android の Landscape 横幅 640px
==================================================*/
@media screen and (min-width:640px) {

#fv-part {
  height: calc(67.5rem + 4.0rem);
}
#fv-part .image_area img.fv_s {
  display: none;
}
#fv-part .image_area img.fv_m {
  display: block;
}
#fv-part .image_area img.fv_l {
  display: none;
}

}


/*==================================================
iPhone 8,7,6 の Landscape 横幅 667px
==================================================*/
@media screen and (min-width:667px) {
#fv-part .title_area {
  top: 38.2rem;
  left: 4.0rem;
}
#fv-part .title_area h1 {
  font-size: 5.6rem;
  letter-spacing: 0.896rem; /* calc( 5.6 * (16/100))rem */
  padding-bottom: 0;
}
#fv-part .title_area h1 .bigger {
  font-size: 7.84rem;
}
#fv-part .title_area h2 {
  font-size: 2.24rem;
}

}

/* 特殊ブレイクポイント:667px以上1023px以下 */
@media screen and (min-width:667px) and (max-width:1023px) {
  /* 共通 */
  .temporary_01 {
    display: initial;
  }
  
  }
  

/*==================================================
iPhone 8plus,7plus,6plus の Landscape 横幅 736px
==================================================*/
@media screen and (min-width:736px) {
/**/
/* FV */
#fv-part {
  height: 80.0rem;
}
#fv-part .title_area {
  top: 44.0rem;
  left: 10%;
}
#fv-part .title_area h1 {
  font-size: 6.4rem;
  letter-spacing: 1.024rem; /* calc( 6.4 * (16/100))rem */
}
#fv-part .title_area h1 .bigger {
  font-size: 8.96rem;
  line-height: 1.2;
}
#fv-part .title_area h2 {
  padding-top: 3.0rem;
  font-size: 2.57rem;
}
#fv-part .image_area {
}
#fv-part .image_area img {
  width: 100%;
  height: 50.0rem;
  object-fit: cover;
}

/* 事業内容 */
#business-part .unit_area .unit {
  width: 24rem;
  height: 24rem;
}
#business-part .unit_area .unit h1 {
  width: 20.0rem;
  font-size: 1.8rem;
  top: 3.2rem;
}
/* 取り組み */
#initiatives-part .unit_area .unit {
  display: block;
}
#initiatives-part .unit_area .unit .image_area {
  width: 26.0rem;
  height: 18.0rem;
  float: left;
  padding-bottom: 0;
}
#initiatives-part .unit_area .unit .image_area .image img {
  width: 90%;
}
#initiatives-part .unit_area .unit .title_area,
#initiatives-part .unit_area .unit .text_area {
  width: 100%;
}
#initiatives-part .unit_area .unit .title_area {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
#initiatives-part .unit_area .unit .title_area h1 {
  font-size: 1.6rem;
}
/* Service */
.diagram_area figure {
  width: 60%;
}
.parallax::before {
  background-image: url('../images/lp/img_hris.png');
}

}


/*==================================================
iPad の Portrait 横幅 768px
==================================================*/
@media screen and (min-width:768px) {


}


/*==================================================
iPhone X の Landscape 横幅 812px 高さ 375px
==================================================*/
@media screen and (width:812px) and (height:375px) {

}


/*==================================================
iPad Pro 10.5インチ の Portrait 横幅 834px
==================================================*/
@media screen and (min-width:834px) {

}

/*==================================================
iPad の Landscape 横幅 1024px
==================================================*/
/* ※※※※※ PC版兼用の想定 ※※※※※ */
@media screen and (min-width:1024px) {
/* 共通 */
.pc_none {
  display: none;
}
.sp_none {
  display: initial;
}
.temporary_01 {
  display: none;
}
div.part div.inner_content {
  width: 76%;
  max-width: 110.0rem;
}
div.part h1 {
  font-size: 6.4rem;
}
.part .title_area h1 {
  padding-bottom: 7.2rem;
}

a.btn_entry {
  width: 32.0rem;
}

/* ヘッダー */
header {
  width: 100vw;
  height: 5.6rem;
}
header .inner_content{
  justify-content: space-between;
}
header .logo_area {
  padding: 1.6rem 3.2rem;
}
header .logo_area img.logo {
  width: 12.4rem;
}
header .menu_area {
  position: static;
  height: auto;
}
header .menu_area ul {
  display: flex;
}
header .menu_area ul li {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  width: auto;
}
header .menu_area ul li a {
  font-size: 1.2rem;
  padding: 1.9rem 2.4rem;
}
header .menu_area ul li:nth-of-type(1) a {
  padding-top: 1.9rem;
}
header .menu_area ul li:nth-of-type(4) a {
  /* padding-right: 4.8rem; */
  /* ヘッダーメニュー数が4つの場合に使っていた？一旦不要 */
}
/* PC専用：メニューリンクホバー */
header .menu_area ul li a.menu span{
  position: relative;
  transition: 0.3s;
}
header .menu_area ul li a.menu span::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 0;
  height: 0.2rem;
  transition: 0.3s;
}
header .menu_area ul li a.menu span:hover::before{
  width: 100%;
}

header .menu_area ul li a.btn_entry {
  width: 13.6rem;
  height: 5.6rem;
  margin-top: 0;
}
header .menu_button_area {
  display: none;
}

/* FV */
#fv-part {
  height: 80.0rem;
}
#fv-part .inner_content {
  max-width: none;
  padding-top: 5.6rem;
}
#fv-part .title_area {
  top: 35.4rem;
  left: 12%;
}
#fv-part .title_area h1 {
  font-size: 8.0rem;
  line-height: 1.2;
  letter-spacing: 1.28rem; /* calc( 8.0 * (16/100))rem */
}
#fv-part .title_area h1 .bigger {
  font-size: 11.2rem;
  line-height: 1.2;
}
#fv-part .title_area h2 {
  padding-top: 3.2rem;
  font-size: 3.2rem;
}
#fv-part .image_area {
}
#fv-part .image_area img {
  width: 100%;
  height: 50.0rem;
  object-fit: cover;
}
#fv-part .image_area img.fv_s {
  display: none;
}
#fv-part .image_area img.fv_m {
  display: none;
}
#fv-part .image_area img.fv_l {
  display: block;
}

/* メッセージ */
#messages-part {
}
#messages-part .inner_content {
  padding-top: 28.0rem;
}
#messages-part::before {
  background-image: url('../images/lp/for_the_future.png');
}
#messages-part::after {
}
#messages-part .inner_content {
  margin-left: 18.3rem;
  margin-right: auto;
}
#messages-part hr {
  width: 14.0rem;
  border-width: 0.5px;
  top: calc(28.0rem + 4rem);
  left: 0;
}
#messages-part .title_area h1 {
  padding-bottom: 9.6rem;
}
#messages-part .text_area {
}

/* 事業内容 */
#business-part {
  padding-top: 6.60rem;
}
#business-part .title_area h1 {
  /* text-align: right; */
}
#business-part .inner_content {
  width: 90.0rem; /* width: calc((28.4rem * 3) + (2.4rem * 2)); */
  margin-left: auto;
  margin-right: 8.0rem;
}
#business-part .text_area {
  padding-bottom: 4.8rem;
}
#business-part .unit_area {
  gap: 2.4rem;
}
#business-part .unit_area {
}
#business-part .unit_area .unit {
  width: 28.4rem;
  height: 28.4rem;
}
#business-part .unit_area .unit h1 {
  width: 22.2rem;
  font-size: 2.0rem;
  top: 3.2rem;
}

/* Service */
.diagram_area {
  display: flex;
  justify-content: space-between;
  padding: 2.0rem;
}
.diagram_area figure {
  flex-shrink: 0;
  width: 50%;
  margin: auto 0;
}
.diagram_area .accordion_area {
  width: 46%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem 0;
}
.diagram_area .accordion {
  flex-shrink: 0;
  position: relative;
  border-bottom: none;
  padding: 1.0rem;
}
.diagram_area .accordion::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: overlay;
  backdrop-filter: blur(4.0px);
  -webkit-backdrop-filter: blur(4.0px);
  background: rgba(180, 180, 180, 0.3); /* rgba(255, 255, 255, 1.0); */
  border-radius: 1.0rem;
  z-index: -1;
}
.diagram_area .accordion .openOrClose {
  display: none;
}
.diagram_area .accordion h3 {
  font-size: 1.2rem;
}
.diagram_area .accordion .explanation {
  display: block;
  font-size: 0.9rem;
  margin-top: 0.4rem;
}

#initiatives-part .inner_content {
  width: calc(100vw - 8.0rem); /* width: calc((23.2rem * 4) + (2.4rem * 2) - 8.0rem); */
  margin-left: 8.0rem;
  margin-right: auto;
}
#initiatives-part .unit_area .unit {
  display: block;
}
#initiatives-part .unit_area .unit .image_area {
  width: 21.4rem; /* width: 26.0rem; */
  height: 18.0rem;
  padding-top: 0.6rem;
  padding-right: 2.4rem;
  padding-bottom: 2.4rem;
  float: left;
}
#initiatives-part .unit_area .unit .title_area {
  width: calc(100% - (18.0rem + 2.4rem));
  padding-bottom: 1.6rem;
}
#initiatives-part .unit_area .unit .title_area h1 {
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  padding-bottom: 0;
  height: auto;
}
#initiatives-part .unit_area .unit .text_area {
  width: calc(100% - (18.0rem + 2.4rem));
}
#initiatives-part .unit_area .unit .text_area p {
  font-size: 1.6rem;
}

/* インフォグラフィックス */
#infographics-part .inner_content {
  width: 100%;
  margin-left: auto;
  margin-right: 8.0rem;
}
#infographics-part h1 {
  text-align: right;
}
#infographics-part .image_area {
  justify-content: flex-end;
  gap: 2.4rem;
}
#infographics-part .image_area .image {
  width: 23.2rem;
  height: 23.2rem;
}
#infographics-part .image_area .image_large {
  width: 48.8rem;
  height: 23.2rem;;
}
#infographics-part .image_area .decoration .triangle {
  width: 23.2rem;
  height: 23.2rem;
}

/* 社員の特徴 */
#positive-employee-part hr {
  width: 14.0rem;
  border-width: 0.5px;
  top: calc(16.0rem + 4rem);
  left: 0;
}

}

/* 特殊ブレイクポイント:1024px以上1315px以下 */
@media screen and (min-width:1024px) and (max-width:1315px) {
/* インフォグラフィックス */
#infographics-part .image_area .temporary_02 {
    display: block;
}
}

/*==================================================
iPad Pro 12.9インチ の Portrait 横幅 1024px 高さ 1366px
==================================================*/
@media screen and (width:1024px) and (height:1366px) {
	
}


/*==================================================
iPad Pro 10.5インチ の Landscape 横幅 1112px
==================================================*/
@media screen and (min-width:1112px) {
}

/* 特殊ブレイクポイント:1316px以上 */
@media screen and (min-width:1316px) {
  /* インフォグラフィックス */
  #infographics-part .image_area .for_pc {
    display: block;
  }
}

/*==================================================
iPad Pro 12.9インチ の Landscape 横幅 1366px 高さ 1024px
==================================================*/
@media screen and (width:1366px) and (height:1024px) {
}


/*==================================================
PC 1366px 以上
==================================================*/
@media screen and (min-width:1366px) {
}
/*==================================================
プリントアウト
==================================================*/
@media print {

}
