@charset "UTF-8";
/* CSS Document */
/* 変数 */ :root {
  --mainColor-blackGrey: #333333;
  --mainColor-SRC_green: #92c5c5;
}
/* Body */ :focus {
  outline: none;
}
body {
  background-image: url("../../img/body_background_grid.gif");
  width: auto;
		height: 100vh;
  margin: 0px;
  font-family: 'Noto Sans JP', sans-serif;
  font-feature-settings: "palt";
}
a {
  text-decoration: none;
}
/* 幅が 768px 以下であれば 改行なくす */
@media screen and (max-width: 768px) {
  br {
    display: none;
  }
}

@media screen and (max-width: 768px) {
 header,main {
    padding: 0px 10px;
  }
}
li {
  list-style: none;
}
/* header */
.global-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
}
.nav_logo_createMarketer {
  width: 100px;
  margin-left: 10px;
  margin-right: 20px;
}
.nav_logo_company {
  width: 120px;
  margin-top: 5px;
}
.navbar-nav {
  display: none;
}
.nav_logo {
  display: flex;
  justify-content: flex-start;
}
/* header 幅が 768px 以上であれば */
@media screen and (min-width: 768px) {
  .nav_logo_createMarketer {
    width: 170px;
    margin-right: 50px;
  }
  .nav_logo_company {
    width: 210px;
    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: var(--mainColor-SRC_green);
}
.navbar button:active {
  color: var(--mainColor-SRC_green);
}
.navbar ul a :link {
  color: var(--mainColor-blackGrey);
}
.navbar ul a :visited {
  color: var(--mainColor-blackGrey);
}
.navbar ul a:hover {
  color: var(--mainColor-SRC_green);
}
.navbar ul a :active {
  color: var(--mainColor-SRC_green);
}
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: var(--mainColor-SRC_green);
  z-index: 100;
  transition: ease .4s;
}
li[class="nav-item"] {
  margin: 0px 30px;
  list-style: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  align-items: center;
  color: var(--mainColor-blackGrey);
}
li[class="nav-item is-active"] {
  margin: 0px 30px;
  list-style: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  align-items: center;
  color: var(--mainColor-blackGrey);
}
.navbar.is-active button {
  color: var(--mainColor-blackGrey);
}
.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: 20px;
  z-index: 160;
  line-height: 40px;
}

.nav-link {
  vertical-align: middle;
}
.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: 180px;
  background-color: rgb(146, 197, 197, 0.80);
  border-style: solid;
  border-width: 0.5px;
  border-color: #FFF;
	margin: 0px -30px;
}
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: 80px;
}
  }

.include-accordion.active {
  overflow-y: auto;
}
/* main */
main {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-align: justify;
  color: var(--mainColor-blackGrey);
  line-height: 40px;
  mix-blend-mode: multiply;
}
main h1 {
  font-weight: 500;
  font-size: 18px;
  text-align: justify;
  line-height: 48px;
}
@media screen and (min-width: 768px) {
  main {
    margin: 20px 100px;
    font-size: 18px;
    line-height: 40px;
    text-align: justify;
    text-justify: inter-ideograph;
  }
  main h1 {
    font-size: 18px;
    line-height: 40px;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
.top_section_catch_sm {
  display: none;
}
.top_section_catch_pc{
display: inline;
}

.top_section_catch{
  font-weight: 900;
  font-size: clamp(20px, 19.5vw, 150px);
  line-height: clamp(30px, 25vw, 250px);
  text-align: justify;
  margin-bottom: 10px;
}




@media screen and (min-width: 768px) {
.top_section_catch{
  font-weight: 900;
  font-size: clamp(40px, 10vw, 300px);
  line-height: clamp(50px, 13vw, 350px);
  text-align: justify;
  margin-bottom: 30px;
}
.top_section_catch_sm {
  display: inline;
}
.top_section_catch_pc{
display: none;
}
}

section .tytleName {
  font-weight: 700;
  font-size: 20px;
}
main h2 {
  font-weight: 500;
  font-size: 28px;
  text-align: justify;
  line-height: 40px;
  color: #92c5c5;
}
.news_tytle {
  border-bottom: 1px solid var(--mainColor-SRC_green);
  padding-bottom: 15px;
}
.news_latest {
  margin: 40px 0px 0px 0px;
  border-bottom: 1px solid var(--mainColor-SRC_green);
  padding-bottom: 40px;
  display: block;
  line-height: 40px;
  font-size: 18px;
}
.news_post_link :link {
  color: var(--mainColor-blackGrey);
}
.news_post_link :visited {
  color: var(--mainColor-blackGrey);
}
.news_post_link :hover {
  color: var(--mainColor-SRC_green);
}
.news_post_link :active {
  color: var(--mainColor-SRC_green);
}
.top_section {
  margin: 50px 10px;
}

.top_section {
  margin: 0px 10px;
}
@media screen and (min-width: 768px) {
.news_section {
  margin: 50px 10px;
}
}
.news_date {
  font-weight: 400;
  font-size: 14px;
  padding-right: 10px;
}
.tag_news {
  padding-left: 0px;
}
.tag_news li {
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  margin: 2px;
  padding: 5px;
  line-height: 1;
  color: var(--mainColor-SRC_green);
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #92c5c5;
}
.tag_news li:before {
  content: "#";
}
.tag_news a:link {
  color: var(--mainColor-SRC_green);
}
.tag_news a:visited {
  color: var(--mainColor-SRC_green);
}
.tag_news a:hover {
  color: var(--mainColor-blackGrey);
}
.tag_news a:active {
  color: var(--mainColor-blackGrey);
}
@media screen and (min-width: 1030px) {
  .news_post {
    display: flex;
  }
}
.news_post_title {
  font-weight: 500;
  font-size: 18px;
  padding-right: 10px;
}
.news_footer {
  display: flex;
  justify-content: flex-end;
  font-weight: 500;
  font-size: 16px;
}
.news_footer_a {
  margin: 20px 0px;
  padding: 2px 30px;
  border-style: solid;
  border-width: 1.5px;
  border-radius: 30px;
}
.news_footer_a:link {
  color: var(--mainColor-SRC_green);
}
.news_footer_a:visited {
  color: var(--mainColor-SRC_green);
}
.news_footer_a:hover {
  color: var(--mainColor-blackGrey);
}
.news_footer_a:active {
  color: var(--mainColor-blackGrey);
}
.knowledge_section {
  margin: 50px 10px;
}
.knowledge_tytle {
  border-bottom: 1px solid var(--mainColor-SRC_green);
  margin-bottom: 15px;
}
.knowledge_latest {
  margin: 40px 0px 0px 0px;
  border-bottom: 1px solid var(--mainColor-SRC_green);
  padding-bottom: 40px;
  display: block;
  line-height: 40px;
  font-size: 18px;
}
.knowledge_thumbnail {
  width: 100%;
}
.knowledge_comment{
	  font-weight: 400;
  font-size: 14px;
  color: var(--mainColor-blackGrey);
  line-height: 22px;
}
.knowledge_footer {
  display: flex;
  justify-content: flex-end;
  font-size: 16px;
}
.knowledge_footer_a {
  margin: 20px 0px;
  padding: 5px 30px;
  border-style: solid;
  border-width: 1.5px;
  border-radius: 30px;
}
.knowledge_footer_a:link {
  color: var(--mainColor-SRC_green);
}
.knowledge_footer_a:visited {
  color: var(--mainColor-SRC_green);
}
.knowledge_footer_a:hover {
  color: var(--mainColor-blackGrey);
}
.knowledge_footer_a:active {
  color: var(--mainColor-blackGrey);
}
.knowledge_tag_news {
  display: flex;
}
.knowledge_post img {
  width: 100%;
  height: auto;
}
.knowledge_post_title {
  margin-top: 10px;
  font-weight: 500;
  font-size: 18px;
  text-align: justify;
  line-height: 32px;
}
.knowledge_tag_area {
  margin: 10px 0px;
}
/* Body */ :focus {
  outline: none;
}
.knowledge_post_latest {
  display: flex;
  flex-wrap: wrap;
}
.knowledge_post {
  width: 100%;
  display: block;
}
@media (min-width: 768px) {
  .knowledge_post {
    width: 33.33%;
    padding: 0px 5px;
  }
}
.company_tytle {
  padding: 30px 0px;
  font-weight: 400;
  font-size: 20px;
  color: var(--mainColor-SRC_green);
}
.company_statement {
  font-weight: 700;
  font-size: 30px;
  color: var(--mainColor-blackGrey);
  line-height: 50px;
}
.company_philosophy_section {
  padding-top: 30px;
}
.company_philosophy_copy {
  font-weight: 500;
  font-size: 20px;
  color: var(--mainColor-blackGrey);
  line-height: 50px;
  padding-bottom: 30px;
}
.company_philosophy_copy_value {
  font-weight: 500;
  font-size: 18px;
  color: var(--mainColor-blackGrey);
  line-height: 30px;
  padding-bottom: 30px;
}
/*会社概要*/
.company_profile {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  color: var(--mainColor-blackGrey);
}
.company_profile th, .company_profile td {
  border: 1px;
  border-style: solid;
  border-color: var(--mainColor-blackGrey);
}
.company_profile th {
  text-align: center;
  padding: 25px 0px;
  width: 77px;
  background-color: var(--mainColor-SRC_green);
}
@media (min-width: 768px) {
  .company_profile th {
    padding: 25px 20px;
    width: 150px;
    background-color: var(--mainColor-SRC_green);
  }
}
.company_profile td {
  padding: 5px 10px;
  width: auto;
}
@media (min-width: 768px) {
  .company_profile td {
    padding: 5px 20px;
    width: auto;
  }
}
.company_profile td ul li {
  margin: 20px 0px;
  width: auto;
}
.company_profile_contents_tytle {
  color: var(--mainColor-SRC_green);
}
/*フッター*/
footer {width: auto;
	height: 100vh;
  background-color: var(--mainColor-SRC_green);
	padding: 50px;
	margin-top: 50px;
}
.footer_logo_createMarketer {
  width: 100px;
  margin-left: 10px;
  margin-right: 20px;
}
.footer_logo_company {
  width: 120px;
  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_link:link {
  color:#fff;
}
.footer_contents_menu_link:visited {
  color:#fff;
}
.footer_contents_menu_link:hover {
  color:var(--mainColor-blackGrey);
}
.footer_contents_menu_link:active {
  color:var(--mainColor-blackGrey);
}
.copyright{text-align: center;}

