* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  color: #3e3e3e;
  font-weight: 500;
  font-size: 100.01%;
  line-height: 1.6;
  background: rgba(23, 31, 107, 0.1);
  overflow-x: hidden;
}

ul {
  list-style: none;
}

img {
  width: 0%;
  vertical-align: bottom;
  border: 0;
}

.main img{width:100%;}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h1 {
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
}


h2 {
  font-size: 28px;
  line-height: 1.333;
  text-align: center;
}



h3 {
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
}

p {
  font-size: 20px;
}


a {
  text-decoration: none;
  color: inherit;
}

.pc {
  display: inline-block;
}


.sp {
  display: none !important;
}


/*==============================================
# 共通CSS
/*============================================*/
.util-btn a {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 400px;
  margin: 15px auto;
  padding: 10px 10px;
  color: #fff;
  font-weight: bold;
  background: #960f32;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  white-space: nowrap;
}

.util-btn a:hover {
  background: #fff;
  color: #960f32;
}
.util-btn a:hover::before, .util-btn a:hover::after {
  width: 100%;
  height: 100%;
}
.util-btn a:hover::before {
  border-top-color: #960f32;
  border-right-color: #960f32;
  -webkit-transition: width 0.15s ease-out, height 0.15s ease-out 0.15s;
  transition: width 0.15s ease-out, height 0.15s ease-out 0.15s;
}
.util-btn a:hover::after {
  border-bottom-color: #960f32;
  border-left-color: #960f32;
  -webkit-transition: border-color 0s ease-out 0.2s, width 0.15s ease-out 0.2s, height 0.15s ease-out 0.3s;
  transition: border-color 0s ease-out 0.2s, width 0.15s ease-out 0.2s, height 0.15s ease-out 0.3s;
}
.util-btn a::before, .util-btn a::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  content: "";
  position: absolute;
  border: 2px solid transparent;
  width: 0;
  height: 0;
}
.util-btn a::before {
  top: 0;
  left: 0;
}
.util-btn a::after {
  bottom: 0;
  right: 0;
}

.util_ttl span {
  font-size: 18px;
}

.util_ttl {
  position: relative;
  width: 300px;
  margin: 0 auto;
}
.util_ttl:before, .util_ttl:after {
  content: "";
  font-size: 48px;
  background: #3e3e3e;
  width: 3px;
  height: 48px;
  position: absolute;
}
.util_ttl:before {
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.util_ttl:after {
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.wrapper {
  padding: 0 3%;
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
}

/*==============================================
# animation
/*============================================*/
.anim1 {
  -webkit-animation-name: anim-right;
          animation-name: anim-right;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.anim2 {
  -webkit-animation-name: anim-left;
          animation-name: anim-left;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.anim3 {
  -webkit-animation-name: fade-in-up;
          animation-name: fade-in-up;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

@-webkit-keyframes anim-right {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
  }
}

@keyframes anim-right {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
  }
}
@-webkit-keyframes anim-left {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes anim-left {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-up {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes fade-in-up {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
}
/*==============================================
# header
/*============================================*/
header#heading {
  background: -webkit-gradient(linear, left top, right top, from(#171f6b), to(#161b3e));
  background: linear-gradient(to right, #171f6b, #161b3e);
  position: fixed;
  width: 100%;
  top: -120px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 999;
}

header#heading.show {
  top: 0;
  z-index: 999;
  text-align:center;
}

header#heading div.header_name {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding-top: 10px;
  z-index: 999;
}


header#heading div.tel {
  color: #fff;
  font-weight: 700;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  padding-bottom: 0.5%;
  z-index: 999;
}
header#heading div.tel:hover {
  opacity: 0.7;
}

header#heading .nav {
  background: -webkit-gradient(linear, left top, right top, from(#171f6b), to(#161b3e));
  background: linear-gradient(to right, #171f6b, #161b3e);
  color: #fff;
  text-align: center;
  z-index: 999;
}


header#heading nav ul {
  width: 100%;
  position: relative;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header#heading nav ul ul {
  display: block;
}

header#heading nav ul li a {
  position: relative;
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 20px 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
header#heading nav ul li a:hover {
  color: #fff;
}

header#heading nav ul li li a {
  padding: 20px;
}

header#heading nav ul li.has-child > a::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 25px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

header#heading nav ul li.has-child img {
  max-width: 100%;
  height: 140px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  vertical-align: bottom;
  display: inline-block;
  margin-bottom: 20px;
}
header#heading nav ul li.has-child img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

header#heading nav ul li.has-child dt {
  overflow: hidden;
  height: 20vh;
  margin: 0 0 10px 0;
}
@media (min-width:561px) and (max-width: 1279px) {
  header#heading nav ul li.has-child dt {
    height: 25vh;
  }
}

header#heading nav ul li.has-child dt p {
  display: block;
}

header#heading nav ul li.has-child ul {
  position: absolute;
  left: 5%;
  top: 58px;
  z-index: 4;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #888;
  width: 90%;
  display: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

header#heading nav ul li.has-child:hover > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  visibility: visible;
  opacity: 1;
}

header#heading nav ul li.has-child ul li {
  width: 20%;
}

header#heading nav ul li.has-child ul li a {
  color: #fff;
}

header#heading nav ul li.has-child ul li a:hover,
header#heading nav ul li.has-child ul li a:active {
  background: -webkit-gradient(linear, left top, right top, from(#171f6b), to(#161b3e));
  background: linear-gradient(to right, #171f6b, #161b3e);
}

.drawer__btn {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 10002;
  width: 50px;
  height: 45px;
  background-color: #555;
  overflow: hidden;
  cursor: pointer;
}
.drawer__btn span {
  display: block;
  width: 50%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer__btn span:nth-child(1) {
  -webkit-transform: translate(-50%, -10px);
          transform: translate(-50%, -10px);
}
.drawer__btn span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.drawer__btn span:nth-child(3) {
  -webkit-transform: translate(-50%, 8px);
          transform: translate(-50%, 8px);
}
.drawer__btn.active span:nth-child(1) {
  -webkit-transform: translate(-50%, 0) rotate(45deg);
          transform: translate(-50%, 0) rotate(45deg);
}
.drawer__btn.active span:nth-child(2) {
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  opacity: 0;
}
.drawer__btn.active span:nth-child(3) {
  -webkit-transform: translate(-50%, 0) rotate(-45deg);
          transform: translate(-50%, 0) rotate(-45deg);
}
.drawer__menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10001;
  width: 300px;
  height: 100vh;
  overflow-y: auto;
  background-color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
}
.drawer__menu.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.drawer__bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  cursor: pointer;
}
.drawer__bg.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.drawer__menu ul {
  padding: 30% 0 0 5%;
}
.drawer__menu ul li {
  padding: 3% 0;
  color: #fff;
}

/*==============================================
# mv
/*============================================*/
#top {
  margin: 0;
  padding: 0;
  background: url(https://kinyutorihiki.com/files/kinyutorihiki/mv_2.png) no-repeat center center/100%;
  position: relative;
}


#top .mv_container {
  padding-bottom: 55%;
  width: 100%;
  position: relative;
}


.image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-size: 100%;
  background-position: center center;
  -webkit-animation: image-switch-animation 25s infinite;
          animation: image-switch-animation 25s infinite;
}


.src1 {
  background-image: url(https://kinyutorihiki.com/files/kinyutorihiki/mv_1.png);
}


.src2 {
  background-image: url(https://kinyutorihiki.com/files/kinyutorihiki/mv_2.png);
}


.src3 {
  background-image: url(https://kinyutorihiki.com/files/kinyutorihiki/mv_3.png);
}


@-webkit-keyframes image-switch-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes image-switch-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.image:nth-of-type(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.image:nth-of-type(2) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.image:nth-of-type(3) {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}

#top .mv {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  color: #fff;
  width: 100%;
}

#top .mv .mv_head {
  text-align: center;
}

#top .mv .mv_head span {
  font-size: 12px;
}


#top .mv .mv_head p {
  line-height: 3;
}


#top .mv nav ul {
  width: 100%;
  font-size: 20px;
  letter-spacing: 1.2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4% 0 0;
}


#top .mv nav ul li {
  position: relative;
}

#top .mv nav ul li a {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}


#top .mv nav ul li a:hover {
  opacity: 0.7;
}

#top .mv nav ul li:after {
  content: "|";
  position: absolute;
  right: -40px;
}

#top .mv nav ul li:last-child::after {
  content: "";
}

/*==============================================
# 追従
/*============================================*/
#balloon5 {
  margin: 1.5em 0;
  overflow: hidden;
  position: fixed;
  z-index: 10000;
}

#balloon5 .faceicon {
  width: 80px;
  height: 80px;
  position: fixed;
  right: 20px;
  bottom: 30px;
  border-radius: 50%;
  background: #960f32;
  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;
  -webkit-box-shadow: 3px 8px 6px #3e3e3e;
          box-shadow: 3px 8px 6px #3e3e3e;
  -webkit-animation: mochimochi 3s infinite;
          animation: mochimochi 3s infinite;
}

@-webkit-keyframes mochimochi {
  0% {
    -webkit-transform: scale(1, 0.95);
            transform: scale(1, 0.95);
  }
  20% {
    -webkit-transform: scale(0.95, 1.05);
            transform: scale(0.95, 1.05);
  }
  90% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(1, 0.95);
            transform: scale(1, 0.95);
  }
}

@keyframes mochimochi {
  0% {
    -webkit-transform: scale(1, 0.95);
            transform: scale(1, 0.95);
  }
  20% {
    -webkit-transform: scale(0.95, 1.05);
            transform: scale(0.95, 1.05);
  }
  90% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(1, 0.95);
            transform: scale(1, 0.95);
  }
}
#balloon5 .faceicon a img {
  width: 45px;
  height: auto;
}

#balloon5 .chatting {
  width: 350px;
  margin-bottom: 3%;
  position: fixed;
  right: 40px;
  bottom: 80px;
}

.says {
  position: relative;
  margin: 5px 0 0 105px;
  padding: 17px 13px;
  border-radius: 12px;
  background: #fff;
  font-weight: 600;
  -webkit-box-shadow: 3px 12px 8px #3e3e3e;
          box-shadow: 3px 12px 8px #3e3e3e;
}

.says:after {
  content: "▼";
  position: absolute;
  top: 45px;
  left: 200px;
  color: #fff;
  font-size: 24px;
}

.says p {
  margin: 0;
  padding: 0;
}

/*==============================================
# ad slider
/*============================================*/
#ad {
  background: url(http://kinyutorihiki.com/files/kinyutorihiki/bg.png) repeat center center/cover;
  padding: 2% 0;
  max-width: 100%;
}

#area {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

#images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#images a img {
  width: 100%;
  padding: 10%;
}

#images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

#images a:nth-child(2) {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

#images a:nth-child(1) {
  opacity: 0.4;
}

#images a:nth-child(3) {
  opacity: 0.4;
}

/*==============================================
# about
/*============================================*/
#about {
  background: url(http://kinyutorihiki.com/files/kinyutorihiki/bg.png) repeat center center/cover;
  position: relative;
  z-index: -5;
}

.about_ttl {
  font-weight: 600;
  line-height: 1.8;
  padding: 2% 0;
}

.about_content {
  background: linear-gradient(45deg, #1e2135, #171f6b, #d4d7ed);
  -webkit-animation: gradient 20s ease infinite;
          animation: gradient 20s ease infinite;
  background-size: 200% 200%;
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.about_list1{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  text-align: center;
}


.about_list1 li{
  background: #fff;
  padding: 3% 2% 15%;
  margin: 4% 0 0;
  -webkit-box-shadow: 5px 5px 10px #000;
          box-shadow: 5px 5px 10px #000;
  position: relative;
}

.about_list1 li {
  width: calc(100% - 13.3333333333px);
}



.about_list1 li:first-of-type::before, .about_list1 li:nth-of-type(2)::before, .about_list1 li:last-of-type::before{
  content: "";
  position: absolute;
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
  left: 25%;
  bottom: -30%;
}


.about_list2 li:first-of-type::before{
  right: 20%;
  -webkit-transform: scale(0.45);
          transform: scale(0.45);
}


.about_list1 li:first-of-type::before {
  content: url(http://kinyutorihiki.com/files/kinyutorihiki/problem1.png);
}

.about_list1 li:nth-of-type(2)::before {
  content: url(http://kinyutorihiki.com/files/kinyutorihiki/problem2.png);
}

.about_list1 li:last-of-type::before {
  content: url(http://kinyutorihiki.com/files/kinyutorihiki/problem3.png);
}

.about_list2 li:first-of-type::before {
  content: url(http://kinyutorihiki.com/files/kinyutorihiki/problem4.png);
}

.about_list2 li:nth-of-type(2)::before {
  content: url(http://kinyutorihiki.com/files/kinyutorihiki/problem5.png);
}
.about_list2 li:last-of-type::before {
  content: url(http://kinyutorihiki.com/files/kinyutorihiki/problem6.png);
}

.about_list1 li h3, .about_list2 li h3 {
  line-height: 1.8;
}


.about_list1 li h3 span, .about_list2 li h3 span {
  color: #960f32;
}

.about_lead {
  width: 100%;
  text-align: center;
  padding: 20% 3% 10%;
  position: relative;
}

.about_lead_box {
  width: 40%;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(80%, #fff), to(#bcbed4));
  background: linear-gradient(to right bottom, #fff 80%, #bcbed4);
  padding: 5% 0;
  -webkit-box-shadow: 6px 8px 10px #3e3e3e;
          box-shadow: 6px 8px 10px #3e3e3e;
  margin-left: 10%;
  position: relative;
}


.about_lead_box h3 {
  padding-bottom: 5%;
}

.about_lead_box::before {
  content: url(http://kinyutorihiki.com/files/kinyutorihiki/support5.png);
  position: absolute;
  z-index: -1;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  left: 120px;
  top: -200px;
}


.about_lead::before {
  content: url(http://kinyutorihiki.com/files/kinyutorihiki/element3.png);
  position: absolute;
  left: 0;
  z-index: -1;
  opacity: 0.4;
  top: 10%;
  left: 5%;
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}

/*==============================================
# support
/*============================================*/
#support {
  background: linear-gradient(45deg, #1e2135, #171f6b, #d4d7ed);
  -webkit-animation: gradient 20s ease infinite;
          animation: gradient 20s ease infinite;
  background-size: 200% 200%;
  z-index: -2;
  padding: 5% 0;
}

#support .util_ttl,
#achieve .util_ttl,
#sns .util_ttl {
  color: #fff;
}
#support .util_ttl::before, #support .util_ttl::after,
#achieve .util_ttl::before,
#achieve .util_ttl::after,
#sns .util_ttl::before,
#sns .util_ttl::after {
  background-color: #fff;
}

#support .support_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5% 0;
  position: relative;
}


#support .support_container:nth-child(2n),
#support .support_container:nth-child(4n) {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

#support .support_box {
  background: -webkit-gradient(linear, left top, right bottom, color-stop(40%, #fff), to(#bcbed4));
  background: linear-gradient(to right bottom, #fff 40%, #bcbed4);
  width: 50%;
  text-align: center;
  padding: 5% 0;
  z-index: 2;
}


#support .support_box h3 {
  padding-bottom: 3%;
}

#support .support_box p {
  line-height: 1.8;
  padding-bottom: 5%;
}

#support .support_img {
  position: absolute;
  width: 100%;
  z-index: 1;
  right: 10%;
  top: 30%;
  width: 45%;
}

#support .support_container:nth-child(2n) .support_img,
#support .support_container:nth-child(4n) .support_img {
  left: 10%;
}

#support .support_img img {
  width: 100%;
}


#support .util-btn a:hover {
  background: transparent;
}

/*==============================================
# achieve
/*============================================*/
.img_bg_01 {
  background-image: url(http://kinyutorihiki.com/files/kinyutorihiki/bg2.png);
}

.parallax_content {
  min-height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  padding: 2% 0;
}

.achieve_content {
  text-align: center;
  padding: 4% 0;
  position: relative;
  background: url(http://kinyutorihiki.com/files/kinyutorihiki/bg.png);
}

.achieve_content::before {
  content: url(http://kinyutorihiki.com/files/kinyutorihiki/element2.png);
  opacity: 0.4;
  position: absolute;
  z-index: -1;
  right: 10%;
  bottom: 20%;
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
}

.note_wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5%;
}


#achieve .util-btn a:hover {
  background: transparent;
}

/*==============================================
# voice
/*============================================*/
#voice {
  padding: 5% 0;
  background: url(http://kinyutorihiki.com/files/kinyutorihiki/bg.png);
  z-index: -2;
}

.voice_box {
  background: -webkit-gradient(linear, left top, right bottom, color-stop(40%, #fff), to(#bcbed4));
  background: linear-gradient(to right bottom, #fff 40%, #bcbed4);
  padding: 4% 5%;
  text-align: left;
  width: 60%;
  margin-top: 5%;
  position: relative;
  z-index: 5;
}


.voice_box::before {
  content: url(http://kinyutorihiki.com/files/kinyutorihiki/voice.jpeg);
  position: absolute;
  z-index: -2;
  left: 110%;
  -webkit-transform: scale(1.8, 1.8);
          transform: scale(1.8, 1.8);
  top: 30%;
}


.voice_txt {
  text-align: center;
  padding: 5% 3% 0;
}

/*==============================================
# sns
/*============================================*/
#sns .util_ttl {
  padding: 2% 0;
}

.img_bg_02 {
  background-image: url(http://kinyutorihiki.com/files/kinyutorihiki/bg3.png);
  background-size: cover;
}

.img_bg_03 {
  background-image: url(http://kinyutorihiki.com/files/kinyutorihiki/bg5.png);
  background-size: cover;
}

.img_bg_04 {
  background-image: url(http://kinyutorihiki.com/files/kinyutorihiki/bg4.png);
  background-size: cover;
}

.sns_content {
  height: 90vh;
}


#sns .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 12%;
  gap: 5%;
}


.sns_box {
  background: -webkit-gradient(linear, left top, right bottom, color-stop(40%, #fff), to(#bcbed4));
  background: linear-gradient(to right bottom, #fff 40%, #bcbed4);
  text-align: center;
  padding: 5%;
  width: 50%;
  position: relative;
}


.sns_01:before {
  content: url(http://kinyutorihiki.com/files/kinyutorihiki/6615.jpg);
  position: absolute;
  right: 0;
  top: -50%;
  -webkit-transform: scale(0.6, 0.6);
          transform: scale(0.6, 0.6);
}


.sns_02:before {
  content: url(http://kinyutorihiki.com/files/kinyutorihiki/youtube.png);
  position: absolute;
  right: 0;
  top: -10%;
  -webkit-transform: scale(0.7, 0.7);
          transform: scale(0.7, 0.7);
}


.sns_03:before {
  content: url(http://kinyutorihiki.com/files/kinyutorihiki/note.png);
  position: absolute;
  right: -15%;
  top: -30%;
  -webkit-transform: scale(0.6, 0.6);
          transform: scale(0.6, 0.6);
}






.sns_box h3 {
  position: relative;
}

.sns_box h3::before {
  content: "";
  width: 40px;
  background: #3e3e3e;
  height: 2px;
  position: absolute;
  top: 140%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.sns_box p {
  padding-top: 6%;
}

#sns .util-btn {
  margin-top: 7%;
}


/*==============================================
# office
/*============================================*/
#office {
  background: url(http://kinyutorihiki.com/files/kinyutorihiki/bg.png) no-repeat center center/cover;
  padding: 5% 0;
}

#office .wrapper {
  max-width: 680px;
}

#office dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  padding: 5% 0 0;
  font-weight: bold;
  position: relative;
}

#office dl::before {
  content: url(http://kinyutorihiki.com/files/kinyutorihiki/element4.png);
  position: absolute;
  opacity: 0.4;
  -webkit-transform: scale(1.8, 1.8);
          transform: scale(1.8, 1.8);
  top: 30%;
  left: -50%;
}

#office dl dt {
  width: 30%;
  text-align: left;
  padding: 2% 0 5% 15%;
}


#office dl dd {
  width: 70%;
  text-align: left;
  padding: 2% 0 5% 30%;
}


#office dl dt,
#office dl dd {
  border-bottom: 1px solid #3e3e3e;
  margin-bottom: 3%;
}

/*==============================================
# info
/*============================================*/

#info{
  padding: 2% 0;

}

#info ul{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}


#info ul li{
  width: 33.33%;
  text-align: center;
  font-weight: bold;
  color: #fff;
}


#info ul li a{
  transition: all .2s;
}
#info ul li a:hover{
    opacity: .7;

}
/*==============================================
#footer
/*============================================*/

footer {
    background: linear-gradient(45deg, #1e2135, #171f6b, #d4d7ed);
    -webkit-animation: gradient 20s ease infinite;
            animation: gradient 20s ease infinite;
    background-size: 200% 200%;
    z-index: -2;
    padding: 5% 0 0;
  }
  
  .footer_container {
  }

  
  .footer_sns {
    width: 100%;
  }

  
  .footer_sns ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    gap: 10%;
    align-items: center;
    padding-bottom: 5%;
  }

  
  .footer_sns {
    margin-top: 3%;
  }

  .footer_sns ul li{
    width: 8%;
  }
  
  .footer_sns ul li a {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    width: 20%;
  }
  .footer_sns ul li a:hover {
    opacity: 0.7;
  }
  
  .footer_sns .sns_list li a img {
    width:100%;
    height:auto;
  }

  .footer_sns .sns_list li:last-of-type a img{
    background: #fff;
  }

  .footer_sitemap{
    display: flex;
    justify-content: center;
    align-items: center;
  }


  .footer_center,
  .footer_right{
    width: 35%;
    padding-bottom: 4%;
  }


  
  .mail_ad a img {
    width: 100%;
  }

  
  .mail_ad a {
    display: block;
    width: 80%;
  }
  

  
  .sitemap {
    color: #fff;
  }

  
  .sitemap li {
    padding: 2% 0;
  }
  
  .sitemap li a {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .sitemap li a:hover {
    opacity: 0.7;
  }
  
  footer small {
    color: #fff;
    width: 100%;
    text-align: center;
    display: block;
  }

#container_pre,
#topmsg,
#header_menu_pre,
#div_header_menu_hansyuhou,
#header_menu,
#header_menu_suf,
#header_pre,
div#header,
#header_suf,
#navigation,
#main_pre,
#sidebar_left
{
    display: none;
}

#main{
margin-top:-35px;
}