@charset "UTF-8";
/*-----------------------
common
-----------------------*/
/*-----------------------
mixin
-----------------------*/
/*-----------------------
variables
-----------------------*/
/* color */
/*mediaquery*/
/*-----------------------
extend
-----------------------*/
.link-arrow:before {
  position: absolute;
  content: "";
  top: 0.3rem;
  right: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-top: #55afb3 1px solid;
  border-right: #55afb3 1px solid;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.hover-underline, #gnav ul li a {
  position: relative;
}
.hover-underline:before, #gnav ul li a:before, .hover-underline:after, #gnav ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  display: inline-block;
  width: 0;
  height: 0.4rem;
  background: #55afb3;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hover-underline:before, #gnav ul li a:before {
  left: 50%;
}
.hover-underline:after, #gnav ul li a:after {
  right: 50%;
}
.hover-underline:hover:before, #gnav ul li a:hover:before, .hover-underline:hover:after, #gnav ul li a:hover:after {
  width: 50%;
}

.btn a {
  color: #55afb3;
  font-size: 1.4rem;
  -moz-border-radius: 5rem;
  -webkit-border-radius: 5rem;
  border-radius: 5rem;
  padding: 1.5rem 3rem;
  display: inline-block;
  border: 0.1rem solid #00ADB3;
  background: rgba(255, 255, 255, 0.4);
}
.btn a:hover {
  border: 0.1rem solid #00ADB3;
  background: #00ADB3;
  color: #fff;
}

/*-----------------------
reset
-----------------------*/
html, body, div, span, applet, object, iframe, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

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

caption, th, td {
  text-align: left;
  vertical-align: middle;
  font-weight: 200;
}

q::before, q::after, blockquote::before, blockquote::after {
  content: "";
  content: none;
}

a img {
  border: none;
}

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

ul {
  list-style: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

a {
  color: #4c4545;
  text-decoration: none;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:link {
  color: #4c4545;
}
a:active {
  color: #4c4545;
}
a:visited {
  color: #4c4545;
}
a:hover {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  color: rgba(76, 69, 69, 0.7);
}
a:hover img {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*10);
  opacity: 0.7;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

*:focus {
  outline: none;
}

/*-----------------------
common
-----------------------*/
html {
  font-size: 62.5%;
  line-height: 1;
  overflow-x: hidden;
}

body {
  position: relative;
  color: #4c4545;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  min-width: 110rem;
  font-family: "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Hiragino Kaku Gothic Pro", "メイリオ", Verdana, "ＭＳ Ｐゴシック", sans-serif;
}
@media all and (-ms-high-contrast: none) {
  body {
    overflow-x: hidden;
  }
}

h1 {
  font-size: 1rem;
  font-weight: normal;
}

h2 {
  font-size: 6rem;
  text-align: center;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.05em;
}
h2 span {
  font-size: 1.2rem;
  display: block;
  text-align: center;
  font-family: "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Hiragino Kaku Gothic Pro", "メイリオ", Verdana, "ＭＳ Ｐゴシック", sans-serif;
  margin: 1rem 0 0;
}

.inner {
  width: 120rem;
  margin: 0 auto;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.figure {
  margin: 0;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.figure:hover img {
  transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
}
.figure img {
  height: auto;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  width: 100%;
  vertical-align: bottom;
  display: block;
}

.sp {
  display: none;
}
@media (max-width: 750px) {
  .sp {
    display: block;
  }
}

.tab {
  display: none;
}
@media (min-width: 751px) and (max-width: 1024px) {
  .tab {
    display: block;
  }
}
@media (max-width: 750px) {
  .tab {
    display: none;
  }
}

@media (min-width: 751px) and (max-width: 1024px) {
  .pc {
    display: block;
  }
}
@media (max-width: 750px) {
  .pc {
    display: none;
  }
}

.green {
  color: #00ADB3;
}

.yellow {
  color: #FDD403;
}

.blue {
  color: #55afb3;
}

.bg-white {
  background-color: #fff;
}

.genno-bold {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.genno {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.clearfix {
  overflow: hidden;
  *zoom: 1;
}

.pie-clearfix {
  *zoom: 1;
}

.fL {
  float: left;
}

.fR {
  float: right;
}

.flex {
  display: flex;
}

.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

.underline-yellow {
  background: linear-gradient(transparent 85%, #FDD403 85%);
  display: inline-block;
}

.bold {
  font-weight: bold;
}

.font12 {
  font-size: 1.2rem !important;
}

.font20 {
  font-size: 2rem !important;
}

.font25 {
  font-size: 2.5rem !important;
}

.font30 {
  font-size: 3rem !important;
}

.font35 {
  font-size: 3.5rem !important;
}

.font40 {
  font-size: 4rem !important;
}

.font45 {
  font-size: 4.5rem !important;
}

.fade-up {
  transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
  transition: transform 0.8s;
  -moz-transition: transform 0.8s;
  -webkit-transition: transform 0.8s;
  -o-transition: transform 0.8s;
}

.mT20 {
  margin-top: 2rem;
}

.mT40 {
  margin-top: 4rem;
}

.mT60 {
  margin-top: 6rem;
}

.mT80 {
  margin-top: 8rem;
}

.mT100 {
  margin-top: 10rem;
}

.mT120 {
  margin-top: 12rem;
}

.mB20 {
  margin-bottom: 2rem;
}

.mB40 {
  margin-bottom: 4rem;
}

.mB60 {
  margin-bottom: 6rem;
}

.mB80 {
  margin-bottom: 8rem;
}

.mB100 {
  margin-bottom: 10erm;
}

.mB120 {
  margin-bottom: 12rem;
}

.p0 {
  padding: 0 !important;
}

.p30 {
  padding: 3rem 0 !important;
}

.p50 {
  padding: 5rem 0 !important;
}

.p100 {
  padding: 10rem 0 !important;
}

.pT0 {
  padding-top: 0 !important;
}

.pB0 {
  padding-bottom: 0 !important;
}

.pB30 {
  padding: 0 0 3rem !important;
}

.pB50 {
  padding: 0 0 5rem !important;
}

.btn-square {
  width: 16rem;
  height: 4rem;
  line-height: 4rem;
  background: #fff;
  color: #00ADB3;
  text-align: center;
  border-radius: 3px;
  border: 1px solid #00ADB3;
  box-sizing: border-box;
  cursor: pointer;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-square:hover {
  background: #ebffff;
}

.primary-btn-square {
  width: 16rem;
  height: 4rem;
  line-height: 4rem;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  cursor: pointer;
  background: -webkit-linear-gradient(left, #00ADB3, #03C7D4);
  background: -moz-linear-gradient(left, #00ADB3, #03C7D4);
  background: -o-linear-gradient(left, #00ADB3, #03C7D4);
  background: linear-gradient(left, #00ADB3, #03C7D4);
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.primary-btn-square:hover {
  background-position: 16rem;
}

.primary-btn-round {
  width: 16rem;
  height: 4rem;
  line-height: 4rem;
  color: #fff;
  text-align: center;
  border-radius: 4rem;
  cursor: pointer;
  -moz-box-shadow: 0 3px 5px #a7d9da;
  -webkit-box-shadow: 0 3px 5px #a7d9da;
  box-shadow: 0 3px 5px #a7d9da;
  background: -webkit-linear-gradient(left, #00ADB3, #03C7D4);
  background: -moz-linear-gradient(left, #00ADB3, #03C7D4);
  background: -o-linear-gradient(left, #00ADB3, #03C7D4);
  background: linear-gradient(left, #00ADB3, #03C7D4);
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.primary-btn-round:hover {
  background-position: 16rem;
}

.w-rem-1 {
  width: 1rem;
}

.w-rem-2 {
  width: 2rem;
}

.w-rem-3 {
  width: 3rem;
}

.w-rem-4 {
  width: 4rem;
}

.w-rem-5 {
  width: 5rem;
}

.w-rem-6 {
  width: 6rem;
}

.w-rem-7 {
  width: 7rem;
}

.w-rem-8 {
  width: 8rem;
}

.w-rem-9 {
  width: 9rem;
}

.w-rem-10 {
  width: 10rem;
}

.w-rem-11 {
  width: 11rem;
}

.w-rem-12 {
  width: 12rem;
}

.w-rem-13 {
  width: 13rem;
}

.w-rem-14 {
  width: 14rem;
}

.w-rem-15 {
  width: 15rem;
}

.w-rem-16 {
  width: 16rem;
}

.w-rem-17 {
  width: 17rem;
}

.w-rem-18 {
  width: 18rem;
}

.w-rem-19 {
  width: 19rem;
}

.w-rem-20 {
  width: 20rem;
}

.w-rem-21 {
  width: 21rem;
}

.w-rem-22 {
  width: 22rem;
}

.w-rem-23 {
  width: 23rem;
}

.w-rem-24 {
  width: 24rem;
}

.w-rem-25 {
  width: 25rem;
}

.w-rem-26 {
  width: 26rem;
}

.w-rem-27 {
  width: 27rem;
}

.w-rem-28 {
  width: 28rem;
}

.w-rem-29 {
  width: 29rem;
}

.w-rem-30 {
  width: 30rem;
}

.w-rem-31 {
  width: 31rem;
}

.w-rem-32 {
  width: 32rem;
}

.w-rem-33 {
  width: 33rem;
}

.w-rem-34 {
  width: 34rem;
}

.w-rem-35 {
  width: 35rem;
}

.w-rem-36 {
  width: 36rem;
}

.w-rem-37 {
  width: 37rem;
}

.w-rem-38 {
  width: 38rem;
}

.w-rem-39 {
  width: 39rem;
}

.w-rem-40 {
  width: 40rem;
}

.w-rem-41 {
  width: 41rem;
}

.w-rem-42 {
  width: 42rem;
}

.w-rem-43 {
  width: 43rem;
}

.w-rem-44 {
  width: 44rem;
}

.w-rem-45 {
  width: 45rem;
}

.w-rem-46 {
  width: 46rem;
}

.w-rem-47 {
  width: 47rem;
}

.w-rem-48 {
  width: 48rem;
}

.w-rem-49 {
  width: 49rem;
}

.w-rem-50 {
  width: 50rem;
}

.w-rem-51 {
  width: 51rem;
}

.w-rem-52 {
  width: 52rem;
}

.w-rem-53 {
  width: 53rem;
}

.w-rem-54 {
  width: 54rem;
}

.w-rem-55 {
  width: 55rem;
}

.w-rem-56 {
  width: 56rem;
}

.w-rem-57 {
  width: 57rem;
}

.w-rem-58 {
  width: 58rem;
}

.w-rem-59 {
  width: 59rem;
}

.w-rem-60 {
  width: 60rem;
}

.w-rem-61 {
  width: 61rem;
}

.w-rem-62 {
  width: 62rem;
}

.w-rem-63 {
  width: 63rem;
}

.w-rem-64 {
  width: 64rem;
}

.w-rem-65 {
  width: 65rem;
}

.w-rem-66 {
  width: 66rem;
}

.w-rem-67 {
  width: 67rem;
}

.w-rem-68 {
  width: 68rem;
}

.w-rem-69 {
  width: 69rem;
}

.w-rem-70 {
  width: 70rem;
}

.w-rem-71 {
  width: 71rem;
}

.w-rem-72 {
  width: 72rem;
}

.font-sz-1 {
  font-size: 1px;
}

.font-sz-2 {
  font-size: 2px;
}

.font-sz-3 {
  font-size: 3px;
}

.font-sz-4 {
  font-size: 4px;
}

.font-sz-5 {
  font-size: 5px;
}

.font-sz-6 {
  font-size: 6px;
}

.font-sz-7 {
  font-size: 7px;
}

.font-sz-8 {
  font-size: 8px;
}

.font-sz-9 {
  font-size: 9px;
}

.font-sz-10 {
  font-size: 10px;
}

.font-sz-11 {
  font-size: 11px;
}

.font-sz-12 {
  font-size: 12px;
}

.font-sz-13 {
  font-size: 13px;
}

.font-sz-14 {
  font-size: 14px;
}

.font-sz-15 {
  font-size: 15px;
}

.font-sz-16 {
  font-size: 16px;
}

.font-sz-17 {
  font-size: 17px;
}

.font-sz-18 {
  font-size: 18px;
}

.font-sz-19 {
  font-size: 19px;
}

.font-sz-20 {
  font-size: 20px;
}

.font-sz-21 {
  font-size: 21px;
}

.font-sz-22 {
  font-size: 22px;
}

.font-sz-23 {
  font-size: 23px;
}

.font-sz-24 {
  font-size: 24px;
}

.font-sz-25 {
  font-size: 25px;
}

.font-sz-26 {
  font-size: 26px;
}

.font-sz-27 {
  font-size: 27px;
}

.font-sz-28 {
  font-size: 28px;
}

.font-sz-29 {
  font-size: 29px;
}

.font-sz-30 {
  font-size: 30px;
}

.font-sz-31 {
  font-size: 31px;
}

.font-sz-32 {
  font-size: 32px;
}

.font-sz-33 {
  font-size: 33px;
}

.font-sz-34 {
  font-size: 34px;
}

.font-sz-35 {
  font-size: 35px;
}

.font-sz-36 {
  font-size: 36px;
}

.font-sz-37 {
  font-size: 37px;
}

.font-sz-38 {
  font-size: 38px;
}

.font-sz-39 {
  font-size: 39px;
}

.font-sz-40 {
  font-size: 40px;
}

.font-sz-41 {
  font-size: 41px;
}

.font-sz-42 {
  font-size: 42px;
}

.font-sz-43 {
  font-size: 43px;
}

.font-sz-44 {
  font-size: 44px;
}

.font-sz-45 {
  font-size: 45px;
}

.font-sz-46 {
  font-size: 46px;
}

.font-sz-47 {
  font-size: 47px;
}

.font-sz-48 {
  font-size: 48px;
}

.font-sz-49 {
  font-size: 49px;
}

.font-sz-50 {
  font-size: 50px;
}

.font-sz-51 {
  font-size: 51px;
}

.font-sz-52 {
  font-size: 52px;
}

.font-sz-53 {
  font-size: 53px;
}

.font-sz-54 {
  font-size: 54px;
}

.font-sz-55 {
  font-size: 55px;
}

.font-sz-56 {
  font-size: 56px;
}

.font-sz-57 {
  font-size: 57px;
}

.font-sz-58 {
  font-size: 58px;
}

.font-sz-59 {
  font-size: 59px;
}

.font-sz-60 {
  font-size: 60px;
}

.font-sz-61 {
  font-size: 61px;
}

.font-sz-62 {
  font-size: 62px;
}

.font-sz-63 {
  font-size: 63px;
}

.font-sz-64 {
  font-size: 64px;
}

.font-sz-65 {
  font-size: 65px;
}

.font-sz-66 {
  font-size: 66px;
}

.font-sz-67 {
  font-size: 67px;
}

.font-sz-68 {
  font-size: 68px;
}

.font-sz-69 {
  font-size: 69px;
}

.font-sz-70 {
  font-size: 70px;
}

.font-sz-71 {
  font-size: 71px;
}

.font-sz-72 {
  font-size: 72px;
}

.resp-video-box {
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.resp-video-box .resp-video-box__item {
  margin-right: 2rem;
}

@media (max-width: 1024px) {
  .resp-video-box {
    flex-direction: column;
  }
  .resp-video-box .resp-video-box__item {
    margin-right: 0;
  }
}
header {
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  -moz-box-shadow: 0 0 0.6rem #ccc;
  -webkit-box-shadow: 0 0 0.6rem #ccc;
  box-shadow: 0 0 0.6rem #ccc;
}
header h1 {
  margin: 1rem 0 0;
}
header .logo {
  margin-top: 0.5rem;
}
header .logo img {
  width: 60%;
}

#gnav {
  width: 70rem;
  margin-left: 5rem;
}
#gnav ul {
  *zoom: 1;
}
#gnav ul li {
  float: left;
  margin-right: 2rem;
}
#gnav ul li span {
  position: relative;
  padding: 1.3rem 0 2rem;
  display: block;
}
#gnav ul li:hover span:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border: 1rem solid transparent;
  border-bottom: 1rem solid #55afb3;
}
#gnav ul li:hover .child {
  top: 100%;
  visibility: visible;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*10);
  opacity: 1;
}
#gnav ul li.app:hover .drop-down {
  top: 100%;
  visibility: visible;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*10);
  opacity: 1;
}
#gnav ul li.app .drop-down {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*10);
  opacity: 0;
  visibility: hidden;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  z-index: 9999;
  background: rgba(85, 175, 179, 0.95);
  margin-left: -5rem;
  padding: 2rem 0;
  box-sizing: border-box;
  text-align: center;
  width: 16rem;
}
#gnav ul li.app .drop-down > ul li {
  float: none;
  margin: 0 auto;
}
#gnav ul li.app .drop-down > ul li a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}
#gnav ul li.app .drop-down > ul li a > span {
  font-size: 1.2rem;
  font-weight: normal;
  margin: 0.5rem 0;
  padding: 0;
}
#gnav ul li.app .drop-down > ul li a > span:before {
  display: none;
}
#gnav ul li.app .drop-down > ul li a:before {
  position: absolute;
  content: "";
  top: 0.7rem;
  left: -1rem;
  width: 0.4rem;
  height: 0.4rem;
  border-top: #fff 1px solid;
  border-right: #fff 1px solid;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#gnav ul li.app .drop-down > ul li a:after {
  display: none;
}
#gnav ul li.app .drop-down > ul li a:hover:before {
  left: -0.8rem;
}
#gnav ul li a {
  display: inline-block;
  color: #4c4545;
}
#gnav ul li .child {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*10);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(85, 175, 179, 0.95);
  margin: 0 auto;
  padding: 3rem 0;
  box-sizing: border-box;
  text-align: center;
  widows: 100%;
}
#gnav ul li .child > ul {
  width: 110rem;
  margin: 0 auto;
}
#gnav ul li .child > ul li {
  float: none;
  display: inline-block;
  margin-right: 4rem;
}
#gnav ul li .child > ul li a {
  color: #fff;
  padding: 2rem 0 2rem 2rem;
  width: 23rem;
  text-align: left;
  font-size: 1.6rem;
  font-weight: bold;
  box-sizing: border-box;
}
#gnav ul li .child > ul li a > span {
  font-size: 1.2rem;
  font-weight: normal;
  margin: 0.5rem 0;
  padding: 0;
}
#gnav ul li .child > ul li a > span:before {
  display: none;
}
#gnav ul li .child > ul li a:before {
  position: absolute;
  content: "";
  top: 2.5rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-top: #fff 1px solid;
  border-right: #fff 1px solid;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#gnav ul li .child > ul li a:after {
  display: none;
}
#gnav ul li .child > ul li a:hover:before {
  width: 0.4rem;
  left: 0.2rem;
}

#search-form {
  width: 22rem;
  padding: 0 0 1rem;
}
#search-form input[type=search].search-field:placeholder-shown {
  line-height: 1.4em;
  color: #dfe4e5;
}
#search-form input[type=search].search-field {
  width: 15rem;
  -moz-border-radius: 5rem 0 0 5rem;
  -webkit-border-radius: 5rem 0 0 5rem;
  border-radius: 5rem 0 0 5rem;
  border: 0.1rem solid #dfe4e5;
  box-sizing: border-box;
  padding: 0.8rem 1rem;
  background: #fff;
  font-size: 1.4rem;
}
#search-form button.search-submit {
  -moz-border-radius: 0 5rem 5rem 0;
  -webkit-border-radius: 0 5rem 5rem 0;
  border-radius: 0 5rem 5rem 0;
  color: #fff;
  box-sizing: border-box;
  padding: 0.8rem 1rem;
  background: #55afb3;
  font-size: 1.4rem;
  margin-left: -0.5rem;
  vertical-align: top;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 3.7rem;
}
#search-form button.search-submit:hover {
  background: #00ADB3;
  cursor: pointer;
}

#top {
  padding-top: 6.7rem;
}
#top h2 {
  color: #00ADB3;
  font-size: 4.8rem;
}
#top .mainv {
  position: relative;
}
#top .mainv iframe {
  width: 100%;
}
#top .mainv #bg-video {
  width: 100%;
  height: auto;
}
#top .mainv .txt {
  width: 110rem;
  margin: 0 auto;
  text-align: right;
  position: absolute;
  top: 15rem;
  left: 0;
  right: 0;
}
#top .mainv .txt p {
  font-size: 6rem;
  font-weight: 600;
}
#top .mainv .txt p span {
  font-size: 4.8rem;
  display: block;
  margin-top: 5rem;
}
#top .mainv .bx-controls {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#top .mainv .bx-controls .bx-controls-direction {
  overflow: hidden;
  *zoom: 1;
}
#top .mainv .bx-controls .bx-prev, #top .mainv .bx-controls .bx-next {
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem 1rem;
  font-size: 2rem;
}
#top .mainv .bx-controls .bx-prev {
  float: left;
}
#top .mainv .bx-controls .bx-next {
  float: right;
}
#top .about {
  margin: 8rem 0 0;
}
#top .about p {
  font-size: 1.8rem;
  line-height: 2em;
  text-align: center;
  margin: 2rem 0 6rem;
}
#top .image {
  padding: 6rem 0;
}
#top .image p {
  background: #dfe4e5;
  text-align: center;
  padding: 20rem 0;
}
#top .elife .inner, #top .emamo .inner {
  text-align: center;
}
#top .elife .inner p, #top .emamo .inner p {
  font-size: 3rem;
  line-height: 2;
}
#top .elife .inner p span, #top .emamo .inner p span {
  font-size: 1.8rem;
}
#top .elife .inner .btn-index a:hover img, #top .emamo .inner .btn-index a:hover img {
  opacity: inherit !important;
}
#top .emamo {
  margin: 10rem auto;
}
#top .other .btn-index a {
  display: block;
}
#top .other .btn-index a p {
  border: 0.5rem solid #00ADB3;
  color: #00ADB3;
  font-size: 4.8rem;
  padding: 8rem 0;
}
#top .eseries {
  background: url(../img/common/bg-eseries.png) no-repeat;
  background-size: cover;
  padding: 5rem 0;
  text-align: center;
}
#top .eseries h2 {
  line-height: 1.6em;
}
#top .eseries .subttl {
  font-size: 1.8rem;
  line-height: 1.8em;
  margin: 2rem 0 6rem;
}
#top .eseries ul {
  text-align: center;
  position: relative;
  *zoom: 1;
  padding: 1rem 0;
  width: 90%;
  margin: 0 auto;
}
#top .eseries ul li {
  display: inline-block;
  width: 45rem;
  margin-right: 5rem;
  margin-bottom: 4rem;
  vertical-align: middle;
  /*&:last-child{
  	a{
  		height: 40.9rem;
  		background: url(../img/common/img-product.png)no-repeat center center rgba(255,255,255,0.9);
  		h3{
  			margin: 0;
  			padding: 13rem 0 0;
  		}
  	}
  }*/
}
#top .eseries ul li:nth-child(odd) {
  float: left;
}
#top .eseries ul li:nth-child(even) {
  float: right;
}
#top .eseries ul li:last-child, #top .eseries ul li:nth-child(2n) {
  margin-right: 0;
}
#top .eseries ul li a {
  display: block;
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem 0;
  box-sizing: border-box;
  -moz-box-shadow: 0 0 2rem #ccc;
  -webkit-box-shadow: 0 0 2rem #ccc;
  box-shadow: 0 0 2rem #ccc;
  position: relative;
}
#top .eseries ul li a h3 {
  font-size: 3rem;
  color: #00ADB3;
  font-family: "Lato", sans-serif;
  margin: 2rem 0;
}
#top .eseries ul li a h3 span {
  display: block;
  font-size: 1.2rem;
  text-align: center;
  font-family: "ヒラギノ角ゴ Pro W3", "Lucida Grande", "Hiragino Kaku Gothic Pro", "メイリオ", Verdana, "ＭＳ Ｐゴシック", sans-serif;
  margin: 1rem 0 0;
  font-weight: normal;
  color: #4c4545;
}
#top .eseries ul li a p {
  line-height: 2em;
  margin: 2rem 0;
  font-size: 1.6rem;
}
#top .eseries ul li a .cat {
  text-align: center;
}
#top .eseries ul li a .cat p {
  display: inline-block;
  color: #00ADB3;
  border: 0.1rem solid #00ADB3;
  padding: 0.5rem 2rem;
  font-size: 1.2rem;
  line-height: 1;
  margin: 0 0 2rem;
}
#top .eseries ul li a:before {
  content: "";
  position: absolute;
  bottom: 3rem;
  right: 1.8rem;
  background: #00ADB3;
  height: 0.1rem;
  width: 3rem;
  display: block;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#top .eseries ul li a:after {
  content: "";
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 2rem;
  height: 2rem;
  border-top: 0.1rem solid #00ADB3;
  border-right: 0.1rem solid #00ADB3;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#top .eseries ul li a:hover {
  -moz-box-shadow: 0 0 1rem #4c4545;
  -webkit-box-shadow: 0 0 1rem #4c4545;
  box-shadow: 0 0 1rem #4c4545;
}
#top .eseries ul li a:hover img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=$val*10);
  opacity: 1;
}
#top .eseries ul li a:hover:before {
  width: 3.5rem;
  right: 1rem;
}
#top .eseries ul li a:hover:after {
  right: 1.5rem;
}
#top .corporation {
  background: url(../img/contents/lp/mainv.png) no-repeat;
  background-size: cover;
  text-align: center;
}
#top .corporation .bg-w {
  background-color: rgba(215, 255, 253, 0.82);
  padding: 6rem 0;
}
#top .corporation h2 {
  line-height: 1.6em;
}
#top .corporation p {
  font-size: 1.8rem;
  line-height: 2em;
}
#top .corporation .btn {
  text-align: center;
  margin: 4rem 0 0;
}
#top .corporation .btn a {
  background: #fff;
}
#top .corporation .btn a:hover {
  background: #00ADB3;
  color: #fff;
}
#top .info {
  padding: 12rem 0;
}
#top .info h2 {
  margin-bottom: 8rem;
}
#top .info .news, #top .info .media {
  width: 52rem;
}
#top .info .news h3, #top .info .media h3 {
  color: #55afb3;
  position: relative;
  font-family: "Lato", sans-serif;
  font-size: 3rem;
  letter-spacing: 0.05em;
}
#top .info .news h3:after, #top .info .media h3:after {
  content: "";
  background: #55afb3;
  height: 0.1rem;
  width: 80%;
  display: inline-block;
  top: 1.5rem;
  position: absolute;
}
#top .info ul li {
  margin-bottom: 4rem;
}
#top .info ul li .thumbnail {
  width: 15rem;
  height: 10rem;
  overflow: hidden;
  *zoom: 1;
}
#top .info ul li .thumbnail img {
  width: 15rem;
  height: 10rem;
  object-fit: cover;
}
#top .info ul li .txt {
  text-align: left;
  width: 35rem;
  overflow: hidden;
  *zoom: 1;
}
#top .info ul li .txt .ttl {
  margin: 0;
  line-height: 1.8em;
}
#top .info ul li .txt .ttl span {
  color: #55afb3;
  font-size: 1rem;
}
#top .info ul li .txt .date {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
#top .info .btn {
  text-align: center;
}
#top .info .btn a {
  padding: 2rem 6rem;
}

#footer {
  background: -webkit-linear-gradient(135deg, #0071bc, #61b5af);
  background: -moz-linear-gradient(135deg, #0071bc, #61b5af);
  background: -o-linear-gradient(135deg, #0071bc, #61b5af);
  background: linear-gradient(135deg, #0071bc, #61b5af);
  padding: 6rem 0 0;
}
#footer .inner {
  padding-bottom: 4rem;
}
#footer .info .logo {
  display: inline-block;
  width: 12.5rem;
}
#footer .info .sub-nav {
  margin: 2rem 0;
}
#footer .info .sub-nav ul {
  overflow: hidden;
  *zoom: 1;
  margin-bottom: 2rem;
}
#footer .info .sub-nav ul li {
  float: left;
}
#footer .info .sub-nav ul li a {
  padding: 0 1rem;
  color: #fff;
  line-height: 2em;
}
#footer .info .sub-nav ul li:first-child a {
  padding-left: 0;
}
#footer .info .sub-nav ul li:after {
  content: "|";
  color: #fff;
}
#footer .info .sub-nav ul li:last-child:after {
  display: none;
}
#footer .info .sub-nav .sns {
  margin-bottom: 1rem;
}
#footer .info .sub-nav .sns a {
  display: inline-block;
  margin-right: 1rem;
}
#footer .sns-area .facebook {
  margin: 0 1rem;
  width: 22rem;
}
#footer .sns-area .facebook iframe {
  width: 100% !important;
}
#footer .footnav {
  overflow: hidden;
  *zoom: 1;
  margin-left: 5rem;
}
#footer .footnav ul {
  float: left;
  margin-right: 1rem;
}
#footer .footnav ul li a {
  display: block;
  padding: 1rem 0;
  color: #fff;
  font-size: 1.2rem;
  position: relative;
}
#footer .footnav ul li a:before, #footer .footnav ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  display: inline-block;
  width: 0;
  height: 0.1rem;
  background: #fff;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#footer .footnav ul li a:before {
  left: 50%;
}
#footer .footnav ul li a:after {
  right: 50%;
}
#footer .footnav ul li a:hover:before, #footer .footnav ul li a:hover:after {
  width: 50%;
}
#footer .footnav .footnav2 li {
  font-weight: bold;
  font-size: 1.2rem;
}
#footer .footnav .footnav2 li ul {
  margin: 0 0 1rem;
}
#footer .footnav .footnav2 li ul li {
  font-size: 1rem;
  font-weight: normal;
}
#footer .footnav .footnav2 li ul li a {
  display: inline-block;
  padding: 0.5rem 0;
}
#footer .footnav .footnav3 li {
  font-weight: bold;
  font-size: 1.2rem;
}
#footer .footnav .footnav3 li ul {
  margin: 0 0 1rem;
}
#footer .footnav .footnav3 li ul li {
  font-size: 1.2rem;
  font-weight: normal;
  font-size: 1rem;
}
#footer .footnav .footnav3 li ul li a {
  display: inline-block;
  padding: 0.5rem 0;
}
#footer .footnav .footnac4 {
  margin-right: 0;
  font-size: 1.2rem;
}
#footer .copyright {
  color: #fff;
  font-size: 1rem;
  text-align: center;
  padding: 1rem 0;
}

.btn-small {
  min-width: 80px;
  height: 30px;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #00ADB3;
  border-radius: 5px;
  color: #00ADB3;
  text-align: center;
  padding: 0 10px;
  box-sizing: border-box;
  transition: 0.3s;
  overflow: hidden;
  cursor: pointer;
}
.btn-small:hover {
  background: #00ADB3;
  color: #fff;
}

.btn-small-link {
  display: block;
  min-width: 80px;
  height: 30px;
}

.btn-round {
  min-width: 180px;
  height: 40px;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #00ADB3;
  border-radius: 20px;
  color: #00ADB3;
  text-align: center;
  padding: 0 1.5rem;
  box-sizing: border-box;
  transition: 0.3s;
  overflow: hidden;
  cursor: pointer;
}
.btn-round:hover {
  background: #00ADB3;
  color: #fff;
}

.btn-round-link {
  display: block;
  min-width: 180px;
  height: 40px;
}

.btn-round-large {
  min-width: 260px;
  height: 60px;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #00ADB3;
  border-radius: 30px;
  color: #00ADB3;
  text-align: center;
  padding: 0 2rem;
  box-sizing: border-box;
  transition: 0.3s;
  overflow: hidden;
  cursor: pointer;
}
.btn-round-large:hover {
  background: #00ADB3;
  color: #fff;
}

.btn-round-large-link {
  display: block;
  min-width: 260px;
  height: 60px;
}

.card-list-def {
  text-align: center;
  padding: 1rem 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
.card-list-def > a {
  margin: 2rem;
}

.card-def {
  display: inline-block;
  width: 18%;
  margin-right: 2rem;
  margin-bottom: 4rem;
  vertical-align: middle;
  position: relative;
}
.card-def:last-child, .card-def:nth-child(5) {
  margin-right: 0;
}
.card-def .thumbnail {
  width: 100%;
  height: 13rem;
  display: flex;
  align-items: center;
  margin: 2rem auto;
  overflow: hidden;
  *zoom: 1;
}
.card-def .thumbnail img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  margin: 0 auto;
}
.card-def span {
  margin-bottom: 2rem;
  display: block;
}
.card-def .btn-group {
  width: 100%;
}
.card-def .btn-group .btn {
  position: relative;
  display: block;
  margin-bottom: 1rem;
}
.card-def .btn-group .btn a {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  color: #55afb3;
  font-size: 1rem;
  -moz-border-radius: 5rem;
  -webkit-border-radius: 5rem;
  border-radius: 5rem;
  padding: 1rem;
  margin: 0 auto;
  display: inline-block;
  border: 0.1rem solid #00ADB3;
  line-height: 1;
}
.card-def .btn-group .btn a:hover {
  -moz-box-shadow: 0 0 0 #4c4545;
  -webkit-box-shadow: 0 0 0 #4c4545;
  box-shadow: 0 0 0 #4c4545;
  border: 0.1rem solid #00ADB3;
  background: #00ADB3;
  color: #fff;
}
.card-def .btn-group .btn .btn-disabled {
  color: #999;
  background: #e6e6e6;
  border: 0.1rem solid #e6e6e6;
  cursor: default;
}
.card-def .btn-group .btn .btn-disabled:hover {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #999;
  background: #e6e6e6;
  border: 0.1rem solid #e6e6e6;
}

.card-round {
  width: 18%;
  margin: 2rem;
}
.card-round .thumbnail {
  width: 100%;
  height: 16rem;
  display: flex;
  align-items: center;
  margin: 2rem auto;
  overflow: hidden;
  overflow: hidden;
  *zoom: 1;
}
.card-round .thumbnail img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  margin: 0 auto;
}
.card-round span {
  font-size: 1.4rem;
  line-height: 3rem;
  word-break: break-word;
}

@media (max-width: 750px) {
  .card-list-def > a {
    margin: 1rem;
  }

  .card-def {
    flex: 0 0 100%;
  }

  .card-round {
    flex: 0 0 40%;
    margin: 1rem;
  }
  .card-round .thumbnail {
    height: 8rem;
  }
}
.page-header-def {
  background: none;
  padding: 0;
  background-size: cover;
  position: relative;
  text-align: center;
}
.page-header-def > h2 {
  color: #4c4545;
  -moz-text-shadow: 0 0 #fff;
  -webkit-text-shadow: 0 0 #fff;
  text-shadow: 0 0 #fff;
}

#pagetop {
  position: fixed;
  font-size: 1rem;
  right: 2rem;
  bottom: -10rem;
}
#pagetop a {
  color: #fff;
  background: rgba(224, 216, 217, 0.8);
  padding: 1.2rem;
  line-height: 1.6em;
  text-align: center;
  width: 3rem;
  display: flex;
  justify-content: center;
  border-radius: 50%;
}
#pagetop a:hover {
  opacity: 0.8;
}

@font-face {
  font-family: HelveticaNeue;
  src: url("../font/HelveticaNeue.ttc");
}
@font-face {
  font-family: "iconfont";
  src: url("iconfont.eot");
  src: url("iconfont.eot?#iefix") format("embedded-opentype"), url("iconfont.woff") format("woff"), url("iconfont.ttf") format("truetype"), url("iconfont.svg#iconfont") format("svg");
}

/*# sourceMappingURL=common.css.map */
