@charset "UTF-8";
/* CSS Document */
html {
  color: #000;
  font-size: 14px;
  line-height: 1;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  scroll-behavior: smooth;
}
body * {
  margin: 0;
  padding: 0;
}
img {
  border: 0;
  margin: 0;
  vertical-align: top;
}
header {
  border-bottom: dotted 1px rgba(53, 53, 53, 0.5);
  position: fixed;
  top: 0;
  z-index: 10000;
  width: 100%;
}
#logo {
  max-width: 50%;
  display: block;
  margin: 0 auto;
  font-size: 1.5em;
  font-family: YuMincho, 'Yu Mincho', 'Hiragino Mincho ProN', 'serif';
  z-index: 10;
}
#logo span {
  font-size: 0.8em;
  vertical-align: 0.15em
}
nav {
  width: 100%;
  height: 70px;
  position: relative;
  z-index: 5
}
.drawer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 70px;
  padding: 0 1em;
  background-color: #007fc5;
  color: #fff
}
/*ナビゲーション部分*/
.menu ul li a {
  display: block;
  font-weight: bold;
  padding: 2em;
  border-bottom: 1px dotted #CCC;
  color: #fff;
  text-decoration: none;
}
/*.menu ul li a:hover {
  background-color: rgba(0, 0, 0, 0.5);
}*/
.menu {
  text-align: center;
  background-color: #007fc5;
  transition: .5s ease;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}
.menu ul {
  background-color: #007fc5;
}
.menu li.current:not(.disable) a, .menu li:not(.disable) a:hover {
  background-color: #4bb9f6;
}
.menu li.current:not(.disable) a span, .menu li:not(.disable) a:hover span {
  color: #fffd38;
}
.menu.open {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
/*トグルボタンのスタイル*/
.Toggle {
  display: block;
  position: fixed;
  width: 42px;
  height: 42px;
  cursor: pointer;
  z-index: 3;
  right: 15px;
}
.Toggle span {
  display: block;
  position: absolute;
  width: 50px;
  border-bottom: solid 4px #fff;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}
.Toggle span:nth-child(1) {
  top: 5px;
}
.Toggle span:nth-child(2) {
  top: 18px;
}
.Toggle span:nth-child(3) {
  top: 32px;
}
.Toggle.active span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/*×*/
.Toggle.active span:nth-child(2), .Toggle.active span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
.wrap {
  width: 100%;
  margin: 0;
  padding: 0;
  padding-top: 70px
}
/*タイトル--*/
.title {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  background-image: url("../img/top_3.jpg");
  background-position: center;
  background-size: cover;
  padding-left: 50px;
  font-family: 'Arvo', YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.title2 {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  background-image: url("../img/top_4.jpg");
  background-position: center;
  background-size: cover;
  padding-left: 50px;
  font-family: 'Arvo', YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.title3 {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  background-image: url("../img/top_5.jpg");
  background-position: center;
  background-size: cover;
  padding-left: 50px;
  font-family: 'Arvo', YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.title4 {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  background-image: url("../img/top_6.jpg");
  background-position: center;
  background-size: cover;
  padding-left: 50px;
  font-family: 'Arvo', YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.title h1, .title2 h1, .title3 h1, .title4 h1 {
  font-size: 1.5em;
  color: #FFFFFF;
  letter-spacing: 0.15em;
}
/*-- PC版表示CSS  --*/
.pc_area {
  display: block;
}
.phone_area {
  display: none;
}
/*--COMMUNICATION--*/
.commu {
  width: 1000px;
  height: auto;
  margin: 0 auto;
  padding: 100px 0;
}
.commu table {
  margin-top: 50px
}
.commu table td {
  padding: 30px;
  vertical-align: middle;
  line-height: 1.5em;
}
.commu h1 {
  font-size: 2em;
  letter-spacing: 0.5em;
  margin-bottom: 30px;
  font-family: 'Arvo', serif;
}
.commu p {
  letter-spacing: 0.15em;
  line-height: 2em;
  text-align: center;
  color: #000;
}
/*その場でフワッ！--*/
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*右からスルスル--*/
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInTrigger, .fadeUpTrigger, .fadeDownTrigger, .fadeLeftTrigger, .fadeRightTrigger {
  opacity: 0;
}
/*キラリン！--*/
.anim-box.kiran {
  opacity: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.anim-box.kiran::before {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  transition: cubic-bezier(0.32, 0, 0.67, 0);
}
.anim-box.kiran:hover::before {
  animation: kiran 0.5s linear 1;
}
@keyframes kiran {
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }
  20% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }
  40% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
  }
  80% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/*フワッ！×5----*/
.box {
  opacity: 0;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* アニメーションスタート----*/
.delay-time02 {
  animation-delay: 0.2s;
}
.delay-time04 {
  animation-delay: 0.4s;
}
.delay-time06 {
  animation-delay: 0.6s;
}
.delay-time08 {
  animation-delay: 0.8s;
}
.delay-time1 {
  animation-delay: 1s;
}
/*TOP---*/
.wrapper {
  width: 100%;
  height: auto;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  margin-bottom: 50px;
  background-image: url("../img/top_1.jpg");
  background-size: cover;
  background-position: center;
}
.wrapper2 {
  width: 100%;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  margin-bottom: 50px;
  background-image: url("../img/top_2.jpg");
  background-size: cover;
  background-position: center;
}
.wrapper3 {
  width: 100%;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  margin-bottom: 50px;
}
.wrapper4 {
  width: 100%;
  height: auto;
  margin: 0 auto;
  justify-content: center;
  /*background-image: url("../img/top_3.jpg");*/
  background-size: cover;
  background-position: center;
  margin-bottom: 100px;
}
.main, .side, .buttom, .link {
  padding: 50px;
}
.main, .side {
  width: 50%;
  overflow: hidden;
}
.buttom {
  background-image: url("../img/top_2.jpg");
  background-size: cover;
  width: 100%;
}
.side p, ul {
  background-color: #f0f0f0;
  padding: 0px;
}
.main h1, .side h1, .buttom h1 {
  width: 50%;
  padding-top: 50px;
  padding-bottom: 50px;
  color: #FFFFFF
}
.inner {
  width: 100%;
  height: 95px;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  font-family: 'Arvo', serif;
  overflow: hidden
}
.inner-left {
  width: 50%;
  text-align: right;
  padding: 30px 0;
  letter-spacing: 0.15em;
  color: #FFFFFF;
  font-size: 1.5em;
}
.inner-right {
  width: 50%;
  text-align: right;
  letter-spacing: 0.15em;
  color: #FFFFFF;
  font-size: 1.5em;
  z-index: 300
}
.map-wrapper {
  width: 500px;
  position: absolute;
}
.map {
  position: absolute;
  padding: 0 50px;
  opacity: 10;
  right: 0px;
  top: 900px
}
.inner-link {
  width: 100%;
  height: auto;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  margin-bottom: 150px;
  color: #000
}
.other {
  text-align: center;
  color: #000;
  padding-top: 50px;
  padding-right: 50px;
  font-size: 1.5em;
  font-family: 'Arvo', serif;
}
.other2 {
  text-align: left;
  color: #000;
  padding-top: 50px;
  padding-left: 50px;
  font-size: 1.5em;
  font-family: 'Arvo', serif;
}
.link-img {
  max-width: 180px;
  padding: 30px 10px 10px 10px;
  width: 100%;
  margin-top: 10px;
  text-align: center;
}
.link-img img {
  max-width: 100%;
  padding: 10px;
}
footer {
  width: 100%;
  height: 50px;
  text-align: center;
  background-color: #3D3C3C;
  padding-top: 20px;
  color: #FFFFFF;
}
/*WORK---*/
.works {
  max-width: 1280px;
  margin: 0 auto;
}
.works-top {
  width: 100%;
  padding: 50px;
}
.works-top h1 {
  font-size: 1.8em;
  /*letter-spacing: 0.3em;*/
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.5em
}
.works-top p {
  letter-spacing: 0.15em;
  line-height: 1.5em
}
.w-menu {
  margin-bottom: 50px;
}
.tow-col {
  width: 100%;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  padding: 0 5px;
  margin-bottom: 50px
}
.tow-col2 {
  width: 100%;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  padding: 0 5px;
}
.tow-col-left {
  width: 50%;
  border-left: 1px dotted #000;
  border-right: 1px dotted #000;
  padding: 0 30px;
}
.tow-col-right {
  width: 50%;
  border-right: 1px dotted #000;
  padding: 0 30px;
}
.gry-left, .gry-right {
  width: 50%;
  padding: 20px;
  justify-content: center;
  background-color: rgba(228, 228, 228, 1.00)
}
.white-left, .white-right {
  width: 50%;
  padding: 20px;
  justify-content: center;
  background-color: rgba(255, 255, 255, 1.00)
}
.tow-col-left img, .tow-col-right img, .gry-left img, .white-right img, .gry-right img, .white-left img {
  width: 100%;
  height: auto;
  padding-bottom: 10px;
}
.tow-col-left h1, .tow-col-right h1, .gry-left h1, .white-right h1, .gry-right h1, .white-left h1 {
  font-size: 1.5em;
  text-align: center;
  padding: 20px 0
}
.tow-col-left p, .tow-col-right p, .gry-left p, .white-right p, .gry-right p, .white-left p {
  padding: 0 10px;
  line-height: 1.5em;
  text-align: justify;
  color: #000
}
.btn-aria {
  width: 100%;
  height: 70px;
  background-image: url("../img/work-btn.png");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-size: 1.2em
}
/*Product---*/
#ham-menu {
  background-color: rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
  margin-top: 160px;
  height: 100%;
  padding: 10px 40px;
  position: fixed;
  right: -300px;
  top: 0;
  transition: transform 0.3s linear 0s;
  width: 300px;
  z-index: 1000;
}
#ham-menu::before {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 0 0 0 10px;
  color: #333;
  content: "≡";
  display: block;
  font-size: 50px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  right: 100%;
  text-align: center;
  top: 0;
  width: 50px;
}
#menu-background {
  background-color: #333;
  display: block;
  height: 100%;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.3s linear 0s;
  width: 100%;
  z-index: -1;
}
/*hover 時の処理*/
#ham-menu:hover {
  transform: translate(-300px);
}
#ham-menu:hover + #menu-background {
  opacity: 0.5;
  z-index: 999;
}
#ham-menu ul li a {
  font-weight: bolder;
  line-height: 5em;
}
.product-menu {
  background-color: rgba(255, 255, 255, 0.0);
  padding-top: 50px
}
.product-menu a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.product-menu a:hover {
  color: rgba(136, 0, 2, 1.00)
}
.product-menu a::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #333;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
.product-menu a:hover::after {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}
.product-menu li.current:not(.disable) a, .menu li:not(.disable) a:hover {
  color: rgba(136, 0, 2, 1.00)
}
.product {
  max-width: 1280px;
  margin: 0 auto;
}
.three-col {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 0 5%
}
.three-col-left-33, .three-col-center-33, .three-col-right-33 {
  width: 33%;
  background-color: rgba(221, 221, 221, 0.50);
  border: 1px solid rgba(255, 255, 255, 1.00);
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.three-col-left-66, .three-col-center-66, .three-col-right-66 {
  width: 66%;
  background-color: rgba(185, 183, 183, 0.5);
  border: 1px solid rgba(255, 255, 255, 1.00);
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.three-col-left-49 {
  width: 49%;
  background-color: rgba(185, 183, 183, 0.5);
  border: 1px solid rgba(255, 255, 255, 1.00);
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.three-col-right-49 {
  width: 49%;
  background-color: rgba(221, 221, 221, 0.5);
  border: 1px solid rgba(255, 255, 255, 1.00);
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.three-col-center-100 {
  width: 98%;
  background-color: rgba(221, 221, 221, 0.5);
  border: 1px solid rgba(255, 255, 255, 1.00);
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.three-col-left-33 img, .three-col-center-33 img, .three-col-right-33 img, .three-col-left-66 img, .three-col-center-66 img, .three-col-right-66 img, .three-col-left-49 img, .three-col-right-49 img, .three-col-center-100 img {
  width: 100%;
  height: auto;
  transition: 1s all
}
.three-col-left-33 img:hover, .three-col-center-33 img:hover, .three-col-right-33 img:hover, .three-col-left-66 img:hover, .three-col-center-66 img:hover, .three-col-right-66 img:hover, .three-col-left-49 img:hover, .three-col-right-49 img:hover, .three-col-center-100 img:hover {
  transform: scale(1.2, 1.2);
  transform: 1s all
}
/*Company--*/
.company {
  max-width: 1280px;
  margin: 0 auto;
}
.four-com {
  width: 100%;
  margin: 0 auto;
  padding: 100px 20px;
}
.four-com h1 {
  padding: 0 20px;
  font-size: 1.5em;
  line-height: 2em;
  margin-bottom: 50px
}
.four-com-img {
  max-width: 100%;
  margin: 0 auto;
  text-align: center
}
.four-com-img img {
  width: 100%;
  height: auto
}
.caption {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 10px;
}
.aboutus {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px
}
.aboutus-left {
  width: 67%;
  border-bottom: 1px dotted #000;
  font-size: 1.5em;
  letter-spacing: 1em;
  font-weight: bold;
}
.aboutus-right {
  width: 33%;
  border-bottom: 1px dotted #000;
  font-size: 1.5em;
  letter-spacing: 1em;
  font-weight: bold;
  margin-right: 20px
}
.aboutus-t {
  width: 100%;
  padding: 0 0 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px dotted #000;
  /*border-bottom: 1px dotted #000*/
}
.aboutus-t table {
  width: 67%;
  border-collapse: collapse;
}
.aboutus-t th, .aboutus-t td {
  border: 0px;
  padding: 10px
}
.aboutus-t-map {
  width: 33%;
}
.aboutus-t-map img {
  width: 100%
}
/*contact--*/
.contactus {
  max-width: 1280px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.contactus-top {
  width: 100%;
  padding: 100px 0;
  text-align: center;
  font-size: 1.5em;
}
.contactus-col {
  width: 100%;
  display: flex;
  justify-content: center;
}
.contactus-left {
  width: 50%;
  display: flex;
  justify-content: center;
  font-size: 1.2em;
  color: #000;
  font-family: 'Arvo', YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  border-right: 1px dotted #000;
  margin: 0 auto;
}
.contactus-left table {
  border-collapse: collapse;
  width: 100%;
}
.contactus-left tr th {
  width: 30%;
  padding: 20px 0;
  text-align: left;
}
.contactus-left tr td {
  width: 70%;
  padding: 20px;
  text-align: left;
}
.contactus-left img {
  max-width: 100%
}
.contactus-right {
  width: 50%;
}
.boxes {
  margin: auto;
  padding: 5px;
  background: #fff;
}
.text-center {
  width: 100%;
  text-align: center;
  padding-bottom: 30px
}
/*Privacy Policy--*/
.p-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px;
}
#policy h1 {
  font-size: 1.5em;
  color: rgba(31, 46, 85, 1.00);
  font-weight: bold;
  line-height: 1.5em;
}
.row, .p-main {
  padding: 10px;
}
.p-main p, .p-gry p {
  line-height: 2em;
  padding-bottom: 20px;
  text-align: justify;
  color: #000000
}
.p-gry {
  width: 100%;
  padding: 20px;
  background-color: #DEDEDE;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px
}
.p-back {
  width: 20%;
  padding: 20px;
  border-bottom: 1px dotted #000;
  border-top: 1px dotted #000;
  background-color: #CCCCCC;
  text-align: center
}
