@charset "Shift_JIS";
.top_section {
  padding-bottom: 7.97101%;
  position: relative;
}

.top_section h1 {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 5;
}

.top_section h1 img {
  width: 100%;
}

.top_section h1 .title {
  width: 28.04348%;
  position: absolute;
  bottom: 15.50388%;
  right: 34.49275%;
}

.top_section .visual_box {
  overflow: hidden;
  background: #ffffff;
  position: relative;
  height: 800px;
}

.top_section .visual_box:before, .top_section .visual_box:after {
  content: "";
  display: table;
}

.top_section .visual_box:after {
  clear: both;
}

.top_section .visual_box img {
  width: 100%;
}

.top_section .visual_box .visual_box_top_img {
  position: relative;
  top: -80px;
}

.top_section .visual_box .visual_box_top_character {
  position: absolute;
  width: 19.56522%;
  bottom: 6.95652%;
  left: 1.81159%;
}

.top_section .visual_box .visual_box_top_character_new {
  position: absolute;
  width: 27.10145%;
  bottom: 36.23188%;
  right: 1.81159%;
}

.top_section .visual_box .visual_box_top_character_new_svg {
  position: absolute;
  width: 6.23188%;
  bottom: 18.84058%;
  right: 11.23188%;
}

.top_section .visual_box .visual_box_left {
  width: 33.33333%;
  float: left;
}

.top_section .visual_box .visual_box_left div {
  width: 100%;
  position: relative;
}

.top_section .visual_box .visual_box_left div .visual_box_left_top_img,
.top_section .visual_box .visual_box_left div .visual_box_left_bottom_img {
  position: relative;
  width: 100%;
  z-index: 2;
}

.top_section .visual_box .visual_box_left div .visual_box_left_top_character,
.top_section .visual_box .visual_box_left div .visual_box_left_bottom_character {
  width: 32.6087%;
  position: absolute;
  bottom: 6.08696%;
  left: 0;
  z-index: 3;
}

.top_section .visual_box .visual_box_right {
  width: 66.66667%;
  float: right;
}

.top_section .visual_box .visual_box_right div {
  width: 100%;
  position: relative;
}

.top_section .visual_box .visual_box_right div .visual_box_right_img {
  position: relative;
  width: 100%;
  z-index: 2;
}

.top_section .visual_box .visual_box_right div .visual_box_right_img_back {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.top_section .visual_box .visual_box_right div .visual_box_right_character {
  width: 35.32609%;
  position: absolute;
  bottom: 3.26087%;
  left: 0;
  z-index: 3;
}

.top_section .visual_box .visual_box_loadview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  background-color: #fff;
}

.visual_box_loader {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -25px 0 0 -12.5px;
  width: 25px;
  height: 25px;
  -webkit-animation: square 0.4s 0s linear infinite;
          animation: square 0.4s 0s linear infinite;
}

.visual_box_loader > div {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #0099ff;
  opacity: 0;
  border-radius: 50%;
  transition: opacity 0.4s linear, -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out, opacity 0.4s linear;
  transition: transform 0.4s ease-out, opacity 0.4s linear, -webkit-transform 0.4s ease-out;
}

.visual_box_loader > div:nth-child(1) {
  top: 0;
  left: 0;
  -webkit-transform: translateX(-200px) scale(2);
          transform: translateX(-200px) scale(2);
}

.visual_box_loader > div:nth-child(2) {
  top: 0;
  left: 13px;
  -webkit-transform: translateY(-200px) scale(2);
          transform: translateY(-200px) scale(2);
}

.visual_box_loader > div:nth-child(3) {
  top: 13px;
  left: 0;
  -webkit-transform: translateY(200px) scale(2);
          transform: translateY(200px) scale(2);
}

.visual_box_loader > div:nth-child(4) {
  top: 13px;
  left: 13px;
  -webkit-transform: translateX(200px) scale(2);
          transform: translateX(200px) scale(2);
}

.visual_box_loader.visual_box_loader-play > div {
  opacity: 1;
  -webkit-transform: translateX(0px) translateY(0px) scale(1);
          transform: translateX(0px) translateY(0px) scale(1);
}

@-webkit-keyframes square {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes square {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* {{{ 波紋のローディング
.visual_box_loader.visual_box_loader-play {
  $circleColor: #0099ff;

  &:before,
  &:after {
    content: '';
  }

  &:before,
  > div ,
  &:after {
    position: absolute;
    left: 50%;
    top: 47%;
    opacity: 0;
    margin: -50px 0 0 -50px;
    width: 100px;
    height: 100px;
    border: 3px solid $circleColor;
    border-radius: 50%;
    animation: ball 2.2s 0s linear infinite;
  }
  > div{
    animation-delay: 0.2s;
  }
  &:after{
    animation-delay: 0.4s;
  }
}
@keyframes ball {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  10% {
    transform: scale(0);
    opacity: 1;
  }
  80% {
    transform: scale(1);
    opacity: 0;
  }
}
}}} */
.main_section {
  padding: 80px 0 80px;
  width: 1110px;
  margin: 0 auto;
}

.main_section .link_contents {
  width: 1110px;
  margin: 0 0 55px;
}

.main_section .link_contents:after {
  content: "";
  clear: both;
}

.main_section .link_contents ul {
  width: 1150px;
  margin: -35px 0 0;
}

.main_section .link_contents ul:before, .main_section .link_contents ul:after {
  content: "";
  display: table;
}

.main_section .link_contents ul:after {
  clear: both;
}

.main_section .link_contents li {
  width: 540px;
  float: left;
  margin: 35px 30px 0 0;
  position: relative;
  text-align: center;
}

.main_section .link_contents li figure {
  margin: 0 0 15px;
}

.main_section .link_contents li figure .new {
  width: 80px;
  height: 40px;
  background: url("/2017/images/top/icn_new_w.png") no-repeat center top;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: block;
}

.main_section .link_contents li a {
  background: none !important;
  padding: 0 !important;
  color: #222;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  height: 48px;
  display: inline-block;
  text-align: center;
}

.main_section .link_contents li a:after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-out;
}

.main_section .link_contents li a:hover {
  background: none;
  color: #222;
}

.main_section .link_contents li a:hover:after {
  opacity: 0.6;
  background: #fff;
}

.main_section .link_contents li span {
  background: none !important;
  padding: 0 !important;
  color: #222;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  display: inline;
  text-align: center;
}

.main_section .link_products {
  width: 1110px;
  margin: 0 0 55px;
}

.main_section .link_products:after {
  content: "";
  clear: both;
}

.main_section .link_products ul {
  width: 1150px;
  margin: -35px 0 0;
}

.main_section .link_products ul:before, .main_section .link_products ul:after {
  content: "";
  display: table;
}

.main_section .link_products ul:after {
  clear: both;
}

.main_section .link_products li {
  width: 444px;
  float: left;
  margin: 35px 30px 0 0;
  padding: 0 70px 0 26px;
  position: relative;
  text-align: center;
}

.main_section .link_products li figure {
  margin: 0 0 15px;
}

.main_section .link_products li a {
  background: url("/2017/images/top/link_arrow.png") no-repeat right 0 top 3px;
  padding: 0 20px 0 0;
  color: #222;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  display: inline;
  text-align: center;
}

.main_section .link_products li a:after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-out;
}

.main_section .link_products li a:hover:after {
  opacity: 0.6;
  background: #fff;
}

.main_section .link_hydration {
  width: 1110px;
  margin: 0 auto;
}

.main_section .link_hydration:after {
  content: "";
  clear: both;
}

.main_section .link_hydration ul {
  width: 1150px;
  margin: -35px 0 0;
}

.main_section .link_hydration ul:before, .main_section .link_hydration ul:after {
  content: "";
  display: table;
}

.main_section .link_hydration ul:after {
  clear: both;
}

.main_section .link_hydration li {
  width: 540px;
  float: left;
  position: relative;
  text-align: center;
  margin: 35px 30px 0 0;
}

.main_section .link_hydration li figure {
  margin: 0 0 15px;
}

.main_section .link_hydration li a {
  background: url("/2017/images/top/link_arrow.png") no-repeat right 0 top 3px;
  padding: 0 20px 0 0;
  color: #222;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  display: inline;
  text-align: center;
}

.main_section .link_hydration li a:after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-out;
}

.main_section .link_hydration li a:hover:after {
  opacity: 0.6;
  background: #fff;
}

.bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 1;
}
