@charset "UTF-8";
/* Scss Document */
html {
  scroll-behavior: smooth; }

#global-header {
  position: relative;
  width: 100%; }
  @media screen and (max-width: 1024px) {
    #global-header {
      height: 45px;
      display: flex;
      align-items: center;
      margin: 0 auto; } }
  #global-header .inner {
    width: 1366px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; }
    @media screen and (min-width: 1500px) {
      #global-header .inner {
        width: 85%; } }
    #global-header .inner .logo {
      width: 35%;
      display: flex;
      position: absolute;
      top: 0px;
      left: 50px;
      z-index: 2;
      align-items: center; }
      @media screen and (max-width: 1024px) {
        #global-header .inner .logo {
          width: 100%;
          left: 0px; } }
      @media screen and (max-width: 415px) {
        #global-header .inner .logo {
          left: -40px; } }
      #global-header .inner .logo a img {
        width: 70%;
        margin: 0 auto;
        display: block;
        height: auto;
        vertical-align: bottom; }
    #global-header .inner #global-navi {
      width: 40%;
      margin: 0 0 0 auto; }
      @media screen and (min-width: 1500px) {
        #global-header .inner #global-navi {
          width: 35%; } }
      @media screen and (max-width: 1360px) {
        #global-header .inner #global-navi {
          width: 50%; } }
      #global-header .inner #global-navi ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex: 1;
        width: 100%; }
        #global-header .inner #global-navi ul li {
          width: 100%;
          position: relative; }
          #global-header .inner #global-navi ul li::after {
            position: absolute;
            bottom: 15px;
            left: 15px;
            content: '';
            width: 70%;
            height: 1px;
            background: #333;
            transform: scale(0, 1);
            transform-origin: left top;
            transition: transform .5s; }
          #global-header .inner #global-navi ul li:hover::after {
            transform: scale(1, 1); }
          #global-header .inner #global-navi ul li a {
            font-size: 1.4em;
            font-weight: bold;
            padding: 24px 0 24px 0;
            width: 100%;
            display: inline-block;
            text-align: center;
            transition: all .5s ease;
            color: #333; }
    @media screen and (max-width: 1366px) {
      #global-header .inner {
        width: 100%; } }
    @media screen and (max-width: 1024px) {
      #global-header .inner .logo a {
        display: inline-block; }
        #global-header .inner .logo a img {
          width: 50%;
          height: 70%; }
      #global-header .inner #global-navi {
        display: none; } }

main#container .logo h2:before {
  content: "";
  display: block;
  width: 36px;
  height: 45px;
  margin: 0 auto;
  background: url("../flow/images/logo.svg") no-repeat;
  background-size: 35px 35px; }
main#container .page-header.contact-content {
  margin-bottom: 40px; }

h2.page-header {
  position: absolute;
  top: -95px;
  left: 50px;
  color: #7B7B7B;
  font-size: 3em;
  font-weight: bold;
  letter-spacing: .5em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  background: #fff;
  padding: 15px 5px 0 5px;
  z-index: 1; }
  @media screen and (max-width: 700px) {
    h2.page-header {
      font-size: 2.3em;
      left: 10px; } }
  @media screen and (max-width: 415px) {
    h2.page-header {
      padding: 10px 5px 0 5px; } }

h2.page-header2 {
  position: absolute;
  top: -95px;
  left: 13%;
  color: #7B7B7B;
  font-size: 3em;
  font-weight: bold;
  letter-spacing: .5em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  background: #fff;
  padding: 15px 5px 0 5px;
  z-index: 1; }
  @media screen and (max-width: 700px) {
    h2.page-header2 {
      font-size: 2.3em;
      left: 7%; } }
  @media screen and (max-width: 415px) {
    h2.page-header2 {
      padding: 10px 5px 0 5px; } }

h2.page-header-reverse {
  position: absolute;
  top: -95px;
  right: 13%;
  color: #7B7B7B;
  font-size: 3em;
  font-weight: bold;
  letter-spacing: .5em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  background: #fff;
  padding: 15px 5px 0 5px;
  z-index: 1; }
  @media screen and (max-width: 700px) {
    h2.page-header-reverse {
      font-size: 2.3em;
      right: 7%; } }
  @media screen and (max-width: 415px) {
    h2.page-header-reverse {
      padding: 10px 5px 0 5px; } }

a.btn {
  display: block;
  margin: 80px auto 0 auto;
  width: 130px;
  text-align: center;
  padding: 15px 60px;
  border-radius: 30px;
  border: 1px solid #333;
  transition: all .5s ease;
  font-size: 1.4em; }
  @media screen and (max-width: 700px) {
    a.btn {
      margin: 40px auto 0 auto; } }
  a.btn:after {
    content: "\f054";
    font-family: FontAwesome;
    font-weight: 100;
    margin-left: 10px; }
  a.btn:hover {
    background: #333;
    color: #fff; }

.shadow {
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.05)); }

/*---------------animation---------------*/
/*---スクロール時遅れて表示、順番に表示---*/
.fadein {
  opacity: 0;
  transition: all 1.3s; }

/*---TOP遅れて表示---*/
.post {
  opacity: 0; }

.main-img-wrapper {
  height: 1200px;
  overflow: hidden;
  position: relative;
  background: url("../images/top_bg.png") repeat;
  background-size: 100px;
  padding: 70px 0;
  height: 100%; }
  @media screen and (max-width: 1024px) {
    .main-img-wrapper {
      height: 800px;
      object-fit: cover;
      width: 100%; } }
  @media screen and (max-width: 415px) {
    .main-img-wrapper {
      height: 600px;
      object-fit: cover;
      width: 100%; } }

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15); } }
@keyframes zoomUp {
  /* 1.15倍させる指定 */
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15); } }
.swiper-slide {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  /* 12秒かけて拡大させる */
  -webkit-animation: zoomUp 12s linear 0s;
  animation: zoomUp 12s linear 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.slide-img {
  background-size: cover;
  background-position: center center;
  /* 背景画像は中央を軸に表示させる */
  height: 700px;
  /* 700pxの高さで表示させる */ }

.main-contents {
  position: absolute;
  top: 200px;
  right: -90px; }
  .main-contents img {
    width: 100%;
    padding: 5%; }

.text-wrap {
  background: #fff;
  position: absolute;
  top: 4%;
  right: 5.5%;
  padding: 40px 40px;
  z-index: 2; }
  @media screen and (min-width: 1500px) {
    .text-wrap {
      right: 8%; } }
  @media screen and (max-width: 415px) {
    .text-wrap {
      padding: 25px 25px; } }
  .text-wrap p.top-txt {
    color: #333;
    font-size: 3em;
    font-weight: bold;
    letter-spacing: .5em;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl; }
    @media screen and (max-width: 415px) {
      .text-wrap p.top-txt {
        font-size: 1.8em; } }
  .text-wrap img.midashi {
    position: absolute;
    top: 40px;
    right: 10px; }
    @media screen and (max-width: 415px) {
      .text-wrap img.midashi {
        top: 25px;
        width: 10%; } }

@-webkit-keyframes passing-bar {
  0% {
    left: 0;
    right: auto;
    width: 0; }
  50% {
    left: 0;
    right: auto;
    width: 100%; }
  51% {
    left: auto;
    right: 0;
    width: 100%; }
  100% {
    left: auto;
    right: 0;
    width: 0; } }
@keyframes passing-bar {
  0% {
    left: 0;
    width: 0; }
  50% {
    left: 0;
    width: 100%; }
  51% {
    left: 0;
    width: 100%; }
  100% {
    left: 100%;
    width: 0; } }
@-webkit-keyframes passing-txt {
  0% {
    opacity: 0; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes passing-txt {
  0% {
    opacity: 0; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/* css */
.passing .passing-box {
  display: block;
  text-align: center; }

.passing .passing-bar {
  position: relative;
  display: inline-block;
  /*　後ほど解説　*/
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.passing .passing-bar:before {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  /* 任意の値 */
  background: #000; }

.passing .passing-txt {
  opacity: 0;
  /* 後ほど解説 */
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  /* 任意の値 */
  font-size: 4.0rem;
  font-weight: bold;
  line-height: 1.5; }

.passing.move .passing-bar:before {
  -webkit-animation: passing-bar 1s ease 0s 1 normal forwards;
  animation: passing-bar 1s ease 0s 1 normal forwards; }

.passing.move .passing-txt {
  -webkit-animation: passing-txt 0s ease .5s 1 normal forwards;
  animation: passing-txt 0s ease .5s 1 normal forwards; }

.page-contents {
  width: 1366px;
  margin: 0 auto 80px; }
  @media screen and (max-width: 1366px) {
    .page-contents {
      width: 100%; } }

.content-inner {
  margin: 0 auto 120px; }
  @media screen and (max-width: 1024px) {
    .content-inner {
      width: 90%; } }

div.page-desc {
  width: 750px;
  margin: 0 auto 120px; }
  div.page-desc p {
    font-size: 1.55em;
    letter-spacing: .2em;
    line-height: 2; }
  @media screen and (max-width: 1024px) {
    div.page-desc {
      width: 90%; } }

.service {
  position: relative;
  width: 80%;
  margin: 160px auto 80px auto;
  background: #F7F7F7;
  padding: 9% 7%; }
  @media screen and (max-width: 1360px) {
    .service {
      padding: 12% 7%; } }
  @media screen and (max-width: 1024px) {
    .service {
      width: 100%;
      padding: 14% 7%; } }
  @media screen and (max-width: 768px) {
    .service {
      padding: 18% 7%;
      margin: 120px auto 80px auto; } }
  .service .service-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between; }
    .service .service-list .service-box {
      width: 30%;
      margin: 20px auto; }
      @media screen and (max-width: 1024px) {
        .service .service-list .service-box {
          width: 45%; } }
      @media screen and (max-width: 415px) {
        .service .service-list .service-box {
          width: 100%;
          margin: 10px auto; } }
      .service .service-list .service-box a {
        transition: all .5s ease; }
        .service .service-list .service-box a img {
          width: 100%; }
        .service .service-list .service-box a:hover {
          opacity: .5; }
      .service .service-list .service-box p {
        font-size: 1.6em;
        font-weight: bold; }
        @media screen and (max-width: 415px) {
          .service .service-list .service-box p {
            font-size: 1.5em; } }

img.midashi-center {
  position: absolute;
  top: -18px;
  right: 15px; }

img.midashi-full {
  position: absolute;
  top: -18px;
  right: 10%; }
  @media screen and (max-width: 700px) {
    img.midashi-full {
      right: 5%; } }

.works {
  position: relative;
  margin: 180px 0 0 0; }
  @media screen and (max-width: 768px) {
    .works {
      margin: 120px auto 0px auto; } }
  .works .works-contents {
    padding: 2%;
    position: absolute;
    width: 300px;
    height: 300px;
    background: #F1F1F1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto; }
    @media screen and (max-width: 415px) {
      .works .works-contents {
        width: 250px;
        height: 250px; } }
    .works .works-contents a.btn {
      width: 50%;
      margin: 42px auto;
      font-size: 1.2em;
      padding: 5% 9%; }
      @media screen and (min-width: 2500px) {
        .works .works-contents a.btn {
          width: 70%; } }
    .works .works-contents img {
      display: block;
      margin: 50px auto 12px auto; }
      @media screen and (min-width: 1700px) {
        .works .works-contents img {
          margin: 20px auto 12px auto; } }
      @media screen and (max-width: 415px) {
        .works .works-contents img {
          margin: 45px auto 12px auto; } }
    .works .works-contents h3 {
      font-size: 1.7em;
      font-weight: bold;
      text-align: center; }

.bg-image-loop {
  width: 100%;
  height: 260px;
  /* 画像の高さを指定 */
  position: relative;
  background: url("../images/work_01.jpg") repeat-x 0 0;
  background-size: auto 100%;
  animation: bg-slider 76s linear infinite;
  /* 23sの部分背景画像の約数だとスムーズ */
  padding: 0; }

.bg-image-loop2 {
  width: 100%;
  height: 260px;
  /* 画像の高さを指定 */
  position: relative;
  background: url("../images/work_02.jpg") repeat-x 0 0;
  background-size: auto 100%;
  animation: bg-slider2 76s linear infinite;
  /* 23sの部分背景画像の約数だとスムーズ */
  padding: 0;
  animation-direction: reverse; }

@keyframes bg-slider {
  from {
    background-position: 0 0; }
  to {
    background-position: -2192px 0; }
  /* 1518pxとは使用した背景画像の長さ */ }
@keyframes bg-slider2 {
  from {
    background-position: 0 0; }
  to {
    background-position: -2192px 0; }
  /* 1518pxとは使用した背景画像の長さ */ }
img.midashi-center {
  position: absolute;
  top: -18px;
  right: 15px; }

img.midashi-full-reverse {
  position: absolute;
  top: -18px;
  left: 10%; }
  @media screen and (max-width: 700px) {
    img.midashi-full-reverse {
      right: 5%; } }

.kizai-wrap {
  background: #F7F7F7;
  position: relative; }

.kizai {
  width: 60%;
  margin: 160px auto 40px auto; }
  @media screen and (max-width: 1360px) {
    .kizai {
      width: 70%;
      padding: 12% 7%; } }
  @media screen and (max-width: 1024px) {
    .kizai {
      width: 100%;
      padding: 17% 7%; } }
  @media screen and (max-width: 768px) {
    .kizai {
      padding: 23% 7%;
      margin: 120px auto 0px auto; } }
  .kizai .kizai-inner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    @media screen and (min-width: 1360px) {
      .kizai .kizai-inner {
        padding: 9% 0; } }
    @media screen and (max-width: 768px) {
      .kizai .kizai-inner {
        flex-direction: column; } }

.kizai-box {
  width: 47%; }
  @media screen and (max-width: 768px) {
    .kizai-box {
      width: 100%; } }
  .kizai-box .kizai-title {
    display: flex;
    background: #333;
    padding: 3%;
    align-items: center; }
    .kizai-box .kizai-title div img {
      display: block;
      margin: 13% auto; }
    .kizai-box .kizai-title div p {
      color: #f4f4f4;
      border-top: solid 1px #f4f4f4;
      text-align: center;
      line-height: 2em; }
    .kizai-box .kizai-title h3 {
      color: #f4f4f4;
      font-size: 2.2em;
      margin-left: 5%;
      font-weight: bold; }
      @media screen and (max-width: 1300px) {
        .kizai-box .kizai-title h3 {
          font-size: 2em; } }
      @media screen and (max-width: 768px) {
        .kizai-box .kizai-title h3 {
          font-size: 1.8em; } }
  .kizai-box .gray {
    background: #868686; }
  .kizai-box .kizai-contents {
    padding: 5%; }
    .kizai-box .kizai-contents h4 {
      font-size: 1.6em;
      font-weight: bold; }
    .kizai-box .kizai-contents table {
      margin: 5% 0 8% 0;
      padding: 5%;
      display: block; }
      .kizai-box .kizai-contents table tbody tr td {
        width: 5%;
        vertical-align: middle;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 1.5em;
        line-height: 2em;
        text-align: center;
        border-bottom: solid 1px #333; }

h3.kizai-subtitle {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  line-height: 5em; }

.yohaku {
  width: 60%;
  margin: 0px auto 40px auto; }
  @media screen and (max-width: 1360px) {
    .yohaku {
      width: 70%;
      padding: 0 7%; } }
  @media screen and (max-width: 1024px) {
    .yohaku {
      width: 100%;
      padding: 0 7%; } }

.yohaku-inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  @media screen and (max-width: 768px) {
    .yohaku-inner {
      flex-direction: column; } }

#global-footer a.page-top {
  width: 100%;
  display: block;
  background: #868686;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-size: 1.4em;
  transition: all .5s ease; }
  #global-footer a.page-top::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border: 1px solid;
    border-color: #fff #fff transparent transparent;
    transform: rotate(-45deg);
    margin-left: 16px; }
  #global-footer a.page-top:hover {
    background: #333; }
#global-footer .footer-contents {
  background: #333333;
  padding: 64px 0; }
  @media screen and (max-width: 1024px) {
    #global-footer .footer-contents {
      padding: 48px 0; } }
  #global-footer .footer-contents img {
    display: block;
    margin: 16px auto; }
    @media screen and (max-width: 1024px) {
      #global-footer .footer-contents img {
        margin: 0 auto 24px auto; } }
    @media screen and (max-width: 415px) {
      #global-footer .footer-contents img {
        width: 30%; } }
  #global-footer .footer-contents ul {
    width: 40%;
    display: flex;
    margin: 0 auto; }
    @media screen and (max-width: 1024px) {
      #global-footer .footer-contents ul {
        display: none; } }
    #global-footer .footer-contents ul li {
      width: 100%;
      position: relative; }
      #global-footer .footer-contents ul li::after {
        position: absolute;
        bottom: 15px;
        left: 27px;
        content: '';
        width: 60%;
        height: 1px;
        background: #fff;
        transform: scale(0, 1);
        transform-origin: left top;
        transition: transform .5s; }
      #global-footer .footer-contents ul li:hover::after {
        transform: scale(1, 1); }
      #global-footer .footer-contents ul li a {
        font-size: 1.4em;
        font-weight: bold;
        padding: 24px 0 24px 0;
        width: 100%;
        display: inline-block;
        text-align: center;
        transition: all .5s ease;
        color: #fff; }

.copy small {
  display: block;
  background: #333;
  text-align: center;
  padding: 10px 0;
  color: #fff;
  font-size: 1.1em; }

.copy_small {
  width: 100%;
  text-align: center;
  color: #fff; }
