@charset "utf-8";

/*=====================================

layout.css

=====================================*/

@import url("https://fonts.googleapis.com/earlyaccess/notosansjp.css");
@import url('https://fonts.googleapis.com/css?family=Bitter');

/*-------------------------------------
 reset
-------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, 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;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	max-width: 100%;
	line-height: 0;
	vertical-align: middle;
}
iframe {
	vertical-align: bottom;
	border: 0;
}
a {
	text-decoration: none;
	color: inherit;
}
a:visited,
a:active {
	color: inherit;
}
input,
select,
textarea{
	font-family: 'Noto Sans JP', sans-serif;
}
button {
	font-family: 'Noto Sans JP', sans-serif;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
select::-ms-expand {
	display: none;
}
*, :after, :before {
	box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
/*-------------------------------------
 setting
-------------------------------------*/
body {
	position: relative;
	color: #333;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	overflow-wrap: break-word;
	word-wrap: break-word;
	background: #fff;
	-webkit-text-size-adjust: 100%;
}
p {
	line-height: 1.6;
	text-align: center;
}
/*-------------------------------------
 Marketzone_breadcrumbs
-------------------------------------*/
.breadcrumbs {
	background-color: #11548F0C;
	margin-bottom: 55px;
}
.breadcrumbs-grey {
	background-color: #11548F0C;
}
.breadcrumbs__inner {
	max-width: 1200px;
	width: 83%;
	margin: 0 auto;
}
.breadcrumbs__inner img {
	height: 17px;
	padding-right: 7px;
	padding-bottom: 3px;
	vertical-align: middle;
}
.breadcrumbs__inner ul {
	list-style: none;
	padding: 5px 0;
}
.breadcrumbs__inner li {
	display: inline;
	font-size: 15px;
	font-weight: bold;
	margin-right: 30px;
	color: #A2A2A2;
}
.breadcrumbs__inner li a {
	color: #11548F;
	position: relative;
}
.breadcrumbs__inner li a::after {
	content: "";
	position:absolute;
	top: 30%;
	left: 115%;
	width: 0.6em;
	height: 0.6em;
	border-right: 2px solid #11548F;
	border-top: 2px solid #11548F;
	transform: rotate(45deg);
}

@media (max-width: 768px) {
.breadcrumbs {
	display: none;
	}
.breadcrumbs-grey {
	display: none;
}
}
/*-------------------------------------
 Marketzone_hero section
-------------------------------------*/
.top_section {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 280px;
	margin-top: 80px;
	background: linear-gradient(to right,
    rgba(17, 84, 143, 1) 0%,
    rgba(17, 84, 143, 0.58) 85%,
    rgba(17, 84, 143, 0.46) 100%
  );
}
.top_section__title {
	position: absolute;
  margin-bottom: 80px;
	font-size: 27px;
	font-weight: bold;
	color: #fff;
	z-index: 5;
}
.top_section__title::after {
	content: "";
	height: 30%;
	width: 135%;
	background: #F2F61A;
	position: absolute;
	top: 70%;
	left: -20%;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	z-index: -1;
}
.top_section__title-alphabet {
	position: absolute;
  margin-top: 85px;
	font-size: 85px;
	font-weight: bold;
	color: #ffffff45;
}
.scroll-line {
  position: absolute;
  top: 72%;
  left: 93%;
	font-size: 13px;
  color: #fff!important;
  writing-mode: vertical-lr;
}
.scroll-line::after {
  content: "";
  position: absolute;
	left: -10%;
  animation: lineAnimation 1.5s cubic-bezier(1, 0, 0, 1) infinite;
  height: 80px;
  width: 2px;
  background: #fff;
}
a.anchor {
  display:block;
  padding-top: 100px;
  margin-top: -100px;
  border-bottom: none!important;
  }

@keyframes lineAnimation {
  0% {
    top: 0;
    height: 0;
  }
  50% {
    top: 0;
    height: 80px;
  }
  100% {
    top: 80px;
    height: 0;
  }
}
.top_section__background {
	position: absolute;
	top: 1%;
	left: 0;
	opacity: 0.1;
}
.top_section__background img {
	max-height: 280px;
	width: auto;
}
@media (max-width: 768px) {
	.top_section {
		height: 200px;
		margin-top: 131px;
	}
	.top_section__title {
    font-size: 23px;
	}
	.top_section__title::after {
    left: -17%;
		top: 74%;
	}
	.top_section__title-alphabet {
		font-size: 45px;
		margin-top: 50px;
}
.scroll-line {
	display: none;
}
.top_section__background {
	position: absolute;
	top: 26%;
	left: 0;
	opacity: 0.1;
}
.top_section__background img {
	max-height: 150px;
	width: auto;
}
}
/*-------------------------------------
 Marketzone_navbar
-------------------------------------*/
.navbar {
	background: #fff;
	width: 100vw;
	height: 80px;
	position: fixed;
  top: 0;
	left: 0;
	opacity: 1;
	z-index: 10;
	box-shadow: 0 0 24px rgb(0 0 0 / 10%)
}
.brand-title {
	position: absolute;
	top: 28px;
	left: 3.4%;
	max-width: 200px;
	z-index: 10;
}
.brand-title:hover {
	opacity: 0.7;
	transition: 0.3s ease-out;
}
.logo-mobile {
	display: none;
}
.navbar-links ul {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	padding-right: 13.5%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}
.navbar-links li {
	list-style: none;
	position: relative;
}
.navbar-links > ul > li {
	width: 165px;
	text-align: center;
}
.navbar-links li a {
	text-decoration: none;
	color: #000;
	font-size: 14px;
	padding: 1rem;
	display: block;
}
.dropdown-menu-pc li:hover {
	background-color: #42a6ff2e;
}
.navbar-links .dropdown-menu-pc {
  display: block;
  position: absolute;
	top: 100%;
	height: auto;
	width: auto;
	padding-right: 0;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
  z-index: 1;
	visibility: hidden;
	opacity: 0;
	transition: 0.4s;
}
.navbar-links .dropdown-pc:hover .dropdown-menu-pc {
  visibility: visible;
	opacity: 1;
}
.navbar-links > ul > li > a {
  text-decoration: none;
	font-size: 16px;
  color: #000;
  padding: 1rem;
  display: block;
  position: relative;
	font-weight: bold;
}
.chevron::before {
	content: "";
  position: absolute;
  bottom: 0.3em;
  right: 2em;
  background: url(https://marketzone.jp/images/misc/black_triangle.png) no-repeat;
  background-size: 0.55em;
  background-position: 100% 60%;
	width: 100%;
	height: 100%;
}
.navbar-links > ul > li > a::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #11548F;
  bottom: 9%;
  left: 0;
	transform: scale(0, 1);
	transform-origin: left;
  transition: transform 0.3s ease-in;
}
.navbar-links > ul > li > a:hover::after {
  transform: scale(1, 1);
}
.dropdown-pc-eng {
	color:#11548F;
	font-size: 11px;
	font-weight: bold;
	transform: translateY(13px);
}
.dropdown-menu-pc li {
	width: 185px;
	text-align: left;
	border-bottom: 1px solid #d1d1d1;
}
.navbar-cta {
	position: absolute;
	top: 22%;
	right: 0;
	margin-right: 3%;
}
.navbar-cta-contact {
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.5px;
	padding: 11px 22px;
	border-radius: 100px;
	border:none;
	cursor: pointer;
	background: linear-gradient(45deg, #11548F 35%, #0F8BF8);
	transition: 0.3s;
}
.navbar-cta-contact:hover {
	opacity: 0.8;
}

.sp-cta {
	display: none;
}
@media (max-width: 768px) {
	.navbar {
		box-shadow: none;
	}
	.navbar-links {
		display: none;
		width: 100%;
	}
	.navbar-links ul {
		width: 100%;
		flex-direction: column;
	}
	.navbar-links li a {
		padding: 1rem;
		color: #fff;
		border-bottom: 1px solid;
	}
	.navbar-links.active {
		display: flex;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #11548F;
		padding: 0 20px;
    z-index: 1000; /* Ensure the menu is on top of other content */
    overflow-y: auto; /* Enable vertical scrolling for the menu */
	}
	.navbar-cta {
		display: none;
	}
	.sp-cta {
		position: fixed;
		top: 80px;
		display: flex;
		justify-content: center;
		z-index: 20;
		width: 100%;
		color: #fff;
		text-align: center;
		padding: 15px;
		background: #11548F;
		box-shadow: 0 0 24px rgb(0 0 0 / 10%);
	}
	.sp-cta img {
		height: 25px;
		margin-right: 8px;
	}
}

/*-------------------------------------
  Marketzone_Hamburger-menu + sidebar
-------------------------------------*/
:root {
  --bar-width: 40px;
  --bar-height: 5px;
  --hamburger-gap: 5px;
  --foreground: #5e5e5e;
  --background: white;
  --hamburger-margin: 8px;
  --animation-timing: 200ms ease-in-out;
  --hamburger-height: calc(var(--bar-height) * 3 + var(--hamburger-gap) * 2);
}
.hamburger-menu {
  --x-width: calc(var(--hamburger-height) * 1.41421356237);
  display: flex;
  flex-direction: column;
  gap: var(--hamburger-gap);
  width: max-content;
  z-index: 2;
  cursor: pointer;
  margin-top: 7px;
}
.hamburger-menu:has(input:checked) {
	--foreground: #fff;
	--background: #333;
}
.hamburger-menu:has(input:focus-visible)::before,
.hamburger-menu:has(input:focus-visible)::after,
.hamburger-menu input:focus-visible {
	border: 1px solid var(--background)
}
.hamburger-menu::before,
.hamburger-menu::after,
.hamburger-menu input {
  content: "";
  width: var(--bar-width);
  height: var(--bar-height);
  background-color: var(--foreground);
  border-radius: 9999px;
  transform-origin: left center;
  transition: opacity var(--animation-timing), width var(--animation-timing), rotate var(--animation-timing), translate var(--animation-timing);
}
.hamburger-menu input {
  appearance: none;
  padding: 0;
  margin: 0;
  outline: none;
  pointer-events: none;
}
.hamburger-menu:has(input:checked)::before {
  rotate: 45deg;
  width: var(--x-width);
  translate: 0 calc(var(--bar-height) / -2);
}
.hamburger-menu:has(input:checked)::after {
  rotate: -45deg;
  width: var(--x-width);
  translate: 0 calc(var(--bar-height) / 2);
}
.hamburger-menu input:checked {
  opacity: 0;
  width: 0;
}
.sidebar {
	display: none;
}
.mobile-sidebar nav{
	display: none;
}
.triggeres {
    display: none;
}
.menu-btn {
	background-color: #11548F;
	color: white;
	font-size: 16px;
	border: none;
	width: 100%;
	padding: 20px 0;
	text-align: left;
	position: relative;
}
.menu-btn::before {
	content: "";
	width: 3px;
	height: 16px;
	background-color: white;
	position: absolute;
	right: 20px;
	top: 22px;
	border-radius: 10px;
	transform: rotate(0deg);
	transition: transform 0.3s ease-out;
}
.menu-btn.rotated::before {
    transform: rotate(90deg);
		transition: all 0.3s ease-out;
}
.menu-btn::after {
	content: "";
	width: 16px;
	height: 3px;
	background-color: white;
	position: absolute;
	right: 14px;
	top: 29px;
	border-radius: 10px;
}
.mobile-sidebar .dropdown-menu {
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s ease-out;
}

.mobile-sidebar .dropdown-menu.active {
  visibility: visible;
  opacity: 1;
  max-height: 475px;
}

@media(max-width:768px) {
.triggeres {
  display: block;
  position: absolute;
  right: 15px;
	padding-top: 0.6rem;
}
.mobile-sidebar {
	transition: translate var(--animation-timing);
	padding: 0.5rem 1rem;
	padding-top: calc(var(--hamburger-height) + var(--hamburger-margin) + 2rem);
	background-color: #11548F;
	color: #fff;
	width: 100%;
	min-height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	display: none;
	overflow-y: auto;
}
.mobile-sidebar nav{
	display: block;
	padding-bottom: 80px;
	margin-top: 15px;
}
.mobile-sidebar nav li {
	border-bottom: 1px solid white;
}
.mobile-sidebar nav li a {
	display: block;
	padding: 15px 0;
	color: white;
	text-decoration: none;
}
.dropdown-menu__li {
	border: none!important;
	padding-left: 20px;
	font-size: 14px;
	position: relative;
}
.dropdown-menu__li::before {
	content: "";
	position: absolute;
	bottom: 44%;
	left: 1%;
	width: 0.45em;
	height: 0.45em;
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	transform: rotate(45deg);
}
.dropdown-menu.active > li:nth-child(2) {
	margin-top: 10px;
}
.dropdown-menu.active > li:nth-child(10) {
	margin-bottom: 15px;
}
}
.navbar {
	position: fixed;
	z-index: 100;
	flex-direction: column;
	align-items: flex-start;
	padding: 0.75rem 0.5rem;
}
.navbar-opened {
	transition: translate var(--animation-timing);
  background-color: #11548F;
	box-shadow: none;
  }
.navbar-opened .brand-title .logo-pc {
	display: none;
}
.navbar-opened .brand-title .logo-mobile {
	display: block;
}
.mobile-sidebar::-webkit-scrollbar {
  width: 6px;
}
.mobile-sidebar::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 6px;
	height: 25px;
}
}

/*-------------------------------------
 NEW CSS_marketzone
-------------------------------------*/

.service {
  display: flex;
  justify-content: space-between;
}
.service {
	display: flex;
	justify-content: space-between;
}
.serbtn {
	transition: 0.4s;
	cursor: pointer;
	box-shadow: 1px 2px 2px 2px rgb(0 0 0 / 20%);
	background-color: #fff;
	border-radius: 8px;
	text-align: center;
	margin: 10px;
	position: relative;
	}
.serbtn a {
	display: block;
	font-size: 15px;
	padding: 10px;
	width: 300px;
	height: 245px;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.serbtn a::before {
	content: "";
	background: #11548F;
	width: 470%;
	height: 20%;
	position: absolute;
	top: 80%;
	right: 0%;
	overflow: hidden;
	clip-path: polygon(100% 0, 90% 100%, 100% 100%);
	border-radius: 0 0 8px 0;
	z-index: -1;
}
.serbtn a::after {
 content: "詳しくみる";
 font-size: .75rem;
 font-weight: bold;
 color: #F2F61A;
 position: absolute;
 bottom: 0.3em;
 right: 0.4em;
 background: url(https://marketzone.jp/images/top/yellow_triangle.png) no-repeat;
 background-size: 0.8em;
 background-position: 100% 60%;
 padding-right: 17px;
}
.serbtn:hover {
	transform: scale(0.97);
	}
h2 {
	text-align: center;
	margin-bottom: 35px;
	font-size: 23px;
	font-weight: 700;
	}
h2 span {
	color: #11548F;
}
.sectiong h2 {
	padding-top: 30px;
}
h4 {
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 15px 0;
}
h5 {
	font-size: 19px;
	font-weight: bold;
	padding-bottom: 10px;
	text-align: center;
	margin-bottom: 20px;
}
h6 {
	font-size: 18px;
	font-weight: bold;
}
.sectionp {
	text-align: center;
}
.serimg {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 80px;
}
.examples-item {
	padding: 10px;
}
.examples p {
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
}
.topryok {
	display: flex;
	margin-bottom: 45px;
}
.topryok p {
	text-align: left;
	margin-right: 22px;
}
.topryok span {
	font-weight: bold;
}
.imgright {
 float: right;
 padding: 0 0 0 40px;
}
.contactbtn {
	display: inline-block;
	margin: 50px 15px;
}
.ryokinbtn {
	display: inline-block;
	margin: 50px 15px;
}
.contactbtn a {
	color: #fff;
	background-color: #11548F;
	font-size: 19px;
	padding: 15px 50px 15px 50px;
	border-radius: 6px;
}
.ryokinbtn a {
	color: #000;
	background-color: #fff;
	font-size: 19px;
	padding: 15px 50px 15px 50px;
	border-radius: 6px;
}
.pricebtn {
	display: inline-block;
	margin: 0 15px;
}
.examples {
	display: flex;
	margin: 45px 0;
}

.button {
 position: relative;
 padding: 15px 50px;
 cursor: pointer;
 border: 2px solid #11548F;
 border-radius: 8px;
 color: #000;
 background-color: #fff;
 font-size: 15px;
 overflow: hidden;
 z-index: 1;
 transition: all 0.25s ease-in;
}
.button:hover {
	color: #fff;
}
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #11548F;
  transform-origin: left;
  transition: 0.25s ease-in;
	will-change: transform;
	z-index: -1;
}
.button:hover::before {
  width: 100%;
}
.buttonabout {
 position: relative;
 padding: 15px 50px;
 margin-bottom: 65px;
 cursor: pointer;
 border: 2px solid #11548F;
 border-radius: 8px;
 color: #000;
 background-color: #fff;
 font-size: 15px;
 overflow: hidden;
 z-index: 1;
}
.buttonabout:hover {
	color: #fff;
	background-color: #11548F;
	transition: 0.3s ease-in;
}
.buttonabout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #11548F;
  transform-origin: left;
  transition: 0.25s ease-in;
	will-change: transform;
	z-index: -1;
}
.buttonabout:hover::before {
  width: 100%;
}

@media(max-width:768px) {
.topryok p {
	margin-right: 0;
}

}

/* service page
-------------------------------------*/
.service-introduction {
	display: flex;

	margin-bottom: 45px;
}
.service-introduction p {
	margin-bottom: 15px;
	text-align: left;
	margin-right: 22px;
}
.service-introduction__image-wrapper {
	max-width: 270px;
}
.service-button__holder {
  display: flex;
	justify-content: space-around;
}
.service-button__button {
	position: relative;
  width: 420px;
	height: 240px;
	margin-top: 60px;
	display: flex;
	align-items: center;
	background: #fff;
	box-shadow: 2px 3px 3px 2px rgb(0 0 0 / 10%);
}
.service-button__button::before {
  content: attr(data-text);
	position: absolute;
	top: -12%;
	right: 6%;
	color: #F3F3F3;
	font-size: 38px;
	font-weight: bold;
}
.service-button__button span {
 position: absolute;
 bottom: 7%;
 right: 10%;
 font-size: 15px;
 font-weight: bold;
 color: #11548F;
 }
.service-button__button::after {
	content: "";
	position: absolute;
	bottom: 9%;
  right: 5%;
	width: 0.6em;
	height: 0.6em;
	border-right: 2px solid #11548F;
	border-top: 2px solid #11548F;
	transform: rotate(45deg);
}
.service-button__button:hover {
	opacity: 0.7;
	transition: opacity 0.3s ease-out;
}
.service-button__button:hover:before {
	transform: translatey(10px);
	transition: transform 0.3s ease-out;
}
.service-button__button:hover:after {
  transform: translateX(7px) rotate(45deg);
	transition: transform 0.3s ease-out;

}
.service-button__content {
	display: flex;
}
.service-button_text {
	display: block;
	padding-right: 30px;
}
.service-button_text h6 {
	margin-top: 20px;
	margin-bottom: 10px;
}
.service-button_text p {
	text-align: left;
}
.service-icon {
	width: 120px;
	padding: 20px;
}
.service-name {
	color: #11548F
}

@media(max-width:768px) {
.service-introduction {
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
}
.service-introduction__image-wrapper {
	margin-bottom: 30px;
}
.service-button__holder {
	flex-direction: column;
	align-items: center;
}
.service-button__button {
	max-width: 340px;
	height: 210px;
}
.service-introduction p {
	text-align: center;
}
}
/* about-us page
-------------------------------------*/
.tsuyomi {
	padding: 30px 20px;
	margin-bottom: 55px;
	border: 2px solid #11548F;
	border-radius: 10px;
}
.no-title {
	text-align: center;
}
.tsuyomi h5 {
	text-align: left;
	margin-bottom: 0;
}
.tsuyomi__inner {
	display: flex;
	align-items: center;
}
.tsuyomi__number {
	font-size: 50px;
	font-weight: bold;
	color: #11548F;
	padding: 10px 20px 20px 0;
}
.tsuyomi__content p {
	text-align: left;
}
.motto {
	text-align: center;
	margin-bottom: 70px;
}

@media(max-width:768px) {
.no-title {
	margin-top: 40px
}

}
.tsuyomi-gird-holder {
	margin-top: 60px;
}
.tsuyomi-grid-left,
.tsuyomi-grid-right {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr;
	gap: 0px 100px;
	position: relative;
	margin-bottom: 100px;
}
.tsuyomi-grid-left::before,
.tsuyomi-grid-right::before {
	content: attr(data-text);
	color: #11548F;
	position: absolute;
	top: -35px;
	font-size: 3.5em;
	font-weight: bold;
}
.tsuyomi-grid-left::before {
	left: 0;
}
.tsuyomi-grid-right::before {
	right: 385px;
}
.tsuyomi-grid-left::after,
.tsuyomi-grid-right::after {
	content: "";
	width: 200vw;
	height: 75%;
	background-color: #f8f8f8;
	position: absolute;
	top: 40%;
	-webkit-transform: translate(0,-50%);
	transform: translate(0,-50%);
	z-index: -1;
}
.tsuyomi-grid-left::after {
		right: 100px;
}
.tsuyomi-grid-right::after {
		left: 100px;
}

.tsuyomi-grid-left__text,
.tsuyomi-grid-right__text {
	padding-top: 60px;
}
.tsuyomi-grid-left__text h5,
.tsuyomi-grid-right__text h5 {
	text-align: left;
}
.tsuyomi-grid-left__text p,
.tsuyomi-grid-right__text p {
	line-height: 1.5;
}
.tsuyomi-grid-left__icon,
.tsuyomi-grid-right__icon {
  max-width: 600px;
	height: 390px;
}
.tsuyomi-grid-right__icon {
	text-align: center;
}
.tsuyomi-grid-left__icon img,
.tsuyomi-grid-right__icon img {
	overflow: hidden;
	-webkit-transform: translate(0,50px);
	transform: translate(0,50px);
	width: 70%;
	height: auto;
}
@media(max-width:768px) {
.tsuyomi-grid-left,
.tsuyomi-grid-right {
	grid-template-columns: auto;
}
.tsuyomi-grid-right__text {
	order: 1;
}
.tsuyomi-grid-right__icon {
	order: 2;
}
.tsuyomi-grid-left__icon,
.tsuyomi-grid-right__icon {
  text-align: center;
}
.tsuyomi-grid-right::before {
	left: 0;
	right: auto;
}
.tsuyomi-grid-right::after {
	right: 100px;
	left: auto;
}
.tsuyomi-grid-left__icon, .tsuyomi-grid-right__icon {
	height: auto;
}
.tsuyomi-grid-left__icon img,
.tsuyomi-grid-right__icon img {
	-webkit-transform: translate(0,5px);
	transform: translate(0,5px);
}
}
/* works page
-------------------------------------*/
.works-section {
	margin-top:40px;
}
.video-examples {
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
}
.video-examples__works {
	width: 300px;
}
.yt-video {
	cursor: pointer;
	position: relative;
	overflow: hidden;
	border: 3px solid #11548F;
	border-radius: 10px;
}
.yt-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.yt-video:hover::before {
  opacity: 1;
}
.yt-video::after {
  content: "";
  position: absolute;
  top: 35%;
  left: 41%;
	background: url(https://marketzone.jp/images/works/play_button.png) no-repeat;
	background-size: 100%;
	margin-top: 20px;
  width: 50px;
  height: 50px;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.yt-video:hover::after {
	margin-top: 0;
	opacity: 1;
}
.video-holder {
	display: flex;
	flex-direction: column;
}

#videoPopup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    padding: 20px;
    z-index: 1000;
		flex-direction: column;
    justify-content: center;
		align-items: center;
}
.closePopupButton {
    position: absolute;
    top: -35px;
    right: -420px;
    font-size: 25px;
		font-weight: bold;
    cursor: pointer;
		color: #fff;
}
#dynamicYoutubePlayer {
	position: relative;
}
.youtubePlayer {
	max-width: 795px;
	width: 100%;
	height: 450px;
}
@media(max-width:768px) {
.video-examples {
	display: block;
	margin-bottom: 0;
}
.video-examples__works {
	width: 100%;
}
.video-holder {
	margin-top: 60px;
}
.yt-video::after {
  margin-top: 0;
	opacity: 1;
}
.closePopupButton {
	top: -43px;
	right: -180px;
	font-size: 28px;
}
.youtubePlayer {
	height: 300px;
}
}

/* price page
-------------------------------------*/
.price-button-anchor {
	display: flex;
	justify-content: space-around;
	align-items: center;
	background-color: #F3F1F1;
	width: 100%;
	height: 100%;
	padding: 30px;
	margin: 50px 0;
}
.price-button-anchor__blue,
.price-button-anchor__yellow,
.price-button-anchor__red {
  position: relative;
	border: 0px;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	font-size: 15px;
	font-weight: bold;
}
.price-button-anchor__blue {
	padding: 17px 92px;
	background: linear-gradient(to right,rgba(17, 84, 143, 1) 15%,rgba(13, 102, 181, 0.79) 100%);
 }
.price-button-anchor__yellow {
	padding: 15px 55px;
	background: linear-gradient(to right, rgba(238, 214, 2, 1) 15%, rgba(239, 242, 36, 0.81) 100%);
 }
.price-button-anchor__red {
 	padding: 15px 77px;
 	background: linear-gradient(to right, rgba(214, 0, 0, 1) 15%, rgba(255, 33, 33, 0.85) 100%);
 }
.price-button-anchor__blue::after,
.price-button-anchor__yellow::after,
.price-button-anchor__red::after {
 	content: "";
 	position: absolute;
  top: 37%;
 	right: 8%;
 	background: url(https://marketzone.jp/images/price/price_button_triangle.png);
 	background-size: 17px;
 	width: 17px;
 	height: 17px;
}
.price-button-anchor__blue::before {
  content: "";
	position: absolute;
	top: 18%;
	left: 8%;
	background: url(https://marketzone.jp/images/price/price_button_camera.png);
	background-size: 33px;
	width: 33px;
	height: 33px;
}
.price-button-anchor__yellow::before {
  content: "";
	position: absolute;
	top: 18%;
	left: 5%;
	background: url(https://marketzone.jp/images/price/price_button_graph.png);
	background-size: 33px;
	width: 33px;
	height: 33px;
}
.price-button-anchor__red::before {
  content: "";
	position: absolute;
	top: 18%;
	left: 8%;
	background: url(https://marketzone.jp/images/price/price_button_youtube.png);
	background-size: 33px;
	width: 33px;
	height: 33px;
}
.price-button-anchor__blue:hover,
.price-button-anchor__yellow:hover,
.price-button-anchor__red:hover {
  opacity: 0.7;
	transition: opacity 0.3s ease-out;
}
.price-button-anchor__blue:hover::after,
.price-button-anchor__yellow:hover::after,
.price-button-anchor__red:hover::after {
  transform: translateY(5px);
	transition: transform 0.3s ease-out;
}
.price-table {
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-bottom: 50px;
}
.price-table__item {
	display: flex;
	flex-direction: column;
	padding-right: 20px;
	text-align: center;
	font-weight: bold;
}
.price-table__item img {
	width: 130px;
	padding: 0 0 20px 20px;
}
.price-table__content {
  display: flex;
	flex-direction: column;
	padding: 30px 20px;
	border: 2px solid #11548F;
	border-radius: 10px;
	width: 800px;
	background: white;
}
.price-table__content-title {
	font-size: 17px;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	padding-bottom: 15px;
}
.price-table__content-sub {
	color: #7A7A7A;
	font-size: 15px;
	padding-bottom: 30px;
}
.price-table__blue-line {
	width: 80%;
	border: 1px solid #11548F;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.price-table__button {
  background-color: #11548F;
	color: #fff;
	font-weight: bold;
	margin-top: 35px;
	border: none;
	border-radius: 4px;
	text-align: center;
	display: block;
	margin-right: auto;
	margin-left: auto;
	cursor: pointer;
}
.price-table__button a {
	display: block;
	padding: 15px 40px;
}
.price-table__button:hover {
	background-color: #3b8dd5;
	transition: all 0.3s ease-out;
}
@media(max-width:768px) {
.price-button-anchor {
	flex-direction: column;
}
.price-button-anchor > a {
	margin-bottom: 30px;
}
.price-button-anchor > a:last-child {
	margin-bottom: 0!important;
}
.price-table {
	flex-direction: column;
}
.price-table__content {
	width: 100%;
	margin-bottom: 20px;
}
.price-table__item img {
	padding: 0 0 10px 20px;
}
.price-table__item p {
	padding-bottom: 20px;
}
.price-table__content-title {
	flex-direction: column;
	padding-bottom: 25px;
	line-height: 1.6;
}
.price-table__content-sub p {
	line-height: 1.6;
}

}

/* contact us page
-------------------------------------*/
input[type=text], select, textarea {
  width: 100%;
	font-size: 15px;
  padding: 18px;
  border: 0px solid #ccc;
	background: #f5f5f5;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  resize: vertical;
}
.submit-button {
	text-align: center;
	margin-top: 30px;
}
input[type=submit] {
  background-color: #11548F;
	font-size: 17px;
	font-weight: bold;
  color: white;
  padding: 22px 100px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}
input[type=submit]:hover {
	background-color: #3b8dd5;
	transition: all 0.3s ease-out;
}

.form-container {
  border-radius: 5px;
  padding: 20px;
	margin-top: 55px;
}
.form-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}
.items {
	width: 25%;
	font-weight: bold;
}
.items::after {
  content: "必須";
	color: #f3333c;
	border: 2px solid #f3333c;
	border-radius: 50px;
	margin-left: 10px;
	position: absolute;
	right: auto;
	padding: 2px 4px;
	font-size: 13px;
}
.form-item:nth-of-type(4) .items::after {
  display: none;
}

@media(max-width:768px) {
.form-item {
	flex-direction: column;
	align-items: normal;
	margin-bottom: 30px;
}
input[type=text], select, textarea {
	margin-top: 10px;
}
.items {
	width: 100%;
}

}

/* video-editing page
-----------------------------------*/
.service-page {
text-align: center;
}
.choose-us:nth-child(3) {
	margin-bottom: 0;
}
.choose-us {
	display: flex;
	margin-bottom: 40px;
}
.choose-us p {
	text-align: left;
}
.choose-us img {
	width: 85px;
	margin-right: 35px;
}
.basic-plan {
	width: 100%;
	margin-top: 50px;
}
.basic-plan > ul {
	display: flex;
	flex-wrap: wrap;
	margin-top: 40px;
}
.basic-plan > ul > li:last-child {
	width: 24%;
}
.basic-plan li {
	width: 38%;
	padding-left: 5%;
	position: relative;
	font-size: 18px;
}
.basic-plan li::before {
	content: "";
	display: block;
	background: url(https://marketzone.jp/images/misc/checkbox.png);
	background-size: 30px;
	width: 30px;
	height: 30px;
	position: absolute;
	left: 5px;
}
.info-box {
	background-color: #F3F6F9;
	display: flex;
	align-items: flex-start;
	margin-top: 45px;
	padding: 40px;
}
.info-box img {
	width: 30px;
	margin-right: 15px;
}
.info-box p {
	text-align: left;
}
.price-section {
	box-shadow: 1px 2px 2px 2px rgb(0 0 0 / 20%);
	padding: 30px;
	border-radius: 3px;
}
.price-section__price {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 30px;
	font-size: 20px;
	font-weight: bold;
}
.page-cta-contact {
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.5px;
	padding: 12px 46px;
	border-radius: 100px;
	border:none;
	cursor: pointer;
	background: linear-gradient(45deg, #11548F 35%, #0F8BF8);
	transition: 0.3s;
}
.page-cta-contact:hover {
	opacity: 0.8;
}
.cta-wrap {
	display: flex;
	justify-content: center;
}
.price {
	color: #11548F;
	font-size: 33px;
	font-weight: 900;
}

@media(max-width:768px) {
	.choose-us {
		flex-direction: column;
		align-items: center;
	}
.basic-plan {
	margin-top: 65px;
}

.price-section__price {
	flex-direction: column;
}
.basic-plan li {
	font-size: 17px;
}
.basic-plan li::before {
	top: -25px;
	left: 15px;
	background-size: 22px;
	width: 22px;
	height: 22px;
}
.info-box {
	padding: 32px;
}

}

/* video-editing page
-----------------------------------*/
.service-page img {
  width: 500px;
	margin-top: 30px;
}



/* section_marketzone
-----------------------------------*/
.section {
	padding: 0 0 40px 0;
	margin-bottom: 65px;
}
.sectiong {
	padding: 20px 0 50px 0;
	background-color: #EFEEEE;
	margin-bottom: 65px;
}
.section__blue {
	padding: 30px 0 70px 0;
	background-color: rgba(17,84,143,0.05);
	margin-bottom: 65px;
}
.section__blue h5 {
	padding: 30px 0 10px 0;
}
.sectioncon {
	padding: 30px 0 40px 0;
	margin-top: 75px;
	background: url(/images/top/contact_us.jpg) center center/cover;
	background-repeat: no-repeat;
}
.sectioncon h2 {
	color: #fff;
}
.sectioncon .sectionp {
	color: #fff;
	line-height: 2.1;
}
.sectiong:after {
	clear: both;
	display: block;
	content: "";
}
.section__line {
	height: 100px;
	width: 1px;
	background-color: #7a7a7a;
	display: block;
	margin-right: auto;
	margin-left: auto;
}
.section__img {
	text-align: center;
	margin: 60px 0;
	max-width: 100%;
}
.section__after-line {
	padding: 0 0 40px 0;
	margin-bottom: 20px;
}
/*-------------------------------------
 layout
-------------------------------------*/
#wrapper {
	position: relative;
	overflow: hidden;
}
.inner {
	position: relative;
	max-width: 1001px;
	margin: 0 auto;
}
.inner:after {
	clear: both;
	display: block;
	content: "";
}

/* footer
-------------------------------------*/
.footer {
	background-color: #11548F;
	padding: 90px 0 80px;
	position: relative;
	z-index: 1;
	color: #fff;
}
.footer__content {
	max-width: 1200px;
	width: 85%;
	margin: 0 auto;
}
.footer__head {
	width: 100%;
	display: inline-block;
	vertical-align: top;
}
.footer__ul {
	display: flex;
	flex-wrap: wrap;
}
.footer__ul > li {
	width: 30%;
	margin-right: 5%;
	font-size: 0;
	display: inline-block;
	vertical-align: top;
}
.footer__ul > li:nth-child(3n) { margin-right: 0; }
.footer__ul > li:nth-child(n+4) {
	margin-top:40px;
}
.footer__p-title {
	position: relative;
  text-align: left;
	font-size: 14px;
	border-bottom: 1px solid rgba(255,255,255,.4);
	padding: 15px 0 15px 3px;
}
.footer__p-title a {
	display: block;
}
.footer__p-title::after {
	content: "";
	position: absolute;
	bottom: 43%;
  right: 1%;
	width: 0.6em;
	height: 0.6em;
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	transform: rotate(45deg);
}
.footer__p-title:hover {
	opacity: 0.7;
	transition: transform 0.3s ease-out;
}
.footer__p-title:hover:after {
	transform: translateX(5px) rotate(45deg);
	transition: transform 0.3s ease-out;
}
.footer__sub-page {
  font-size: 12px;
	padding-left: 3px;
	margin-top: 20px;
}
.footer__sub-page > li:nth-child(n+2),
.footer__sub-page-col2 > li:nth-child(n+2) {
	margin-top: 20px;
}
.footer__sub-page > li > a,
.footer__sub-page-col2 > li > a {
	position: relative;
	padding-left: 18px;
}
.footer__sub-page > li > a::after,
.footer__sub-page-col2 > li > a::after {
	content: "";
	position: absolute;
	bottom: 26%;
	left: 0;
	width: 0.6em;
	height: 0.6em;
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	transform: rotate(45deg);
}
.footer__sub-page > li > a:hover:after,
.footer__sub-page-col2 > li > a:hover:after {
	transform: translateX(3px) rotate(45deg);
	transition: transform 0.3s ease-out;
}
.footer__sub-page-col2 {
  font-size: 12px;
	padding-left: 3px;
	margin-top: 20px;
}
.footer__sub-page-col2 > li {
  display: inline-block;
	width: 43%;
	min-width: 90px;
	margin-right: 2%;
}
.footer__sub-page > li:hover,
.footer__sub-page-col2 > li:hover {
  opacity: 0.7;
	transition: all 0.3s;
}
.footer__sub-page-col2 > li:nth-of-type(2) {
	margin-top: 0!important;
}
.footer__bottom {
	margin-top: 90px;
	display: flex;
	justify-content: space-between;
}
.footer__bottom-logo {
	max-width: 200px;
}
.footer__bottom-logo:hover {
	opacity: 0.7;
	transition: opacity 0.3s ease-out;
}

@media(max-width:768px) {
.footer {
	display: none;
}
}
/*-------------------------------------
 Media Queries_Marketzone
-------------------------------------*/
@media(max-width:768px) {
.inner {
	padding: 0 20px;
}
.service {
  display: block;
}
.sectiong h2 {
	padding: 40px 0 0 0;
	margin: 0 0 35px 0;
	font-size: 22px;
}
h2 {
	padding: 40px 0 0 0;
	margin: 0 0 35px 0;
}
.serbtn {
	margin: 50px 0;
}
.examples {
	display: block;
	text-align: center;
}
.examples .examples-item:nth-child(n+2) {
	margin-top: 50px;
}
.worksp {
	font-size: 19px;
}
.button {
 padding: 20px 75px;
 margin-top: 65px;
 font-size: 18px;
}
.buttonabout {
 padding: 20px 75px;
 margin-top: 140px;
 font-size: 18px;
}
.topryok {
	display: block;
	text-align: center;
}
.topryok__image-wrapper {
	padding-top: 25px;
	padding-left: 0;
}
.topryok__image {
	max-height: 130px;
}
.serbtn a {
  width: 100%;
}

}
