@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: 600px;
      object-fit: cover;
      width: 100%; } }
  @media screen and (max-width: 415px) {
    .main-img-wrapper {
      height: 600px;
      object-fit: cover;
      width: 100%; } }

.top-img {
  background: url("../service/images/top.jpg") no-repeat;
  height: 500px;
  width: 90%;
  background-size: cover; }
  @media screen and (max-width: 850px) {
    .top-img {
      background: url("../service/images/top.jpg") no-repeat -850px; } }

.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%; } }

.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: 90%;
      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%; } }
      .service .service-list .service-box img {
        width: 100%; }
      .service .service-list .service-box h3 {
        font-size: 1.6em;
        font-weight: bold;
        margin: 12px 0; }
      .service .service-list .service-box p {
        font-size: 1.4em;
        line-height: 2em; }

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

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

a.service_01 {
  background: url("../images/service_01.jpg") no-repeat;
  background-size: cover;
  width: auto;
  height: 200px;
  display: block;
  transition: all .5s ease; }
  a.service_01:hover {
    transform: scale(1.05); }

a.service_02 {
  background: url("../images/service_02.jpg") no-repeat;
  background-size: cover;
  width: auto;
  height: 200px;
  display: block;
  transition: all .5s ease; }
  a.service_02:hover {
    transform: scale(1.05); }

a.service_03 {
  background: url("../images/service_03.jpg") no-repeat;
  background-size: cover;
  width: auto;
  height: 200px;
  display: block;
  transition: all .5s ease; }
  a.service_03:hover {
    transform: scale(1.05); }

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; }
        @media screen and (max-width: 1500px) {
          .kizai-box .kizai-contents table tbody tr td {
            font-size: 1.4em; } }

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; }
