@charset "UTF-8";
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 997;
  padding: 0 20px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  /* 751- */
}
@media all and (min-width: 751px) {
  header {
    padding: 0 40px;
    overflow: hidden;
    /* 1101- */
  }
}
@media all and (min-width: 751px) and (min-width: 1101px) {
  header {
    height: 100px;
  }
}
header .logo a {
  position: relative;
  width: 178px;
  display: block;
  z-index: 999;
  /* 751- */
}
@media all and (min-width: 751px) {
  header .logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 475px;
  }
}
@media all and (min-width: 751px) and (max-width: 1320px) {
  header .logo a {
    width: auto;
  }
}
@media all and (min-width: 751px) {
  header .logo a img {
    width: 254px;
  }
  header .logo a strong {
    font-size: 12px;
    line-height: 1.5;
  }
}
@media all and (min-width: 751px) and (max-width: 1320px) {
  header .logo a strong {
    display: none;
  }
}
header .openbtn {
  position: relative;
  width: 40px;
  height: 40px;
  z-index: 999;
  /* 1101- */
}
@media all and (min-width: 1101px) {
  header .openbtn {
    display: none;
  }
}
header .openbtn span {
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
header .openbtn span.brackets {
  width: 12px;
}
header .openbtn span.brackets:nth-child(1) {
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
header .openbtn span.brackets:nth-child(3) {
  right: 0;
  left: auto;
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
}
header .openbtn span.dots {
  width: 3px;
  height: 3px;
  background-color: #393939;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}
header .openbtn span.dots::before, header .openbtn span.dots::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  width: 3px;
  height: 3px;
  background-color: #393939;
}
header .openbtn span.dots::before {
  left: -6px;
}
header .openbtn span.dots::after {
  right: -6px;
}
header .openbtn.active .brackets:nth-child(1) {
  left: 50%;
  -webkit-transform: translateY(-50%) scale(1, 0.9);
          transform: translateY(-50%) scale(1, 0.9);
}
header .openbtn.active .brackets:nth-child(3) {
  right: auto;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-100%) scale(-1, 0.9);
          transform: translateY(-50%) translateX(-100%) scale(-1, 0.9);
}
header .openbtn.active .dots::before {
  left: 0;
}
header .openbtn.active .dots::after {
  right: 0;
}
header #gNav {
  /* -1100 */
  /* 1101- */
}
@media all and (max-width: 1100px) {
  header #gNav {
    position: fixed;
    z-index: 998;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  header #gNav ul {
    padding: 85px 20px 0;
    /* 751- */
  }
}
@media all and (max-width: 1100px) and (min-width: 751px) {
  header #gNav ul {
    padding: 130px 40px 0;
  }
}
@media all and (max-width: 1100px) {
  header #gNav ul li {
    border-bottom: 2px solid #F4F4F4;
    overflow: hidden;
  }
  header #gNav ul li:last-child {
    border-bottom: none;
  }
  header #gNav ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 14px;
       -moz-column-gap: 14px;
            column-gap: 14px;
    padding: 14px 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: 0.5s ease-out 0.5s;
    transition: 0.5s ease-out 0.5s;
  }
  header #gNav ul li a.contact {
    margin-top: 40px;
    height: 64px;
    border-radius: 32px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #393939;
    color: #fff;
  }
  header #gNav ul li a .en {
    font-family: "Jost", sans-serif;
    font-size: 26px;
    font-weight: 600;
  }
  header #gNav ul li a .jp {
    font-weight: 600;
    font-size: 14px;
    padding-top: 5px;
  }
  header #gNav.panelactive {
    right: 0;
  }
  header #gNav.panelactive ul li:nth-child(2) a {
    -webkit-transition-delay: 0.58s;
            transition-delay: 0.58s;
  }
  header #gNav.panelactive ul li:nth-child(3) a {
    -webkit-transition-delay: 0.66s;
            transition-delay: 0.66s;
  }
  header #gNav.panelactive ul li:nth-child(4) a {
    -webkit-transition-delay: 0.74s;
            transition-delay: 0.74s;
  }
  header #gNav.panelactive ul li:nth-child(5) a {
    -webkit-transition-delay: 0.82s;
            transition-delay: 0.82s;
  }
  header #gNav.panelactive ul li:nth-child(6) a {
    -webkit-transition-delay: 0.9s;
            transition-delay: 0.9s;
  }
  header #gNav.panelactive ul li:nth-child(7) a {
    -webkit-transition-delay: 0.98s;
            transition-delay: 0.98s;
  }
  header #gNav.panelactive ul li a {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media all and (min-width: 1101px) {
  header #gNav nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 42px;
       -moz-column-gap: 42px;
            column-gap: 42px;
  }
  header #gNav nav ul li a {
    font-size: 18px;
    font-weight: 600;
  }
  header #gNav nav ul li a .en {
    font-family: "Jost", sans-serif;
  }
  header #gNav nav ul li a .jp {
    display: none;
  }
  header #gNav nav ul li a:not(.contact) {
    position: relative;
  }
  header #gNav nav ul li a:not(.contact)::before {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: #393939;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  }
}
@media (min-width: 1101px) and (hover: hover) {
  header #gNav nav ul li a:not(.contact):hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
@media all and (min-width: 1101px) {
  header #gNav nav ul li a.contact {
    overflow: hidden;
    position: relative;
    height: 46px;
    width: 164px;
    border-radius: 23px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #393939;
    color: #fff;
  }
  header #gNav nav ul li a.contact::after {
    position: absolute;
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/common/hikouki.png);
    width: 52px;
    height: 33px;
    top: 101%;
    right: 14%;
  }
}
@media (min-width: 1101px) and (hover: hover) {
  header #gNav nav ul li a.contact:hover {
    -webkit-animation: overflow 0.38s forwards;
            animation: overflow 0.38s forwards;
  }
  @-webkit-keyframes overflow {
    0% {
      overflow: hidden;
    }
    99% {
      overflow: hidden;
    }
    100% {
      overflow: visible;
    }
  }
  @keyframes overflow {
    0% {
      overflow: hidden;
    }
    99% {
      overflow: hidden;
    }
    100% {
      overflow: visible;
    }
  }
  header #gNav nav ul li a.contact:hover::after {
    -webkit-animation: fly 2.2s forwards;
            animation: fly 2.2s forwards;
  }
  @-webkit-keyframes fly {
    0% {
      top: 101%;
      right: 14%;
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    58% {
      top: -40%;
      -webkit-transform: rotate(10deg);
              transform: rotate(10deg);
    }
    100% {
      top: -80%;
      right: -70%;
      -webkit-transform: rotate(80deg);
              transform: rotate(80deg);
    }
  }
  @keyframes fly {
    0% {
      top: 101%;
      right: 14%;
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    58% {
      top: -40%;
      -webkit-transform: rotate(10deg);
              transform: rotate(10deg);
    }
    100% {
      top: -80%;
      right: -70%;
      -webkit-transform: rotate(80deg);
              transform: rotate(80deg);
    }
  }
}
@media all and (min-width: 1101px) {
  header #gNav nav ul li.current:not(:last-child)::before {
    content: "< ";
    font-size: 18px;
    font-weight: 600;
  }
  header #gNav nav ul li.current:not(:last-child)::after {
    content: " >";
    font-size: 18px;
    font-weight: 600;
  }
}

footer {
  background-color: #686E72;
  padding: 30px 0;
  /* 751- */
  color: #fff;
}
@media all and (min-width: 751px) {
  footer {
    padding: 50px 0;
  }
}
footer a {
  color: #fff;
}
footer .logo p {
  font-size: 12px;
  line-height: 1.7;
  padding-top: 12px;
  /* 751- */
}
@media all and (min-width: 751px) {
  footer .logo p {
    padding-top: 30px;
    text-align: right;
    font-size: 22px;
  }
}
footer .list_wrap {
  padding-top: 45px;
  /* 751- */
}
@media all and (min-width: 751px) {
  footer .list_wrap {
    padding-top: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
footer .list_wrap .page_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 15px;
  /* 751- */
}
@media all and (min-width: 751px) {
  footer .list_wrap .page_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 22px;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
    height: 260px;
  }
}
@media all and (min-width: 751px) and (min-width: 1120px) {
  footer .list_wrap .page_list {
    height: 430px;
    -webkit-column-gap: 100px;
       -moz-column-gap: 100px;
            column-gap: 100px;
  }
}
footer .list_wrap .page_list > li {
  width: 50%;
  /* 751- */
}
@media all and (min-width: 751px) {
  footer .list_wrap .page_list > li {
    width: auto;
  }
}
footer .list_wrap .page_list > li > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
footer .list_wrap .page_list > li > a .en {
  display: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  footer .list_wrap .page_list > li > a .en {
    display: inline;
    font-family: "Jost", sans-serif;
    font-size: 27px;
    font-weight: 500;
  }
}
footer .list_wrap .page_list > li > a .jp {
  /* 751- */
}
@media all and (min-width: 751px) {
  footer .list_wrap .page_list > li > a .jp {
    font-size: 15px;
    padding-top: 6px;
    white-space: nowrap;
  }
}
footer .list_wrap .page_list .child {
  display: none;
}
@media all and (min-width: 1120px) {
  footer .list_wrap .page_list .child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 14px;
    height: 352px;
    row-gap: 10px;
    -webkit-column-gap: 70px;
       -moz-column-gap: 70px;
            column-gap: 70px;
    font-size: 14px;
    font-weight: 400;
  }
}
footer .list_wrap .side {
  padding-top: 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  footer .list_wrap .side {
    padding-top: 0;
  }
}
footer .list_wrap .side .page_list_small li {
  margin-bottom: 8px;
  /* 751- */
}
@media all and (min-width: 751px) {
  footer .list_wrap .side .page_list_small li {
    margin-bottom: 10px;
  }
}
footer .list_wrap .side .page_list_small li:last-child {
  margin-bottom: 0;
}
footer .list_wrap .side .page_list_small li a {
  font-weight: 400;
  font-size: 12px;
  /* 751- */
}
@media all and (min-width: 751px) {
  footer .list_wrap .side .page_list_small li a {
    font-size: 14px;
  }
}
footer .list_wrap .side .management {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  padding-top: 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  footer .list_wrap .side .management {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 14px;
  }
}
footer .list_wrap .side .management .ttl {
  font-weight: bold;
  /* 751- */
}
@media all and (min-width: 751px) {
  footer .list_wrap .side .management .ttl {
    font-size: 18px;
  }
}
footer .list_wrap .side .management .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
footer .list_wrap .side .management .link a {
  font-weight: 400;
  margin-bottom: 8px;
  /* 751- */
}
@media all and (min-width: 751px) {
  footer .list_wrap .side .management .link a {
    margin-bottom: 10px;
    font-size: 14px;
  }
}
footer .list_wrap .side .management .link a:last-child {
  margin-bottom: 0;
}
footer .list_wrap .side .management .link a.t_blank {
  position: relative;
  padding-right: 22px;
}
footer .list_wrap .side .management .link a.t_blank::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  top: 3px;
  width: 13px;
  height: 13px;
  background-image: url(../images/common/t_blank_w.svg);
}
footer .list_wrap a {
  /* 751- */
}
@media all and (min-width: 751px) {
  footer .list_wrap a {
    position: relative;
  }
  footer .list_wrap a::before {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 1.2%;
    width: 100%;
    height: 1px;
    background-color: #fff;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  }
}
@media (hover: hover) {
  footer .list_wrap a:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
footer .copyright {
  padding-top: 40px;
  text-align: right;
  font-size: 11px;
  font-weight: 400;
  /* 751- */
}
@media all and (min-width: 751px) {
  footer .copyright {
    font-size: 12px;
    padding-top: 60px;
  }
}

/*----------------------------------------------------
共通スタイル
----------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-style: normal;
}

body {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #393939;
  /* 751- */
}
@media all and (min-width: 751px) {
  body {
    font-size: 15px;
  }
}
body:not(#pageHome) {
  -webkit-animation: fadeIn 1s forwards;
          animation: fadeIn 1s forwards;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body:not(#pageHome) main {
  padding-top: 60px;
  /* 1101- */
}
@media all and (min-width: 1101px) {
  body:not(#pageHome) main {
    padding-top: 100px;
  }
}

p {
  line-height: 1.846;
  /* 751- */
}
@media all and (min-width: 751px) {
  p {
    line-height: 1.867;
  }
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  color: #393939;
  text-decoration: none;
}

a img {
  border: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul, li, dl, dt, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

input, label, select, textarea {
  vertical-align: middle;
}

/*----------------------------------------------------
inner
----------------------------------------------------*/
/* ベース */
.inner {
  padding: 0 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .inner {
    padding: 0 40px;
    max-width: 1280px;
    margin: 0 auto;
  }
}

/* 狭いベース */
.inner_s {
  padding: 0 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .inner_s {
    padding: 0 40px;
    max-width: 980px;
    margin: 0 auto;
  }
}

/*----------------------------------------------------
表示 非表示
----------------------------------------------------*/
.forSP {
  display: block;
  /* 751- */
}
@media all and (min-width: 751px) {
  .forSP {
    display: none;
  }
}

.forPC {
  display: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  .forPC {
    display: block;
  }
}

/*----------------------------------------------------
  スクロールアニメ
----------------------------------------------------*/
.fade_up {
  opacity: 0;
}
.fade_up.scroll_active {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fade_right {
  opacity: 0;
}
.fade_right.scroll_active {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.zoom_in {
  opacity: 0;
}
.zoom_in.scroll_active {
  -webkit-animation-name: zoomInAnime;
          animation-name: zoomInAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

.flip_left {
  opacity: 0;
}
.flip_left.scroll_active {
  -webkit-animation-name: flipLeftAnime;
          animation-name: flipLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-perspective-origin: left center;
          perspective-origin: left center;
}
@-webkit-keyframes flipLeftAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipLeftAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}

/*----------------------------------------------------
  黄ボタン
----------------------------------------------------*/
.yellow_btn {
  background-color: #f7d644;
  max-width: 280px;
  height: 65px;
  margin: 0 auto;
  padding: 0 10px;
  border-radius: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.17, 0.67, 0.2, 1.35);
  transition: -webkit-transform 0.3s cubic-bezier(0.17, 0.67, 0.2, 1.35);
  transition: transform 0.3s cubic-bezier(0.17, 0.67, 0.2, 1.35);
  transition: transform 0.3s cubic-bezier(0.17, 0.67, 0.2, 1.35), -webkit-transform 0.3s cubic-bezier(0.17, 0.67, 0.2, 1.35);
  /* 751- */
  /* 751- */
}
@media all and (min-width: 751px) {
  .yellow_btn {
    max-width: 362px;
    height: 92px;
    border-radius: 59px;
    padding: 0 18px;
  }
}
.yellow_btn .text {
  padding-left: 30px;
  font-size: 14px;
  font-weight: bold;
  /* 751- */
}
@media all and (min-width: 751px) {
  .yellow_btn .text {
    padding-left: 48px;
    font-size: 18px;
  }
}
.yellow_btn .circle {
  position: relative;
  display: inline-block;
  background-color: #FFF3CB;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  overflow: hidden;
  /* 751- */
}
@media all and (min-width: 751px) {
  .yellow_btn .circle {
    width: 57px;
    height: 57px;
  }
}
.yellow_btn .circle .dot {
  display: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  .yellow_btn .circle .dot {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: inline-block;
    background-color: #393939;
    border-radius: 50%;
    width: 11px;
    height: 11px;
    -webkit-transition: -webkit-transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
.yellow_btn .circle .arrow {
  font-size: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  width: 18px;
  height: 13px;
  background-image: url(../images/common/arrow_b.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  /* 751- */
}
@media all and (min-width: 751px) {
  .yellow_btn .circle .arrow {
    left: 25%;
    width: 25px;
    height: 18px;
    opacity: 0;
    background-image: url(../images/common/arrow_w.svg);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .yellow_btn:hover .circle .dot {
    -webkit-transform: translate(-50%, -50%) scale(5.4);
            transform: translate(-50%, -50%) scale(5.4);
  }
  .yellow_btn:hover .circle .arrow {
    opacity: 1;
    left: 50%;
  }
}
.yellow_btn.scroll_active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.btn_back a.yellow_btn .text {
  padding-right: 48px;
  padding-left: unset;
}
.btn_back a.yellow_btn .circle {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.btn_mini a.yellow_btn {
  max-width: 260px;
  height: 52px;
  margin: 70px auto 0;
}
.btn_mini a.yellow_btn .circle {
  width: 34px;
  height: 34px;
}
.btn_mini a.yellow_btn .text {
  font-size: 15px;
  padding-left: 24px;
}

/*----------------------------------------------------
  【ホバーアクション】テキストがウェーブする
  ・aタグにhov_waveをつける
  ・文字を囲むタグにtext_waveとjs_splitをつける
----------------------------------------------------*/
.text_wave span {
  /* 751- */
}
@media all and (min-width: 751px) {
  .text_wave span {
    position: relative;
    top: 0;
  }
}

.hov_wave {
  /* 751- */
}
@media (min-width: 751px) and (hover: hover) {
  .hov_wave:hover .text_wave span {
    -webkit-animation: text_wave 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
            animation: text_wave 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}
@media (min-width: 751px) and (hover: hover) {
  .hov_wave.text_wave:hover span {
    -webkit-animation: text_wave 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
            animation: text_wave 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}

@-webkit-keyframes text_wave {
  0% {
    top: 0;
  }
  50% {
    top: -0.6rem;
  }
  100% {
    top: 0;
  }
}

@keyframes text_wave {
  0% {
    top: 0;
  }
  50% {
    top: -0.6rem;
  }
  100% {
    top: 0;
  }
}
/*----------------------------------------------------
  【ホバーアクション】アンダーラインが一度消えて出てくる
  ・aタグにhov_ulineをつける
----------------------------------------------------*/
.hov_uline {
  position: relative;
  display: inline-block;
  /* 751- */
}
.hov_uline::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background-color: #686E72;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
@media (min-width: 751px) and (hover: hover) {
  .hov_uline:hover::before {
    -webkit-animation: underline 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
            animation: underline 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  }
  @-webkit-keyframes underline {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-transform-origin: right top;
              transform-origin: right top;
    }
    48% {
      -webkit-transform: scale(0, 1);
              transform: scale(0, 1);
      -webkit-transform-origin: right top;
              transform-origin: right top;
    }
    52% {
      -webkit-transform-origin: left top;
              transform-origin: left top;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-transform-origin: left top;
              transform-origin: left top;
    }
  }
  @keyframes underline {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-transform-origin: right top;
              transform-origin: right top;
    }
    48% {
      -webkit-transform: scale(0, 1);
              transform: scale(0, 1);
      -webkit-transform-origin: right top;
              transform-origin: right top;
    }
    52% {
      -webkit-transform-origin: left top;
              transform-origin: left top;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-transform-origin: left top;
              transform-origin: left top;
    }
  }
}

/*----------------------------------------------------
  【アニメ】チェックが入る
----------------------------------------------------*/
.checkcircle {
  position: relative;
  padding-left: 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .checkcircle {
    padding-left: 40px;
  }
}
.checkcircle::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  width: 19px;
  height: 19px;
  background-color: #f7d644;
  border-radius: 50%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  /* 751- */
}
@media all and (min-width: 751px) {
  .checkcircle::before {
    width: 26px;
    height: 26px;
  }
}
.checkcircle::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/common/check_b.svg);
  width: 20px;
  height: 16px;
  top: 2px;
  left: 3px;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  /* 751- */
}
@media all and (min-width: 751px) {
  .checkcircle::after {
    width: 28px;
    height: 23px;
    top: 4px;
    left: 4px;
  }
}

@-webkit-keyframes check_anime {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  30% {
    -webkit-clip-path: inset(0 20% 0 0);
            clip-path: inset(0 20% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}

@keyframes check_anime {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  30% {
    -webkit-clip-path: inset(0 20% 0 0);
            clip-path: inset(0 20% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
/*----------------------------------------------------
  下層ページタイトル
----------------------------------------------------*/
.page_ttl {
  position: relative;
  height: 186px;
  width: 100%;
  background-color: #f7d644;
  z-index: 0;
  overflow: hidden;
  /* 751- */
}
@media all and (min-width: 751px) {
  .page_ttl {
    height: 280px;
  }
}
.page_ttl::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/ttlbg_sp.webp);
  background-size: auto 100%;
  mix-blend-mode: multiply;
  z-index: -1;
  /* 751- */
}
@media all and (min-width: 751px) {
  .page_ttl::before {
    background-image: url(../images/common/ttlbg_pc.webp);
  }
}
.page_ttl h1 {
  position: relative;
  padding-top: 43px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.02em;
  z-index: 2;
  /* 751- */
}
@media all and (min-width: 751px) {
  .page_ttl h1 {
    padding-top: 90px;
    font-size: 34px;
  }
}
.page_ttl .en {
  position: absolute;
  bottom: 0;
  right: -10px;
  font-family: "Jost", sans-serif;
  font-size: 82px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  overflow: hidden;
  font-weight: 500;
  /* 751- */
  /* 751-960 */
}
@media all and (min-width: 751px) {
  .page_ttl .en {
    font-size: 282px;
    bottom: -70px;
    right: -30px;
  }
}
@media screen and (min-width: 751px) and (max-width: 960px) {
  .page_ttl .en {
    font-size: 200px;
    bottom: -30px;
  }
}
.page_ttl .en span {
  position: relative;
  top: 10rem;
  opacity: 0;
  -webkit-animation: en_appear 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 1s forwards;
          animation: en_appear 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 1s forwards;
}
@-webkit-keyframes en_appear {
  0% {
    top: 10rem;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes en_appear {
  0% {
    top: 10rem;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

.typing_anime::after {
  position: relative;
  content: "|";
  -webkit-animation: typinganime 0.8s ease infinite;
          animation: typinganime 0.8s ease infinite;
  top: -2px;
  left: 3px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .typing_anime::after {
    top: -3px;
    left: 8px;
  }
}
.typing_anime span {
  display: none;
}

@-webkit-keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*----------------------------------------------------
  下層ページパンクズ
----------------------------------------------------*/
.breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 3px;
  padding-top: 18px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .breadcrumb ul {
    padding-top: 22px;
  }
}
.breadcrumb ul li {
  color: #686E72;
  font-size: 11px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .breadcrumb ul li {
    font-size: 12px;
  }
}
.breadcrumb ul li:not(:first-child)::before {
  content: "＞";
  padding: 0 2px;
}
.breadcrumb ul li a {
  color: #686E72;
}

/*----------------------------------------------------
  下層ページコンテンツ
----------------------------------------------------*/
.subpage_content {
  padding: 66px 0 110px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .subpage_content {
    padding: 141px 0 200px;
  }
}

/*----------------------------------------------------
  PCでサイドナビがあるレイアウト
----------------------------------------------------*/
.sidenav_wrap {
  /* 1101- */
}
@media all and (min-width: 1101px) {
  .sidenav_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.sidenav_wrap .nav_area {
  /* 1101- */
}
@media all and (min-width: 1101px) {
  .sidenav_wrap .nav_area {
    width: 23%;
    max-width: 250px;
    padding-right: 40px;
    position: sticky;
    top: 0;
    padding-top: 140px;
    margin-top: -140px;
  }
}
.sidenav_wrap .cont_area {
  /* 1101- */
}
@media all and (min-width: 1101px) {
  .sidenav_wrap .cont_area {
    width: 87%;
  }
}

/*----------------------------------------------------
  サービスアイコンのアニメーション
----------------------------------------------------*/
.service_lst > li .icon {
  position: relative;
  width: 77px;
  aspect-ratio: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.1s;
  transition: -webkit-transform 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.1s;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.1s;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.1s, -webkit-transform 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.1s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* 751- */
  /* 751-960 */
}
@media all and (min-width: 751px) {
  .service_lst > li .icon {
    width: 125px;
  }
}
@media screen and (min-width: 751px) and (max-width: 960px) {
  .service_lst > li .icon {
    width: 100px;
  }
}
.service_lst > li.tate .icon img {
  height: 100%;
  width: auto;
}
.service_lst > li.parts .icon::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.1s;
  transition: all 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.1s;
}
.service_lst > li.zoom .icon::before {
  -webkit-transform: scale(0);
          transform: scale(0);
}
.service_lst > li.zoom.scroll_active .icon::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.service_lst > li.fadein .icon::before {
  opacity: 0;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.service_lst > li.fadein.scroll_active .icon::before {
  opacity: 1;
}
.service_lst > li#wordpress .icon::before {
  background-image: url(../images/top/service/wordpress_parts.png);
}
.service_lst > li#mt .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.service_lst > li#mt.scroll_active .icon {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.service_lst > li#sass .icon::before {
  background-image: url(../images/top/service/sass_parts.png);
}
.service_lst > li#ec .icon {
  overflow: hidden;
}
.service_lst > li#ec .icon::before {
  background-image: url(../images/top/service/ec_parts.png);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.service_lst > li#ec.scroll_active .icon::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.service_lst > li#multilingual .icon::before {
  background-image: url(../images/top/service/multilingual_parts.png);
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}
.service_lst > li#multilingual.scroll_active .icon::before {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
}
.service_lst > li#lp .icon {
  overflow: hidden;
}
.service_lst > li#lp .icon::before {
  background-image: url(../images/top/service/lp_parts.png);
  -webkit-transform: translateX(-80%) translateY(100%);
          transform: translateX(-80%) translateY(100%);
}
.service_lst > li#lp.scroll_active .icon::before {
  -webkit-transform: translateX(0) translateY(0);
          transform: translateX(0) translateY(0);
}
.service_lst > li#responsive .icon {
  overflow: hidden;
}
.service_lst > li#responsive .icon::before {
  background-image: url(../images/top/service/responsive_parts.png);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.service_lst > li#responsive.scroll_active .icon::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.service_lst > li#liquid .icon::before {
  background-image: url(../images/top/service/liquid_parts.png);
}
.service_lst > li#mobile .icon::before {
  background-image: url(../images/top/service/mobile_parts.png);
  -webkit-transform-origin: 60% 3%;
          transform-origin: 60% 3%;
}
.service_lst > li#accessibility .icon::before {
  background-image: url(../images/top/service/accessibility_parts.png);
}
.service_lst > li#animation .icon::before {
  z-index: -1;
  background-image: url(../images/top/service/animation_parts.png);
}
.service_lst > li#design .icon {
  overflow: hidden;
}
.service_lst > li#design .icon::before {
  background-image: url(../images/top/service/design_parts.png);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.service_lst > li#design.scroll_active .icon::before {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
.service_lst > li#headless .icon::before {
  background-image: url(../images/top/service/headless_parts.png);
}
.service_lst > li#framework .icon {
  overflow: hidden;
}
.service_lst > li#framework .icon::before {
  background-image: url(../images/top/service/framework_parts.png);
  z-index: -1;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
}
.service_lst > li#framework.scroll_active .icon::before {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
.service_lst > li#laravel .icon::before {
  background-image: url(../images/top/service/laravel_parts.png);
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
}
.service_lst > li#laravel.scroll_active .icon::before {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.service_lst > li#qr .icon::before {
  background-image: url(../images/top/service/qr_parts.png);
}
.service_lst > li#payment .icon::before {
  background-image: url(../images/top/service/payment_parts.png);
  -webkit-transform: translateX(-30%);
          transform: translateX(-30%);
}
.service_lst > li#payment.scroll_active .icon::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.service_lst > li#member .icon::before {
  background-image: url(../images/top/service/member_parts.png);
  -webkit-transform-origin: 60% 3%;
          transform-origin: 60% 3%;
}
.service_lst > li#python .icon::before {
  background-image: url(../images/top/service/python_parts.png);
}
.service_lst > li#git .icon {
  overflow: hidden;
}
.service_lst > li#git .icon::before {
  background-image: url(../images/top/service/git_parts.png);
  -webkit-transform: translateX(-50%) translateY(-80%);
          transform: translateX(-50%) translateY(-80%);
}
.service_lst > li#git.scroll_active .icon::before {
  -webkit-transform: translate(0);
          transform: translate(0);
}
.service_lst > li#gulp .icon {
  -webkit-transform: translateY(-30%);
          transform: translateY(-30%);
  opacity: 0;
}
.service_lst > li#gulp.scroll_active .icon {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.service_lst > li#guideline .icon {
  overflow: hidden;
}
.service_lst > li#guideline .icon::before {
  z-index: -1;
  background-image: url(../images/top/service/guideline_parts.png);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.service_lst > li#guideline.scroll_active .icon::before {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.service_lst > li#testing .icon::before {
  background-image: url(../images/top/service/testing_parts.png);
}
.service_lst > li#upload .icon::before {
  background-image: url(../images/top/service/upload_parts.png);
}

/*----------------------------------------------------
  cms_banner
----------------------------------------------------*/
.cms_banner {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #fff;
  z-index: 0;
  /* 751- */
}
.cms_banner::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  background-image: url(../images/top/cms_banner_parts01.png);
  -webkit-transform: rotate(16deg);
          transform: rotate(16deg);
  width: 17.41%;
  height: 74.64%;
  right: -1.5%;
  top: -9%;
}
.cms_banner::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  background-image: url(../images/top/cms_banner_parts02.png);
  width: 17.33%;
  height: 76.79%;
  right: 22%;
  top: 35%;
}
@media (min-width: 751px) and (hover: hover) {
  .cms_banner:hover::before {
    -webkit-animation: rotation1 3s linear infinite;
            animation: rotation1 3s linear infinite;
  }
  @-webkit-keyframes rotation1 {
    0% {
      -webkit-transform: rotate(16deg);
              transform: rotate(16deg);
    }
    100% {
      -webkit-transform: rotate(-376deg);
              transform: rotate(-376deg);
    }
  }
  @keyframes rotation1 {
    0% {
      -webkit-transform: rotate(16deg);
              transform: rotate(16deg);
    }
    100% {
      -webkit-transform: rotate(-376deg);
              transform: rotate(-376deg);
    }
  }
  .cms_banner:hover::after {
    -webkit-animation: rotation2 3s linear infinite;
            animation: rotation2 3s linear infinite;
  }
  @-webkit-keyframes rotation2 {
    0% {
      -webkit-transform: rotate(0);
              transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  @keyframes rotation2 {
    0% {
      -webkit-transform: rotate(0);
              transform: rotate(0);
    }
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
}

/*----------------------------------------------------
見積りアンカー
----------------------------------------------------*/
.anchor {
  position: fixed;
  right: -500px;
  bottom: 20px;
  z-index: 99;
  -webkit-animation: anchor_btn 1.2s 1.5s forwards;
          animation: anchor_btn 1.2s 1.5s forwards;
  /* 751- */
}
@media all and (min-width: 751px) {
  .anchor {
    bottom: 60px;
  }
}
@-webkit-keyframes anchor_btn {
  0% {
    right: -500px;
  }
  100% {
    right: 0;
  }
}
@keyframes anchor_btn {
  0% {
    right: -500px;
  }
  100% {
    right: 0;
  }
}
.anchor a {
  color: #fff;
  padding: 10px 20px 10px 65px;
  display: block;
  border-radius: 100px 0px 0px 100px;
  background: #393939;
  position: relative;
  font-size: 19px;
  text-align: right;
  right: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* -750 */
}
@media all and (max-width: 750px) {
  .anchor a {
    font-size: 11px;
    text-align: left;
    padding: 5px 20px 5px 50px;
  }
}
.anchor a span {
  font-size: 10px;
  display: block;
  position: relative;
  padding: 0 15px 0 0;
  /* -750 */
}
@media all and (max-width: 750px) {
  .anchor a span {
    display: none;
  }
}
.anchor a span::after {
  content: "";
  position: absolute;
  background-image: url(../images/top/icon_anchor_arr.png);
  width: 11px;
  height: 9px;
  background-size: cover;
  top: 50%;
  margin-top: -4px;
  right: 0px;
}
.anchor a::after {
  content: "";
  position: absolute;
  background-image: url(../images/top/icon_anchor.png);
  width: 34px;
  height: 34px;
  background-size: cover;
  top: 50%;
  margin-top: -17px;
  left: 5px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .anchor a::after {
    width: 46px;
    height: 46px;
    margin-top: -23px;
    left: 8px;
  }
}
.anchor a:hover {
  /* 751- */
}
@media all and (min-width: 751px) {
  .anchor a:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    right: 5px;
  }
}

#pageHome .anchor {
  -webkit-animation: anchor_btn 1.2s 8.5s forwards;
          animation: anchor_btn 1.2s 8.5s forwards;
}
/*# sourceMappingURL=common.css.map */