@charset "UTF-8";
/* CSS Document */
/* 変数 */ :root {
  --mainColor-blackGrey: #333333;
  --mainColor-SRC_red: #FF4159;
}
/* Body */ :focus {
  outline: none;
  color:  #FF4159;
}
html {
  scroll-behavior: smooth;
}
body {
  width: auto;
  height: 100vh;
  margin: 0px;
  font-family: 'Space Grotesk', sans-serif;
  font-feature-settings: "palt";
}
:lang(ja) {
  font-family: 'Noto Sans JP', sans-serif; /* 日本語のテキスト用のフォント */
}
a {
  text-decoration: none;
}
a:hover{
	text-decoration: none;
color:var(--mainColor-SRC_red);
}

/* header */
.global-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 70px;
  padding: 0 2%;
	
}
@media screen and (min-width: 768px) {
		.global-nav {

  padding: 0;
	
}
	}
.nav_logo_createMarketer {
  width: 100px;
  margin-left: 20px;
  margin-right: 0px;
}
.nav_logo_company {
  width: 50px;
  height: auto;
  margin-top: 10px;
  margin-left: 10px;
}
.navbar-nav {
  display: none;
}
.nav_logo {
  display: flex;
  justify-content: flex-start;
}
/* header 幅が 768px 以上であれば */
@media screen and (min-width: 768px) {
  .global-nav {
    height: 100px;
  }
  .nav_logo_company {
    width: 70px;
    margin-left: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .navbar-nav {
    display: flex;
    justify-content: flex-end;
  }
}
/* ハンバーガーメニュー */
.header_hamburger {
  width: 50px;
  height: 100%;
}
.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 200;
}
#js-hamburger {
  margin-top: 10px;
}
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #333;
  position: relative;
  transition: ease .4s;
  display: block;
}
.hamburger span:nth-child(2) {
  margin: 12px 0;
}
.navbar.is-active {
  transform: translateX(0);
}
.hamburger.is-active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  top: -15px;
  transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .header_hamburger {
    width: 60px;
    margin-right: 20px;
  }
  .hamburger span:nth-child(2) {
    margin: 15px 0;
  }
  .hamburger.is-active span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
  }
  .hamburger.is-active span:nth-child(3) {
    top: -17px;
    transform: rotate(-45deg);
  }
}
@media screen and (min-width: 1200px) {
  .hamburger {
    display: none;
  }
}
.navbar button {
  color: var(--mainColor-blackGrey);
}
.navbar button:link {
  color: var(--mainColor-blackGrey);
}
.navbar button:visited {
  color: var(--mainColor-blackGrey);
}
.navbar button:hover {
  color: #FF4159;
}
.navbar button:active {
  color: #FF4159;
}
.navbar ul a :link {
  color: var(--mainColor-blackGrey);
}
.navbar ul a :visited {
  color: var(--mainColor-blackGrey);
}
.navbar ul a:hover {
  color: #FF4159;
}
.navbar ul a :active {
  color: #FF4159;
}
ul[class="contents-accordion is-active"] a:hover {
  color: #FFFFFF;
}
ul[class="contents-accordion is-active"] a:active {
  color: #FFFFFF;
}
.navbar.is-active {
  padding-top: 50px;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 110vh;
  transform: translateX(0%);
  background-color: #ddd;
  z-index: 100;
  transition: ease .4s;
}
li[class="nav-item"] {
  margin: 0px 30px;
  list-style: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  align-items: center;
  color: var(--mainColor-blackGrey);
}
li[class="nav-item is-active"] {
  margin: 0px 30px;
  list-style: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  align-items: center;
  color: var(--mainColor-blackGrey);
}
.navbar.is-active button {
  color: var(--mainColor-blackGrey);
  font-family: 'Space Grotesk', sans-serif;
}
.navbar.is-active ul li a:link {
  color: var(--mainColor-blackGrey);
}
.navbar.is-active ul li a :visited {
  color: var(--mainColor-blackGrey);
}
.navbar.is-active ul li a:hover {
  color: #FFFFFF;
}
.navbar.is-active ul li a :active {
  color: #FFFFFF;
}
.navbar.is-active ul {
  display: block;
  z-index: 150;
}
.navbar.is-active ul li {
  text-align: center;
  font-size: 21px;
  z-index: 160;
  line-height: 60px;
}
.nav-link {
  vertical-align: middle;
  font-family: 'Space Grotesk', sans-serif;
}
.contents-accordion {
  line-height: 0;
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition-duration: 0.4s;
}
ul[class="contents-accordion is-active"] {
  margin: 0px -40px;
  text-align: left;
  padding: 10px 40px;
  line-height: 35px;
  height: auto;
  opacity: 1;
  z-index: 160;
}
li[class="contents-accordion_list"] {
  font-weight: 500;
  z-index: 160;
  padding: 10px 30px;
  width: auto;
  margin: 2px -30px;
 background-color: var(--mainColor-SRC_red);

	
}
ul[class="contents-accordion is-Ham is-active"] {
  margin: 0px;
  text-align: center;
  line-height: 35px;
  height: auto;
  opacity: 1;
  z-index: 160;
}
li[class="contents-accordion_list is-Ham"] {
  font-weight: 400;
  z-index: 160;
}
@media screen and (min-width: 1200px) {
  .contents-accordion {
    position: absolute;
  }
  .contents-accordion.is-active {
    position: absolute;
  }
}
@media screen and (min-width: 768px) {
  .include-accordion {
    margin-right: 10px;
  }
}
.include-accordion.active {
  overflow-y: auto;
}
.main__button--shop{
	position: fixed;
	top: 80px; /* 下から20pxの位置に */
    right: 0px; /* 右から20pxの位置に */
	background-color: #FF4159;
width: 80px;
	height: 80px;
	z-index: 50;
	  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #fff;
	text-align: center;


}
.main__button--shop p{
	
    margin: 12px 0px;
}
.main__button--tell{
	position: fixed;
	top: 70px; /* 下から20pxの位置に */
    right: 0px; /* 右から20pxの位置に */
	background-color: #FF4159;
width: 80px;
	height: 80px;
	z-index: 50;
	text-align: center;
	vertical-align: middle;
}
.main__button--tell svg{
	
    margin: 25px;
}
.main__button--mail{
	position: fixed;
top: 151px; /* 下から20pxの位置に */
    right: 0px; /* 右から20pxの位置に */
	background-color: #FF4159;
width: 80px;
	height: 80px;
	z-index: 50;
	text-align: center;
	vertical-align: middle;
}
.main__button--mail svg{
	
    margin: 25px;
}

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

.main__button--shop{
	position: fixed;
	top: 140px; /* 下から20pxの位置に */
    right: 0px; /* 右から20pxの位置に */
	background-color: #FF4159;
width: 100px;
	height: 100px;
	z-index: 50;
	  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #fff;
	text-align: center;


}
.main__button--shop p{
	
    margin: 22px 0px;
}
.main__button--tell{
	position: fixed;
	top: 100px; /* 下から20pxの位置に */
    right: 0px; /* 右から20pxの位置に */
	background-color: #FF4159;
width: 100px;
	height: 100px;
	z-index: 50;
	text-align: center;
	vertical-align: middle;
}
.main__button--tell svg{
	
    margin: 35px;
}
.main__button--mail{
	position: fixed;
	top: 181px; /* 下から20pxの位置に */
    right: 0px; /* 右から20pxの位置に */
	background-color: #FF4159;
width: 100px;
	height: 100px;
	z-index: 50;
	text-align: center;
	vertical-align: middle;
}
.main__button--mail svg{
	
    margin: 35px;
}
}
/* main */
.main__copy--top {
  position: relative;
  text-align: center;
}
.main__copy--topArea {
  width: 100%;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main__visual--topArea_img {
  width: 100%;
}
.main__copy--title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 40px;
  color: #fff;
}
.main__copy--body--sp {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: #333;
  padding: 5%;
  text-align: justify;
}
.main__copy--body--pc {
  display: none;
}
.main__aboutUs--top {
  padding: 0 5%;
}
.aboutUs__contents--area {
  display: flex;
  flex-direction: column-reverse;
}
.aboutUs__copy--title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 40px;
  color: #333;
  margin: 50px 0px 50px 0px;
  text-align: center;
}
.aboutUs__copy--body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: #333;
  text-align: justify;
  width: 100%
}
.aboutUs__img--nozaki {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  margin-bottom: 30px;
}
.aboutUs__botton {
  margin: 30px 0px;
  display: block;
}
.aboutUs__botton--a {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #333;
  text-align: center;
  border-width: 1px;
  border-radius: 50vh;
  border-color: #333;
  width: 100%;
  padding: 5px 0px;
  margin: 10px 0;
}
.main__business--top {
  padding: 0 5%;
  margin-bottom: 100px;
}
.main__business--copy {
  margin: 0 0 50px 0;
}
.business__copy--title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 40px;
  color: #333;
  margin: 50px 0px 50px 0px;
  text-align: center;
}
.business__copy--body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: #333;
  text-align: justify;
  width: 100%
}
.business__contents--area {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.business__img--contents {
  width: 250px;
  height: 250px;
  border-radius: 30px;
  object-fit: cover;
}
.business__contents--title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #333;
  text-align: center;
  margin: 20px 0 20px 0;
}
.pcOnly {
  display: none;
}
.spOnly {
  display: block;
}
.business__contents--type {
  margin: auto;
}
.main__contact--area {
  margin: 10px 5% 100px;
  background-color: #EEE;
  padding: 10% 5%;
}
.main__contact--copy {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: #333;
  text-align: center;
  width: 100%
}
.main__contact--tell a {
  color: #DB4C4C;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: 35px;
  display: flex;
  justify-content: center;
  margin: 20px 0px;
}
.main__contact--tellNumber {
  margin: auto 0 auto 10px;
}
.main__contact--mail a {
  color: #DB4C4C;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: 21px;
  display: flex;
  justify-content: center;
  margin: 20px 0px;
}
.main__contact--mailNumber {
  margin: auto 0 auto 10px;
}
.main__contact--copy--eigyo {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: #333;
  text-align: center;
  width: 100%
}
.tbOnly{
  display: none;
}
@media screen and (min-width: 576px) {
  .business__copy--body {
    text-align: center;
  }
  .main__business--top {
    padding: 0 10%;
  }
  .main__aboutUs--top {
    padding: 0 10%;
  }
  .main__copy--body--sp {
    display: none;
  }
  .main__copy--body--pc {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 32px;
    color: #fff;
  }
  .main__copy--topArea {
    top: 50%;
  }
  .main__copy--title {
    font-size: 24px;
    line-height: 40px;
    margin: 0px 0px 2em 0px;
  }
  .pcOnly {
    display: block;
  }
  .spOnly {
    display: none;
  }
  .tbOnly{
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .main__copy--topArea {
    top: 60%;
  }
  .spOnly-tb {
    display: none;
  }
  .main__copy--title {
    font-size: 24px;
    line-height: 40px;
    margin: 0px 0px 5em 0px;
  }
  .tbOnly{
    display: none;
  }

  
}

@media screen and (min-width: 992px) {
 
  .main__contact--tellMail {
    display: flex;
    justify-content: center;
    vertical-align: middle;
  }
  .main__contact--tell {
    margin: auto 3% auto auto;
  }
  .main__contact--mail {
    margin: auto auto auto 3%;
  }
  .main__contact--copy--eigyo {
    display: flex;
    justify-content: center;
    column-gap: 50px;
  }
  .aboutUs__contents--area {
    display: flex;
    flex-direction: row;
  }
  .aboutUs__botton {
    display: flex;
    justify-content: center;
    column-gap: 20px
  }
  .aboutUs__botton--a {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #333;
    text-align: center;
    border-width: 1px;
    border-radius: 50vh;
    border-color: #333;
    width: 20vw;
    padding: 5px 0px;
    margin: 0;
  }
  .aboutUs__img--nozaki {
    margin: 8px 0px 0px 30px;
    width: 400px;
    height: 400px;
    border-radius: 30px;
    object-fit: cover;
  }
}
/*フッター*/
footer {
  width: auto;
  height: 100vh;
  padding: 50px;
  margin-top: 0px;
  background-color: #333;
}
.footer_logo_createMarketer {
  width: 100px;
  margin-left: 10px;
  margin-right: 20px;
}
.footer_logo_company {
  width: 60px;
  margin-top: 5px;
}
.footer_logo {
  display: flex;
}
.footer_contents {
  display: block;
}
@media screen and (min-width: 768px) {
  .footer_contents {
    display: flex;
    justify-content: space-between;
  }
}
.footer_contents_menu {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 40px;
  color: #fff;
  display: block;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .footer_contents_menu {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 40px;
    color: #fff;
    display: flex;
    margin-top: 0px;
  }
}
.footer_contents_menu li {
  margin: 10px 10px;
}
@media screen and (min-width: 768px) {
  .footer_contents_menu li {
    margin: 0px 30px;
  }
  .footer_contents_menu_child {
    margin-left: -30px;
  }
}
.footer_contents_menu_menu li{
	list-style: circle;
}
.footer_contents_menu_link:link {
  color: #FF4159;
}
.footer_contents_menu_link:visited {
  color: #FF4159;
}
.footer_contents_menu_link:hover {
  color: #FF4159;
}
.footer_contents_menu_link:active {
  color: #FF4159;
}
.footer_contents_menu_link_menu {
  margin-left: 20px;
  list-style: disc;
}
.copyright {
	margin-top: 300px;
  text-align: center;
  color: #FFF;
}
/*会社概要*/
.design03 {
	margin: 60px 5%;


 border-collapse: collapse;
 border-spacing: 0;
 border-top: solid 1px #778ca3;

}

.design03 th,
.design03 td {
 padding: 20px;
 border-bottom: solid 1px #778ca3;
}
.design03_left{
		    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
	 text-align: center;
	line-height: 30px;
	width:30%;
	background-color: #eee;
}
.design03_right{margin-left: 30px;
		    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
	line-height: 30px;
	 text-align: left;
		width:70%;
}
.keireki__copy--body{
	margin: 30px 5% 300px 5%;
			    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 16px;
	line-height: 35px;
	 text-align: justify;
	
}
.keireki__copy--body p{
	margin: 20px 0;
	
}
@media screen and (min-width: 576px) {
	.keireki__copy--body{
	margin: 100px auto 300px;
			    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 18px;
	line-height: 40px;
	 text-align: justify;
		width:60%;
}
.keireki__copy--body p{
	margin: 20px 0;
	
}
	.design03 {
	margin: 60px auto;
 width: 70%;

 border-collapse: collapse;
 border-spacing: 0;
 border-top: solid 1px #778ca3;

}
	
}