@charset "UTF-8";

/*----------------------------------
/common
/----------------------------------*/
html {
  font-size: 62.5%;
}
body {
  font-family: "游ゴシック体", YuGothic, sans-serif;
  font-size: 1.6rem;
  color: #3C3C3C;
}
body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body {
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;/*Chrome,Safari*/
	-ms-text-size-adjust: 100%;/*EgdeMobile*/
	-moz-text-size-adjust: 100%;/*firefox*/
}
img {
  max-width: 100%;
  height: auto;
}
a:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.inner {
  max-width: 1040px;
  margin: 50px auto 0;
  padding: 0 40px;
}
.btn {
  display: inline-block;
  text-align: center;
  padding: 15px 30px;
  font-size: 1.5rem;
  position: relative;
}
.btn-span {
  position: relative;
  left: 2px;
  font-size: 1rem;
}
.btn:after {
  content: '';
  display: block;
  background-image: url(../img/arrow.svg);
  height: 11px;
  width: 122px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  pointer-events: auto;
  transition: .8s;
}
.btn-radius {
  text-align: center;
  position: absolute;
  border-radius: 18px;
  color: #fff;
  background-color: #00A9EB;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0 20px 0 10px;
  height: 62px;
	line-height: 62px;
  display: block;
  font-weight: bold;
  font-size: 1.6rem;
  width: 300px;
}
.btn-radius::after {
  content: '';
  display: block;
  background-image: url(../img/arrow-small.svg);
  height: 10px;
  width: 20px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
}
.btn-radius:hover::after {
  transition: .8s;
  right: 20px;
}
.particle {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  opacity: 0.1;
}
main {
  margin: 0 auto;
  -webkit-box-shadow: 0 3px 6px -3px rgba(0, 0, 0, 0.13);
          box-shadow: 0 3px 6px -3px rgba(0, 0, 0, 0.13);
}
.r-mark {
  position: relative;
  top: 4px;
  font-size: 1.4rem;
}
.r-mark-l {
  position: relative;
  top: 1px;
  font-size: 1rem;
}
@media screen and (min-width: 1039px) {
  .is-sp {
    display: none !important;
  }
}
@media screen and (max-width: 1038px) {
	.is-tl {
    display: none!important;
  }
	.is-sp {
    display: none !important;
  }
	.btn-radius {
    width: 300px;
  }
}
@media screen and (max-width: 896px) {
  .is-tl {
    display: none!important;
  }
	.is-sp {
    display: none !important;
  }
	.btn-radius {
    width: 300px;
  }
}
@media screen and (max-width: 480px) {
  body {
    font-size: 1.4rem;
		font-family: sans-serif;
  }
  .is-pc {
    display: none!important;
  }
	.is-sp {
    display: block!important;
  }
  .inner {
    margin-top: 30px;
    padding: 0 20px;
  }
  .btn-radius {
    width: 280px;
  }
}


/*----------------------------------
/header
/----------------------------------*/
.header {
  background-color: #fff;
  z-index: 100;
	height: 179px;
  position: relative;
  -webkit-box-shadow: 0px 3px 6px -3px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 3px 6px -3px rgba(0, 0, 0, 0.12);
}
.header h1 {
  text-align: center;
  padding: 50px 0 13px;
}
.header h1 img {
  width: 146px;
  -o-object-fit: cover;
     object-fit: cover;
}
.header-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.header-item {
  position: relative;
	z-index: 11;
}
.header-item:hover {
  -webkit-transition: .3s;
  transition: .3s;
}
.header-item:hover ul {
  display: block;
}
.header-item a {
  display: block;
  padding: 20px 0;
	width: 132px;
	font-size: 15px;
  font-weight: bold;
	text-align: center;
	font-family: "游ゴシック体", YuGothic, sans-serif;
  -webkit-transition:all 0.3s;
  transition:all  0.3s;
}
.header-list .current {
  background: linear-gradient(180deg, #FFF 0%, #FFF 93%, #00A9EB 50%, #00A9EB 100%);
}
.header-item::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	content: '';
	width: 0;
	height: 4px;
	background-color: #00A9EB;
	transition: .3s;
	transform: translateX(-50%);
}
.header-item:hover::after {
	width: 100%;
}
/* サブメニュー */
.sub-menu {
  position: absolute;
	z-index: 10;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 132px;
  background: #fff;
}
.sub-menu-item{
  overflow: hidden;
  opacity: 0;
  height: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sub-menu-item a {
  text-align: center;
  position: relative;
  padding: 13px 10px;
  display: block;
  font-size: 13px;
  line-height: 1.5;
  transition:all 0.3s;
}
.sub-menu-item a:hover{
  background: #00A9EB;
  color: #fff;
} 
/* メインメニューマウスカーソルが乗ったらサブメニューを出現させる */
.header-item:hover > .sub-menu > .sub-menu-item {
  overflow: visible;
  opacity: 1;
  height: 43px;
}
.header-fv {
  width: 100%;
  height: 615px;
  position: relative;
}
h2.header-fv-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 48px;
  font-family: hero-new, sans-serif;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 2px;
  margin-top: -5px;
  width: 90%;
  text-align: center;
}
.header-fv-title b {
  font-weight: 300;
}
.header-r-mark{
  position: relative;
  top: 4px;
  font-size: 1.4rem;
}
.breadcrumbs {
	color: #999;
	font-size: 12px;
}
@media screen and (min-width: 1039px) {
	.header-item:nth-child(1) a{
		width: 186px;
	}
	.header-item:nth-child(2) a,
	.header-item:nth-child(3) a,
	.header-item:nth-child(4) a,
	.header-item:nth-child(5) a{
		width: 132px;
	}
	.header-item:nth-child(6) a{
		width: 162px;
	}
	.breadcrumbs {
		position: relative;
		z-index: 30;
		top: 20px;
		width: 1040px;
		margin: 0 auto;
	}
	.breadcrumbs p {
		position: absolute;
	}
	.breadcrumbs sup {
		position: relative;
		top: 8px;
	}
}
@media screen and (max-width: 1039px) {
	.header {
		height: 143px;
	}
	.header h1 {
		padding: 30px 0 5px;
	}
	.header h1 img {
		width: 120px;
	}
	.header-item:nth-child(1) a{
		width: 186px;
	}
	.header-item:nth-child(2) a,
	.header-item:nth-child(3) a,
	.header-item:nth-child(4) a,
	.header-item:nth-child(5) a{
		width: 132px;
	}
	.header-item:nth-child(6) a{
		width: 162px;
	}
	.sub-menu {
		display: none!important;
	}
	.breadcrumbs {
		position: relative;
		z-index: 30;
		top: 20px;
		width: 90%;
		margin: 0 auto;
	}
	.breadcrumbs p {
		position: absolute;
	}
	.breadcrumbs sup {
		position: relative;
		top: 8px;
	}
}
@media screen and (max-width: 896px) {
	.header {
		height: 142px;
	}
	.header h1 {
		padding: 30px 0 5px;
	}
	.header h1 img {
		width: 120px;
	}
	.header-list {
		
		max-width: 94%;
	}
	.header-item a {
		font-size: 14px;
	}
	.header-item:nth-child(1) a{
		width: 150px;
	}
	.header-item:nth-child(2) a,
	.header-item:nth-child(3) a,
	.header-item:nth-child(4) a,
	.header-item:nth-child(5) a{
		width: 110px;
	}
	.header-item:nth-child(6) a{
		width: 140px;
	}
	.sub-menu {
		display: none!important;
	}
	.header-fv-title {
    font-size: 32px;
    line-height: 1.5;
  }
	.breadcrumbs {
		margin: 0 0 0 10px;
	}
}
@media screen and (max-width: 1039px) {
  .header {
		position: relative;
    top: 0;
    left: 0;
    right: 0;
		padding: 12px 0 10px;
		height: auto;
    background-color: #fff;
    -webkit-box-shadow: 0px 3px 6px -3px rgba(0, 0, 0, 0.12);
            box-shadow: 0px 3px 6px -3px rgba(0, 0, 0, 0.12);
  }
  .header h1 {
    position: relative;
    left: 0;
    padding: 0;
  }
  .header h1 img {
	height: auto;
	margin-top: 20px;
  }
  .header-nav {
    top: 0px!important;
		padding-top: 60px;
    -webkit-box-shadow: inset 3px 0 3px -3px rgba(0, 0, 0, 0.12)!important;
            box-shadow: inset 3px 0 3px -3px rgba(0, 0, 0, 0.12)!important;
  }
  .header-list {
    display: block;
		padding-top: 20px!important;
  }
  .header-item:nth-child(n) {
    margin: 0 20px;
  }
	.header-item a {
		font-size: 14px;
		font-weight: bold;
		padding: 15px 0;
		text-align: left;
	}
	.header-item ul {
    display: none!important;
  }
  .header-fv {
		position: relative;
		top: -80px;
    height: 580px;
  }
  .header-fv-title {
    font-size: 30px;
    line-height: 1.5;
	margin-top: 10px;
  }
	.header-fv-title b {
		display: block;
	}
  .drawer-hamburger {
    position: fixed;;
    margin-left: auto!important;
    width: 40px !important;
    top: 24px!important;
    right: 0!important;
    padding: 15px!important;
  }
	.header-item::after {
		display: none;
	}
	.header-item:hover::after {
		display: none;
	}
	.header-list .current {
		background: none!important;
	}
	.header-item::after {
		display: none;
	}
	.header-item:hover::after {
		display: none;
	}
	.breadcrumbs {
		display: none;
	}
}


/*----------------------------------
/drawer
/----------------------------------*/
.drawer--right .drawer-hamburger {
  right: 3px;
}
.drawer-hamburger-icon:before,
.drawer-hamburger-icon,
.drawer-hamburger-icon:after {
  background-color: #00A9EB!important;
}
.drawer-hamburger-icon:after {
  top: 0!important;
}
.drawer-hamburger-icon {
  background-color: transparent!important;
}


/*----------------------------------
/concept
/----------------------------------*/
.concept {
  background-size: cover;
  width: 100%;
  max-width: 900px;
  margin: 160px auto 70px;
  padding: 0 40px;
}
.concept-title,
.product-title {
  font-size: 4.8rem;
  font-family: hero-new, sans-serif;
  letter-spacing: 2px;
  margin-top: -54px;
  text-align: center;
  font-weight: bold;
}
.concept-title:before,
.product-title:before {
  font-family: hero-new, sans-serif;
  font-weight: 300;
  font-style: italic;
  content: '';
  display: block;
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 25px;
  letter-spacing: 0.04px;
}
.concept-subtitle {
  line-height: 2;
  max-width: 800px;
  margin: 80px auto 0;
}
@media screen and (max-width: 1024px) {
  .concept {
		margin: 140px auto 0;
		padding: 0;
	}
  .concept-title,
	.product-title {
    font-size: 3.69231rem;
    line-height: 1.5;
  }
  .concept-title:before,
	.product-title:before {
    font-size: 1.84615rem;
  }
  .concept-subtitle {
    margin: 50px auto;
		width: 80%
  }
}
@media screen and (max-width: 896px) {
	.concept {
		margin: 140px auto 0;
		padding: 0;
	}
  .concept-title,
	.product-title {
    font-size: 3.69231rem;
    line-height: 1.5;
  }
  .concept-title:before,
	.product-title:before {
    font-size: 1.84615rem;
  }
  .concept-subtitle {
    margin: 50px auto;
		width: 80%
  }
}
@media screen and (max-width: 480px) {
	.concept {
		margin: 60px auto 0;
		padding: 0;
	}
  .concept-title,
	.product-title {
    font-size: 32px;
		margin: 0 auto 10px;
    line-height: 1.5;
  }
  .concept-title:before,
	.product-title:before {
		margin-bottom: 10px;
    font-size: 1.84615rem;
  }
  .concept-subtitle {
    margin: 50px auto;
		width: 86%;
  }
}


/*----------------------------------
/slick
/----------------------------------*/
.slick-dots {
  float: right !important;
  text-align: right !important;
}
.slick-dots li button:before {
  font-size: 50px;
}
.slick-dots li.slick-active button:before {
  color: #00A9EB;
}
@media screen and (max-width: 896px) {
  .slick-dots li button:before {
    display: none;
  }
  .slick-dotted {
    margin-bottom: 0 !important;
  }
}
@media screen and (max-width: 480px) {
  .slick-dotted {
    margin-bottom: 0 !important;
  }
  .slick-dots li button:before {
    display: none;
  }
}


/*----------------------------------
/footer
/----------------------------------*/
.footer {
  background: #fff;
  border-top: 1px solid #c4c4c4;
  padding: 80px 0;
}
.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 0 100px;
}
.footer-left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 180px;
          flex: 0 0 180px;
  height: 155px;
}
.footer-left p {
  margin-top: 60px;
  text-align: center;
  font-size: 1.2rem;
}
.footer-right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
.footer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer-item p {
  font-weight: bold;
  position: relative;
}
.footer-item p:before {
  position: absolute;
  content: '';
  display: block;
  background-color: #00A9EB;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -25px;
  width: 15px;
  height: 1px;
  color: #00A9EB!important;
}
.footer-item li {
  margin-top: 30px;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.footer-item li:nth-child(n+2) {
  margin-top: 25px;
}
.footer-item-list-item a {
  font-family: "游ゴシック体", YuGothic, sans-serif;
}
.footer-r-mark{
  font-size: 1.4rem;
  position: relative;
  top: 4px;
}
.footer-r-markScnd {
	position: relative;
  top: 4px;
  font-size: 1.2rem;
}
@media screen and (min-width: 1025px) {
  .footer-right {
    margin-left: 160px;
  }
  .footer-item {
    width: calc(33.3% - 40px *2/3);
  }
  .footer-item + .footer-item {
    margin-left: 40px;
  }
  .footer-item:nth-child(3n+1) {
    margin-left: 0;
  }
  .footer-item:nth-child(4) {
    margin-top: 60px;
    font-family: hero-new, sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  .footer-item:nth-child(4) p {
    letter-spacing: 0.4px;
  }
  .footer-item:nth-child(4) li {
    margin-top: 33px;
    letter-spacing: 1.4px;
  }
  .footer-item:nth-child(5) {
    margin-top: 60px;
  }
  .footer-item:last-child {
    margin-top: 60px;
  }
  .footer-item:last-child {
   margin: 0;
		padding: 0;
  }
	.footer-item:last-child p {
    margin: 30px 0 0 40px;
  }
	.footer-item:last-child p:first-child {
    margin: 10px 0 0 40px;
  }
	.footer-item:last-child p:last-child {
		margin: 30px 0 0 13px;
		padding-left: 28px;
		background: url(../img/icon_store.svg) left center no-repeat;
	}
	.footer-item:last-child p:last-child:before {
		position: relative;
		content: '';
		display: block;
		top: 0;
		left: 0;
		margin: 0;
		padding: 0;
		width: 0;
		height: 0;
		color: #FFF!important;
		background-color: #FFF!important;
	}
}
@media screen and (max-width: 1039px) {
	footer {
    padding: 60px 0 0!important;
  }
  .footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 15px;
  }
  .footer-right {
    margin-left: 20%;
  }
  .footer-item {
    width: 50%;
  }
  .footer-item + .footer-item {
    margin-left: 0;
  }
  .footer-item:nth-child(2n+1) {
    margin-left: 0;
  }
  .footer-item:nth-child(n+3) {
    margin-top: 30px;
  }
  .footer-item:last-child p {
    margin-top: 30px;
  }
}
@media screen and (max-width: 896px) {
  .footer {
    padding: 80px 0 0;
  }
  .footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 15px;
  }
  .footer-right {
    margin-left: 20%;
  }
  .footer-item {
    width: 50%;
  }
  .footer-item + .footer-item {
    margin-left: 0;
  }
  .footer-item:nth-child(2n+1) {
    margin-left: 0;
  }
  .footer-item:nth-child(n+3) {
    margin-top: 30px;
  }
  .footer-item:last-child p {
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .footer {
    padding: 80px 0 50px!important;
  }
  .footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 15px;
  }
  .footer-left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 130px;
            flex: 0 0 130px;
  }
	.footer-left img {
    width: auto;
		height: 40px;
  }
  .footer-left p {
    margin-top: 30px;
  }
  .footer-right {
    margin-left: 10%;
  }
  .footer-item {
    width: 50%;
  }
  .footer-item + .footer-item {
    margin-left: 0;
  }
  .footer-item:nth-child(2n+1) {
    margin-left: 0;
  }
  .footer-item:nth-child(n+3) {
    margin-top: 30px;
  }
  .footer-item:last-child p {
    margin-top: 30px;
  }
  .footer-item p {
    font-size: 1.3rem;
  }
  .footer-item li {
    font-size: 1.3rem;
  }
}


/*----------------------------------
/loading
/----------------------------------*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 200;
}

.loading img {
  max-width: 260px;
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transition: 2s ease-in;
  transition: 2s ease-in;
}

.screen.show {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

/* 記事一覧もっとみるボタン */
.readmore {
	cursor: pointer;
	display: block;
	margin: 80px auto 0;
	width: 300px;
	height: 50px;
	color: #FFF;
	text-align: center;
	line-height: 50px;
	transition: all 0.3s ease;
	background-color: #00A9EB;
	border-radius: 5px;
}
.readmore span {
	display: inline-block;
}
.readmore:hover {
	color: #FFF;
}
ul.news-list li.is-hidden {
  visibility: hidden!important;
  opacity: 0!important;
  height: 0!important;
  margin: 0 10px!important;
  padding: 0!important;
}
ul.item li.is-hidden {
  visibility: hidden;
  opacity: 0;
  height: 0;
  margin: 0 10px;
  padding: 0;
}
@media screen and (max-width: 896px) {
	.readmore {
		margin: 20px auto 0;
		width: 240px;
		height: 40px;
		line-height: 40px;
	}
}

/*----------------------------------
/pagetop
/----------------------------------*/
#pagetop {
	display:inline-block;
	position:fixed;
	bottom:100px;
	right:30px;
	transition: .8s;
}
#pagetop img {
	width: 10px!important;
}
@media screen and (max-width: 896px) {
	#pagetop {
		display: none!important;
	}
}

.store a {
	position: absolute;
	top: 45px;
	right: 50px;
	padding: 15px 30px 15px 45px;
	color: #00A9EB;
	font-weight: bold;
	border: 2px solid #00A9EB;
	background: url(../img/icon_store.svg) left 20px center no-repeat;
	border-radius: 10px;
	box-shadow: 0 2px 5px gray;
	transition: 0.5s all;
}
.store a::after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	width: 0;
	height: 0;
	margin-top: -5px;
	border: 5px solid transparent;
	border-left: 8px solid #00A9EB;
}
.store a:hover {
	position: absolute;
	top: 47px;
	box-shadow: 0 0 0 gray;
}
.en_btn {
	display: none;
}
.en_link a {
	display: block;
	position: absolute;
	top: 17px;
	right: 55px;
	font-size: 12px;
	font-family: hero-new, sans-serif;
	transition: 0.5s all;
}
.en_link a:hover {
	color: #00A9EB;
}
@media screen and (max-width: 1039px) {
	.store {
		position: fixed;
		bottom: 20px;
		right: 20px;
		transition: 0.5s;
	}
	.store a {
		position: relative;
		z-index: 99999!important;
		top: auto!important;
		bottom: 20px;
		right: 0px;
		padding: 15px 30px 15px 40px;
		background: #FFF url(../img/icon_store.svg) left 15px center no-repeat;
		border-radius: 30px;
		box-shadow: 0 2px 5px gray;
	}
	.store a:hover {
		position: relative;
		top: auto!important;
		bottom: 15px;
		right: 0px;
	}
	.en_btn {
		display: block;
		margin: 40px 0 0 20px;
		font-size: 12px;
		font-family: hero-new, sans-serif;
		transition: 0.5s all;
	}
	.en_link a {
		top: 45px;
		left: 20px;
	}
	.grecaptcha-badge{
    margin-bottom: 80px;
	}
}