@charset "UTF-8";
body {
  max-width: 1000px;
  height: 700px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body .container {
  background-color: #fff;
  padding: 15px;
}
body .container header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  margin-bottom: 10vh;
}
body .container header .site_Logo img {
  width: 100%;
}
@media screen and (max-width: 999px) {
  body .container header .site_Logo img {
    width: 200px;
  }
}
body .container main {
  background-image: url("img/notepc_simple-1.png");
  background-position: bottom 50px right 0px;
  background-repeat: no-repeat;
  background-size: 55%;
}
@media screen and (max-width: 999px) {
  body .container main {
    background-size: 300px;
    background-position: center;
  }
}
body .container main .main_Hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body .container main .side_Nave {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 999px) {
  body .container main .side_Nave {
    display: none;
  }
}
body .container main .side_Nave .menu_Line {
  width: 100px;
  border-top: 1px solid #000;
}
body .container main .side_Nave .menu_Text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  animation: floating-y 0.8s ease-in-out infinite alternate-reverse;
}
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(-2%);
            transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(-2%);
            transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
body .container main .side_Nave .menu_Text p {
  font-size: 1.5rem;
}
body .container main .main_Content {
  width: 100%;
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-transition: opacity 1.5s, -webkit-transform 1s;
  transition: opacity 1.5s, -webkit-transform 1s;
  transition: opacity 1.5s, transform 1s;
  transition: opacity 1.5s, transform 1s, -webkit-transform 1s;
}
body .container main .main_Content.active {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
body .container main .main_Content p {
  text-align: right;
  font-size: 3rem;
  margin: 0;
}
@media screen and (max-width: 999px) {
  body .container main .main_Content p {
    display: none;
  }
}
body .container main .main_Content .tb {
  display: none;
  margin-bottom: 100px;
}
@media screen and (max-width: 999px) {
  body .container main .main_Content .tb {
    display: block;
    font-size: 5vw;
    text-align: center;
  }
}
body .container main .main_Content span {
  display: block;
  margin: 0 auto;
  width: 80%;
  padding-bottom: 600px;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 999px) {
  body .container main .main_Content span {
    padding-bottom: 300px;
  }
}

/* ===============================================
ハンバーガーボタンのスタイリング
=============================================== */
.hamburger {
  width: 50px;
  height: 80px;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background-color: #fff;
  cursor: pointer;
  z-index: 300;
  background-color: #fff;
}

.hamburger span,
.hamburger span::after,
.hamburger span::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #000;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.hamburger span::before {
  top: -10px;
}

.hamburger span::after {
  bottom: -10px;
}

.hamburger.open span {
  background-color: transparent;
}

.hamburger.open span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.open span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* ===============================================
メニューのスタイリング
=============================================== */
.nav {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  right: -120%;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
}
.nav .nav_List {
  margin-top: 150px;
}
.nav .nav_Item {
  margin: 25px 0;
}
.nav .nav_Item a {
  display: block;
  font-size: 30px;
  color: #000;
  text-decoration: none;
  padding: 20px 0 20px 50px;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 999px) {
  .nav .nav_Item a {
    font-size: 20px;
    padding: 20px 0;
  }
}
.nav .nav_Item a:hover {
  background-color: #000;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.nav.open {
  right: 0;
  opacity: 0.9;
}

/* ===============================================
セクションのスタイリング
=============================================== */
section {
  margin-top: 100px;
}
@media screen and (max-width: 999px) {
  section {
    margin-top: 80px;
  }
}
section .section_Whole {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section .side_Nave {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 999px) {
  section .side_Nave {
    display: none;
  }
}
section .side_Nave .menu_Line {
  width: 100px;
  border-top: 1px solid #000;
}
section .side_Nave .menu_Text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  animation: floating-y 0.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(-2%);
            transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
section .side_Nave p {
  font-size: 1.5rem;
}
section .section_Content {
  width: 55%;
  margin: 0 auto;
  margin-top: 80px;
}
@media screen and (max-width: 999px) {
  section .section_Content {
    width: 80%;
    margin-top: 0px;
  }
}
section .section_Content h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 999px) {
  section .section_Content h2 {
    font-size: 1.5rem;
  }
}
section .section_Content h3 {
  margin-bottom: 50px;
  line-height: 2;
  font-size: 1.5rem;
}
@media screen and (max-width: 999px) {
  section .section_Content h3 {
    font-size: 1rem;
  }
}
section .section_Content p {
  margin-bottom: 50px;
  font-size: 16px;
  line-height: 2;
}
section .section_Content span {
  display: block;
  margin: 0 auto;
  width: 80%;
  padding-bottom: 200px;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 999px) {
  section .section_Content span {
    padding-bottom: 100px;
    width: 100%;
  }
}
section .section_Content .contact_Form {
  color: #000;
}
section .section_Content .contact_Form:hover {
  color: rgb(146, 146, 146);
}

.top_Sec1 {
  background-image: url("img/creative_simple.png");
  background-position: bottom 50px right 0px;
  background-repeat: no-repeat;
  background-size: 30%;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}
@media screen and (max-width: 999px) {
  .top_Sec1 {
    background-image: url("img/creative_mono.png");
    background-size: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    background-position: center;
  }
}

.top_Sec2 {
  background-image: url("img/cameraman_color.png");
  background-position: bottom 500px right 0px;
  background-repeat: no-repeat;
  background-size: 25%;
  background-color: rgba(255, 255, 255, 0.9);
  background-blend-mode: lighten;
}
@media screen and (max-width: 999px) {
  .top_Sec2 {
    background-image: url("img/cameraman_mono.png");
    background-size: 40%;
    background-color: rgba(255, 255, 255, 0.9);
    background-position: bottom 0px right 100px;
  }
}

.top_Sec3 {
  background-image: url("img/money_simple.png");
  background-position: bottom 50px right 0px;
  background-repeat: no-repeat;
  background-size: 25%;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}
@media screen and (max-width: 999px) {
  .top_Sec3 {
    background-image: url("img/money_mono.png");
    background-color: rgba(255, 255, 255, 0.9);
    background-size: 30%;
    background-position: center right 100px;
  }
}

.top_Sec4 {
  background-image: url("img/letter_simple.png");
  background-position: bottom 0px right 0px;
  background-repeat: no-repeat;
  background-size: 15%;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}
@media screen and (max-width: 999px) {
  .top_Sec4 {
    background-image: url("img/letter_mono.png");
    background-color: rgba(255, 255, 255, 0.9);
    background-size: 20%;
    background-position: bottom 0px right 100px;
  }
}
.top_Sec4 .section_Whole {
  padding-bottom: 50px;
  margin-bottom: 100px;
  background-size: 30%;
}

/* ===============================================
フッターのスタイリング
=============================================== */
footer {
  padding-top: 50px;
  padding-bottom: 100px;
  border-top: 1px solid #000;
}
@media screen and (max-width: 999px) {
  footer {
    padding-bottom: 10px;
  }
}
footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 600px) {
  footer ul {
    display: block;
  }
}
footer ul li {
  list-style: none;
  font-size: 1.5rem;
}
@media screen and (max-width: 999px) {
  footer ul li {
    font-size: 1rem;
    padding: 10px 0;
  }
}
footer ul li a {
  text-decoration: none;
  color: #000;
  padding: 10px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
footer ul li a:hover {
  background-color: #000;
  color: #fff;
  border-radius: 100%;
}
footer ul li:first-child {
  font-size: 3rem;
}
@media screen and (max-width: 999px) {
  footer ul li:first-child {
    font-size: 2rem;
  }
}

/* ===============================================
アコーディオンメニュー
=============================================== */
.accordion-btn {
  cursor: pointer;
  padding: 10px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #bdeef7));
  background: linear-gradient(transparent 70%, #bdeef7 0%);
}
.accordion-btn:hover {
  opacity: 0.5;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.accordion-content {
  padding: 10px;
  margin-bottom: 20px;
}
.accordion-content .accordion_Answer {
  margin-bottom: 0px;
}

.print_Accordion {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, rgb(245, 246, 198)));
  background: linear-gradient(transparent 70%, rgb(245, 246, 198) 0%);
}

.video_Accordion {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, rgb(174, 239, 150)));
  background: linear-gradient(transparent 70%, rgb(174, 239, 150) 0%);
}