@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
/* @import "_vars.scss"; */
/* width */
/* color */
/* mixin */
/* @include circle; */
/* @include absPosition(5px, 20px, 10px, 15px); */
/*サイトのメインカラー*/
@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
    text-shadow: 0 0 2px #00f2ff, 0 0 5px #00f2ff, 0 0 12px #00f2ff, 0 0 40px rgba(0, 242, 255, 0.5);
  }
  20%, 22%, 24%, 55% {
    opacity: 0.8;
    text-shadow: none;
  }
}
/**

  @mixin
---------------------------------------------------------
  _clearfix.scss
--------------------------------------------------------
  Use @include clearfix(); in your CSS
  Use @include before(); in your CSS
--------------------------------------------------------- */
/**
  @breakpoints mixin
-----------------------------------------------------
@include for-size(phone-only){}
@include for-size(tablet-portrait-up){}
@include for-size(tablet-landscape-up){}
@include for-size(desktop){}
@include for-size(desktop-up){}
-----------------------------------------------------  
@mixin for-size($size) {
  @if $size == phone-only {//スマホオンリー
    @media all and  (max-width: 640px) { @content; }
  } @else if $size == tablet-portrait-up {
    @media all and  (min-width: 639px) { @content; }
  } @else if $size == tablet-landscape-up {
    @media all and  (min-width: 885px) { @content; }
  }  @else if $size == desktop { 
    @media all and  (min-width: 1000px) { @content; }
  }  @else if $size == desktop-up { 
    @media all and  (min-width: 1300px) { @content; }
  } 
}*/
/**
  @breakpoints mixin (PC-first)
-----------------------------------------------------

-----------------------------------------------------  */
/**
  @bgimg.scss bgimg 
--------------------------------------------------------
  Use @include bgimg(); in your CSS
--------------------------------------------------------- */
/**
  @fonts.scss fonts 
--------------------------------------------------------
@include sec-read(); 
@include base-text($size); 

@include base-text_2($size); 

@include base-text_en($size); 
@include base-text_link(); 

in your CSS
--------------------------------------------------------- */
/**
  @align-height
--------------------------------------------------------
@include align-height(); in your CSS
--------------------------------------------------------- */
/*----------------------------------------------------
レイアウトのみ
-------------------------------------------------------*/
.innerA {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.innerA .left_s {
  width: 30%;
  float: left;
}
.innerA .right_l {
  width: 66%;
  float: left;
  margin-left: 4%;
}

/*----------------------------------------------------
レイアウトのみ
-------------------------------------------------------*/
.innerB {
  display: table;
  width: 100%;
  table-layout: fixed;
}
@media all and (max-width: 639px) {
  .innerB {
    display: block;
  }
}
.innerB .left,
.innerB .right {
  width: 48%;
  float: left;
}
@media all and (max-width: 639px) {
  .innerB .left,
  .innerB .right {
    width: 100%;
    float: none;
  }
}
.innerB .right {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .innerB .right {
    margin-left: 0;
    margin-top: 15px;
  }
}
.innerB .left_s {
  width: 30%;
  float: left;
}
@media all and (max-width: 639px) {
  .innerB .left_s {
    width: 100%;
    float: none;
  }
}
.innerB .right_l {
  width: 66%;
  float: left;
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .innerB .right_l {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
    float: none;
  }
}

.innerC {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.innerC .left,
.innerC .right {
  width: 48%;
  float: left;
}
.innerC .right {
  margin-left: 4%;
}
.innerC .left_s {
  width: 30%;
  float: left;
}
.innerC .right_l {
  width: 66%;
  float: left;
  margin-left: 4%;
}

/*-----------------------------------------------------------------------------
ぶろぐ
<section id="entry" class="common_page__sec">
 <div class="single">
 <div class="nakaA">
  <h3>新着情報</h3>
  <div class="entry__cotent">
   <p class="data"><span>2018.09.20</span></p>
   <p class="entry__title">
   タイトルホームページを公開致しました</p>

   <div class="entry__cotent__text">
   本文ホームページを公開致しました</div>
   </div>
  </div>
 </div>
</section>
--------------------------------------------------------------------------------*/
#entry {
  padding-bottom: 80px;
}
#entry .entry__cotent {
  background: #fff;
  padding: 30px;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
}
@media all and (max-width: 821px) {
  #entry .entry__cotent {
    padding: 15px;
  }
}
#entry .entry__cotent .data span {
  background: #d8d8d8;
  padding: 0.3em 0.5em;
}
#entry .entry__cotent .page_sec_title {
  margin: 10px 0;
  border-bottom: 1px solid #191919;
}
@media all and (max-width: 821px) {
  #entry .entry__cotent .entry__cotent__text {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
下層ページ　ページ看板共通
ページ共通
<div id="page_top">
    <div class="box">
     <div class="nakaA">
      <h2 class="page__title">
       会社概要
       <span>Company</span>
      </h2>
     </div>
    </div>
   </div>

#page_top{
 @include page_top();
}
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
下層ページ　コンテンツレイアウト(左右半々)
ページ共通
----HTML---------------------------------------------------------------
<div class="listA">
 <div class="listA__item">
  <div class="listA__item__inner">
   <div class="listA__item__inner__left">
    <img src="https://placehold.jp/150x150.png" alt="">
   </div>
   <div class="listA__item__inner__right">
    <p class="listA__item__read">
     タイトル
    </p>
    <p class="listA__item__text">
     本文
    </p>
   </div>
  </div>
 </div>
 <div class="listA__item">
  <div class="listA__item__inner">
   <div class="listA__item__inner__left">
    <img class="_sp" src="https://placehold.jp/150x150.png" alt="">
    <p class="listA__item__read">
     タイトル
    </p>
    <p class="listA__item__text">
     本文
    </p>
   </div>
   <div class="listA__item__inner__right">
    <img src="https://placehold.jp/150x150.png" alt="">
   </div>
  </div>
 </div>
</div>
-----css--------------------------------------------------------------
.listA{
 @include sec_content_listA();
}
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
下層ページ　ページ看板共通
ページ共通
<div id="page_top">
    <div class="box">
     <div class="nakaA">
      <h2 class="page__title">
       会社概要
       <span>Company</span>
      </h2>
     </div>
    </div>
   </div>

#page_top{
 @include page_top();
}
-------------------------------------------------------------------*/
/*------------------------------------------------------
下層ページパンくず共通
<div id="pankuzu_list">
    <div class="box">
     <div class="nakaA">
      <ul>
       <li>
        <a href="">TOP</a>
       </li>
       <li>会社概要</li>
      </ul>
     </div>
    </div>
   </div>

#pankuzu_list{
 @include pankuzu_list();
}
 in your CSS
-------------------------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  color: #111;
  font-size: 1rem;
  *font-size: small;
  *font: x-small;
  line-height: 1.8;
  margin: 0 auto;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 500;
}

#body {
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
}
@media all and (max-width: 639px) {
  #body {
    overflow: hidden;
  }
}

#page {
  display: flex;
  flex-direction: column;
}

a:link, a:visited, a:hover {
  color: #39a4af;
  text-decoration: none;
}

.tbox {
  border: 2px solid #39a4af;
  padding: 15px;
  width: calc(100% - 34px);
}

.sign_ttl {
  border-bottom: 1px solid #111;
  font-size: 1.5rem;
  padding: 5px 0;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}

/* /dropdownmenu */
.sp {
  display: none;
}

.pc {
  display: block;
  margin: 0 auto;
}

.map {
  width: 100%;
  height: 450px;
}

/*link*/
/*containar*/
#contentwrap {
  width: 100%;
  flex: 1 1 auto;
  background-size: 160px;
  position: relative;
}

.single {
  position: relative;
  width: 1160px;
  margin: 0 auto;
  padding: 80px 0;
}

/* mailform */
.form {
  margin: 10px 0 10px;
}
.form dt span {
  color: #fff;
  background: #ff4f4f;
  padding: 0 5px 0;
  margin-right: 5px;
  font-size: 1.1rem;
  border-radius: 2px;
  position: relative;
  top: -2px;
}
.form dl {
  margin: 10px 0;
  font-size: 1.6rem;
}
.form dt {
  float: left;
  width: 280px;
  padding-top: 20px;
}
.form dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px solid #eee;
}
.form dd p {
  padding-top: 5px;
  color: #888;
}
.form dd:last-child {
  border-bottom: 0px;
  margin-bottom: 0px;
}

.textarea,
textarea,
.dropdown {
  border-radius: 2px;
  border: 1px solid #ddd;
}

.textarea {
  border-radius: 2px;
  border: 1px solid #ddd;
  height: 30px;
  padding: 0 5px;
}

.form-button {
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  margin: 10px 0;
}

#mailform button {
  cursor: pointer;
  display: block;
  margin: 0 auto 5px;
  padding: 10px 0 10px;
  color: #fff;
  text-align: center;
  width: 250px;
  border-radius: 30px;
  background: #191919;
  font-weight: bold;
  border: 2px solid #191919;
}
#mailform button:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 6px;
}
#mailform button:hover {
  background: #fff;
  color: #191919;
}
#mailform button * {
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.form-button * {
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

/*Radio Text*/
label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}
label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 3px;
  top: 5px;
  background-color: #64bcff;
  z-index: 1;
}
label.radio_text input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  box-shadow: 20px -1px #fff;
}
label.radio_text input[type=radio]:checked {
  box-shadow: none;
}
label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 20px -1px #fff;
}
label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-right: 20px;
  overflow: hidden;
  display: inline-block;
  box-sizing: border-box;
}
label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
}
label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #39a4af;
  border-bottom: 3px solid #39a4af;
  transform: rotate(45deg);
  z-index: 1;
}
label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
label.checkbox_text input[type=checkbox]:focus {
  box-shadow: 41px 0px #eee;
}

.fm-text {
  padding: 10px;
  margin: 10px 0;
  text-align: center;
}

/*共通ルール*/
.single_new {
  width: 95%;
  margin: auto;
}
@media all and (max-width: 639px) {
  .single_new {
    width: 95%;
  }
}

div,
section {
  box-sizing: border-box;
}

@media all and (max-width: 1400px) {
  .single {
    width: 95%;
  }
}

/*-------------------------------------------
TOP
-------------------------------------------*/
#cursor-outline {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid #2563eb;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s;
}

#cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background-color: #2563eb;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
}

.scanner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  background: radial-gradient(circle 350px at var(--x, 50%) var(--y, 50%), rgba(37, 99, 235, 0.1) 0%, rgba(5, 5, 5, 0.6) 80%, rgba(5, 5, 5, 0.9) 100%);
}

#hiro_m {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
#hiro_m .hiro_m_cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  opacity: 1;
  -webkit-mask-image: radial-gradient(circle 200px at var(--rel-x, 50%) var(--rel-y, 50%), rgb(0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 80%);
  mask-image: radial-gradient(circle 200px at var(--rel-x, 50%) var(--rel-y, 50%), rgb(0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 80%);
}
@media (hover: none) {
  #hiro_m .hiro_m_cont {
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
}
#hiro_m .category-label {
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 100;
  color: #ccc;
  letter-spacing: 0.09em;
}
#hiro_m .scramble-text {
  text-align: center;
  color: #ccc;
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 70px;
  font-size: 7rem;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.scramble-btn {
  padding: 1rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(37, 99, 235, 0.05);
  font-family: "Cinzel", serif;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  margin: 40px auto 0;
  display: table;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 100;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.6), 0 0 2px rgba(37, 99, 235, 0.4), inset 0 0 8px rgba(37, 99, 235, 0.3);
  text-shadow: 0 0 10px rgba(37, 99, 235, 0.8);
  position: relative;
  overflow: hidden;
}
.scramble-btn:hover {
  background-color: rgba(37, 99, 235, 0.2);
  border-color: #fff;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.8), 0 0 40px rgba(37, 99, 235, 0.3), inset 0 0 15px rgba(37, 99, 235, 0.5);
  transform: translateY(-2px);
}

#cyber-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #050505;
  background-image: linear-gradient(rgba(37, 99, 235, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 99, 235, 0.15) 1px, transparent 1px);
  background-size: 40px 40px;
}

footer .copy {
  color: #fff;
  text-align: right;
  padding-right: 20px;
  padding-bottom: 20px;
  opacity: 0.6;
}

.hamburger {
  display: none;
}
@media (max-width: 1024px) {
  .hamburger {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 10001;
    cursor: pointer;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    top: 11px;
  }
  .hamburger span:nth-child(3) {
    top: 22px;
  }
  .hamburger.is-active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
}

/*--------------------------------------------------
下層ページ共通
----------------------------------------------------*/
.site-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #191919;
}

.global-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #111;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.global-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 100%;
}
.global-header .header-inner .logo {
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ccc;
}
.global-header .header-inner .breadcrumb {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 200;
  color: #888;
  letter-spacing: 0.05em;
}

.content-wrapper {
  display: flex;
  margin-top: 80px;
  background: #191919;
}

.side-menu {
  width: 260px;
  height: calc(100vh - 80px);
  position: fixed;
  left: 0;
  top: 80px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 60px 40px;
  box-sizing: border-box;
  z-index: 10000;
  background: #191919;
}
@media (max-width: 1024px) {
  .side-menu {
    top: 0;
    height: 100vh;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .side-menu.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
}
.side-menu ul {
  padding: 0;
}
@media (max-width: 1024px) {
  .side-menu ul {
    text-align: center;
  }
}
.side-menu ul li {
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .side-menu ul li {
    margin-bottom: 40px;
  }
}
.side-menu ul li a {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
  display: block;
}
.side-menu ul li a .num {
  font-size: 14px;
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .side-menu ul li a {
    margin-right: 10px;
  }
}
.side-menu ul li a:hover, .side-menu ul li a.active {
  color: #fff;
  text-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

.main-content {
  flex: 1;
  margin-left: 260px;
  padding: 160px 0;
  position: relative;
  background: #191919;
  overflow: hidden;
}
.main-content #particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}
.main-content .content-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  width: 90%;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .side-menu {
    display: none;
  }
  .main-content {
    margin-left: 0;
  }
  .main-content .content-inner {
    margin: 0 auto;
  }
}
/*--------------------------------------------------
COMPANY(company.php)
----------------------------------------------------*/
#company_1 .read {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 51px;
  font-size: 5.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #00f2ff;
  text-shadow: 0 0 2px #00f2ff, 0 0 5px #00f2ff, 0 0 12px #00f2ff, 0 0 40px rgba(0, 242, 255, 0.5);
  animation: neon-flicker 4s infinite alternate;
}
@media all and (max-width: 639px) {
  #company_1 .read {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-size: 31px;
    font-size: 3.1rem;
    text-shadow: 0 0 5px #00f2ff, 0 0 15px rgba(0, 242, 255, 0.7);
  }
}
#company_1 .inner {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media all and (max-width: 639px) {
  #company_1 .inner {
    display: block;
  }
}
@media all and (max-width: 639px) {
  #company_1 .inner .in_left {
    width: 100%;
  }
}
#company_1 .inner .in_left table th,
#company_1 .inner .in_left table td {
  background: none;
  border: none;
  color: #ecece7;
  text-align: left;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 5px 0;
}
@media all and (max-width: 639px) {
  #company_1 .inner .in_left table th,
  #company_1 .inner .in_left table td {
    font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;
  }
}
#company_1 .inner .in_left table th {
  padding-right: 20px;
}
#company_1 .inner .in_right {
  margin-left: 140px;
  padding-top: 30px;
}
@media all and (max-width: 639px) {
  #company_1 .inner .in_right {
    margin: 30px 0 0;
  }
}
#company_1 .inner .in_right img {
  display: block;
  max-width: 196px;
  width: 100%;
}
@media all and (max-width: 639px) {
  #company_1 .inner .in_right img {
    margin: auto;
  }
}

#company_2 {
  margin-top: 100px;
}
#company_2 .read {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 51px;
  font-size: 5.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #00f2ff;
  text-shadow: 0 0 2px #00f2ff, 0 0 5px #00f2ff, 0 0 12px #00f2ff, 0 0 40px rgba(0, 242, 255, 0.5);
  animation: neon-flicker 4s infinite alternate;
}
@media all and (max-width: 639px) {
  #company_2 .read {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-size: 31px;
    font-size: 3.1rem;
    text-shadow: 0 0 5px #00f2ff, 0 0 15px rgba(0, 242, 255, 0.7);
  }
}
#company_2 .main {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #ecece7;
  margin-top: 30px;
  width: 80%;
  line-height: 2.3em;
}
@media all and (max-width: 639px) {
  #company_2 .main {
    width: 100%;
    font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;
  }
}
#company_2 .main span {
  display: block;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 20px;
}
@media all and (max-width: 639px) {
  #company_2 .main span {
    font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
    font-size: 23px;
    font-size: 2.3rem;
    font-weight: 500;
  }
}

/*--------------------------------------------------
PRODUCT(product.php)
----------------------------------------------------*/
#product_1 .read {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 51px;
  font-size: 5.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #00f2ff;
  text-shadow: 0 0 2px #00f2ff, 0 0 5px #00f2ff, 0 0 12px #00f2ff, 0 0 40px rgba(0, 242, 255, 0.5);
  animation: neon-flicker 4s infinite alternate;
}
@media all and (max-width: 639px) {
  #product_1 .read {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-size: 31px;
    font-size: 3.1rem;
    text-shadow: 0 0 5px #00f2ff, 0 0 15px rgba(0, 242, 255, 0.7);
  }
}
#product_1 .list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}
@media all and (max-width: 639px) {
  #product_1 .list {
    display: block;
  }
}
#product_1 .list li {
  width: 48%;
  background: #262626;
  padding: 50px;
  box-sizing: border-box;
}
@media all and (max-width: 639px) {
  #product_1 .list li {
    width: 100%;
    padding: 40px 20px;
    margin-bottom: 50px;
  }
}
#product_1 .list li:nth-child(even) {
  margin-left: auto;
}
#product_1 .list li:nth-child(n+3) {
  margin-top: 60px;
}
@media all and (max-width: 639px) {
  #product_1 .list li:nth-child(n+3) {
    margin-top: 0;
  }
}
#product_1 .list li .product_1_item_no {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #2563eb;
}
@media all and (max-width: 639px) {
  #product_1 .list li .product_1_item_no {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#product_1 .list li .product_1_item_read {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #ecece7;
  margin-top: 10px;
  border-bottom: 1px solid #6b6b6b;
  padding-bottom: 30px;
  margin-top: 16px;
}
@media all and (max-width: 639px) {
  #product_1 .list li .product_1_item_read {
    font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 500;
  }
}
#product_1 .list li .product_1_item_read span {
  display: block;
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 19px;
  font-size: 1.9rem;
  margin-bottom: 10px;
}
@media all and (max-width: 639px) {
  #product_1 .list li .product_1_item_read span {
    font-family: "Cinzel", serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 28px;
    font-size: 2.8rem;
  }
}
#product_1 .list li .product_1_item_desc {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #ecece7;
  margin-top: 30px;
}
@media all and (max-width: 639px) {
  #product_1 .list li .product_1_item_desc {
    width: 100%;
    font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;
  }
}

#product_2 {
  margin-top: 150px;
}
#product_2 .read {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 51px;
  font-size: 5.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #00f2ff;
  text-shadow: 0 0 2px #00f2ff, 0 0 5px #00f2ff, 0 0 12px #00f2ff, 0 0 40px rgba(0, 242, 255, 0.5);
  animation: neon-flicker 4s infinite alternate;
}
@media all and (max-width: 639px) {
  #product_2 .read {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-size: 31px;
    font-size: 3.1rem;
    text-shadow: 0 0 5px #00f2ff, 0 0 15px rgba(0, 242, 255, 0.7);
  }
}
#product_2 .read {
  margin-bottom: 50px;
}
#product_2 .product_2_item {
  position: relative;
  background: #262626;
  padding: 0 50px 50px;
  box-sizing: border-box;
}
@media all and (max-width: 639px) {
  #product_2 .product_2_item {
    padding: 0 20px 50px;
  }
}
#product_2 .product_2_item:nth-child(n+2) {
  margin-top: 70px;
}
#product_2 .product_2_item:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 100%;
  height: 50px;
  background: #191919;
  left: 0;
  top: 0;
}
#product_2 .product_2_item .inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #product_2 .product_2_item .inner {
    display: block;
  }
}
#product_2 .product_2_item .inner .in_photo {
  width: 30%;
}
@media all and (max-width: 639px) {
  #product_2 .product_2_item .inner .in_photo {
    display: none;
  }
}
#product_2 .product_2_item .inner .in_photo img {
  display: block;
  width: 100%;
}
#product_2 .product_2_item .inner .in_text {
  width: 66%;
  padding-top: 100px;
}
@media all and (max-width: 639px) {
  #product_2 .product_2_item .inner .in_text {
    width: 100%;
    padding-top: 20px;
  }
}
#product_2 .product_2_item .inner .in_text img._sp {
  display: none;
}
@media all and (max-width: 639px) {
  #product_2 .product_2_item .inner .in_text img._sp {
    display: block;
    width: 100%;
    margin-bottom: 40px;
  }
}
#product_2 .product_2_item .inner .right {
  margin-left: auto;
}
#product_2 .product_2_item .product_2_item_no {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
  color: #ecece7;
  letter-spacing: 0.05em;
}
@media all and (max-width: 639px) {
  #product_2 .product_2_item .product_2_item_no {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#product_2 .product_2_item .product_2_item_read {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 500;
  color: #ecece7;
  margin-top: 10px;
}
@media all and (max-width: 639px) {
  #product_2 .product_2_item .product_2_item_read {
    font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 500;
  }
}
#product_2 .product_2_item .product_2_item_desc {
  margin-top: 20px;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2em;
  color: #ecece7;
}
@media all and (max-width: 639px) {
  #product_2 .product_2_item .product_2_item_desc {
    font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 500;
  }
}

/*--------------------------------------------------
DEVELOPMENT(development.php)
----------------------------------------------------*/
#development_1 .read {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 51px;
  font-size: 5.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #00f2ff;
  text-shadow: 0 0 2px #00f2ff, 0 0 5px #00f2ff, 0 0 12px #00f2ff, 0 0 40px rgba(0, 242, 255, 0.5);
  animation: neon-flicker 4s infinite alternate;
}
@media all and (max-width: 639px) {
  #development_1 .read {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-size: 31px;
    font-size: 3.1rem;
    text-shadow: 0 0 5px #00f2ff, 0 0 15px rgba(0, 242, 255, 0.7);
  }
}
#development_1 .read {
  margin-bottom: 50px;
}
#development_1 .main {
  margin-top: 70px;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #ecece7;
  line-height: 2.3em;
}
@media all and (max-width: 639px) {
  #development_1 .main {
    font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;
  }
}
#development_1 .main span {
  display: table;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 500;
  border-bottom: 1px solid #ecece7;
  margin-bottom: 20px;
}
@media all and (max-width: 639px) {
  #development_1 .main span {
    font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 500;
  }
}
#development_1 .cap-list {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #development_1 .cap-list {
    display: block;
  }
}
#development_1 .cap-list li {
  width: 33.3333%;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #ecece7;
  margin-bottom: 10px;
}
@media all and (max-width: 639px) {
  #development_1 .cap-list li {
    width: 100%;
  }
}

#development_2 {
  margin-top: 150px;
}
#development_2 .read {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 51px;
  font-size: 5.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #00f2ff;
  text-shadow: 0 0 2px #00f2ff, 0 0 5px #00f2ff, 0 0 12px #00f2ff, 0 0 40px rgba(0, 242, 255, 0.5);
  animation: neon-flicker 4s infinite alternate;
}
@media all and (max-width: 639px) {
  #development_2 .read {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-size: 31px;
    font-size: 3.1rem;
    text-shadow: 0 0 5px #00f2ff, 0 0 15px rgba(0, 242, 255, 0.7);
  }
}
#development_2 .flow {
  margin-top: 50px;
}
#development_2 .flow li {
  background: #262626;
  padding: 50px 100px;
  box-sizing: border-box;
}
@media all and (max-width: 639px) {
  #development_2 .flow li {
    padding: 50px 10px;
  }
}
#development_2 .flow li:nth-child(n+2) {
  margin-top: 30px;
}
#development_2 .flow li .inenr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 639px) {
  #development_2 .flow li .inenr {
    display: block;
  }
}
#development_2 .flow li .inenr .in_left {
  width: 30%;
}
@media all and (max-width: 639px) {
  #development_2 .flow li .inenr .in_left {
    width: 100%;
  }
}
#development_2 .flow li .inenr .in_right {
  width: 60%;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #development_2 .flow li .inenr .in_right {
    width: 100%;
  }
}
#development_2 .flow li .flow_list_no {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #2563eb;
}
@media all and (max-width: 639px) {
  #development_2 .flow li .flow_list_no {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#development_2 .flow li .flow_list_read {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #ecece7;
  margin-top: 20px;
}
@media all and (max-width: 639px) {
  #development_2 .flow li .flow_list_read {
    font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 500;
  }
}
#development_2 .flow li .flow_list_read span {
  display: block;
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 26px;
  font-size: 2.6rem;
  margin-bottom: 10px;
}
@media all and (max-width: 639px) {
  #development_2 .flow li .flow_list_read span {
    font-family: "Cinzel", serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 19px;
    font-size: 1.9rem;
  }
}
#development_2 .flow li .flow_list_main {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #ecece7;
  margin-top: 30px;
  line-height: 2em;
}
@media all and (max-width: 639px) {
  #development_2 .flow li .flow_list_main {
    font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 500;
  }
}

/*--------------------------------------------------
CONTACT(contact.php)
----------------------------------------------------*/
#contact_1 .read {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 51px;
  font-size: 5.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #00f2ff;
  text-shadow: 0 0 2px #00f2ff, 0 0 5px #00f2ff, 0 0 12px #00f2ff, 0 0 40px rgba(0, 242, 255, 0.5);
  animation: neon-flicker 4s infinite alternate;
}
@media all and (max-width: 639px) {
  #contact_1 .read {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-size: 31px;
    font-size: 3.1rem;
    text-shadow: 0 0 5px #00f2ff, 0 0 15px rgba(0, 242, 255, 0.7);
  }
}
#contact_1 .company_1__main {
  margin-top: 60px;
}
#contact_1 .company_1__main .form-pattern-1 {
  background: #262626;
}
@media all and (max-width: 639px) {
  #contact_1 .company_1__main .form-pattern-1 {
    padding: 40px 15px;
  }
}
#contact_1 .form-contents {
  padding: 55px 70px;
}
#contact_1 .form-contents form dl {
  color: #ecece7;
}
#contact_1 .accbox {
  margin-top: 40px;
}
#contact_1 .accbox label {
  display: block;
  cursor: pointer;
  transition: all 0.5s;
}
#contact_1 .accbox label .more {
  display: block;
  text-align: center;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  font-weight: 400;
  color: #ecece7;
  width: 100%;
  padding: 0.8em 0;
  margin: 15px auto 0;
  transition: 0.4s;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #contact_1 .accbox label .more {
    margin-left: 0;
  }
}
#contact_1 .accbox label .more span {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
}
#contact_1 .accbox label:hover .more {
  background: #666;
  transition: 0.4s;
}
#contact_1 .accbox label .single {
  padding: 0;
}
#contact_1 .accbox input {
  display: none;
  transition: 0.8s;
}
#contact_1 .accbox .accshow_1 {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.8s;
  position: relative;
}
#contact_1 .accbox .accshow_1 .main {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #ecece7;
  text-align: left;
  letter-spacing: 0;
  width: 85%;
  margin: auto;
}
@media all and (max-width: 639px) {
  #contact_1 .accbox .accshow_1 .main {
    line-height: 1.7em;
  }
}
#contact_1 .accbox .accshow_1 .main span {
  display: block;
  margin-top: 20px;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 10px;
}
@media all and (max-width: 639px) {
  #contact_1 .accbox .accshow_1 .main span {
    margin-top: 35px;
  }
}
#contact_1 .cssacc_1:checked + .accshow_1 {
  height: auto;
  opacity: 1;
  transition: 0.8s;
}

/*--------------------------------------------------
新着情報(topics_list.php)
----------------------------------------------------*/
#topics_1 {
  padding-top: 60px;
  padding-bottom: 60px;
}
#topics_1 .single_new {
  background: #fff;
}
#topics_1 .inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #topics_1 .inner {
    display: block;
  }
}
#topics_1 .inner .left {
  width: 67%;
}
@media all and (max-width: 639px) {
  #topics_1 .inner .left {
    width: 100%;
  }
}
#topics_1 .inner .right {
  width: 27%;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #topics_1 .inner .right {
    width: 100%;
    margin: 50px 0 0;
  }
}
#topics_1 .inner .right .side_titem {
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 25px;
  font-size: 2.5rem;
  color: #39a4af;
}
#topics_1 .inner .right .side_titem.sec {
  margin-top: 80px;
}
#topics_1 .inner .right .side_titem span {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 500;
  font-weight: 500;
  display: block;
}
#topics_1 .inner .right ul.post_list li {
  border-bottom: 1px solid rgba(238, 238, 238, 0.2);
}
#topics_1 .inner .right ul.post_list li a {
  display: block;
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 18px;
  font-size: 1.8rem;
  position: relative;
  padding: 15px 10px;
  transition: 0.4s;
}
#topics_1 .inner .right ul.post_list li a .data {
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 13px;
  font-size: 1.3rem;
  color: #39a4af;
  opacity: 0.5;
  position: relative;
}
#topics_1 .inner .right ul.post_list li a .data span {
  background: #ccc;
  color: #fff;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 9px;
  font-size: 0.9rem;
  font-weight: 500;
  font-weight: 500;
  border-radius: 100px;
  display: inline-block;
  padding: 0 1.8em;
  position: absolute;
  top: 2px;
  left: 80px;
}
#topics_1 .inner .right ul.post_list li a .title {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  font-weight: 400;
  color: #1a1a1a;
  display: block;
  margin-top: 4px;
  line-height: 1.8em;
}
#topics_1 .inner .right ul.post_list li a:hover {
  background: rgba(238, 238, 238, 0.4);
  transition: 0.4s;
}
#topics_1 .entry .data {
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 13px;
  font-size: 1.3rem;
  color: #39a4af;
}
#topics_1 .entry .title {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 500;
  color: #1a1a1a;
}
#topics_1 .entry .main_cont {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 30px;
  color: #1a1a1a;
}
#topics_1 .entry .main_cont img {
  max-width: 100%;
  display: block;
}/*# sourceMappingURL=style.css.map */