/* normalize */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::before,
*::after {
  box-sizing: inherit;
  font-family: inherit;
}

html {
  -webkit-overflow-scrolling: touch;
}

body {
  font-weight: 400;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

img {
  height: auto;
}

img[src$=".svg"] {
  width: 100%;
}

a {
  text-decoration: none;
}

ul {
  font-size: 0;
}

li {
  font-size: 16px;
  list-style: none;
}

input,
button,
textarea,
select {
  transition: border 0.3s;
  outline: none;
  border: 1px solid #d9e1e8;
}

input::placeholder,
textarea::placeholder {
  color: #c5c8d1;
}

input:focus,
textarea:focus,
select:focus {
  border: 2px solid #436cbf;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* select {
  color: #C5C8D1;
} */

select::-ms-expand {
  display: none;
}

.fw-m {
  font-weight: 500;
}

.fw-b {
  font-weight: 700;
}

/* animation */
@keyframes rolling-1 {
  0% {
    transform: rotate(-60deg);
  }
  100% {
    transform: rotate(300deg);
  }
}

@keyframes rolling-2 {
  0% {
    transform: rotate(240deg);
  }
  100% {
    transform: rotate(-120deg);
  }
}

@keyframes rolling-3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rolling-4 {
  0% {
    transform: rotate(-100deg);
  }
  100% {
    transform: rotate(260deg);
  }
}

@keyframes rolling-5 {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes rolling-6 {
  0% {
    transform: rotate(60deg);
  }
  100% {
    transform: rotate(420deg);
  }
}

@keyframes monitor {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ページ途中circle用 */
.circle-round {
  position: absolute;
}

.cr-a-l {
  width: 370px;
  height: 370px;
  top: 52px;
  left: 52px;
}

.cr-a-l figure {
  width: 33px;
}

.cr-a-s {
  width: 364px;
  height: 364px;
  top: 56px;
  left: 56px;
}

.cr-a-s figure {
  width: 24px;
}

.cr-b-l {
  width: 271px;
  height: 271px;
  top: 102px;
  left: 102px;
}

.cr-b-l figure {
  width: 33px;
}

.cr-b-s {
  width: 265px;
  height: 265px;
  top: 106px;
  left: 106px;
}

.cr-b-s figure {
  width: 24px;
}

.cr-c-l {
  width: 175px;
  height: 175px;
  top: 151px;
  left: 151px;
}

.cr-c-l figure {
  width: 33px;
}

.cr-c-s {
  width: 169px;
  height: 169px;
  top: 155px;
  left: 155px;
}

.cr-c-s figure {
  width: 24px;
}

.cr-1 {
  animation: rolling-1 4s infinite linear;
}

.cr-2 {
  animation: rolling-2 4s infinite linear;
}

.cr-3 {
  animation: rolling-3 4s infinite linear;
}

.cr-4 {
  animation: rolling-4 4s infinite linear;
}

.cr-5 {
  animation: rolling-5 4s infinite linear;
}

.cr-6 {
  animation: rolling-6 4s infinite linear;
}

/* common */

.subtitle {
  font-size: 19px;
  font-weight: 400;
  color: #53CBC2;
  margin-bottom: 7px;
  text-align: center;
}

.title {
  font-size: 42px;
  line-height: 1.9;
}

.titleText {
  font-size: 18px;
  line-height: 2;
}

.sponly {
  display: none;
}

@media screen and (max-width: 767px) {
  .pconly {
    display: none;
  }

  .sponly {
    display: block;
  }

  .subtitle {
    font-size: 16px;
    text-align: center;
  }

  .title {
    line-height: 1.7;
    font-size: 32px;
    text-align: center;
  }

  .titleText {
    text-align: left;
    font-size: 16px;
	line-height: 28px;
  }
}

@media screen and (max-width: 350px) {
  .title {
    font-size: 28px;
  }
}

/* header */

main {
  overflow: hidden;
  position: relative;
}

.top-square {
  position: absolute;
  z-index: -1;
}

.top-square-green {

}

@media screen and (min-width: 1681px) {
  .top-square-green {
    left: 0px;
    top: -70px;
	width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 1400px) {
	
	.top-square-green {
		left: 0px;
		top: 50px;
		width: 100%;
		height: 100vh;
	}
	
}

.top-square-white {
  top: -2100px;
  left: -1460px;
}

.header-nav {
  position: fixed;
  width: 100%;
  height: 64px;
  line-height: 64px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  padding-right: 270px;
  padding-left: 32px;
  z-index: 99;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}

.header-nav.active {
  opacity: 1;
  visibility: visible;
}

.header-logo {
  width: 344px;
  padding-top: 5px;
}

.header-list {
  display: inline-block;
  margin-right: 24px;
}

.header-list:first-child {
  margin-right: 30px;
}

.header-link {
  display: inline-block;
  height: 100%;
  color: #000;
  position: relative;
}

.header-link::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 13px;
  width: 100%;
  height: 1px;
  transform: scaleX(0) rotate(0.001deg);
  background-color: #000;
  transition: all 0.3s;
}

.header-link:hover::after {
  transform: scaleX(1) rotate(0.001deg);
}

.header-contact {
  position: absolute;
  display: flex;
  align-items: center;
  width: 182px;
  height: 72px;
  background-color: #ff3d7f;
  padding-left: 22px;
  top: 0;
  right: 32px;
  line-height: 1.5;
  border-bottom: solid 3px #e53772;
  border-radius: 0 0 7px 7px;
}

.header-contact:hover {
  background-color: #ff1c69;
}

.header-contact figure {
  width: 30px;
  margin-right: 12px;
  padding-top: 6px;
}

.header-contact.active figure {
  padding-top: 0;
}

.header-contact .open {
  display: none;
}

.header-contact.active .close {
  display: none;
}

.header-contact.active .open {
  display: block;
}

.header-contact p {
  color: #fff;
}

@media screen and (max-width: 1279px) {
  .header-lists {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .top-square-green {

  }

  .top-square-white {
    top: -2176px;
    left: -1620px;
  }

  .header-nav {
    display: none;
  }
}

/* campaign */
.campaign {
  position: fixed;
  display: block;
  width: 230px;
  bottom: 0;
  right: 0;
  box-shadow: 0 0 40px rgba(2, 75, 147, 0.26);
  z-index: 90;
  transition: 0.3s all;
  opacity: 0;
  visibility: hidden;
  transform: translateX(260px);
}

.campaign.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}

.campaign.hidden {
  opacity: 0;
  visibility: hidden;
}

.campaign.scrollHidden {
  opacity: 0;
  visibility: hidden;
}

.campaign-lead {
  position: absolute;
  width: 253px;
  top: -62px;
  right: -10px;
}

.campaign-month {
  position: absolute;
  display: inline-block;
  color: #f22828;
  transform: translateX(-56%) rotate(-3deg);
  top: 14px;
  left: 50%;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.campaign-lead img {
  width: 100%;
}

.campaign-close {
  position: absolute;
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: #f22828;
  top: 0;
  right: 9px;
  transform: rotate(-3deg);
  cursor: pointer;
}

.campaign-close:hover {
  opacity: 0.7;
}

.campaign-close::before,
.campaign-close::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 14px;
  height: 2.5px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  border-radius: 5px;
}

.campaign-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.campaign-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.campaign-linkBox {
  display: block;
}

.campaign-present {
  padding: 35px 8px;
  background-color: #22479a;
  color: #fff;
  text-align: center;
}

.campaign-present p {
  font-size: 14px;
  line-height: 1.3;
}

.campaign-present p span {
  color: #edfe0f;
}

.campaign-present p span.big {
  font-size: 23px;
  margin: 0 2px;
}

.campaign-logos {
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  text-align: center;
  background-color: #fff;
  position: relative;
}

.campaign-logos::before,
.campaign-logos::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 4px;
  background-color: #f22828;
  left: 50%;
  bottom: 25px;
  border-radius: 5px;
}

.campaign-logos::before {
  transform: translateX(-50%);
}

.campaign-logos::after {
  transform: translateX(-50%) rotate(90deg);
}

.campaign-logo {
  width: 100px;
  padding: 14px 0 5px;
  border-radius: 100px 100px 0 0;
  background-color: #fff;
  margin-top: -28px;
}

.campaign-logo figure {
  margin: 0 auto;
}

.campaign-logo-1 figure {
  width: 32.69px;
}

.campaign-logo-2 figure {
  width: 37.86px;
}

.campaign-logo p {
  font-size: 11px;
  color: #000;
}

.campaign-contact {
  display: block;
  background-color: #ff3d7f;
  color: #fff;
  font-size: 15px;
  text-align: center;
  padding: 12px 0;
  position: relative;
  transition: letter-spacing 0.3s;
}

.campaign-contact::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  border-radius: 1px;
  top: 50%;
  right: 23px;
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.3s;
}

.campaign-contact .sp {
  display: none;
}

@media screen and (min-width: 768px) {
  .campaign-linkBox:hover .campaign-contact {
    letter-spacing: 1.5px;
    transition: letter-spacing 0.3s;
  }

  .campaign-linkBox:hover .campaign-contact::after {
    right: 18px;
    transition: right 0.3s;
  }
}

@media screen and (max-width: 767px) {
  .campaign {
    width: 100%;
  }

  .campaign-lead {
    width: 162px;
    right: auto;
    left: -10px;
    top: -22px;
  }

  .campaign-present {
    padding: 13px 10px;
  }

  .campaign-present p {
    font-size: 13px;
    width: 360px;
    margin: 0 auto;
    text-align: right;
  }

  .campaign-present p span.big {
    font-size: 20px;
  }

  .campaign-month {
    top: 8px;
    font-size: 10px;
    transform: translateX(-50%) rotate(-3deg);
  }

  .campaign-close {
    display: none;
  }

  .campaign-logos {
    display: none;
  }

  .campaign-contact {
    padding: 10px 0;
  }

  .campaign-contact .sp {
    display: inline;
  }
}

@media screen and (max-width: 364px) {
  .campaign-lead {
    width: 140px;
  }

  .campaign-month {
    top: 6px;
  }

  .campaign-present p {
    width: 100%;
    font-size: 10px;
  }
}

/* mv */

.mv-partner {
  position: absolute;
  width: 300px;
  height: 160px;
  background-color: #fff;
  top: 100px;
  right: 30px;
  text-align: center;
  border-radius: 100px 0 100px 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mv-partner-logo {
  width: 230px;
  margin: 0 auto;
  line-height: 0;
}

.mv-partner-logo img {
  width: 100%;
}

.mv-partner-text {
  font-size: 14px;
  margin-bottom: 6px;
}

.mv-partner-catch {
  display: inline-block;
  background-color: #edff0f;
  padding: 3px 10px;
}

.mv-nav {
  display: flex;
  justify-content: space-between;
  padding: 0 32px;
  margin-bottom: 110px;
  position: relative;
  z-index: 10;
}

.mv-logo {
  width: 344px;
  padding-top: 33px;
}

.mv-lists {
  display: inline-block;
  margin-right: 16px;
}

.mv-list {
  display: inline-block;
  margin-right: 16px;
}

.mv-list:first-child {
  margin-right: 23px;
}

.mv-link {
  display: inline-block;
  padding-top: 38px;
  color: #fff;
  position: relative;
}

.mv-link::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  transform: scaleX(0) rotate(0.001deg);
  background-color: #fff;
  transition: all 0.3s;
}

.mv-link:hover::after {
  transform: scaleX(1) rotate(0.001deg);
}

.mv-contact {
  display: inline-block;
  width: 220px;
  height: 64px;
  line-height: 64px;
  color: #fff;
  background-color: #ff3d7f;
  text-align: center;
  vertical-align: top;
  box-shadow: 0 4px 0 #e53772;
}

.mv-contact:hover {
  background-color: #ff1c69;
}

.mv-content {
  width: 520px;
  margin-left: 20%;
  text-align: center;
  position: relative;
}

.mv-content-logo {
  	width: 340px;
    margin: 0 auto 12px;
    background: #fff;
    border-radius: 40px;
    padding: 0 0px 0 20px;
}

.mv-content-logo img {
    width: 100%;
    height: 100%;
    text-align: center;
    margin: 0 auto;
    vertical-align: bottom;
}

.mv-content-text {
  color: #fff;
}

.mv-content-text p:first-child {
  font-size: 24px;
}

.mv-content-text h1 {
    font-size: 42px;
    line-height: 1.5;
    margin-bottom: 0px;
    padding: 20px 0 0;
    font-weight: 500;
}

.mv-content-text p.fw-b {
	font-size: 20px;
	font-weight: normal;
	color: #fff;
	margin-bottom: 0px;
	position: relative;
	display: inline-block;
}


.mv-content-features {
	display: flex;
	justify-content: space-between;
    align-items: center;
	margin: 25px 0 40px;
	flex-wrap: wrap;
}

.mv-content-feature {
	width: calc((100% / 2) - 15px);
    border-radius: 10px;
    background: #fff;
    color: #53CBC2;
    font-size: 20px;
    padding: 10px 30px;
    font-weight: 500;
    text-align: center;
    margin: 10px 0 15px;
}

.mv-content-text p.fw-b.ithojyokin {
    color: #FFFAB9;
    font-size: 18px;
    font-weight: 600;
    padding: 0px 0 0;
    margin: 0px;
	text-decoration: underline;
}

.mv-small {
  font-size: 14px;
  color: #fff;
}

.mv-round {
  position: absolute;
  right: -410px;
  top: -28px;
}

.mv-round-element {
  position: absolute;
}

.mv-round-element figure {
  margin: 0 auto;
}

.mv-round-element-1 {
  width: 432px;
  height: 432px;
  top: -12px;
  left: -12px;
  animation: rolling-1 4s infinite linear;
}

.mv-round-element-1 figure {
  width: 24px;
}

.mv-round-element-2 {
  width: 432px;
  height: 432px;
  top: -12px;
  left: -12px;
  animation: rolling-2 4s infinite linear;
}

.mv-round-element-2 figure {
  width: 24px;
}

.mv-round-element-3 {
  width: 432px;
  height: 432px;
  top: -12px;
  left: -12px;
  animation: rolling-3 4s infinite linear;
}

.mv-round-element-3 figure {
  width: 24px;
}

.mv-round-element-4 {
  width: 194px;
  height: 194px;
  top: 108px;
  left: 108px;
  animation: rolling-4 4s infinite linear;
}

.mv-round-element-4 figure {
  width: 24px;
}

.mv-round-element-5 {
  width: 326px;
  height: 326px;
  top: 41px;
  left: 41px;
  animation: rolling-5 4s infinite linear;
}

.mv-round-element-5 figure {
  width: 44px;
  animation: monitor 4s infinite linear;
}

.mv-round-element-6 {
  width: 316px;
  height: 316px;
  top: 46px;
  left: 46px;
  animation: rolling-6 4s infinite linear;
}

.mv-round-element-6 figure {
  width: 29px;
}

.mv-round-element-7 {
  top: 50px;
  left: -50px;
}

.mv-round-element-7 figure {
  width: 32.61px;
}

.mv-round-element-8 {
  top: 220px;
  right: -130px;
}

.mv-round-element-8 figure {
  width: 32.61px;
}

.mv-round-element-9 {
  bottom: -90px;
  left: 50px;
}

.mv-round-element-9 figure {
  width: 57.43px;
}

.mv-cart {
	position: absolute;
    width: 574px;
    right: -700px;
    bottom: 120px;
}

@media screen and (max-width: 1650px) {
  .mv-content {
    margin-left: 17%;
  }
}

@media screen and (max-width: 1600px) {
  .mv-content {
    margin-left: 15%;
  }
}

@media screen and (max-width: 1500px) {
  .mv-content {
    margin-left: 10%;
  }
}

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

	.mv-content {
    	margin-left: 5%;
	}
	
	.mv-content-features {
		margin: 10px 0 20px;
	}
	
	.mv-content-feature {
		font-size: 16px;
	}
	
	.mv-content-text p.fw-b {
		font-size: 16px;
	}
	
	.mv-content-text h1 {
		font-size: 32px;
		line-height: 1.5;
		margin-bottom: 0px;
		padding: 15px 0 0;
		font-weight: 500;
	}
	
	.mv-content-text p.fw-b.ithojyokin {
		font-size: 14px;	
	}

}

@media screen and (max-width: 1279px) {
  .mv-nav {
    padding: 0 20px 0 32px;
  }

  .mv-lists {
    display: none;
  }

  .mv-partner {
    right: 20px;
  }
  
  	.mv-cart {
    	position: absolute;
    	width: 470px;
    	right: -550px;
    	bottom: 120px;
	}
}

@media screen and (max-width: 900px) {
  .mv-content {
    margin-left: 30px;
  }
}

@media screen and (max-width: 767px) {
  .mv-nav {
    justify-content: center;
    padding: 15px 0;
    margin-bottom: 25px;
  }

  .mv-logo {
    width: 300px;
    padding-top: 0;
  }

  .mv-contact {
    display: none;
  }

  .mv-partner {
    width: 48.2vw;
    height: 25.6vw;
    max-height: 96px;
    border-radius: 70px 0 70px 0;
    right: 5px;
    top: 64px;
  }

  .mv-partner-logo {
    width: 34vw;
    max-width: 130px;
  }

  .mv-partner-text {
    font-size: 10px;
    margin-bottom: 2px;
  }

  .mv-partner-catch {
    font-size: 12px;
    padding: 1px 7px;
    margin-top: -1px;
  }

  .mv-content {
    width: 100%;
    margin-left: 0;
    margin-bottom: 420px;
    text-align: left;
  }

  .mv-content-logo {
    width: 47.2vw;
    margin: 0 auto 12px;
  }
  .mv-content-logo img{
    width: 100%;
  }

  .mv-content-text {
    line-height: 1.4;
    text-align: center;
  }

  .mv-content-text p:first-child {
    font-size: 20px;
    margin-left: 26px;
    margin-bottom: 10px;
    text-align: left;
  }

  .mv-content-text h1 {
    font-size: 32px;
    margin-left: 0px;
    margin-bottom: 20px;
    text-align: center;
	line-height: 46px;
  }

  .mv-content-text p:last-child {
    margin: 0 auto 9px;
    font-size: 16px;
  }

  .mv-content-text p:last-child:before,
  .mv-content-text p:last-child:after {
    height: 12px;
  }

  .mv-content-text p:last-child:before {
    left: -13px;
  }

  .mv-content-text p:last-child:after {
    right: -13px;
  }

  .mv-content-features {
    max-width: calc(100% - 40px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .mv-small {
    position: absolute;
    font-size: 10px;
    transform: scale(0.8);
    bottom: 0;
    right: -92px;
  }

  .mv-round {
    right: auto;
    top: auto;
    left: 50px;
    bottom: -216px;
    width: 254px;
  }

  .mv-round-element-1 {
    width: 278px;
    height: 278px;
    top: -6px;
    left: -6px;
    animation: none;
    transform: rotate(-80deg);
  }

  .mv-round-element-1 figure {
    width: 12px;
  }

  .mv-round-element-2 {
    width: 263px;
    height: 263px;
    animation: none;
    transform: rotate(45deg);
  }

  .mv-round-element-2 figure {
    width: 12px;
  }

  .mv-round-element-3 {
    width: 272px;
    height: 272px;
    animation: none;
    transform: rotate(-170deg);
  }

  .mv-round-element-3 figure {
    width: 15px;
  }

  .mv-round-element-4 {
    width: 129px;
    height: 129px;
    top: 59px;
    left: 59px;
    animation: none;
    transform: rotate(80deg);
  }

  .mv-round-element-4 figure {
    width: 12px;
  }

  .mv-round-element-5 {
    width: 200px;
    height: 200px;
    top: 25px;
    left: 25px;
    animation: none;
    transform: rotate(-140deg);
  }

  .mv-round-element-5 figure {
    width: 25px;
    animation: none;
    transform: rotate(140deg);
  }

  .mv-round-element-6 {
    width: 190px;
    height: 190px;
    top: 29px;
    left: 29px;
    animation: none;
    transform: rotate(-30deg);
  }

  .mv-round-element-6 figure {
    width: 15px;
  }

  .mv-round-element-7 {
    top: 130px;
    left: -35px;
  }

  .mv-round-element-7 figure {
    width: 16px;
  }

  .mv-round-element-8 {
    top: 185px;
    right: 65px;
  }

  .mv-round-element-8 figure {
    width: 16px;
  }

  .mv-round-element-9 {
    bottom: 180px;
    left: 13px;
  }

  .mv-round-element-9 figure {
    width: 33px;
  }

  .mv-cart {
    width: 320.85px;
    bottom: 20px;
    right: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
  }
  
  .mv-content-text p.fw-b.ithojyokin {
	padding: 10px 0 10px;
	display: block;
　}
}

@media (max-width: 450px) {

  .mv-content-text p:first-child {
    font-size: calc(16vw/4.5);
  }
  
  .mv-content-logo {
		width: 70vw;
		margin: 0 auto 12px;
	}
	
	.mv-cart {
		width: 300.85px;
		bottom: 35px;
	}
	
	.mv-content-feature {
		font-size: 14px;
		padding: 10px 20px;
		width: calc((100% / 2) - 10px);
    	margin: 10px 0 10px;
	}
	
}

@media screen and (max-width: 380px) {
	
	.mv-cart {
		width: 280.85px;
		bottom: 35px;
	}
	
}

@media screen and (max-width: 350px) {
	
  .mv-partner {
    width: 190px;
    margin: 0 -14px 0 0;
  }
  .mv-partner-catch{
    padding: 1px 4px;
  }
  .mv-partner-logo {
    width: 130px;
  }

  .mv-partner-text {
    margin-bottom: 2px;
  }

  .mv-partner-catch {
    font-size: 12px;
  }

  .mv-content-text h1 {
    font-size: 30px;
  }

  .mv-content-text p:last-child {
    font-size: 13px;
  }
}

/* specialist */

#specialist {
	padding: 250px 0 0px;
	width: 100%;
}

.specialistDes {
	width: 1040px;
	margin: 0 auto;
	background: #333;
	border-radius: 10px;
}

.specialistDes__inner {
	display: flex;
	align-items: center;
	padding: 40px 40px;
    justify-content: space-evenly;
}

.specialistImg {

}

.specialistImg img {
	width: 100%;
	vertical-align: bottom;
}

.specialistInfo {
	text-align: center;	
}

.specialistInfo span {
	color: #FC964C;
}

.specialistInfo .mv-content-logo {
	width: 420px;
}

.specialistInfo__text {
	font-size: 26px;
	line-height: 40px;
	color: #fff;
	padding: 30px 0;	
}

.specialistInfo__txt {
	font-size: 26px;
	line-height: 40px;
	color: #fff;	
}

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

	#specialist {
		padding: 200px 20px 0px;
		width: 100%;
	}

	.specialistDes__inner {
		display: flex;
		align-items: center;
		padding: 40px 40px;
		justify-content: space-evenly;
		flex-direction: column;
	}
	
	.specialistInfo {
		text-align: center;
		padding: 40px 0 30px;
	}

}

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

	#specialist {
		padding: 200px 20px 200px;
		width: 100%;
	}

}

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

	.specialistDes__inner {
		display: flex;
		align-items: center;
		padding: 40px 20px;
		justify-content: space-evenly;
		flex-direction: column;
	}
	
	.specialistInfo {
		text-align: center;
		padding: 40px 0 10px;
	}
	
	.specialistInfo .mv-content-logo {
		width: auto;
	}
	
	.specialistInfo__text {
		font-size: 16px;
		line-height: 29px;
		color: #fff;
		padding: 20px 0;
	}
	
	.specialistInfo__txt {
		font-size: 16px;
		line-height: 29px;
		color: #fff;
	}

}


/* feature */

section#feature {
    position: relative;
}

.feature-wrapper {
  width: 1040px;
  max-width: calc(100% - 32px);
  margin: 300px auto 340px;
  position: relative;
}

.feature-title {
	text-align: left;
	line-height: 65px;
	font-weight: 500;
	position: relative;
    top: -50px;
}

.feature-subtitle {
	margin: 0px 0 20px;	
	position: relative;
    top: -58px;
    text-align: left;
}

.feature-contents {
  display: grid;
  grid-template-rows: auto 125px auto 125px auto 125px auto;
  gap: 22px;
  margin-top: -237px;
}

@media screen and (max-width: 1050px) {
	
	.specialistDes {
		width: 100%;	
	}
	
}

@media screen and (max-width: 767px) {
  .feature-contents {
    display: block;
    margin-top: 0;
    gap: 16px;
  }
  
  .feature-subtitle {
    margin: 0px 0 20px;
    position: relative;
    top: -45px;
    text-align: center;
	}
}
.feature-content {
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 60px rgba(2, 75, 147, 0.1);
  background-color: #fff;
}

.feature-content-title {
  position: relative;
  padding: 20px 0 10px;
}

.feature-content-title h3 {
  font-size: 19px;
  line-height: 29px;
  margin-bottom: 16px;
  text-align: center;
}

.feature-content-1 {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
}

.feature-content-1 .feature-content-title h3 {
  font-size: 27px;
  color: #FF3D7F;
  line-height: 1.18;
  margin-bottom: 25px;
}
.feature-content-1 .feature-content-title span {
  font-size: 15px;
  color: #000;
  line-height: 2.13;
}

.feature-content-2 {
  grid-row: 1 / 2;
  grid-column: 3 / 4;
}

.feature-content-3 {
  grid-row: 2 / 4;
  grid-column: 1 / 2;
  position: relative;
  top: 0px;
  height: 310px;
}

.feature-content-4 {
  grid-row: 3 / 5;
  grid-column: 2 / 3;
}

.feature-content-5 {
  grid-row: 2 / 4;
  grid-column: 3 / 4;
}

.feature-content-6 {
  grid-row: 4 / 6;
  grid-column: 1 / 2;
  position: relative;
    top: -67px;
    height: 310px;
}

.feature-content-7 {
  grid-row: 5 / 7;
  grid-column: 2 / 3;
}

.feature-content-8 {
  grid-row: 4 / 6;
  grid-column: 3 / 4;
}

.feature-content-9 {
  grid-row: 5 / 6;
  grid-column: 1 / 2;
  position: relative;
    top: 118px;
}

.feature-content-text {
  line-height: 2;
}

.feature-content-title-image {
  text-align: center;
}

.feature-content-1 .feature-content-title-image img {
  width: 78.46px;
}

.feature-content-2 .feature-content-title-image img {
  width: 33.32px;
}

.feature-content-3 .feature-content-title-image img {
  width: 50.13px;
}

.feature-content-4 .feature-content-title-image img {
  width: 50px;
}

.feature-content-5 .feature-content-title-image img {
  width: 50px;
}

.feature-content-6 .feature-content-title-image img {
  width: 47.09px;
}

.feature-content-7 .feature-content-title-image img {
  width: 50px;
}

.feature-content-8 .feature-content-title-image img {
  width: 34.73px;
}

.feature-circle {
  position: absolute;
  width: 480px;
  bottom: -360px;
  left: -235px;
  z-index: -1;
}

.feature-square {
    position: absolute;
    width: 100%;
    z-index: -1;
    top: -450px;
    right: 0px;
}

.featureImg--pcMiddle {
	display: none;	
}

@media screen and (max-width: 1950px) {
	
	.feature-square img {
    	width: 1920px;
	}
	
	.feature-square {
		position: absolute;
		width: 100%;
		z-index: -1;
		top: -350px;
		right: 0px;
	}
	
	.featureImg--pcBig {
		display: none;	
	}
	
	.featureImg--pcMiddle {
		display: block;	
	}
	
}

@media screen and (max-width: 1900px) {
	
	.feature-square {
		position: absolute;
		width: 100%;
		z-index: -1;
		top: -400px;
		right: 0px;
	}
	
}

@media screen and (max-width: 1800px) {
	
	.feature-square {
		position: absolute;
		width: 100%;
		z-index: -1;
		top: -450px;
		right: 0px;
	}
	
}

@media screen and (max-width: 950px) {
  .feature-content-title h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .feature-wrapper {
    /* width: 100%; */
    /* max-width: none; */
    margin: 0 auto 90px;
  }

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

  .feature-content {
    width: 100%;
    margin-bottom: 20px;
  }

  .feature-content-1 {
    order: 1;
  }
  .feature-content-2 {
    order: 4;
  }
  .feature-content-3 {
    order: 2;
  }
  .feature-content-4 {
    order: 5;
  }
  .feature-content-5 {
    order: 3;
  }
  .feature-content-6 {
    order: 6;
  }
  
  .feature-contents {
    display: flex;
    flex-direction: column;
  }
  
  .feature-content-1 {
    	order: 1;
	}
	
	.feature-content-2 {
		order: 2;
	}
	
	.feature-content-3 {
		order: 3;
	}
	
	.feature-content-4 {
		order: 5;
	}
	
	.feature-content-5 {
		order: 8;
	}
	
	.feature-content-6 {
		order: 9;
		top: 0;
	}
	
	.feature-content-7 {
		order: 4;
	}
	
	.feature-content-8 {
		order: 6;
	}
	
	.feature-content-9 {
		top: 0px;
		order: 7;
	}
	
	.feature-content-title h3 br{
		display: none;
	}

  .feature-content-title-image {
    margin-bottom: 18px;
    right: -30px;
    top: -70px;
  }

  .feature-circle {
    display: none;
  }

  .feature-square {
    top: 145px;
    right: -1290px;
  }
}

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

	.feature-title {
		line-height: 44px;
    	font-size: 28px;
		top: -20px;
	}
	
	.feature-content {
    	width: 100%;
    	margin-bottom: 10px;
	}
	
	.feature-square {
    	top: 20px;
    	right: 1290px;
	}
	
	.feature-subtitle {
		top: -25px;
	}

}

@media screen and (max-width: 350px) {
  .feature-content {
    padding: 50px 30px 30px;
    margin-bottom: 30px;
  }
}

/* support */

#support {
    padding: 500px 0 0;
}

.support-wrapper {
  	margin: 0 auto 0px;
    width: 100%;
    max-width: 100%;
  	text-align: center;
  	position: relative;
}

.support-title {
	margin-bottom: 40px;
    line-height: 70px;
    padding: 20px 0 0;
    font-weight: 500;
}

.supportDesTxt {
    margin: 0 0 100px;
    font-size: 20px;
	font-weight: normal;
}

.support-titleText {
  margin-bottom: 50px;
}

.support-logo {
  width: 724px;
  margin: 0 auto 80px;
}

.support-content {
  width: 1300px;
  max-width: calc(100% - 32px);
  position: relative;
  padding: 100px 100px 110px 430px;
  margin-bottom: 100px;
  border-radius: 0px 100px 100px 0;
  text-align: left;
}

.support-content-leading {
  position: relative;
}

.support-content-leading .official-partner {
  position: absolute;
  width: 170px;
  top: -14.5px;
  right: 0;
}

.support-content-1 {
  background-color: #53CBC2;
}

.support-content-2 {
  background-color: #FBF6B7;
  margin-left: auto;
  padding: 100px 340px 110px 280px;
  border-radius: 100px 0 0 100px;
}

.support-content-3 {
  background-color: #53CBC2;
  padding: 100px 320px 110px 430px;
  margin-bottom: 80px;	
}

.support-content-number {
  font-size: 20px;
  margin-bottom: 10px;
  color: #FFFAB9;
}

.support-content-2 .support-content-number {
  color: #53CBC2;
}

.support-content-title {
	font-size: 22px;
    line-height: 42px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 500;
    padding: 10px 0 10px;
}

.support-content-2 .support-content-title {
  color: #000;
}

.support-content-text {
  color: #fff;
  line-height: 2;
}

.support-content-2 .support-content-text {
  color: #000;
}

.support-content-image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.support-content-1 .support-content-image {
  right: -310px;
}

.support-content-2 .support-content-image {
  top: 54%;
  left: -190px;
}

.support-content-3 .support-content-image {
  top: 56%;
  right: -220px;
}

.support-lists {
  width: 1040px;
  max-width: calc(100% - 32px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 auto;
}

.support-list {
  width: calc((100% / 2) - 20px);
  margin-bottom: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-radius: 20px;
}

.support-list-1,
.support-list-3,
.support-list-5 {
  background-color: #F6F6D4;
}

.support-list-2,
.support-list-4,
.support-list-6 {
  background-color: #EDFEF9;
}

.support-list-title {
  font-size: 20px;
  font-weight: 400;
}

.support-list-1 .support-list-title {
  margin-bottom: 5px;
}

.support-list-2 .support-list-title {
  margin-bottom: 5px;
}

.support-list-3 .support-list-title {
  margin-bottom: 21px;
}

.support-list-4 .support-list-title {
  margin-bottom: 26px;
}

.support-list-5 .support-list-title {
  margin-bottom: 20px;
}

.support-list-6 .support-list-title {
  margin-bottom: 21px;
}

.support-list-image {
  margin-left: auto;
  margin-right: auto;
}

.support-list-1 .support-list-image {
    width: auto;
    margin-bottom: 0px;
}

.support-list-2 .support-list-image {
  	width: auto;
    margin-bottom: 0px;
}

.support-list-3 .support-list-image {
  width: 56.8px;
  margin-bottom: 35px;
}

.support-list-4 .support-list-image {
  width: 69.11px;
  margin-bottom: 14px;
}

.support-list-5 .support-list-image {
  width: 75.59px;
  margin-bottom: 19px;
}

.support-list-6 .support-list-image {
  width: 63.69px;
  margin-bottom: 25px;
}

.support-list-text {
  line-height: 26px;
}

.support-circle {
  position: absolute;
  width: 480px;
  bottom: -330px;
  right: -205px;
  z-index: -1;
}

@media screen and (max-width: 1950px) {
	
	#support {
		padding: 450px 0 0;
	}
	
}

@media screen and (max-width: 1850px) {
	
	#support {
		padding: 400px 0 0;
	}
	
}

@media screen and (max-width: 1750px) {
	
	#support {
		padding: 350px 0 0;
	}
	
	.support-content {
		width: 1090px;
		max-width: calc(100% - 32px);
		position: relative;
		padding: 100px 290px 110px 295px;
		margin-bottom: 100px;
		border-radius: 0px 100px 100px 0;
		text-align: left;
	}
	
	.support-content-2 {
		border-radius: 100px 0 0 100px;	
		padding: 100px 250px 110px 330px;
	}
	
	.support-content-1 .support-content-image {
		right: -250px;
	}
	
	.support-content-2 .support-content-image {
  		left: -160px;
	}
	
	.support-content-3 {
	    margin-bottom: 80px;	
	}
	
}

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

@media screen and (max-width: 1500px) {
	
	#support {
		padding: 300px 0 0;
	}
	
}

@media screen and (max-width: 1300px) {
	
	#support {
		padding: 250px 0 0;
	}
	
}

@media screen and (max-width: 1200px) {
	
	.support-content {
		width: 900px;
    	padding: 100px 290px 110px 100px;
    }
	
	.support-content-2 {
		padding: 100px 80px 110px 330px;
	}
	
}

@media screen and (max-width: 1100px) {
	
	#support {
		padding: 200px 0 0;
	}
	
}

@media screen and (max-width: 1000px) {
	
	#support {
		padding: 150px 0 0;
	}
	
	.support-lists {
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
	}
	
}

@media screen and (max-width: 950px) {
  .support-content {
    padding: 70px 32px 0 32px;
  }

  .support-content-1,
  .support-content-2,
  .support-content-3 {
    margin-left: auto;
    margin-right: auto;
  }

  .support-content-image {
    position: static;
    margin: 0 auto;
    top: 0;
    transform: translateY(35px);
  }

  .support-content-1 .support-content-image {
    width: 275px;
  }

  .support-content-2 .support-content-image {
    width: 311px;
  }

  .support-content-3 .support-content-image {
    width: 289px;
  }
}

@media screen and (max-width: 767px) {
  .support-wrapper {
    margin-bottom: 80px;
  }

  .support-title {
    margin-bottom: 25px;
  }

  .support-logo {
    width: 311px;
    max-width: 100%;
    margin: 0 auto 50px;
  }

  .support-contents {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }

  .support-content {
    margin-bottom: 50px;
  }

  .support-content-1,
  .support-content-2,
  .support-content-3 {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
  }

  .support-content-number {
    text-align: center;
    margin-bottom: 5px;
  }

  .support-content-title {
    font-size: 22px;
  }

  .support-list {
    width: 100%;
    padding: 45px 25px 40px 30px;
    text-align: left;
    position: relative;
  }

  .support-list-title {
    text-align: center;
  }

  .support-list-image {

  }

  .support-list-1 .support-list-image {

  }
  .support-list-2 .support-list-image {

  }
  .support-list-3 .support-list-image {

  }
  .support-list-4 .support-list-image {
    width: 69px;
    top: 50%;
  }
  .support-list-5 .support-list-image {
    width: 70px;
    top: 50%;
  }
  .support-list-6 .support-list-image {
    width: 64px;
    top: 50%;
  }

  .support-circle {
    display: none;
  }
  
  .support-list {
    width: 100%;
  }
  
  .support-list-text {
    line-height: 26px;
    text-align: center;
  }
  	.support-content-image {
		position: static;
		margin: 0 auto;
		top: 0;
		transform: translateY(0px);
	}
  
  	.support-content-1 .support-content-image,
	.support-content-2 .support-content-image,
	.support-content-3 .support-content-image{
    	width: 320px;
    	padding: 40px 0;
	}
	
	.support-content-image img {
		width: 100%;	
	}
	
	.support-lists .support-content-image img {
		width: auto;	
	}
	
	.supportDesTxt {
		margin: 0 20px 100px;
		font-size: 16px;
		font-weight: normal;
	}
	
	.support-title {
		line-height: 50px;
	}
}

@media screen and (max-width: 480px) {
	
	.support-wrapper .support-title {
		line-height: 44px;
		font-size: 28px;
	}	
	
	.supportDesTxt {
		margin: 0 20px 60px;
		font-size: 16px;
		font-weight: normal;
	}
	
	.support-content-title {
		font-size: 18px;
		line-height: 30px;
	}
	
	.support-content-text {
		color: #fff;
		line-height: 2;
		font-size: 14px;
	}
	
}

@media screen and (max-width: 365px) {
  .support-lists {
    max-width: 100%;
  }

  .support-list-image {
    right: 10px;
  }
}


/* function */

#function {
	padding: 150px 0 150px;	
	width: 100%;
	position: relative;
}

.functionIntroduction {
	width: 1040px;
	margin: 0 auto;
}

.functionIntroduction__ {
	background: #FBF6B7;
	border-radius: 100px;
	padding: 50px 60px 60px;
}


.functionIntroduction__subTitle {
    font-size: 19px;
    font-weight: 500;
    color: #53CBC2;
    margin-bottom: 0px;
    text-align: center;
    padding: 20px 0 0;
}

.functionIntroduction__title {
    margin-bottom: 40px;
	font-size: 42px;
    line-height: 70px;
    padding: 15px 0 20px;
    font-weight: 500;
}

.functionDetail {
	display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.functionDetail__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
	border-radius: 70px;
	padding: 20px 50px;
	width: calc((100% / 2) - 20px);
	color: #fff;
	min-height: 100px;
	margin: 0 0 25px;
}

.functionDetail__list:nth-child(1) {
	background: #53CBC2;	
}

.functionDetail__list:nth-child(2) {
	background: #F59594;	
}

.functionDetail__list:nth-child(3) {
	background: #F59594;	
}

.functionDetail__list:nth-child(4) {
	background: #53CBC2;	
}

.functionDetail__list:nth-child(5) {
	background: #53CBC2;	
}

.functionDetail__list:nth-child(6) {
	background: #F59594;	
}

.functionDetail__list:nth-child(7) {
	background: #F59594;	
}

.functionDetail__list:nth-child(8) {
	background: #53CBC2;	
}

.functionDetail__list__text {
    font-size: 18px;
    line-height: 27px;
	padding: 0 0 0 15px;
    text-align: center;
}

.functionDetail__list:nth-child(2) .functionDetail__list__text {
	padding: 0 0 0 30px;
}

.functionDetail__list:nth-child(3) .functionDetail__list__text {
	padding: 0 0 0 45px;
}

.functionDetail__list:nth-child(4) .functionDetail__list__text {
	padding: 0 0 0 20px;
}

.functionDetail__list:nth-child(5) .functionDetail__list__text {
	padding: 0 0 0 25px;
}

.functionDetail__list:nth-child(6) .functionDetail__list__text {
	padding: 0 0 0 25px;
}

.functionDetail__list:nth-child(8) .functionDetail__list__text {
	padding: 0 0 0 30px;
}

.functionDetail__list__img {
    padding: 0 20px 0 0;
}

@media screen and (max-width: 1050px) {
	
	.functionIntroduction {
		width: 100%;	
	}
	
}

@media screen and (max-width: 990px) {
	
	.functionDetail__list {
		padding: 20px 20px;
		width: 100%;
	}
	
	.functionDetail__list__img {
		padding: 0 0px 0 0;
		position: relative;
    	left: 20px;
	}
	
	.functionDetail__list__text {
		padding: 0 0 0 0px;
		margin: 0 auto;
	}
	
	.functionDetail__list:nth-child(2) .functionDetail__list__text {
		padding: 0 0 0 0px;
	}
	
	.functionDetail__list:nth-child(3) .functionDetail__list__text {
		padding: 0 0 0 0px;
	}
	
	.functionDetail__list:nth-child(4) .functionDetail__list__text {
		padding: 0 0 0 0px;
	}
	
	.functionDetail__list:nth-child(5) .functionDetail__list__text {
		padding: 0 0 0 0px;
	}
	
	.functionDetail__list:nth-child(6) .functionDetail__list__text {
		padding: 0 0 0 0px;
	}
	
	.functionDetail__list:nth-child(8) .functionDetail__list__text {
		padding: 0 0 0 0px;
	}
	
}

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

	.functionIntroduction__ {
		background: #FBF6B7;
		border-radius: 0px;
		padding: 50px 20px 60px;
	}
	
	.functionIntroduction__title {
		margin-bottom: 40px;
		font-size: 32px;
		line-height: 50px;
		padding: 15px 0 20px;
		font-weight: 500;
	}

}

@media screen and (max-width: 480px) {
	
	#function {
		padding: 20px 0 90px;
		width: 100%;
		position: relative;
	}

	.functionIntroduction__subTitle {
		font-size: 16px;
		font-weight: 500;
		color: #53CBC2;
		margin-bottom: 0px;
		text-align: center;
		padding: 20px 0 0;
	}
	
	.functionIntroduction__title {
		margin-bottom: 40px;
		font-size: 28px;
		line-height: 40px;
		padding: 15px 0 20px;
		font-weight: 500;
	}

	.functionDetail__list__text {
		font-size: 16px;
		line-height: 22px;
		text-align: center;
	}

}


/* merit */


#merit {
	position: relative;
	width: 100%;
}

.meritArea {
    width: 1040px;
    margin: 0 auto;
    padding: 20px 0 0;
}

.meritArea__inner {

}

.meritBusiness {
    background: #EDFEF9;
    border-radius: 20px;
    margin: 45px 0 0;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meritBusiness__des__title {
    font-size: 20px;
    font-weight: 500;
    padding: 0 0 20px;
}

.meritBusiness__des__text {

}

.meritBusiness__img {
	
}

.meritBusiness__img img {
	
}

.meritBranding {
    background: #F6F6D4;
    border-radius: 20px;
    margin: 40px 0 40px;
    padding: 50px;
}

.meritBranding__title {
    font-size: 20px;
    font-weight: 500;
    padding: 0 0 20px;
}

.meritBranding__des {
    font-size: 16px;
    line-height: 30px;
}

.meritBranding__des.meritBranding__des--middle {
    padding: 60px 0 30px;
}

.meritBranding__des.meritBranding__des--bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px 0 0;
}

.meritPr {
    background: #EDFEF9;
    border-radius: 20px;
    padding: 50px;
}

.meritPr__ {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meritPr__des {
	
}

.meritPr__des__title {
    font-size: 20px;
    font-weight: 500;
    padding: 0 0 20px;
}

.meritPr__des__text {
    font-size: 16px;
    line-height: 30px;
}


@media screen and (max-width: 1050px) {
	
	.meritArea {
		width: 100%;	
	}
	
}

@media screen and (max-width: 768px) {
	
	#merit {
		padding: 0 20px;
	}
		
	.meritBusiness {
		flex-direction: column;
		padding: 40px 20px;
	}
	
	.meritBranding__des.meritBranding__des--bottom {
		flex-direction: column;
	}
	
	.meritPr__ {
		flex-direction: column;
	}
	
	.meritBusiness__img {
		padding: 30px 0 0;
	}
	
	.meritBranding {
		padding: 40px 20px;
	}
	
	.meritBranding__des__img {
		padding: 50px 0 10px;
	}
	
	.meritPr {
		padding: 40px 20px;
	}
	
	.meritPr__img {
    	padding: 40px 0 10px;
	}
		
}

@media screen and (max-width: 480px) {
	
	.meritBusiness {	
	    margin: 30px 0 0;
	}
	
	.meritBusiness__des__title {
		font-size: 18px;
		font-weight: 500;
		padding: 0 0 20px;
	}
	
	.meritBusiness__des__text {
    	font-size: 14px;
	}
	
	.meritBranding__title {
		font-size: 18px;
		font-weight: 500;
		padding: 0 0 20px;
	}
	
	.meritBranding__des {
		font-size: 14px;
		line-height: 30px;
	}
	
	.meritPr__des__title {
		font-size: 18px;
		font-weight: 500;
		padding: 0 0 20px;
	}
	
	.meritPr__des__text {
		font-size: 14px;
		line-height: 30px;
	}

}


/* case */

#case {
    padding: 200px 0 0;
}

.case-wrapper {
  text-align: center;
  position: relative;
}

.swiper-btn-wrap {
  display: none !important;
}

.case-title {
  margin-bottom: 80px;
  font-size: 42px;
  font-weight: 500;
}

.case-example {
  width: 1040px;
  max-width: calc(100% - 32px);
  margin: 0 auto 80px;
  padding: 80px;
  background-color: #fff;
  border-radius: 40px;
  box-shadow: 0 0 60px rgba(2, 75, 147, 0.1);
  display: flex;
  justify-content: space-between;
}

.case-example-detail {
  width: 305px;
  margin-right: 60px;
  text-align: left;
}

.case-example-name {
  margin-bottom: 10px;
}

.case-example-site {
  font-size: 20px;
  margin-bottom: 10px;
}

.case-example-text {
  line-height: 2;
  margin-bottom: 10px;
}

.case-example-image {
  flex: 1;
}

.case-example-image img {
  width: 100%;
}

.case-example-link {
  color: #ff3d7f;
  display: inline-block;
  margin-bottom: 15px;
  transition: opacity 0.3s;
}

.case-example-link span {
  display: inline-block;
  width: 19px;
  margin-left: 10px;
  position: relative;
  top: 3px;
}

.case-example-link:hover {
  opacity: 0.7;
  transition: opacity 0.3s;
}

.case-example-tag {
  margin-bottom: 10px;
}

.case-example-tag span {
  display: inline-block;
  padding: 10px;
  background-color: #f2f2f2;
  color: #a3a3a3;
  margin-right: 4px;
}

.case-example-time {
  color: #a3a3a3;
  font-size: 14px;
}

.case-product {
  width: 1040px;
  max-width: calc(100% - 32px);
  margin: 0 auto 50px;
  text-align: left;
}

.case-product h3 {
  font-size: 24px;
  color: #3fb8af;
  margin-bottom: 30px;
}

.case-product-lists {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.case-product-list {
  width: calc((100% / 2) - 25px);
  margin-bottom: 30px;
}

.case-product-list a:hover{
	opacity: 0.7;	
}

.case-product-list p{
	text-align: center;	
	padding: 10px 0 0;
	font-size: 22px;
}

.case-product-list img {
  width: 100%;
}

.case-logo {
  width: 1040px;
  max-width: calc(100% - 32px);
  margin: 0 auto 50px;
  text-align: left;
}

.case-logo h3 {
  font-size: 24px;
  color: #3fb8af;
  margin-bottom: 30px;
  text-align: center;
}

.case-logo-lists {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.54%;
}

.case-logo-list {
  width: 15.38%;
  margin-bottom: 30px;
  text-align: center;
}

.case-logo-list img {
  width: 100%;
}

.case-logo-list.case-logo-list-anymind img {
  width: 120px;
  max-width: 100%;
}

.case-square-red {
  position: absolute;
  width: 1158px;
  z-index: -1;
  top: 130px;
  left: -900px;
  transform: rotate(-5deg);
}

.case-square-green {
  position: absolute;
  width: 1158px;
  z-index: -1;
  top: -180px;
  left: -700px;
}

.case-square-yellow {
  position: absolute;
  width: 2480px;
  z-index: -1;
  top: -20px;
  right: -1920px;
}

.cases-youtube .swiper-slide {
  background-color: #F8F8E9;
  padding: 32px !important;
  border-radius: 40px 0px
}

.cases-youtube .swiper-slide:nth-child(2n) {
  background-color: #EAF8F4;
}

@media screen and (max-width: 1050px) {
	
	.case-product {
		width: 100%;	
	}
	
}

@media screen and (max-width: 990px) {
	
	.case-product-lists {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		flex-direction: column;
	}
	
	.case-product-list {
		width: 100%;
		margin-bottom: 60px;
	}
	
}

@media screen and (max-width: 950px) {
  .case-example {
    padding: 50px;
  }
}

@media screen and (max-width: 767px) {
  
  #case {
    padding: 200px 20px 0;
  }
	
  .case-title {
    margin-bottom: 50px;
    font-size: 28px;
    line-height: 44px;
  }

  .case-example {
    padding: 45px 32px 32px;
    flex-direction: column;
  }

  .case-example-detail {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .case-example-link {
    margin-bottom: 30px;
  }

  .case-example-tag span {
    font-size: 12px;
  }

  .case-product{
    width: auto;
    max-width: none;
  }

  .case-product h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 25px;
  }

  .case-product-lists {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .case-logo {
    margin: 0 auto 90px;
  }

  .case-logo h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 25px;
  }

  .case-logo-lists {
    column-gap: 0.5%;
  }

  .case-logo-list {
    width: 33%;
    margin-bottom: 13px;
  }

  .case-square-green {
    top: -120px;
    left: -850px;
  }

  .case-square-red {
    top: 185px;
    left: -1050px;
  }

  .case-square-yellow {
    top: -180px;
    right: -2260px;
  }

  .m-left {
    margin: 0 auto 0 25px !important;
  }

  .swiper--shopify-youtube .swiper-btn {
    justify-content: center !important;
  }

  .swiper-btn-wrap {
    display: block !important;
    margin: 0 25px 0 0 !important;
  }

  .swiper--shopify-youtube .swiper-btn {
    background-color: #3FB8AF !important;
    line-height: 1;
    margin: 28px auto !important;
    font-size: calc(16vw/3.75) !important;
    width: 100% !important;
    padding: calc(20vw/3.75) 0 !important;
  }

}

@media screen and (max-width: 480px) {
	#case {
    	padding: 140px 20px 0;
	}

	.case-product-list p {
		text-align: center;
		padding: 10px 0 0;
		font-size: 18px;
	}
	
}

/* plan */

.plan-wrapper {
  text-align: center;
  margin-bottom: 120px;
}

.plan-title {
  	margin-bottom: 30px;
  	font-size: 42px;
    font-weight: 500;
    line-height: 70px;
}

.plan-titleText {
    margin-bottom: 50px;
    line-height: 34px;
}

.plan-lists {
  text-align: left;
  width: 1040px;
  max-width: calc(100% - 32px);
  margin: 0 auto 25px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.plan-list {
  width: 31.92%;
  box-shadow: 0 3px 40px rgba(2, 75, 147, 0.16);
  border-radius: 40px 40px 40px 40px;
}

.plan-list-detail p {
  align-items: center;
  display: flex;
}

.plan-list-catch {
  padding: 20px 0;
  text-align: center;
  color: #fff;
  border-radius: 40px 40px 0 0;
  font-size: 12px;
  line-height: 20px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
}

.plan-list-1 .plan-list-catch {
  background-color: #39a59d;
}

.plan-list-2 .plan-list-catch {
  background-color: #bbb585;
}

.plan-list-3 .plan-list-catch {
  background-color: #dc8685;
}

.plan-list-price {
  padding: 25px 0;
  text-align: center;
}

.plan-list-1 .plan-list-price {
  background-color: #53CBC2;
}

.plan-list-2 .plan-list-price {
  background-color: #DCD077;
}

.plan-list-3 .plan-list-price {
  background-color: #F59594;
}

.plan-list-price-name {
  margin-bottom: 10px;
  color: #fff;
  font-size: 19px;
  font-weight: 400;
}

.plan-list-price-pricing {
    width: 100%;
	margin: 0 auto;
    color: #fff;
	border-bottom: 1px solid #fff;
    padding: 0 0 30px;
}

.plan-list-3 .plan-list-price-pricing {
  width: 100%;
}

.plan-list-detail {
  display: flex;
  font-size: 14px;
}

.plan-list-detail p:first-child {
  color: #fff;
  padding-top: 17px;
  padding-left: 15px;
  padding-bottom: 25px;
  width: 32%;
}

.plan-list-1 .plan-list-detail p:first-child {
  background-color: #83c1c6;
}

.plan-list-2 .plan-list-detail p:first-child {
  background-color: #c3bfa2;
}

.plan-list-3 .plan-list-detail p:first-child {
  background-color: #f0b2b1;
}

.plan-list-detail p:last-child {
  padding-top: 15px;
  padding-left: 20px;
  padding-bottom: 25px;
  margin-right: 30px;
  width: 68%;
  line-height: 1.8;
}

.plan-list-detail:first-child p:first-child {
  padding-top: 32px;
}

.plan-list-detail:first-child p:last-child {
  padding-top: 30px;
}

.plan-list-detail:not(:last-child) p:last-child {
  border-bottom: 1px solid #eaeaea;
}

.plan-list-detail:last-child p:first-child {
  border-radius: 0 0 0 40px;
}

.plan-list-1 .plan-list-detail:last-child p:first-child,
.plan-list-2 .plan-list-detail:last-child p:first-child {
  padding-bottom: 65px;
}

.plan-list-3 .plan-list-detail:last-child p:first-child {
  padding-bottom: 40px;
}

.plan-attention {
  font-size: 14px;
  line-height: 2.1;
}

.plan-spButton {
  display: none;
}

.planDefaultPrice {
    font-size: 13px;
}

.planMonthPrice {
	font-size: 13px;
}

.planDefaultPrice span,
.planMonthPrice span {
	font-size: 30px;
	font-weight: 500;
    padding: 0 5px;
    line-height: initial;
}

.plan-detailsPage {
	
}

.plan-detailAttensiton {
	font-size: 10px;
    line-height: 16px;
    display: block;	
}

p.plan-detailsPage {
    display: block !important;
    padding: 30px 10px 0 0;
}

li.plan-list-detail.plan-list-detail-1:first-child p:last-child {
	padding-top: 10px;
	padding-bottom: 10px;
	margin-top: 5px;
}

.planSupport {
	width: 1040px;
    margin: 0 auto;
}

.planSupport__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.planSupport__inner_right {
    padding: 30px 0;
    text-align: center;
    color: #fff;
    border-radius: 40px 40px 0 0;
    font-size: 19px;
    line-height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
	width: calc((100% / 3) - 15px);
}

.planSupport__inner_right:first-child {
    background-color: #39A59D;
}

.planSupport__inner_right:nth-child(2) {
	background-color: #BBB585;
}

.planSupport__inner_right:last-child {
	background-color: #DC8685;
}

.planSupport__des {
   	background: #EFEFEF;
    border-radius: 0 0 40px 40px;
    padding: 40px 30px 40px 140px;
    font-size: 14px;
    line-height: 25px;
    text-align: left;
}

.planSupport__des__top {
    display: inline-block;
    text-align: left;
}

.planSupport__des__bottom {
    display: inline-block;
    text-align: left;
	padding: 20px 0 0;
}

@media screen and (max-width: 1050px) {
	
	.planSupport {
		width: 100%;	
		padding: 0 20px;
	}
	
	.planSupport__inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-direction: column;
	}
	
	.planSupport__inner_right {
		padding: 30px 0;
		text-align: center;
		color: #fff;
		border-radius: 0px 0px 0 0;
		font-size: 19px;
		line-height: 20px;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 400;
		width: 100%;
	}
	
	.planSupport__inner_right:first-child {
		border-radius: 40px 40px 0 0;
	}

}

@media screen and (max-width: 990px) {
	
	.planSupport__des {
		background: #EFEFEF;
		border-radius: 0 0 40px 40px;
		padding: 40px 30px 40px 30px;
		font-size: 14px;
		line-height: 25px;
		text-align: left;
	}
	
	.plan-list {
		width: 100%;
		margin-bottom: 30px;
		position: relative;
	}
	
	.plan-lists {
    	flex-direction: column;
    	margin: 0 auto 20px;
	}
	
	.plan-list-details {
		height: 0;
		overflow: hidden;
	}
	
	.plan-spButton {
		display: block;
		position: absolute;
		width: 35px;
		height: 35px;
		background-color: #fff;
		border-radius: 50%;
		/* top: 208px; */
		right: 16px;
		cursor: pointer;
		bottom: 20px;
	}
	
	.plan-list-price {
		border-radius: 0 0 40px 40px;
	}
	
	.plan-spButton::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 6px;
    left: 7.5px;
    transform: rotate(90deg);
    transition: 0.3s transform ease-out;
    border-radius: 1px;
  }

  .plan-list-price.is-opened .plan-spButton::after {
    transform: translateY(3px) rotate(-135deg);
	display: none;
  }
  
  .plan-spButton::before {
	  width: 5px;
	  height: 18px;
	  top: 0;
	  left: 7px;
  }
  
  .plan-spButton::after {

  }
  
  .plan-spButton:before,
  .plan-spButton::after {
	  display: block;
	  content: '';
	  background-color: #333;
	  border-radius: 10px;
	  position: absolute;
      width: 18px;
      height: 2px;
      top: 16px;
      left: 8.5px;
  }

  .plan-list-1 .plan-spButton::after {

  }

  .plan-list-2 .plan-spButton::after {

  }

  .plan-list-3 .plan-spButton::after {

  }

  .plan-list-price {
    border-radius: 0 0 40px 40px;
  }

  .plan-list-price.is-opened {
    border-radius: 0;
    position: relative;
  }

}

@media screen and (max-width: 900px) {
  .plan-list-catch {
    font-size: 13px;
  }

  .plan-list-price-name {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .plan-wrapper {
    margin-bottom: 50px;
  }

  .plan-titleText {
    text-align: center;
    margin-bottom: 30px;
  }

  .plan-lists {
    flex-direction: column;
    margin: 0 auto 20px;
  }

  .plan-list {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
  }

  .plan-attention {
    max-width: calc(100% - 32px);
    margin: 0 auto;
    text-align: left;
  }

  .plan-spButton::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 6px;
    left: 7.5px;
    transform: rotate(90deg);
    transition: 0.3s transform ease-out;
    border-radius: 1px;
  }

  .plan-list-price.is-opened .plan-spButton::after {
    transform: translateY(3px) rotate(-135deg);
	display: none;
  }
  
  .plan-spButton::before {
	  width: 5px;
	  height: 18px;
	  top: 0;
	  left: 7px;
  }
  
  .plan-spButton::after {

  }
  
  .plan-spButton:before,
  .plan-spButton::after {
	  display: block;
	  content: '';
	  background-color: #333;
	  border-radius: 10px;
	  position: absolute;
      width: 18px;
      height: 2px;
      top: 16px;
      left: 8.5px;
  }

  .plan-list-1 .plan-spButton::after {

  }

  .plan-list-2 .plan-spButton::after {

  }

  .plan-list-3 .plan-spButton::after {

  }

  .plan-list-price {
    border-radius: 0 0 40px 40px;
  }

  .plan-list-price.is-opened {
    border-radius: 0;
  }

}

@media screen and (max-width: 480px) {
	
	.plan-title {
		margin-bottom: 20px;
		font-size: 28px;
		font-weight: 500;
		line-height: 44px;
	}
	
	.plan-titleText {
		text-align: center;
		margin-bottom: 30px;
		padding: 0 20px;
	}
	
	.planSupport__inner_right {
		font-size: 16px;
	}

}


/* company */

#company {
	padding: 0px 0 100px;	
}

.companyInfoArea {
	width: 1040px;
	margin: 0 auto;
}

.companyInfoArea .subtitle,
.companyInfoArea .titleText {
	text-align: center;	
}
.companyInfoArea .titleText {
	margin-bottom: 40px;
}

.companyInfoArea__detail {
	border-radius: 40px;
	background: #EDFEF9;
	padding: 40px 50px;
	display: flex;
    justify-content: space-between;
    align-items: center;	
}

.companyDetailInfomation__basic {
    padding: 0 0 30px;
}

.companyDetailInfomation__basic__name {
    line-height: 30px;
}

.companyDetailInfomation__concept {

}

.companyDetailInfomation__concept__title {
    padding: 0 0 15px;	
}

.companyDetailInfomation__concept__list {
    padding: 7px 20px;
    background: #fff;
    border-radius: 6px;
    color: #3FB8AF;
	margin: 0 0 10px;
}

.companyDetailInfomation__concept__list p {
    font-size: 12px;
	line-height: 19px;
}

@media screen and (max-width: 1050px) {
	
	.companyInfoArea {
		width: 100%;	
	}
	
}

@media screen and (max-width: 768px) {
	
	#company {
    	padding: 100px 20px 100px;
	}
	
	.companyInfoArea__detail {
		border-radius: 40px;
		background: #EDFEF9;
		padding: 40px 30px 20px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-direction: column;
	}
	
	.companyDetailImg img {
		padding: 0 0px;
		width: 90%;
	}

}

@media screen and (max-width: 480px) {
	
	#company {
		padding: 120px 20px 100px;
	}

}


/* support2 */

.support2-wrapper {
  width: 1040px;
  max-width: calc(100% - 32px);
  margin: 0 auto 230px;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 767px) {
 .support2-wrapper {
   margin: 0 auto;
 }
}

.support2-items {
  display: grid;
  gap: 24px;
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .support2-items {
    display: block;
  }
}

.s-item1 {
  background-color: #EAF8F4;
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

.s-item2 {
  background-color: #F8F8E9;
  grid-row: 2 / 3;
  grid-column: 1 / 2;
}

.s-item3 {
  background-color: #F8F8E9;
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}

.s-item4 {
  background-color: #EAF8F4;
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}

.support2-item {
  position: relative;
  display: flex;
  border-radius: 20px;
  padding: 40px 150px 40px 40px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .support2-item {
    margin-bottom: 16px;
  }
}

.support2-title {
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 8px;
}

.support2-text {
  font-size: 16px;
  line-height: 1.875;
}

.support2-img {
  position: absolute;
  top: -8px;
  right: 10px;
}

@media screen and (max-width: 767px) {
  .support2-img {
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
  }
}

.s-item1 .support2-img {
  width: 124px;
}

.s-item2 .support2-img {
  width: 111px;
}

.s-item3 .support2-img {
  width: 116px;
}

.s-item4 .support2-img {
  width: 116px;
}

.support2-items2 {
  display: flex;
}

@media screen and (max-width: 767px) {
  .support2-items2{
    display: block;
  }
}

.support2-item2 {
  flex: 1;
  background-color: #EAF8F4;
  border-radius: 40px 0 40px 0;
  padding: 54px 24px 24px;
}


@media screen and (max-width: 767px) {
  .support2-item2{
    margin-bottom: 16px;
  }
}

.support2-item2:nth-child(n + 2) {
  margin-left: 22px;
}

@media screen and (max-width: 767px) {
  .support2-item2:nth-child(n + 2) {
    margin-left: 0;
  }
}
.support2-item2:nth-child( 2n) {
  background-color: #F8F8E9;
}

.support2-title2 {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.support2-img2 {
  margin-bottom: 18px;
}

.support2-img2{
  height: 70px !important;
}

.support2-text2 {
  font-size: 16px;
  line-height: 1.875;
  text-align: left;
  margin-bottom: 24px;
}

.support2-list li {
  position: relative;
  padding: 0px 40px;
  background-color: #fff;
  border-radius: 6px;
  text-align: left;
  color: #3FB8AF;
  margin-bottom: 8px;
}

.support2-list li::before {
  position: absolute;
  content: "";
  background-image: url(../../img/shopify/support2-icon.svg);
  width: 14px;
  height: 14px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.support2-item2:nth-child(2n) li {
  color: #989050;
}

/* subsidy */

.subsidy-wrapper {
  width: 1040px;
  max-width: calc(100% - 32px);
  margin: 0 auto 230px;
  text-align: center;
  position: relative;
}

.subsidy-box {
  padding-top: 80px;
  box-shadow: 0 0 60px rgba(2, 75, 147, 0.1);
  background-color: #fff;
  border-radius: 40px;
}

.subsidy-target {
  font-size: 18px;
  margin-bottom: 20px;
}

.subsidy-payment {
  font-size: 32px;
  margin-bottom: 20px;
}

.subsidy-payment span {
  color: #ff3d7f;
}

.subsidy-text {
  line-height: 2;
  margin-bottom: 30px;
}

.subsidy-examples {
  width: 880px;
  max-width: calc(100% - 32px);
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
}

.subsidy-example {
  width: 47.73%;
  background-color: #e4faf4;
  padding: 35px 30px;
}

.subsidy-example h3 {
  margin-bottom: 25px;
  font-size: 16px;
}

.subsidy-example h3 span {
  display: inline-block;
  margin: 0 2px;
  vertical-align: -5%;
  width: 45px;
}

.subsidy-example-detail {
  display: flex;
  justify-content: space-between;
}

.subsidy-example-base {
  width: 47.75%;
  border: 4px solid #63b5ae;
  border-radius: 8px;
  padding: 25px 0 30px;
  color: #3fb8af;
  font-size: 16px;
  position: relative;
}

.subsidy-example-base::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #63b5ae;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
}

.subsidy-example-base-catch {
  margin-bottom: 15px;
}

.subsidy-example-base-catch span {
  display: inline-block;
  position: relative;
}

.subsidy-example-base-catch span::before,
.subsidy-example-base-catch span::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 15px;
  background-color: #3fb8af;
  bottom: 3px;
}

.subsidy-example-base-catch span::before {
  left: -20px;
  transform: rotate(-30deg);
}

.subsidy-example-base-catch span::after {
  right: -20px;
  transform: rotate(30deg);
}

.subsidy-example-base figure {
  width: 75px;
  margin: 0 auto 13px;
}

.subsidy-example-base-cost {
  line-height: 2;
}

.subsidy-example-base-cost span {
  display: inline-block;
  width: 40.7px;
  vertical-align: -5%;
}

.subsidy-example-use {
  width: 47.75%;
  background-color: #fff;
  color: #ff3d7f;
  border-radius: 10px;
  padding: 29px 0 10px;
  font-size: 16px;
}

.subsidy-example-use-catch {
  margin-bottom: 20px;
}

.subsidy-example-use-catch span {
  display: inline-block;
  position: relative;
}

.subsidy-example-use-catch span::before,
.subsidy-example-use-catch span::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 15px;
  background-color: #ff3d7f;
  bottom: 3px;
}

.subsidy-example-use-catch span::before {
  left: -20px;
  transform: rotate(-30deg);
}

.subsidy-example-use-catch span::after {
  right: -20px;
  transform: rotate(30deg);
}

.subsidy-example-use-money {
  color: #000;
  font-size: 20px;
  line-height: 2;
  margin-bottom: 8px;
}

.subsidy-example-use-money span {
  display: inline-block;
  width: 48px;
  margin-right: 3px;
  vertical-align: -5%;
}

.subsidy-example-use-cost {
  margin: 0 10px;
  position: relative;
}

.subsidy-example-use-cost img {
  width: 100%;
}

.subsidy-example-use-cost p {
  position: absolute;
  width: 100px;
  line-height: 2;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.subsidy-example-use-cost p span {
  display: inline-block;
  width: 30px;
  vertical-align: -5%;
  margin-right: 3px;
}

.subsidy-example-2 .subsidy-example-use-cost p span {
  width: 40px;
}

.subsidy-bottom {
  padding: 25px 0;
  background-color: #3fb8af;
  color: #fff;
  font-size: 18px;
  border-radius: 0 0 40px 40px;
}

.subsidy-circle {
  position: absolute;
  width: 480px;
  bottom: -270px;
  left: -250px;
  z-index: -1;
}

.subsidy-square-red {
  position: absolute;
  width: 1158px;
  z-index: -1;
  top: 0;
  left: -1000px;
  transform: rotate(-5deg);
}

.subsidy-square-green {
  position: absolute;
  width: 1158px;
  z-index: -1;
  top: -270px;
  left: -860px;
}

.subsidy-square-yellow {
  position: absolute;
  width: 2480px;
  z-index: -1;
  top: -130px;
  right: -2015px;
}

@media screen and (max-width: 767px) {
  .subsidy-wrapper {
    border-radius: 30px;
    padding-top: 45px;
    margin: 0 auto 120px;
  }

  .subsidy-target {
    font-size: 16px;
    line-height: 1.9;
  }

  .subsidy-payment {
    font-size: 26px;
  }

  .subsidy-text {
    text-align: left;
    width: calc(100% - 64px);
    margin: 0 auto 30px;
  }

  .subsidy-examples {
    flex-direction: column;
    margin: 0 auto 6px;
  }

  .subsidy-example {
    width: 100%;
    margin-bottom: 10px;
    padding: 22px 23px 26px;
  }

  .subsidy-example h3 {
    font-size: 14px;
    margin-bottom: 13px;
  }

  .subsidy-example h3 span {
    width: 41px;
  }

  .subsidy-example-base {
    font-size: 12px;
    padding: 17px 0 23px;
  }

  .subsidy-example-base-catch {
    margin-bottom: 10px;
  }

  .subsidy-example-base-catch span::before,
  .subsidy-example-base-catch span::after {
    height: 12px;
  }

  .subsidy-example-base-catch span::before {
    left: -15px;
  }

  .subsidy-example-base-catch span::after {
    right: -15px;
  }

  .subsidy-example-base figure {
    width: 52.32px;
    margin: 0 auto 5px;
  }

  .subsidy-example-base-cost span {
    width: 29px;
    margin-right: 2px;
  }

  .subsidy-example-use {
    font-size: 12px;
    padding: 21px 0 7px;
  }

  .subsidy-example-use-catch {
    margin-bottom: 10px;
  }

  .subsidy-example-use-catch span::before,
  .subsidy-example-use-catch span::after {
    height: 12px;
  }

  .subsidy-example-use-catch span::before {
    left: -15px;
  }

  .subsidy-example-use-catch span::after {
    right: -15px;
  }

  .subsidy-example-use-money {
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 1.8;
  }

  .subsidy-example-use-money span {
    width: 29px;
  }

  .subsidy-example-use-cost p span {
    width: 19px;
  }

  .subsidy-example-2 .subsidy-example-use-cost p span {
    width: 27px;
  }

  .subsidy-bottom {
    padding: 30px 24px;
    font-size: 16px;
    text-align: left;
  }

  .subsidy-circle {
    display: none;
  }

  .subsidy-square-red {
    top: 190px;
  }

  .subsidy-square-green {
    top: -120px;
  }

  .subsidy-square-yellow {
    top: -20px;
    right: -2260px;
  }
}

/* flow */

#flow {
    padding: 100px 0 0;
}

.flow-wrapper {
  text-align: center;
  margin-bottom: 180px;
}

.flow-title {
  margin-bottom: 30px;
  font-size: 42px;
  font-weight: 500;
  line-height: 70px;
}

.flow-titleText {
  margin-bottom: 50px;
  line-height: 34px;
}

.flow-lists {
  width: 1040px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.flow-list {
  display: flex;
  padding: 40px 40px 40px 40px;
  text-align: left;
  border-radius: 20px;
  margin-bottom: 20px;
  justify-content: flex-start;
  align-items: center;
}

.flow-list-1,
.flow-list-3,
.flow-list-5,
.flow-list-7{
  background-color: #F6F6D4;
}

.flow-list-2,
.flow-list-4,
.flow-list-6 {
  background-color: #EDFEF9;
}

.flow-list figure {
    width: 120px;
    height: 120px;
    margin-right: 40px;
    text-align: center;
    background: #fff;
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flow-list-detail {
  padding-top: 0px;
  flex: 1;
}

.flow-list-detail h3 {
  	font-size: 19px;
    font-weight: 500;
    margin-bottom: 15px;
}

.flow-list-1 .flow-list-detail h3,
.flow-list-3 .flow-list-detail h3,
.flow-list-5 .flow-list-detail h3,
.flow-list-7 .flow-list-detail h3{
  color: #8D864A;
}

.flow-list-2 .flow-list-detail h3,
.flow-list-4 .flow-list-detail h3,
.flow-list-6 .flow-list-detail h3 {
  color: #53CBC2;
}

.flow-list-detail p {
  line-height: 2;
}

.flow-list__num {
    font-size: 25px;
    font-weight: bold;
}

.flow-list-1 .flow-list__num,
.flow-list-3 .flow-list__num,
.flow-list-5 .flow-list__num,
.flow-list-7 .flow-list__num {
    color: #8D864A;	
}

.flow-list-2 .flow-list__num,
.flow-list-4 .flow-list__num,
.flow-list-6 .flow-list__num {
    color: #53CBC2;	
}

.flow-list figure img {
    padding: 0 0 10px;
}

@media screen and (max-width: 767px) {
  .flow-wrapper {
    margin-bottom: 90px;
  }

  .flow-title {
    margin-bottom: 25px;
    font-size: 28px;
    line-height: 44px;
  }

  .flow-titleText {
    text-align: center;
    padding: 0 20px;
  }

  .flow-list {
    position: relative;
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 30px;
    margin-bottom: 15px;
    flex-direction: column;
  }

  .flow-list figure {
    position: initial;
    margin: 0;
  }

  .flow-list-1 .flow-list-detail,
  .flow-list-3 .flow-list-detail,
  .flow-list-4 .flow-list-detail {
    padding-top: 10px;
  }

  .flow-list-2 .flow-list-detail,
  .flow-list-5 .flow-list-detail,
  .flow-list-6 .flow-list-detail,
  .flow-list-7 .flow-list-detail{
    padding-top: 10px;
  }

  .flow-list-detail h3 {
    padding-left: 132px;
    line-height: 1.9;
  }

  .flow-list-1 .flow-list-detail h3,
  .flow-list-3 .flow-list-detail h3,
  .flow-list-4 .flow-list-detail h3 {
    margin-bottom: 15px;
    padding: 10px 0 0;
    text-align: center;
  }

  .flow-list-2 .flow-list-detail h3,
  .flow-list-5 .flow-list-detail h3,
  .flow-list-6 .flow-list-detail h3,
  .flow-list-7 .flow-list-detail h3{
    margin-bottom: 15px;
    padding: 10px 0 0;
    text-align: center;
  }
}


@media screen and (max-width: 480px) {
	
	#flow {
    	padding: 50px 0 0;
	}

	.flow-list-detail h3 {
		line-height: 1.9;
		font-size: 16px;
	}
	
	.flow-list-detail p {
		line-height: 2;
		font-size: 14px;
	}

}

@media screen and (max-width: 364px) {
  .flow-list-detail h3 {
    padding-left: 115px;
  }
}

@media screen and (max-width: 350px) {
  .flow-list-detail h3 {
    padding-left: 88px;
  }
}

/* faq */

.faq-wrapper {
  text-align: center;
  margin-bottom: 200px;
}

.faq-title {
  margin-bottom: 40px;
}

.faq-lists {
  width: 1040px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  text-align: left;
}

.faq-list {
  display: inline-block;
  width: 48.07%;
  text-align: left;
  vertical-align: top;
  padding: 40px 0;
}

.faq-list:not(:nth-child(2n)) {
  margin-right: 40px;
}

.faq-list:nth-child(n + 3) {
  border-top: 1px solid #eaeaea;
}

.faq-question {
  display: flex;
  margin-bottom: 10px;
}

.faq-question p:first-child {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background-color: #3fb8af;
  color: #fff;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  margin-right: 18px;
  margin-top: 7px;
}

.faq-question p:last-child {
  flex: 1;
  color: #3fb8af;
  line-height: 2;
}

.faq-answer {
  display: flex;
  margin-bottom: 10px;
}

.faq-answer p:first-child {
  width: 32px;
  height: 32px;
  line-height: 28px;
  text-align: center;
  color: #f59594;
  border: 2px solid #f59594;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  margin-right: 18px;
  margin-top: 7px;
}

.faq-answer p:last-child {
  flex: 1;
  line-height: 2;
}

@media screen and (max-width: 1079px) {
  .faq-list {
    width: 47%;
  }
}

@media screen and (max-width: 767px) {
  .faq-wrapper {
    margin-bottom: 70px;
  }

  .faq-title {
    margin-bottom: 35px;
  }

  .faq-lists {
    max-width: calc(100% - 48px);
  }

  .faq-list {
    width: 100%;
    padding-bottom: 20px;
  }

  .faq-list:nth-child(n + 3) {
    border-top: none;
  }

  .faq-list:not(:last-child) {
    border-bottom: 1px solid #eaeaea;
  }

  .faq-list-1 {
    padding-top: 0;
  }

  .faq-list:not(:nth-child(2n)) {
    margin-right: 0;
  }
}

/* contact */

.contact-wrapper {
  text-align: center;
  width: 1040px;
  max-width: calc(100% - 32px);
  margin: 0 auto 160px;
  box-shadow: 0 0 40px rgba(2, 75, 147, 0.1);
  background-color: #fff;
  padding: 120px 0;
  border-radius: 40px;
  position: relative;
}

.contact-title {
  margin-bottom: 40px;
}

.contact-titleText {
  margin-bottom: 50px;
}

.contact-square-red {
  position: absolute;
  width: 2482px;
  z-index: -1;
  top: 170px;
  right: -1400px;
  transform: rotate(5deg);
}

.contact-square-green {
  position: absolute;
  width: 2482px;
  z-index: -1;
  top: -265px;
  right: -1220px;
}

@media screen and (max-width: 767px) {
  .contact-wrapper {
    padding: 50px 0 30px;
  }

  .contact-title {
    margin-bottom: 30px;
  }

  .contact-titleText {
    text-align: center;
    margin-bottom: 30px;
  }

  .contact-square-red {
    top: 90px;
    right: -1700px;
    transform: rotate(0);
  }

  .contact-square-green {
    top: -160px;
    right: -1800px;
  }

}


/* hubspot */
.hbspt-form {
  padding: 0 0 40px 0;
}

.hbspt-form form {
  max-width: 640px;
  margin: auto;
}

.hs-form-required {
  color: transparent;
}

.hs-form-field {
  margin-bottom: 25px;
  text-align: left;
}

.hs-form-field label {
  position: relative;
  font-size: 18px;
}

.hs-form-field .input {
  margin: 0;
}

.hs-form-field .input input {
  box-sizing: border-box;
  width: 100%;
  max-width: 640px;
  margin-top: 5px;
  padding: 19px 29px;
  font-size: 15px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
}

.hs-form-radio {
  margin: 13px 0;
}

.hs-form-radio label {
  font-size: 16px;
}

.hs-form-radio-display input {
  display: none;
}

.hs-form-radio-display input + span::before {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin: -2px 5px 0 0;
  vertical-align: middle;
  background-color: #f0f0f0;
  border: 2px solid #ddd;
  border-radius: 17px;
  transition: 0.1s;
  content: "";
}

.hs-form-radio-display input[type="radio"]:checked + span::before {
  background-color: #5482f7;
  border-color: #5482f7;
  box-shadow: inset 0 0 0 8px #fff;
}

.hs-fieldtype-select select,
.hs-fieldtype-textarea textarea {
  box-sizing: border-box;
  width: 100%;
  max-width: 640px;
  height: 60px;
  padding: 0 29px;
  font-size: 15px;
  line-height: 57px;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
}

.hs-fieldtype-textarea textarea {
  padding: 8px 15px;
  line-height: 1.5;
}

.hs-fieldtype-select select {
  margin-top: 15px;
}

.hs-fieldtype-textarea {
  display: flex;
  flex-direction: column;
}

.hs-fieldtype-textarea textarea {
  height: 259px;
}

.hs-fieldtype-textarea .hs-field-desc {
  order: 3;
  font-size: 13px;
}

.hs-fieldtype-textarea .input {
  margin: 10px 0 0;
}

.hs_privacypolicy {
  text-align: center;
}

.hs_privacypolicy .hs-form-required {
  display: none;
}

.hs_privacypolicy label {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hs-form-field.hs_privacypolicy label input {
  width: auto;
  height: auto;
  margin-top: 0;
  margin-right: 10px;
  transform: scale(1.7);
}

.hs_error_rollup {
  display: none;
}

.hs-error-msg {
  color: #b70000;
  font-size: 93% !important;
}

.hs_submit {
  text-align: center;
}

.hs_submit input[type="submit"] {
  width: 320px;
  max-width: 100%;
  height: 64px;
  background-color: #ff3d7f;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 4px 0 #e53772;
  border: none;
  transition: opacity 0.3s;
}

.hs_submit input[type="submit"]:hover {
  opacity: 0.8;
  transition: opacity 0.3s;
}

.hs-ex {
  margin-left: 15px;
  font-size: 15px;
  text-decoration: underline;
}

.hs-ex.arrow::after {
  transform: rotate(0deg);
}

.hs-ex.arrow::before {
  right: -33px;
  height: 0;
  transform: rotate(45deg);
}

.hs-form-field .input input:focus,
.hs-form-field .input textarea:focus {
  box-shadow: 0 0 0 2px rgba(42, 176, 214, 1);
}

label.hs-form-booleancheckbox-display span::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  width: 25px;
  height: 25px;
  border: 2px solid #ccc;
  border-radius: 4px;
  content: "";
  cursor: pointer;
}

.hs-form-field.hs_privacypolicy input[type="checkbox"]:checked + span::after {
  position: absolute;
  top: 4px;
  left: 9px;
  display: block;
  width: 7px;
  height: 16px;
  border-right: 3px solid #5482f7;
  border-bottom: 3px solid #5482f7;
  transform: rotate(40deg);
  content: "";
}

.hs-form-field.hs_privacypolicy input {
  display: none;
}

.hs-form-field.hs_privacypolicy span {
  position: relative;
  padding-left: 35px;
}

.hbspt--minoru {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 0 2px transparent;
  -webkit-transition: box-shadow 0.3s;
  transition: box-shadow 01s;
}

.hbspt--minoru::after {
  position: absolute;
  top: 5px;
  left: 0;
  z-index: -1;
  width: calc(100% - 2px);
  max-width: 640px;
  height: 90%;
  color: rgba(42, 176, 214, 0.6);
  box-shadow: 0 0 0 0;
  -webkit-animation: anim-shadow 0.3s forwards;
  animation: anim-shadow 0.3s forwards;
  content: "";
}

.hbspt--minoru:focus {
  box-shadow: 0 0 0 2px rgba(42, 176, 214, 1);
}

@media screen and (max-width: 760px) {
  /* .hbspt--minoru::after {
    top: 8px;
  } */

  .hbspt-form {
    padding-right: 5%;
    padding-left: 5%;
  }

  .hs-form-field {
    padding-left: 0;
  }

  .hs-form-field label {
    display: flex;
    font-size: 16px;
  }

  .hs-form-field .input input,
  .hs-fieldtype-select select {
    padding: 13px;
    font-size: 14px;
  }

  .hs-form-field.hs_privacypolicy span {
    font-size: 12px;
  }

  .hs_submit input[type="submit"] {
    height: 60px;
  }

  .hs_submit .actions:hover::before {
    width: 80%;
  }
}

/* call */

.call-wrapper {
  width: 1040px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
}

.call-wrapper figure {
  width: 314px;
  margin-right: 60px;
}

.call-text {
  flex: 1;
}

.call-text p:first-child {
  font-size: 20px;
  margin-bottom: 30px;
}

.call-text p:last-child {
  font-size: 18px;
}

.call-text p:last-child a {
  width: 330px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 25px;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .call-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .call-wrapper figure {
    width: 183px;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .call-text p:first-child {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .call-text p:last-child a {
    width: 283px;
    margin-right: 0;
    margin-bottom: 20px;
    pointer-events: auto;
  }
}

/* footer */


#footer_contact .plan-titleText {
    margin-bottom: 40px;
    line-height: 34px;
}

#footer_navi {
    background: #333;
}

.toTop {
  display: block;
  width: 64px;
  height: 64px;
  position: absolute;
  background-color: #00655b;
  top: 80px;
  right: -415px;
  border-radius: 50%;
}

.toTop::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 4px solid #fff;
  border-left: 4px solid #fff;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 3px;
  transition: top 0.3s;
}

.footerNaviArea {
    width: 1040px;
    margin: 0 auto;
}

.footerNaviArea__inner {
    display: flex;
    padding: 60px 0 60px 100px;
    justify-content: space-evenly;
    align-items: center;
    color: #fff;
    flex-wrap: wrap;
}

.footerNaviArea__inner__link {
    width: calc(100% / 5);
    padding: 10px 0;
}

.footerNaviArea__inner__link a {
	color: #fff;
	text-decoration: none;
}

.footerNaviArea__inner__link a:hover {
	opacity: 0.7;	
}

@media screen and (max-width: 1050px) {
	
	.footerNaviArea {
		width: 100%;	
	}
	
}

@media screen and (min-width: 768px) {
  .toTop:hover::before {
    top: 47%;
    transition: top 0.3s;
  }
}

@media screen and (max-width: 1030px) {
  .toTop {
    top: -35px;
    right: -250px;
  }
  
  .footerNaviArea__inner {
    display: flex;
    padding: 60px 20px 60px 40px;
    justify-content: space-evenly;
    align-items: center;
    color: #fff;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
	.footerNaviArea__inner {
		display: flex;
		padding: 60px 0px 60px 60px;
		justify-content: space-evenly;
		align-items: center;
		color: #fff;
		flex-wrap: wrap;
	}
	
	.footerNaviArea__inner__link {
		width: calc(100% / 2);
		padding: 10px 0;
	}
		
}

@media screen and (max-width: 480px) {
	
	#footer {
		padding: 10px 0 20px;
	}
	
	#footer_contact .hs-richtext p {
		font-size: 14px !important;	
	}
	
	.footerNaviArea__inner__link a {
		font-size: 14px;	
	}

}

/* @media screen and (max-width: 767px){
  .footer-wrapper {
    padding-top: 150px;
  }

  .footer-wrapper table {
    text-align: center;
    width: calc(100% - 64px);
    margin: 0 auto;
  }

  .footer-wrapper table tr {
    margin-bottom: 35px;
    display: block;
  }

  .footer-wrapper table th {
    width: 100%;
    display: block;
    font-size: 14px;
  }

  .footer-wrapper table td {
    width: 100%;
    display: block;
    font-size: 14px;
  }

  .footer-wrapper table td a {
    color: #436CBF;
    text-decoration: underline;
    pointer-events: auto;
  }

  .footer-credit {
    flex-direction: column;
    align-items: center;
    padding: 40px 0 100px;
  }

  .footer-credit small {
    order: 2;
  }

  .footer-credit a {
    order: 1;
    margin-bottom: 20px;
  }

  .footer-square {
    top: 40px;
  }

  .toTop {
    width: 48px;
    height: 48px;
    right: -78px;
  }
} */

@media screen and (max-width: 350px) {
  .toTop {
    top: -60px;
    right: -45px;
  }
}

/* thanks */

.header-thanks {
  height: 72px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(2, 75, 147, 0.16);
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-thanks a {
  display: block;
  width: 344px;
  max-width: calc(100% - 32px);
}

.thanks-wrapper {
  padding-top: 120px;
  text-align: center;
  position: relative;
}

.thanks-wrapper h2 {
  font-size: 32px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.thanks-wrapper p {
  font-size: 20px;
  line-height: 2;
  margin-bottom: 50px;
}

.thanks-wrapper a {
  display: inline-block;
  color: #39a59d;
  transition: opacity 0.3s;
}

.thanks-wrapper a:hover {
  opacity: 0.7;
  transition: opacity 0.3s;
}

.thanks-circle {
  position: absolute;
  width: 450px;
  top: 120px;
  right: 70px;
  z-index: -1;
}

/* プラン価格表 */
@media screen and (min-width: 768px) {
  .plan-list-details .plan-list-detail p {
    min-height: 110px;
  }
  .plan-list-detail:first-child p:last-child {
    margin-top: 15px;
    padding-top: 15px;
  }
  .plan-list-detail p:last-child {
    width: 78.6%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }
  .plan-list-3 .plan-list-price-pricing {
    max-width: 100%;
  }
  .plan-list-price {
    min-height: 153px;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .plan-list-price-name {
    font-size: 14px;
  }
  .plan-list-detail p:last-child {
    padding-left: 0;
    width: 80%;
  }
}

/* 「ECサイトのご相談はこちら」のボタン追加に伴う修正 */
@media screen and (min-width: 768px) {
  .ec-btn1 {
    margin-top: 16px !important;
  }
  .ec-btn2 {
    margin-top: 40px !important;
    margin-bottom: 0 !important;
  }
  .ec-btn3 {
    margin-top: 64px !important;
    margin-bottom: 0 !important;
  }
  .ec-btn5 {
    margin-top: 80px !important;
    margin-bottom: 0 !important;
  }
  .ec-btn6 {
    margin-top: 80px !important;
    margin-bottom: 0 !important;
  }
  .feature-wrapper {
    margin: 300px auto 220px;
  }
  .support-wrapper {
    margin: 0 auto 0px;
  }
  .subsidy-wrapper {
    margin: 0 auto 220px;
  }
  .flow-wrapper {
    margin-bottom: 220px;
  }
}

@media screen and (max-width: 767px) {
  .ec-btn1 {
    margin-bottom: 60px !important;
    margin-top: 21px;
  }
  
  section#mv {
    margin: 0 0 600px;
  }
	
  #mv .ec-btn1 {
    margin-bottom: 0px !important;
    margin-top: 310px;
  }
  
  .ec-btn1-w {
    height: 72px;
    max-width: calc(100% - 40px) !important;
  }
  .ec-btn3 {
    margin-top: 44px !important;
  }
  .ec-btn5 {
    margin-top: 60px !important;
  }
  .ec-btn6 {
    margin-top: 60px !important;
    padding: 0 16px;
  }
  .mv-content {
    margin-bottom: 380px;
  }
  .feature-wrapper {
    margin: 0 auto 60px;
  }
  .support-wrapper {
    margin-bottom: 60px;
  }
  .plan-wrapper {
    margin-bottom: 15px;
  }
  .subsidy-wrapper {
    margin: 0 auto 60px;
  }
  .flow-wrapper {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 640px) {
	
	section#mv {
    	margin: 0 0 200px;
  	}
	
}

@media screen and (max-width: 480px) {
	
	section#mv {
    	margin: 0 0 150px;
	}
	
	#specialist {
		padding: 0px 20px 190px;
		width: 100%;
	}
	
	.plan-wrapper {
		padding: 80px 0 0;
	}
	
	.plan-titleText {
		line-height: 28px;
	}
		
}

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

#mv .ec-btn1 {
    margin-bottom: 0px !important;
    margin-top: 270px;
}

}

/* MV お問い合わせボタンデザイン変更 */

.mv-content {
  margin-top: 132px;
  margin-bottom: 120px;
}
.s-wrp-btn span {
  background: #F08E47 !important;
  font-size: 20px !important;
  box-shadow: 0px 3px 10px 0px rgba(70 17 68 / 60%);
  text-transform: none;
  font-weight: 500 !important;
}
.s-wrp-btn .btn-white span {
  color: #333 !important;
  background: #fff !important;
  border: 3px solid #333;
}
.s-wrp-btn .btn.pop-onhover:before {
  background: unset;
}

.topMainBackground--sp {
	display: none;	
}

@media screen and (max-width: 1700px) {
	.mv-content {
	  margin-top: 132px;
	  margin-bottom: 90px;
	}	
}

@media screen and (max-width: 1500px) {
	.mv-content {
	  margin-top: 132px;
	  margin-bottom: 0px;
	}	
	
}

@media screen and (max-width: 1200px) {
	
	.s-wrp-btn span {
		font-size: 16px !important;
		line-height: 70px;
	}
	
	.btn {
		height: 70px;
		font-size: 16px;
		line-height: 70px;
	}
}

@media screen and (max-width: 990px) {
	
	.topMainBackground--pc {
		display: none;	
	}
	
	.topMainBackground--sp {
		display: block;	
	}

}


/* PC共通ヘッダー導入に伴う調整 */
@media screen and (min-width: 768px) {
  .mv-nav {
    opacity: 0;
    visibility: hidden;
    padding-top: 90px;
  }
}

/* shopify-cases */
.shopify-cases {
  position: relative;
  padding: 0;
}
.shopify-cases .s-fixw-m {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}
.shopify-cases .case_ttl {
  font-size: 22px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 9px;
}
.shopify-cases .case_txt {
  font-size: 16px;
  margin-bottom: 32px;
  text-align: left;
}
.shopify-cases .case_content {
  display: flex;
  margin: 60px 0 20px;
}
.shopify-cases .case_content .case_img {
  width: 432px;
  margin-right: 40px;
}
.shopify-cases .case_content .case_img img {
  max-width: 100%;
}
.shopify-cases .case_content dl {
  display: flex;
  margin-bottom: 15px;
  text-align: left;
}
.shopify-cases .case_content dl dd {
  margin-right: 10px;
  font-size: 14px;
  line-height: 2;
  color:  #fff;
  font-weight: bolder;
}
.shopify-cases .case_content dl dd span {
  padding: 4px;
  background-color: #A3A3A3;
}
.shopify-cases .case_content dl dt {
  width: 100%;
}
.shopify-cases .swiper-button-next,
.shopify-cases .swiper-button-prev {
  outline: none;
}
@media screen and (max-width: 767px) {
  .mv-content {
	margin-top: 110px;
  }
  .shopify-cases {
    padding: 0 30px;
  }
  .shopify-cases .case_content {
    flex-direction: column;
    margin-top: 20px;
  }
  .shopify-cases .case_items {
    padding: 0 18px;
  }
  .shopify-cases .case_ttl {
    font-size: 24px;
  }
  .shopify-cases .case_content .case_img {
    width: 100%;
    margin: 0 0 15px 0;
  }
  .shopify-cases .swiper-button-next,
  .shopify-cases .swiper-button-prev {
    /* transform: scale(0.5); */
    border-radius: 0;
    width: 30px !important;
    height: 120px !important;
  }
  .shopify-cases .swiper-button-next {
    right: -30px;
  }
  .shopify-cases .swiper-button-prev {
    left: -30px;
  }
}

@media screen and (min-width: 761px) {
  #footer #footer_navi .w960 {
    max-width: 960px;
  }
}

/* swiper */
.cases-youtube h3 {
  font-size: 16px;
}

.cases-youtube .swiper-button-prev, .cases-youtube .swiper-button-next {
  transform: none !important;
}

.cases-youtube .swiper-button-prev, .cases-youtube .swiper-button-next {
  border-color: transparent !important;
}

.swiper-button-next,
.swiper-button-prev {
  --swiper-navigation-color: #fff;
  width: calc(var(--swiper-navigation-size)/ 44 * 48) !important;
  height: calc(var(--swiper-navigation-size)/ 44 * 48) !important;
  background-color: #3FB8AF;
  border-radius: 100px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 15px !important;
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: 'prev' !important;
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: 'next' !important;
}

/* お客様の声 */

.case-img {
  width: 100%;
}

.case-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.slide-shopify a{
  text-decoration: none;
  color: #000;
}

/* 会社紹介動画 */
#movie {
  margin-top: 100px;
  margin-bottom: 120px;


}
#movie .movie-youtube {
  margin: 0 auto;
}
#movie .movie-youtube lite-youtube {
  margin: 0 auto;
}
#movie .movie-youtube .movie-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 60px;
}
#movie .movie-youtube .text {
  max-width: 720px;
  font-size: 15px;
  margin: 0 auto 60px;
}

@media screen and (min-width: 768px) {
  #movie{
    margin-top: -100px;
  }
}
@media screen and (max-width: 767px) {
  #movie {
    margin-bottom: 60px;
  }
  #movie .movie-youtube .movie-title{
    font-size: 22px;
    margin-bottom: 30px;
  }
  #movie .movie-youtube .text{
    margin: 0 auto 30px;
  }
}


/* IT補助金の箇所追加 */

.mv-content-text p.fw-b.ithojyokin a:visited {
    color: #FFFAB9;
}

.planSupport-it {
	width: 1040px;
    margin: 0 auto;
	padding: 25px 0;
}

.planSupport-it__inner {

}

.planSupport-it__inner__attention {
    color: #FC964C;
	padding: 0 0 20px;
	line-height: 28px;
}

.planSupport-it__inner__attention--title {
	padding: 0 0 40px;	
}

.planSupport-it__inner__attention span {
    font-size: 20px;
    font-weight: 600;
}

.planSupport-it__inner__attention span a {
	color: #FC964C;
	text-decoration: underline;
}

.planSupport-it__inner__attention span a:visited {
	color: #FC964C;
}

.itPlanPlace {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.itPlanPlace__light {
    padding: 0px 0;
    text-align: center;
    border-radius: 40px 40px 40px 40px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    width: calc((100% / 3) - 15px);
    background: #EFEFEF;
}

.plan-lists .itPlanPlace__light {
	width: 100%;
    background: unset;
}

.itPlanPlace__light__title {
	color: #fff;
    padding: 20px;
    font-size: 14px;	
    line-height: 22px;
}

.plan-lists .itPlanPlace__light__title {
    padding: 30px 0 0;
}

.itPlanPlace__light.itPlanPlace__light--light .itPlanPlace__light__title {
    background-color: #39A59D;
    border-radius: 40px 40px 0 0;
}

.plan-lists .itPlanPlace__light.itPlanPlace__light--light .itPlanPlace__light__title {
    background-color: unset;
    border-radius: 0px 0px 0 0;
}

.itPlanPlace__light.itPlanPlace__light--basic .itPlanPlace__light__title {
    background-color: #BBB585;
    border-radius: 40px 40px 0 0;
}

.plan-lists .itPlanPlace__light.itPlanPlace__light--basic .itPlanPlace__light__title {
    background-color: unset;
    border-radius: 0px 0px 0 0;
}

.itPlanPlace__light.itPlanPlace__light--business .itPlanPlace__light__title {
    background-color: #DC8685;
    border-radius: 40px 40px 0 0;
}

.plan-lists .itPlanPlace__light.itPlanPlace__light--business .itPlanPlace__light__title {
    background-color: unset;
    border-radius: 0px 0px 0 0;
}

.itPlanPlace__light__title p {
	font-size: 20px;
	line-height: 30px;
}

.itPlanPlace__light__yen {
    padding: 30px 10px;
	font-size: 14px;
}

.plan-lists .itPlanPlace__light__yen {
    padding: 10px 10px;
    font-size: 14px;
	color: #fff;
}

.itPlanPlace__light__yen span {
	font-size: 20px;
	font-weight: 600;
}

@media screen and (max-width: 1050px) {
	
	.planSupport-it {
		width: 100%;
    	margin: 0 auto;
		padding: 25px 20px;
	}
}


@media screen and (max-width: 990px) {
	
	.itPlanPlace {
		flex-direction: column;
	}
	
	.itPlanPlace__light {
		width: 100%;
		margin: 0 0 20px;
	}
	
}

@media screen and (max-width: 480px) {
	
	.itPlanPlace__light__title p {
		font-size: 16px;
		line-height: 30px;
	}
	
	.itPlanPlace__light__title {
		color: #fff;
		padding: 20px;
		font-size: 12px;
		line-height: 20px;
	}
	
	.planSupport-it__inner__attention {
		color: #FC964C;
		padding: 0 0 20px;
		line-height: 28px;
		font-size: 14px;
	}
	
	.planSupport-it__inner__attention span {
		font-size: 18px;
		font-weight: 600;
	}
	
	#footer_contact .innr {
		padding: 0px;	
	}

}