/* -------------------- */
/* CSS reset
/* -------------------- */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  background: #fff;
  width: 100vw;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
	overflow-x: hidden;
	color: #333;
}


body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

h2{
	color:#000;
}

ol,
ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
font-weight: 900;

}

/* -------------------- */
/* common settings
/* -------------------- */
h1 {
  height: 70px;
}

h2 {
  margin-bottom: 60px;
  text-align: center;
  font-size: 4rem;
  letter-spacing: 0.15rem;
}

h4 {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
}

p {
  line-height: 2;
}

@media screen and (max-width: 768px) {
h1 {
  height: 50px;
}
h2 {
  margin-bottom: 40px;
  text-align: center;
  font-size: 2.3rem;
  line-height:1.1;
  letter-spacing: 0.15rem;
}
	
h4 {
  font-size: 1.4rem;
}
	
p {
  line-height: 1.7;
}
}

.p-bold {
  font-weight: 600;
}

a {
  color: #707070;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

img {
  width: 100%;
}

video {
  width: 100%;
}

.btn {
  min-width: 220px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  margin: 1rem 0;
  padding: 1rem 2rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  border: none;
  border-radius: 100vh;
  background: rgb(88, 73, 141);
  background: linear-gradient(
    180deg,
    rgba(88, 73, 141, 1) 0%,
    rgba(44, 37, 71, 1) 100%
  );
}

.sp-view {
  display: block;
}

.pc-view {
  display: none;
}

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

.f-red{color:#2655a2;}

/* flex box */
.flex-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 769px) {
  .sp-view {
    display: none;
  }

  .pc-view {
    display: block;
  }

  .flex-container {
    flex-direction: row;
  }
}

/* fade in */
.fade-animation {
  opacity: 0;
  visibility: hidden;
  transition: 1.5s;
  transform: translateY(30px);
}

.fade-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* -------------------- */
/* header
/* -------------------- */
.header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  z-index: 555;
  background-color: #fff;
  box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.4);
}

@media screen and (min-width: 769px) {
  .header {
    height: 100px;
  }
}

.header-logo {
  width: fit-content;
  margin: 13px 45px;
}

@media screen and (max-width: 768px) {
.header-logo {
  width: fit-content;
  margin: 14px 20px;
}
}

.header-logo img {
  height: 100%;
	width: auto;
}

/* navigation */
#global_nav {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 120%;
  width: 100%;
  height: 100vh;
  background:#fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#global_nav.panel-active {
  left: 0;
}

#global_nav ul {
  position: absolute;
  z-index: 999;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#global_nav li {
  list-style: none;
  text-align: center;
	white-space: nowrap;
}

#global_nav li a {
  color: #333;
  text-decoration: none;
  padding: 1rem;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#global_nav li a h4 {
  font-size:1.4rem;
}

#global_nav li:last-child{
	margin-top:10px;
	width: 380px;
}

#global_img {
  width: 280px;
  margin: 30px auto 15px;
}

@media screen and (max-width: 768px) {
	
#global_nav li a h4 {
  font-size:1.2rem;
}
	
#global_img {
  margin: 20px auto;
}
	
#global_img a img{
	width: 190px;
}
	
#global_nav li a {
  padding: 0.6rem;
}
	
#global_nav li:last-child{
	width: 330px;
}
	
}

.open-btn {
  position: fixed;
  z-index: 9999;
  top: 10px;
  right: 0;
  cursor: pointer;
  width: 80px;
  height: 80px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.open-btn:hover {
  opacity: 70%;
}

.open-btn span {
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #2655a2;
  width: 45%;
}

.open-btn span:nth-of-type(1) {
  top: 15px;
}

.open-btn span:nth-of-type(2) {
  top: 28px;
}

.open-btn span:nth-of-type(3) {
  top: 41px;
}

.open-btn.active span:nth-of-type(1) {
  top: 23px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
  background-color: #2655a2;
}

.open-btn.active span:nth-of-type(2) {
  opacity: 0;
}

.open-btn.active span:nth-of-type(3) {
  top: 35px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
  background-color: #2655a2;
}

@media screen and (min-width: 769px) {
  #global_nav {
    width: 40%;
  }

  #global_nav.panel-active {
    left: 60%;
  }

  .open-btn {
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
  }

  .global-bg.panel-active {
    opacity: 1;
  }
}

/* -------------------- */
/* page
/* -------------------- */
.page-container {
  /*max-width: 1080px;*/
  margin: 0 auto;
}

.page-container section {
  padding: 120px 0 0;
}

@media screen and (min-width: 769px) {
.page-container section {
  max-width:1200px;
  margin:auto;
}
}

.sec-margin {
  margin: 0 60px;
}

@media screen and (max-width: 768px) {

	.sec-margin {
  margin: 0 20px;
}
.page-container section {
  padding: 100px 0 0;
}
	
}

/* mv */
#mv_sec {
  width: 100%;
  margin: 0 auto 0 auto;
	padding-top: 100px;	
}

@media screen and (max-width: 768px) {
	#mv_sec {
  width: 100%;
  margin: 0 auto 0 auto;
	padding-top: 80px;	
}
}

/* intro */

.bg_wood {
  background-image: url("../img/nm_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: repeat-y;
}

#intro_particle h3{
line-height: 1.8;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
#intro_particle h3{
line-height: 1.5;
    font-size: 1.2rem;
    margin: 1rem 0;
}
	
}

#intro_container {
  width: 100%;
  margin: 0 auto;
}

#intro_img {
}

@media screen and (min-width: 769px) {
  #intro_container {
    width: 100%;
  }
	
  #intro_container .flex-container {
    gap: 5%;
  }

  #intro_img {
    display: block;
  }
}

/* points */
#points_sec {
padding-bottom:120px;
}

#points_title {
  width: 90%;
  margin: 60px auto;
}

#points_container {
  margin: 0 60px;
  padding: 30px;
  border-radius: 20px;
  background-color: #37bfef;
	color: #fff;
}

#points_sec .grid-item h3{
	font-size: 1.8rem;
	margin-bottom: 2rem;
	color: #fff;
}

@media screen and (max-width: 768px) {
	
#points_sec {
padding-bottom:60px;
}
	
#points_container {
  margin: 0 20px;
}
	
#points_sec .grid-item h3{
	font-size: 1.5rem;
}
#points_sec .grid-item img {
  width:80%;
}
#points_sec .grid-item p {
  margin: 2rem 0 4rem;
}
#points_sec .grid-item p.last {
  margin-bottom: 0;
}
}

.point-img {
  width: 60%;
  max-width: 200px;
}

.point-p {
  margin: 60px 0;
}

.benefit-img {
  display: none;
}

.balloon-box {
  position: relative;
  margin: 40px 0 60px 0;
  padding: 20px;
  border-radius: 20px;
  background-color: rgba(162, 161, 108, 0.1);
}

@media screen and (max-width: 768px) {
	.balloon-box_last {
		margin-bottom: 0;
	}
}

.balloon-box:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -15px;
  border: 10px solid transparent;
  border-bottom: 20px solid rgba(162, 161, 108, 0.1);
}

@media screen and (min-width: 769px) {
  #points_container {
    border-radius: 20px;
  }

  #points_title {
    width: 70%;
  }
  .grid-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid-item {
    margin: 20px;
  }

  .grid-item:nth-child(1) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .grid-item:nth-child(2) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .grid-item:nth-child(3) {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .grid-item:nth-child(4) {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .grid-item:nth-child(5) {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .grid-item:nth-child(6) {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 2;
    grid-row: 2;
  }


  .benefit-img {
    width: 100%;
    display: block;
  }

  .balloon-box {
    padding: 20px 20px 40px 20px;
  }
}

/* review */

#review_sec .flex-container .flex-item{
	width: 50%;
	border: 2px solid #37bfef;
	border-radius: 20px;
	margin: 1rem;
	padding: 2rem 1.5rem;
	position: relative;
	background-color: #37bfef;
	color:#fff;
}

@media screen and (max-width: 768px) {
	#review_sec .flex-container .flex-item{
	width: 90%;
	padding: 1rem;
}
	
}

#review_sec .flex-container .flex-item .icon{
	width: 25%;
	float: left;
}

#review_sec .flex-container .flex-item .comment{
	width: 65%;
	position: absolute;
    top: 50%;
	left: 30%;
    transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
#review_sec .flex-container .flex-item{
	width: 90%;
	padding: 2.3rem 1rem;
}
	
#review_sec .flex-container .flex-item .comment{
	width: 65%;
	position: absolute;
    top: 50%;
	left: 30%;
    transform: translateY(-50%);
}
	
#review_sec .flex-container .flex-item .comment p{
	font-size:13px;
	line-height: 1.5;
	}
	
}

/* product */
#product_sec {
  padding: 60px 0 30px;
}

@media screen and (max-width: 768px) {
#product_sec {
  padding: 100px 0 30px;
}
}

#product_container {
  width: 100%;
  margin: 0 auto;
}

#product_container .flex-item {
  margin: 30px;
}

#product_item img {
  max-width: 80%;
}

#product_info #product_logo {
  width: 80%;
  max-width: 350px;
  margin-bottom: 30px;
}

.lineup_tit{
}

.page-container section.lineup_btn{
	padding-top: 3rem;
	
}

.lineup_btn div{
	width:450px;
	margin:0 auto;
}

@media screen and (max-width: 768px) {
.lineup_btn div{
	width:80vw;
}
}

@media screen and (min-width: 769px) {
  #product_sec {
    padding: 100px 0 50px;
  }

  #product_container {
    width: 70%;
  }

  #product_container .flex-item {
    margin: 30px 0;
  }

  #product_item {
    max-width: 100%;
    margin: 120px 30px;
  }

  #product_info {
    width: 70%;
  }
}

.keisen{
	padding-top: 120px;
}

.keisen hr{
	background-color: #2655a2;
    height: 2px;
    border: none;
}


@media screen and (max-width: 768px) {
	#intro_sec{
		padding-bottom: 0;
	}
	#points_sec{
		padding-top: 2rem;
	}
	.keisen{
	padding-top: 100px;
}

}

/* news */

.news-contents {
  width: 100%;
  margin: 60px auto 0;
}

.news-contents li {
  text-align: center;
}

.news-contents .news_set{
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #b3b3b3;
	margin-bottom: 1.5rem;
	
}

.news-contents .news_set:last-child{
	padding-bottom: 0;
	border-bottom: none;
	margin-bottom: 0;
}

.news-contents .news_date{
	font-weight: bold;
	color: #eb87b3;
	padding-bottom: 0.5rem;
}

.news-contents .news_tit{
	font-weight: bold;
	padding-bottom: 0.5rem;
	font-size: 1.2rem;
}

.news-contents .news_text{
	color: #666666;
	font-size: 0.9rem;
}

@media screen and (min-width: 769px) {
  .news-contents {
    width: 90%;
    margin: 60px auto;
  }

}

@media screen and (max-width: 768px) {
	.news-contents .news_tit{
	font-size: 0.9rem;
}
}


/* about */

.about-contents {
  width: 100%;
  margin: 60px auto 0;
}

#about_container p{
	color: #666;	
}

#about_container .about_logo{
	width:155px;
}

#about_container .about_address{
	margin-left: 1rem;
}

#about_container .about_sns{
	margin-left: 19rem;
}

#about_container  ul li {
	float: left;
	margin-left: 1.2rem;
}

#about_container  ul li img {
	height: 30px;
	width: auto;
}

@media screen and (min-width: 769px) {
  .about-contents {
    width: 90%;
    margin: 60px auto;
  }

}

@media screen and (max-width: 768px) {
	
#about_container p{
	font-size: 0.9rem;	
}

#about_container .about_logo{
	margin: 3rem auto 2rem;
	}
#about_container .about_address{
	margin-left: 0;
	text-align: center;
	margin-bottom: 2rem;
}

#about_container .about_sns{
	margin-left: 0;
}

#about_container  ul li {
	float: left;
	margin-left: 1.2rem;
}
	
#about_container  ul li:first-child {
	margin-left: 0;
}

#about_container  ul li img {
	height: 30px;
	width: auto;
}
	
}

/* contact */

#contact_container {
  width: 100%;
  margin: 0 auto 120px;
	text-align: center;
}

#contact_container p{
	font-size: 1.8rem;
}

@media screen and (min-width: 769px) {
  #contact_container {
    width: 90%;
  }

}

@media screen and (max-width: 768px) {
	#contact_container {
  margin: 0 auto 100px;
}
}

/* -------------------- */
/* footer
/* -------------------- */
.footer {
  width: 100%;
  height: 200px;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.2);
}

.footer-logo {
  width: fit-content;
  height: 80%;
  margin: 0 auto;
  padding:30px 0 25px;
}

.footer-logo img {
  height: 90%;
	width: auto;
}

.footer-copy {
  height: 20%;
	text-align: center;
	color: #808080;
}

@media screen and (max-width: 768px) {
	
	.footer-logo {
  padding:30px 0 5px;
}
	
	.footer-logo img {
  height: 70%;
	width: auto;
}
}

/* -------------------- */
/* common
/* -------------------- */

.pt100{padding-top: 100px;}
