@charset "utf-8";

html {
  font-size: 100%;
  scroll-behavior: smooth;
}
/* body{
  background-color: #FAFAFA;
} */
body {
font-family: 'Montserrat', sans-serif;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000000;
}
img {
  width: 100%;
}

.title {
  display: flex;
}

.ja {
  font-family: Microsoft Sans Serif;
  font-size: 40px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 5px;
  font-weight: normal;
}
.en {
  font-family: Microsoft Sans Serif;
  font-size: 12px;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.skill1 {
  background-color: #000000;
  color: #FFFFFF;
  display: inline-block;
  width: 100px;
  height: 20px;
  border-radius: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}
.skill2 {
  background-color: #000000;
  color: #FFFFFF;
  display: inline-block;
  width: 100px;
  height: 20px;
  border-radius: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}
.skill3 {
  background-color: #000000;
  color: #FFFFFF;
  display: inline-block;
  width: 100px;
  height: 20px;
  border-radius: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
  margin-top: 5px;
}
.MySkills {
  background-color: #000000;
  color: #FFFFFF;
  display: inline-block;
  width: 110px;
  height: 20px;
  border-radius: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}
.Mylicenses {
  background-color: #838383;
  color: #FFFFFF;
  display: inline-block;
  width: 110px;
  height: 20px;
  border-radius: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
  margin-bottom: 7px;
}

/* header */
#header {
  font-size: 24px;
  margin: 30px 2% 20px;
}
#header .header-wrapper {
  display: flex;
  align-items: center;
}
#header h1 {
  color: #ABC59A;
}
#header .logo1 {
  font-size: 16px;
  text-align: center;
}
#header .logo2 {
  font-size: 20px;
}
#header .navpc {
  margin-left: auto;
  text-align: center;
}
#header .ulpc {
  display: flex;
  justify-content: flex-end;
  background-color: #F7F8F9;
  border-radius: 80px;
  padding: 10px 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}
#header .lipc {
  margin: 0 10px;
  font-size: 14px;
  font-weight: bold;
  background-color: #F7F8F9;
  padding: 2px 25px;
  border-radius: 80px;
  transition: background-color 0.3s ease;
}
#header .lipc:hover {
  background-color: #5C8A39;
}

#header .lipc:hover a {
  color: #FFFFFF;
}
#header .lipc a {
  color: #5C8A39;
  transition: color 0.3s ease;
}

.hamburger {
  display: none;
  width: 30px;
  height: 19px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1003;
  position: fixed;
  top: 20px;
  right: 20px;
}
/* .hamburger.active span {
  background-color: #fff;
} */

.hamburger span {
  display: block;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== 背景オーバーレイ ===== */
.overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
#navPanel {
  position: fixed;
  top: 0; 
  right: 0;
  width: 70%;
  height: 100%;
  background: #fff;
  z-index: 1001; /* overlayより前面に */
  padding: 60px 0;
  display: none;
  box-shadow: -4px 0 10px rgba(0,0,0,0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
#navsp {
  display: none;
  position: fixed;
  transition: transform 0.3s ease;
  transform: translateX(100%);
  z-index: 1002;
  color: #000;
  /* top: 200px; right: 35px; */
}
.ulsp a {
  display: inline-block;
  width: 90%;
  font-size: 20px;
  color: #4B772A;
  /* font-weight: bold; */
  padding: 14px 36px;
  border-top: 1px solid #f0f0f0;
  transform: skew(-15deg);
}

#overlay.active {
  display: block;
}
#navPanel.active {
  display: block;
  transform: translateX(0);
}
#navSp.active {
  display: block;
  transform: translateX(0);
}
/* ===== ナビゲーション ===== */
.nav-menu.active {
  display: flex;
}



/* mainvisual */
#mainvisual {
  display: flex;
  margin-top: 200px;
}
#mainvisual .mainvisual-left {
  width: 64%;
  margin-left: 5%;
}
#mainvisual .mainvisual-title {
  font-size: 70px;
  font-weight: bold;
  color: #4B772A;
  transform: skew(-15deg);
}
#mainvisual .mainvisual-left .mainvisual-text {
  font-family: Microsoft Sans Serif;
  margin-top: 20px;
  line-height: 2.2;
}
#mainvisual .mainvisual-right {
  width: 30%;
  margin: 130px 6% 0 0;
}
/* trouble */
#trouble {
  margin-top: 100px;
}
#trouble .trouble-title {
  font-size: 32px;
  font-weight: normal;
  text-align: center;
}
#trouble .trouble-text {
  font-size: 52px;
}
#trouble .trouble-circle-container {
  display: flex;
  width: 1000px;
  justify-content: space-between;
  margin: 50px auto 35px;
}
#trouble .trouble-circle-wrapper1 {
  position: relative;
  width: 250px;
  height: 250px;
}
#trouble .trouble-circle1 {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: #ABC59A;
}
#trouble .trouble-circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  width: 80%;
}
#trouble .trouble-circle-wrapper2 {
  position: relative;
  width: 250px;
  height: 250px;
}
#trouble .trouble-circle2 {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: #ABC59A;
}
#trouble .trouble-circle-wrapper3 {
  position: relative;
  width: 250px;
  height: 250px;
}
#trouble .trouble-circle3 {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: #ABC59A;
}
.trouble-bold {
  font-weight: bold;
}
.corner-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 90px;
}
#trouble .solution-line {
  position: relative;
  height: 4px;
  background-color: #4B772A;
  width: 1000px;
  margin: 60px auto;
}
#trouble .solution-line::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  bottom: -14px;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-bottom: 4px solid #4B772A;
  border-right: 4px solid #4B772A;
}
#trouble .trouble-solution {
  font-size: 32px;
  font-weight: normal;
  text-align: center;
}
#trouble .trouble-solution-text {
  font-size: 52px;
  font-weight: bold;
  color: #4B772A;
}
/* Service */
#Service {
  display: flex;
  margin: 100px 6% 0;
}
#Service .Service-left {
  width: 10%;
}
#Service .Service-right {
  display: flex;
  width: 1000px;
  margin: 20px 0 0 3%;
  font-size: 14px;
  justify-content: space-between;
}
#Service .Service-container {
  position: relative;
  width: 30%;
  height: 480px;
}
#Service .Service-number {
  display: flex;
  align-items: center;
  font-size: 28px;
  margin-bottom: 20px;
}
#Service .number {
  margin-left: auto;
}
#Service .Service-line {
  height: 1px;
  background-color: #000000;
  width: 80%;
  margin-right: 20px;
}
#Service .Service-img {
  text-align: center;
}
#Service .Service-container img {
  width: 78%;
  height: 150px;
}
#Service .Service-title {
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0 15px;
}
#Service .Service-text {
  font-size: 16px;
}
.workflow-button {
  display: inline-flex;
  position: relative;
  width: 150px;
  align-items: center;
  justify-content: space-between;
  background-color: #f7f8f9;
  border-radius: 80px;
  padding: 10px 10px 10px 15px;
  color: #4B772A;
  text-decoration: none;
  transition: background-color 0.3s;
}
#Service .workflow-main {
  position: absolute;
  bottom: 0;
  right: 0;
}
.workflow-text {
  font-size: 10px;
}
.arrow-container {
  position: absolute;
  background-color: #5C8A39;
  padding: 0 15px 3px 15px;
  border-radius: 80px;
  bottom: 6px;  /* 位置を調整 */
  right: 7px;   /* 位置を調整 */
}
.arrow {
  display: inline-block;
  width: 25px;   /* 矢印の線の長さ */
  height: 1px;   /* 矢印の線の太さ */
  background-color: #FFFFFF; /* 矢印の色 */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: transform 0.3s ease;
  transform: translateY(-2px);
}
.arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  top: 1px;
  right: 2px;
  width: 8px;  /* 矢印の先端の長さ */
  height: 10px; /* 矢印の先端の長さ */
  border-top: 1px solid #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transform: translateY(-50%) rotate(45deg); 
}
.workflow-button:hover {
  background-color: #4B772A;
  color: #FFFFFF;
  transition: transform 0.5s ease;
}
.workflow-button:hover .arrow {
  transform: translate(7px, -2px);
  transition: transform 0.5s ease;
}
/* Works */
#Works {
  margin: 150px 8% 0 8%;
}
#Works .Works-container {
  display: flex;
}
#Works .Works-right {
  width: 15%;
  display: flex;
}
#Works .title {
  margin-left: auto;
}
#Works .Works-left {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 85%;
  margin-top: 20px;
}
#Works .Works-inner {
  width: 30%;
}
#Works .text-tiile {
  margin: 5px 0 10px;
}
#Works .workflow-main {
  display: flex;
  width: 93%;
  margin-top: 50px;
  justify-content: flex-end;
}
#Works img {
  border: 2px solid white;
  box-shadow: 0 0 5px rgba(0,0,0,0.4);
}

/* Price */
#Price {
  margin: 100px 6% 0;
}
#Price .Price-container {
  display: flex;
}
#Price .Price-left {
  width: 10%;
}
#Price .Price-right {
  position: relative;
  width: 1000px;
  margin-top: 20px;
}
#Price table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;     /* デフォルト値 */
  border-spacing: 10px; 
}
#Price .Price-title0 {
  width: 25%;
  background-color: white;
}
#Price .Price-title1 {
  font-size: 20px;
  font-weight: bold;
  background-color: #D8EFFF;
  border-radius: 10px;
  padding: 20px 0;
  width: 26%;
}
#Price .Price-title2 {
  font-size: 20px;
  font-weight: bold;
  background-color: #F6DCDC;
  border-radius: 10px;
  padding: 20px 0;
  width: 26%;
}
#Price .Price-title3 {
  font-size: 20px;
  font-weight: bold;
  background-color: #FDEBC8;
  border-radius: 10px;
  padding: 20px 0;
  width: 26%;
}
#Price .Price-menu {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
#Price .Price-menu img {
  width: 38px;
  height: 30px;
  margin-right: 20px;
  object-fit: contain;
}
#Price .Price-pay {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
#Price .Price-pay1 {
  font-size: 20px;
  font-weight: bold;
}
#Price td {
  padding: 20px 10px;
  vertical-align: middle;
  height: 100px;
}
#Price .workflow-main {
  display: flex;
  width: 93%;
  margin-top: 50px;
  justify-content: flex-end;
}
#Price .tax {
  position: absolute;
  right: 0;
  font-size: 12px;
}
#Price .Price-line1 {
  position: absolute;
  height: 1px;
  background-color: #000000;
  width: 100%;
  top: 88px;
}
#Price .Price-line2 {
  position: absolute;
  height: 1px;
  background-color: #000000;
  width: 100%;
  top: 195px;
}
#Price .Price-line3 {
  position: absolute;
  height: 1px;
  background-color: #000000;
  width: 100%;
  top: 300px;
}
/* About */
#About .container{
  display: flex;
  margin-top: 150px;
  position: relative;
  width: 100%;
  max-width: 1450px;
  height: 700px;
}
#About .About-left {
  width: 38%;
  position: absolute;
  top: 125px;
  left: 115px;
}
#About .About-left  img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
#About .About-right {
  width: 80%;
  background-color: #F3F2E6;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  padding: 80px 3% 80px 3%;
}
#About .About-text {
  display: flex;
  margin-left: 40%;
}
#About .text {
  width: 375px;
}
#About h3 {
  font-size: 36px;
  margin-bottom: 20px;
}
#About h3::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  display: block;
}
#About h4 {
  margin-bottom: 5px;
}
#About h5 {
  font-size: 18px;
  margin-bottom: 5px;
}
#About .Body {
  margin-bottom: 5px;
}
#About .title {
  width: 10%;
  margin: 0 auto;
}
#About .comment {
  overflow-wrap: break-word;
  margin-bottom: 5px;
}
#About .workflow-main {
  position: absolute;
  top: 580px;
  width: 88%;
  text-align: right;
  justify-content: flex-end;
}
/* Contact */
#Contact {
  margin: 100px 6% 0;
}
#Contact h4 {
  text-align: center;
}
#Contact .Contact-ja {
  font-size: 40px;
  font-weight: normal;
}
#Contact .Contact-en {
  font-size: 12px;
}
#Contact .Contact-text {
  font-size: 24px;
  text-align: center;
  margin-top: 60px;
}
#Contact .workflow-main {
  margin-top: 35px;
  text-align: center;
}
/* footer */
#footer {
  margin-top: 150px;
}
#footer .flex {
  background-color: #5C8A39;
  color: #FFFFFF;
}
#footer img {
  width: 100%;
  height: 100%;
}
#footer .copyright {
  text-align: center;
}


/* 下層ページ-Common */
/* Subpage-title */
.Subpage-title {
  margin: 180px 5% 0;
}
.main-title {
  color: #4B772A;
  font-size: 62px;
}
.sub-title {
  color: #4B772A;
  font-size: 16px;
  margin-bottom: 50px;
}
.text-title {
  font-size: 16px;
  line-height: 2;
}
/* contact-form */
.contact-form {
  text-align: center;
}
.contact-form-text {
  font-size: 24px;
  margin-bottom: 45px;
}
/* 下層ページ-Work-flow */
/* Work-flow */
#Work-flow {
  margin: 150px 2% 220px 2%;
  position: relative;
}
#Work-flow .Work-flow-container {
  width: 1150px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.Work-flow-wrapper {
  width: 22%;
}
.Work-flow-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #5A952D;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  text-align: center;
  margin: 0 auto 30px;
}
.Work-flow-title {
  font-size: 20px;
  font-weight: bold;
  margin: 7px 0 15px;
  text-align: center;
}
.Work-flow-text {
  font-size: 16px;
}
.Work-flow-image1 img {
  width: 30%;
  height: 100px;
  display: block;
  margin: 0 auto;
}
.Work-flow-image2 img {
  width: 45%;
  height: 100px;
  display: block;
  margin: 0 auto;
}
.Work-flow-image3 img {
  width: 40%;
  height: 100px;
  display: block;
  margin: 0 auto;
}
.Work-flow-image4 img {
  width: 55%;
  height: 100px;
  display: block;
  margin: 0 auto;
}
.triangle-wrapper {
  width: 1150px;
  margin: 0 auto;
}
.triangle1 {
  display: flex;
  position: absolute;
  top: 20px;
  left: 24%;
}
.triangle2 {
  display: flex;
  position: absolute;
  top: 20px;
  left: 45%;
}
.triangle3 {
  display: flex;
  position: absolute;
  top: 20px;
  left: 67%;
}
.triangle {
  width: 0;
  height: 0;
  margin-right: 10px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 30px solid #D9D9D9;
}
/* 下層ページ-Works */
/* Subpage-Works */
#Subpage-Works {
  margin: 150px 8% 220px 8%;
}
#Subpage-Works .Works-right {
  display: flex;
  width: 1000px;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 45px;
  margin: 0 auto;
}
#Subpage-Works .title {
  margin-left: auto;
}
#Subpage-Works .Works-inner {
  width: 30%;
}
#Subpage-Works .Works-inner-shadow {
  width: 30%;
}
#Subpage-Works .text-tiile {
  margin: 5px 0 10px;
}
#Subpage-Works img {
  border: 2px solid white;
  box-shadow: 0 0 5px rgba(0,0,0,0.4);
}
/* 下層ページ-price */
/* Subpage-price */
#Subpage-price {
  margin: 175px 3% 220px;
}
.price-table-wrapper {
    margin: 150px auto 0;
    width: 1100px;
    position: relative;
  }
table.price-table {
  width: 100%;
  border-collapse: separate;
  table-layout: fixed;
  border-spacing: 10px;
}

/* ===== 左端固定セル（共通） ===== */
.sticky-col,.sticky-col1,.sticky-col2,.sticky-col3 {
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 2;
  white-space: nowrap;
}

#Subpage-price .Subpage-price-pay {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  padding: 10px 10px;
  vertical-align: middle;
  height: 80px;
}
#Subpage-price .Subpage-price-pay1 {
  font-size: 20px;
  font-weight: bold;
}
#Subpage-price .hp-page {
font-size: 24px;
font-weight: bold;
text-align: center;
background-color: #EAEAEA;
border-radius: 10px;
}
#Subpage-price .hp-page1 {
  font-size: 16px;
  font-weight: normal;
}
#Subpage-price .hp-pixel {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  background-color: #EAEAEA;
  border-radius: 10px;
}
#Subpage-price .hp-cell-x {
  font-size: 26px;
  text-align: center;
}
#Subpage-price .hp-cell-o {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
#Subpage-price .hp-cell-o2 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  background-color: #EAEAEA;
  border-radius: 10px;
}
#Subpage-price .workflow-main {
  display: flex;
  width: 93%;
  margin-top: 50px;
  justify-content: flex-end;
}
#Subpage-price .Subpage-tax {
  text-align: right;
  font-size: 12px;
}
#Subpage-price .Subpage-tax-sp {
  display: none;
}
#Subpage-price .Subpage-price-line1 {
  position: absolute;
  height: 1px;
  background-color: #000000;
  width: 100%;
  top: 88px;
}

/* ===== ヘッダーの左端だけ1段上に ===== */
.price-table thead .sticky-col {
  z-index: 3;
  background: #fff;
  font-weight: bold;
}
.col-plan1,.col-plan2,.col-plan3 {
  border-radius: 10px;
}
.sticky-col1 {
  font-size: 24px;
  font-weight: bold;
}
.sticky-col1 img {
  width: 28px;
  height: 20px;
  margin-right: 5px;
  object-fit: contain;
}
.sticky-col2 {
  background-color: #EAEAEA;
  border-radius: 10px;
  font-size: 24px;
}
.sticky-col3 {
  font-size: 24px;
}
.Subpage-price-pay {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
.Subpage-price-pay1 {
  font-size: 10px;
  font-weight: bold;
}
.hp-page {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background-color: #EAEAEA;
  border-radius: 10px;
}
.hp-page1 {
  font-size: 12px;
  font-weight: normal;
}
.hp-cell-x {
  font-size: 18px;
  text-align: center;
}
.hp-cell-o {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.hp-cell-o2 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background-color: #EAEAEA;
  border-radius: 10px;
}
/* ===== デザイン調整 ===== */
th {
  padding: 20px;
} 
td {
  padding: 12px;
  text-align: center;
  font-size: 14px;
}
/* カラム色分け（任意） */
.col-plan1 { 
  background: #D8EFFF;
  font-size: 20px;
}
.col-plan2 {
  background: #F6DCDC;
  font-size: 20px;
}
.col-plan3 {
  background: #FDEBC8;
  font-size: 20px;
}

/* 下層ページ-About */
/* Career */
#Career {
  margin: 120px 8% 220px;
}
#Career .Career-right {
  width: 840px;
  font-size: 14px;
  justify-content: center;
  margin: 0 auto;
}
#Career .Career-right-wrapper {
  display: flex;
  margin-bottom: 10px;
}
#Career .Career-right-inner1 {
  width: 15%;
}
#Career .Career-right-inner2 {
  margin: 0 50px 5px 20px;
}
#Career .Career-right-inner3 {
  width: 80%;
}
#Career .circle {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #000000;
  margin: 3px 0 10px;
}
#Career .line1 {
  width: 1px;
  height: 100px;
  background-color: #000000;
  margin: 0 auto;
}
#Career .line2 {
  width: 1px;
  height: 330px;
  background-color: #000000;
  margin: 0 auto;
}
#Career .square {
  width: 10px;
  height: 10px;
  background-color: #000000;
  margin: 5px 0 10px;
}
#Career .date {
  font-size: 20px;
  font-family: Montserrat;
  font-weight: bold;
}
#Career .text-inner {
  display: flex;
  margin-top: 20px;
}
#Career .text-inner2 {
  margin-left: 10px;
}
#Career .Item {
  margin-bottom: 20px;
  font-family: Montserrat;
  font-weight: bold;
}
/* 下層ページ-Contact */
/* Subpage-title */
.Contact-notice {
  color: #4B772A;
  font-size: 20px;
  font-weight: bold;
  margin: 115px 0 30px;
}
.Contact-text {
  font-size: 16px;
}
.required {
  color: red;
}
/* Contact */
#Contact {
  margin: 125px auto 0;
  width: 950px;
}
.Contact-form-item {
  display: flex;
  padding: 32px 0;
  border-top: solid 1px #D9D9D9;
  border-bottom: solid 1px #D9D9D9;
  height: 100%;
}
.Contact-form-section {
  display: flex;
  padding: 32px 0;
  border-bottom: solid 1px #D9D9D9;
}
.privacy-check-item {
  display: flex;
  margin-top: 70px;
  justify-content: center;
}
.privacy-text {
  color: #4B772A;
  font-weight: bold;
  margin-left: 10px;
}
.Contact-form-taitle {
  color: #4B772A;
  font-size: 16px;
  font-weight: bold;
  width: 30%;
  height: 35px;
}
.Contact-form-article {
  width: 70%;
}
#name {
  border: solid 1px #D9D9D9;
  border-radius: 40px;
  padding: 0 20px;
  width: 100%;
  height: 35px;
}
#kana {
  border: solid 1px #D9D9D9;
  border-radius: 40px;
  padding: 0 20px;
  width: 100%;
  height: 35px;
}
#email {
  border: solid 1px #D9D9D9;
  border-radius: 40px;
  padding: 0 20px;
  width: 100%;
  height: 35px;
}
#company {
  border: solid 1px #D9D9D9;
  border-radius: 40px;
  padding: 0 20px;
  width: 100%;
  height: 35px;
}
#message {
  border: solid 1px #D9D9D9;
  border-radius: 40px;
  padding: 20px 20px;
  width: 100%;
}
button {
  background-color: #4B772A;
  color: #FFFFFF;
  padding: 7px 120px;
  border-radius: 10px;
  display: block;
  margin: 45px auto 0;
}


/* SP */
@media screen and (max-width: 960px) {
  .ja {
    font-size: 24px;
  }
  .en {
    font-size: 6px;
  }
  .skill1 {
    width: 90px;
    font-size: 12px;
  }
  .skill2 {
    width: 90px;
    font-size: 12px;
  }
  .skill3 {
    width: 90px;
    font-size: 12px;
    margin-top: 2px;
  }
  .MySkills {
    width: 70px;
    height: 15px;
    line-height: 15px;
    font-size: 10px;
  }
  .Mylicenses {
    width: 70px;
    height: 15px;
    line-height: 15px;
    font-size: 10px;
  }

  /* header */
  #header {
  font-size: 24px;
  margin: 15px 2% 20px;
  }
  #header .logo1 {
    font-size: 10px;
    text-align: center;
  }
  #header .logo2 {
    font-size: 14px;
  }
  #header .navpc {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .navsp {
    flex-direction: column;
  }

  

  /* mainvisual */
  #mainvisual {
    margin-top: 30px;
    flex-direction: column;
    position: relative;
    height: 250px;
  }
  #mainvisual .mainvisual-left {
    width: 100%;
    padding: 0 8%;
    margin-left: 0;
  }
  #mainvisual .mainvisual-left p {
    font-size: 10px;
  }
  #mainvisual .mainvisual-right {
    width: auto;
    padding: 0 8%;
  }
  #mainvisual .mainvisual-right img {
    width: 60%;
    position: absolute;
    top: 50px;
    right: 25px;
    left: auto;
    z-index: -10;
    opacity: 0.2;
  }
  #mainvisual .mainvisual-title {
    font-size: 30px;
  }
  #mainvisual .mainvisual-left .mainvisual-text {
    margin-top: 45px;
    font-size: 12px;
  }
  .line-break {
    display: none;
  }

  /* trouble */
  #trouble {
    margin-top: 40px;
  }
  #trouble .trouble-title {
    font-size: 16px;
  }
  #trouble .trouble-text {
    font-size: 28px;
  }
  #trouble .trouble-circle-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin: 25px 0 15px;
    padding: 0 2%;
  }
  #trouble .trouble-circle-wrapper1 {
    width: 120px;
    height: 120px;
  }
  #trouble .trouble-circle1 {
    width: 120px;
    height: 120px;
  }
  #trouble .trouble-circle-text {
    font-size: 14px;
    padding-left: 4px;
  }
  #trouble .trouble-circle-wrapper2 {
    width: 120px;
    height: 120px;
  }
  #trouble .trouble-circle2 {
    width: 120px;
    height: 120px;
  }
  #trouble .trouble-circle-wrapper3 {
    width: 120px;
    height: 120px;
  }
  #trouble .trouble-circle3 {
    width: 120px;
    height: 120px;
  }
  .corner-image {
    width: 30px;
    height: 48px;
  }
  #trouble .solution-line {
    height: 2px;
    width: 96%;
    margin: 20px auto 35px;
  }
  #trouble .solution-line::before {
    border-bottom: 2px solid #4B772A;
    border-right: 2px solid #4B772A;
  }
  #trouble .trouble-solution {
    font-size: 16px;
  }
  #trouble .trouble-solution-text {
    font-size: 28px;
  }
  /* Service */
  #Service {
    margin: 60px 0 0;
    padding: 0 6%;
  }
  #Service .Service-right {
    flex-direction: column;
    width: 100%;
    padding-left: 4%;
    margin: 20px 0 0;
  }
  #Service .Service-container {
    width: 100%;
    height: auto;
    padding-bottom: 80px;
  }
  #Service .Service-number {
    font-size: 24px;
    margin-bottom: 8px;
  }
  #Service .number {
    margin-left: 0;
  }
  #Service .Service-container img {
    width: 46%;
    height: 95px;
  }
  #Service .Service-title {
    font-size: 20px;
    margin: 10px 0 5px;
  }
  #Service .Service-text {
    font-size: 14px;
  }
  #Service .workflow-main {
    bottom: 30px;
  }
  /* Works */
  #Works {
  margin: 85px 0 0 ;
  padding: 0 4%;
  }
  #Works .Works-right {
    flex-direction: column;
  }
  #Works .Works-left {
    gap: 30px;
    padding: 0 5%;
  }
  #Works .Works-inner {
    width: 100%;
  }
  #Works .Works-text {
    margin-top: 5px;
  }
  #Works .text-tiile {
    margin: 0 0 2px;
  }
  #Works .workflow-main {
  width: 100%;
}
/* Price */
#Price {
  margin: 100px 0 0;
  padding-left: 6%;
}
#Price .Price-left {
  width: 10%;
}
.Subpage-price-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
#Price .Price-right {
  width: 100%;
  margin: 30px 0 0 2%;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
#Price table {
  width: 655px;
  border-spacing: 5px; 
}
#Price .Price-title0 {
  width: 12%;
}
#Price .Price-title1 {
  font-size: 16px;
  font-weight: bold;
  background-color: #D8EFFF;
  border-radius: 10px;
  padding: 10px 0;
  width: 22%;
}
#Price .Price-title2 {
  font-size: 16px;
  font-weight: bold;
  background-color: #F6DCDC;
  border-radius: 10px;
  padding: 10px 0;
  width: 22%;
}
#Price .Price-title3 {
  font-size: 16px;
  font-weight: bold;
  background-color: #FDEBC8;
  border-radius: 10px;
  padding: 10px 0;
  width: 22%;
}
#Price .Price-menu {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
#Price .Price-menu img {
  width: 26px;
  height: 20px;
  margin-right: 5px;
  object-fit: contain;
}
#Price .Price-pay {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
#Price .Price-pay1 {
  font-size: 12px;
  font-weight: bold;
}
#Price td {
  padding: 10px 0;
  vertical-align: middle;
  height: 70px;
}
#Price .workflow-main {
  display: flex;
  width: 93%;
  margin-top: 50px;
  padding-right: 6%;
  justify-content: flex-end;
}
#Price .tax {
  position: absolute;
  right: 0;
  font-size: 12px;
}
#Price .Price-line1 {
  position: absolute;
  height: 1px;
  background-color: #000000;
  width: 655px;
  top: 58px;
}
#Price .Price-line2 {
  position: absolute;
  height: 1px;
  background-color: #000000;
  width: 658px;
  top: 125px;
}
#Price .Price-line3 {
  position: absolute;
  height: 1px;
  background-color: #000000;
  width: 655px;
  top: 198px;
}
#Price .workflow-main {
  width: 100%;
}
  /* About */
  #About .container{
    flex-direction: column;
    margin-top: 50px;
    max-width: 960px;
    /* height: 700px; */
  }
  #About .About-left {
    width: 75%;
    position: absolute;
    top: 50px;
    left: 0;
  }
  #About .About-left img {
    height: 250px;
  }
  #About .About-right {
    padding: 325px 4% 40px 4%;
  }
  #About .About-text {
    flex-direction: column;
    margin-left: 0;
  }
  #About .text {
    width: 100%;
    margin-bottom: 30px;
  }
  #About h3 {
    font-size: 20px;
  }
  #About h4 {
    font-size: 10px;
  }
  #About h5 {
    font-size: 12px;
    margin: 5px 0 2px;
  }
  #About .Body {
    font-size: 10px;
  }
  #About .comment {
    font-size: 10px;
  }
  #About .title {
    position: absolute;
    top: 20px;
    right: 8%;
  }
  #About .workflow-main {
  top: 670px;
  width: 95%;
  text-align: right;
  justify-content: flex-end;
  }
  /* Contact */
  #Contact {
    width: 100%;
    margin: 100px 0 0;
    padding: 0 6%;
  }
  #Contact .Contact-ja {
    font-size: 24px;
  }
  #Contact .Contact-en {
    font-size: 6px;
  }
  #Contact .Contact-text {
    font-size: 12px;
    margin-top: 35px;
  }
  #Contact .workflow-main {
    margin-top: 35px;
    text-align: center;
  }
  /* footer */
  #footer {
  margin-top: 100px;
  }
  #footer .copyright {
    text-align: center;
    font-size: 10px;
  }
  /* --------------------------------------------- */
  /* 下層ページ-Common */
  /* Subpage-title */
  .Subpage-title {
    margin: 90px 0 0;
    padding: 0 8%;
  }
  .main-title {
    font-size: 36px;
  }
  .sub-title {
    font-size: 12px;
    margin-bottom: 35px;
  }
  .text-title {
    font-size: 14px;
    line-height: 1.6;
  }
  /* contact-form */
  .contact-form {
    text-align: center;
  }
  .contact-form-text {
    font-size: 12px;
    margin-bottom: 30px;
  }
    /* footer */
  #footer {
    margin-top: 100px;
  }

  /* 下層ページ-Work-flow */
  /* Work-flow */
  #Work-flow {
    margin: 100px 0 170px;
    position: static;
  }
  #Work-flow .Work-flow-container {
    width: 300px;
    flex-direction: column;
    gap: 30px;
  }
  .Work-flow-wrapper {
    width: 100%;
  }
  .Work-flow-circle {
    width: 45px;
    height: 45px;
    font-size: 24px;
    margin: 0 auto 15px;
  }
  .Work-flow-title {
    font-size: 18px;
    margin: 5px 0 10px;
  }
  .Work-flow-text {
    font-size: 14px;
  }
  .Work-flow-image1 img {
    width: 18%;
    height: 65px;
  }
  .Work-flow-image2 img {
    width: 28%;
    height: 75px;
  }
  .Work-flow-image3 img {
    width: 24%;
    height: 75px;
  }
  .Work-flow-image4 img {
    width: 42%;
    height: 70px;
  }
  .triangle-wrapper {
    display: none;
  }
  /* 下層ページ-Works */
  /* Subpage-Works */
  #Subpage-Works {
    margin: 100px 16% 170px 16%;
  }
  #Subpage-Works .Works-right {
    flex-direction: column;
    width: 100%;
    gap: 35px;
  }
  #Subpage-Works .Works-inner {
    width: 100%;
  }
  #Subpage-Works .Works-inner-shadow {
    display: none;
  }
  #Subpage-Works .text-tiile {
    margin: 0 0 2px;
  }
  /* 下層ページ-price */
  /* Subpage-price */
  #Subpage-price {
    margin: 100px 0 170px 3%;
  }
  .price-table-wrapper {
    margin: 50px auto 0;
    max-width: 100%;
    overflow-x: auto;
    position: relative;
    -webkit-overflow-scrolling: auto; /* iOS対策 */
  }

  table.price-table {
    width: 700px;
    min-width: 700px;
    border-collapse: separate;
    border-spacing: 5px;
    table-layout: fixed;
  }

  /* ===== 左端固定セル（共通） ===== */
  .sticky-col,.sticky-col1,.sticky-col2,.sticky-col3 {
    position: sticky;
    left: 0;
    background: #fff;
    z-index: 2;
    white-space: nowrap;
  }
  #Subpage-price .Subpage-price-pay {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    padding: 10px 10px;
    vertical-align: middle;
    height: 80px;
  }
  #Subpage-price .Subpage-price-pay1 {
    font-size: 20px;
    font-weight: bold;
  }
  #Subpage-price .hp-page {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  background-color: #EAEAEA;
  border-radius: 10px;
}
#Subpage-price .hp-page1 {
  font-size: 16px;
  font-weight: normal;
}
  #Subpage-price .hp-pixel {
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    background-color: #EAEAEA;
    border-radius: 10px;
  }
  #Subpage-price .hp-cell-x {
    font-size: 26px;
    text-align: center;
  }
  #Subpage-price .hp-cell-o {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
  }
  #Subpage-price .hp-cell-o2 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    background-color: #EAEAEA;
    border-radius: 10px;
  }
  #Subpage-price .workflow-main {
  display: flex;
  width: 93%;
  margin-top: 50px;
  justify-content: flex-end;
}
#Subpage-price .Subpage-tax {
  display: none;
}
#Subpage-price .Subpage-tax-sp {
  display: block;
  text-align: right;
  font-size: 12px;
}
#Subpage-price .Subpage-price-line1 {
  display: none;
}

  /* ===== ヘッダーの左端だけ1段上に ===== */
  .price-table thead .sticky-col {
    z-index: 3;
    background: #fff;
    font-weight: bold;
  }
  .col-plan1,.col-plan2,.col-plan3 {
    border-radius: 10px;
  }
  #Subpage-price .hp-page {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    background-color: #EAEAEA;
    border-radius: 10px;
  }
  #Subpage-price .hp-page1 {
    font-size: 12px;
    font-weight: normal;
  }
  #Subpage-price .hp-pixel {
    font-size: 12px;
    font-weight: normal;
    text-align: center;
    background-color: #EAEAEA;
    border-radius: 10px;
  }
  .sticky-col1 {
    font-size: 18px;
    font-weight: bold;
  }
  .sticky-col1 img {
    width: 28px;
    height: 20px;
    margin-right: 5px;
    object-fit: contain;
  }
  .sticky-col2 {
    font-size: 16px;
    background-color: #EAEAEA;
    border-radius: 10px;
  }
  .sticky-col3 {
    font-size: 16px;
    border-radius: 10px;
  }
  #Subpage-price .Subpage-price-pay {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
  }
  #Subpage-price .Subpage-price-pay1 {
    font-size: 10px;
    font-weight: bold;
  }
  .hp-page {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    background-color: #EAEAEA;
    border-radius: 10px;
  }
  .hp-page1 {
    font-size: 12px;
    font-weight: normal;
  }
  #Subpage-price .hp-cell-x {
    font-size: 18px;
    text-align: center;
  }
  #Subpage-price .hp-cell-o {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
  }
  #Subpage-price .hp-cell-o2 {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    background-color: #EAEAEA;
    border-radius: 10px;
  }

  /* ===== デザイン調整 ===== */
  th, td {
    padding: 12px;
    text-align: center;
    font-size: 14px;
  }

  th {
    background: #eee;
  }

  /* カラム色分け（任意） */
  .col-plan1 {
    background: #D8EFFF;
    font-size: 16px;
  }
  .col-plan2 {
    background: #F6DCDC;
    font-size: 16px;
  }
  .col-plan3 {
    background: #FDEBC8;
    font-size: 16px;
  }














  /* 下層ページ-Career */
  /* Career */
  #Career {
    flex-direction: column;
    margin: 60px 4% 170px;
  }
  #Career .Career-left {
    width: 100%;
  }
  #Career .Career-right {
    width: 100%;
    margin: 100px 5% 0;
  }
  #Career .Career-right-inner2 {
    margin: 0 20px 3px 25px;
  }
  #Career .Career-right-inner3 {
    width: 65%;
  }
  #Career .circle {
    width: 10px;
    height: 10px;
    margin: 4px 0 8px;
  }
  #Career .square {
    width: 8px;
    height: 8px;
    margin: 4px 0 8px;
  }
  #Career .date {
    font-size: 14px;
  }
  #Career .Item {
    margin-bottom: 10px;
    font-size: 12px;
  }
  #Career .Body {
    font-size: 10px;
  }
  /* 下層ページ-Contact */
  /* Contact */
  #Contact {
    margin: 100px auto 0;
    width: auto;
  }
  .Contact-notice {
    font-size: 16px;
    margin: 50px 0 15px;
  }
  .Contact-text {
    font-size: 12px;
  }
  .Contact-form-item {
    flex-direction: column;
    padding: 32px 0;
    border-top: solid 1px #D9D9D9;
    border-bottom: solid 1px #D9D9D9;
    height: 100%;
  }
  .Contact-form-section {
    flex-direction: column;
    padding: 32px 0;
    border-bottom: solid 1px #D9D9D9;
  }
  .privacy-check-item {
    display: flex;
    margin-top: 70px;
    justify-content: center;
  }
  .privacy-text {
    color: #4B772A;
    font-weight: bold;
    margin-left: 10px;
  }
  .Contact-form-taitle {
    color: #4B772A;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    height: 35px;
  }
  .Contact-form-article {
    width: 100%;
  }
  #name {
    border: solid 1px #D9D9D9;
    border-radius: 40px;
    padding: 0 20px;
    width: 100%;
    height: 35px;
  }
  #kana {
    border: solid 1px #D9D9D9;
    border-radius: 40px;
    padding: 0 20px;
    width: 100%;
    height: 35px;
  }
  #email {
    border: solid 1px #D9D9D9;
    border-radius: 40px;
    padding: 0 20px;
    width: 100%;
    height: 35px;
  }
  #company {
    border: solid 1px #D9D9D9;
    border-radius: 40px;
    padding: 0 20px;
    width: 100%;
    height: 35px;
  }
  #message {
    border: solid 1px #D9D9D9;
    border-radius: 40px;
    padding: 20px 20px;
    width: 100%;
  }
  button {
    background-color: #4B772A;
    color: #FFFFFF;
    padding: 7px 120px;
    border-radius: 10px;
    display: block;
    margin: 45px auto 0;
  }
}