@charset "UTF-8";
/* CSS Document */

:root {
  --main-color-1: #009944;
  --main-color-2: #6fba2c;
}

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 400px;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*
Base style
*/
html {
  margin: 0;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05rem;
  font-weight: 400;
  color: #333;
  background-color: #fff;
  height: 100%;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

/* レイアウト調整 */
.container {
  max-width: clamp(100%, 90%, 1200px);
  /* 小さい画面で960px固定にならないように */
  margin: 0 auto;
}

.wrapper {
  padding: 0 1.5rem;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 0.9rem;
  }

  .wrapper {
    padding: 0 1rem;
  }
}

@media screen and (max-width: 480px) {
  body {
    font-size: 0.85rem;
  }

  .wrapper {
    padding: 0 0.8rem;
  }
}


/* ===== header ===== */
#header {
  display: block;
  margin: 0;
  padding: 0 1rem;
}

@media screen and (max-width: 768px) {
  #header {
    padding: 0;
  }
}

#gnav {
  /* position: fixed; */
  /* background-color: rgba(200, 200, 200, 0.4); */
  width: 100%;
  top: 0;
  z-index: 200;
}


.nav-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .nav-box {
    width: 100%;
    height: 60px;
    padding: 20px;
    margin: 0 auto;
  }
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.pc-menu-btn {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media screen and (max-width: 768px) {
  .pc-menu-btn {
    display: none;
  }
}

.pc-menu-btn a {
  display: inline-block;
  width: 140px;
  padding: 12px 0;
  text-align: center;
  font-weight: bold;
  border-radius: 2px;
  transition: 0.3s;
  color: #fff;
}

.contact-btn a {
  background: #7ac943;
}

.entry-btn a {
  background: #00a651;
}

.pc-menu-btn a:hover {
  opacity: 0.8;
}

h1.logo {
  display: flex;
  align-items: center;
  margin: 0;
}

h1.logo a {
  width: 300px;
  height: auto;
}

@media screen and (max-width: 768px) {
  h1.logo a {
    width: 200px;
  }
}

h1.logo:hover {
  transition: 0.5s;
  opacity: 0.7;
}

.nav-box ul {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.pc-nav a {
  display: inline-block;
  padding: 0 1.5rem;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

/* 縦線（border-left）がある要素に余白調整 */
.border-left {
  border-left: 1px solid var(--main-color-2);
  padding-left: 1rem;
}

/* pc表示 hamburger menu 消す*/
.global-nav__list,
.global-nav__buttons {
  display: none;
}

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

  /* hamburger menu */
  .nav-group {
    display: none;
  }

  .global-nav {
    position: fixed;
    right: -480px;
    top: 0;
    width: 300px;
    height: 100vh;
    padding-top: 60px;
    background-color: #f3f5fb;
    transition: all .6s;
    z-index: 200;
    overflow: auto;
  }

  .hamburger {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 300;
  }

  .global-nav__list {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .global-nav__item {
    text-align: center;
    padding: 0 14px;
    font-size: 16px;
  }

  .global-nav__item a {
    display: block;
    padding: 20px 0;
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }

  /* li.global-nav__item:hover {
    background-color: #fff;
  } */

  /* ボタンコンテナ */
  .global-nav__buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  /* 共通ボタンスタイル */
  .gnav-btn {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    padding: 12px 0;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
  }

  /* お問い合わせボタン（明るい緑） */
  .gnav-btn.contact {
    background-color: #7ac943;
  }

  /* お申し込みボタン（濃い緑） */
  .gnav-btn.entry {
    background-color: #00a651;
  }

  .gnav-btn:hover {
    opacity: 0.8;
  }

  .hamburger__line {
    position: absolute;
    left: 15px;
    width: 18px;
    height: 1px;
    background-color: #333;
    transition: all .6s;
  }

  .hamburger__line--1 {
    top: 14px;
  }

  .hamburger__line--2 {
    top: 20px;
  }

  .hamburger__line--3 {
    top: 26px;
  }

  .black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  /* Open CSS */
  .nav-open .global-nav {
    right: 0;
  }

  .nav-open .black-bg {
    opacity: .7;
    visibility: visible;
  }

  .nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 20px;
  }

  .nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
  }

  .nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 20px;
  }
}

/* hamburger menu ここまで */

/* 共通スタイル */
.title-center {
  text-align: center;
}

h2.title {
  color: var(--main-color-1);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.7;
  padding-top: 100px;
  display: inline-block;
  text-align: center;
  border-bottom: solid 5px;
  border-image: var(--main-color-1);
  border-image-slice: 1;
}

p.title-sub {
  color: var(--main-color-1);
  font-size: 30px;
  font-weight: 500;
  margin-top: 70px;
  margin-bottom: 40px;
  text-align: center;
}

.title-text {
  font-size: 18px;
  text-align: center;
  line-height: 2.2;
  margin-bottom: 70px;
  letter-spacing: 1.2;
}

/* ============================
  レスポンシブ対応
   ============================ */
@media screen and (max-width: 768px) {
  h2.title {
    font-size: 32px;
    padding-top: 80px;
  }

  p.title-sub {
    font-size: 24px;
    margin-top: 50px;
    margin-bottom: 30px;
  }

  .title-text {
    font-size: 17px;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 480px) {
  h2.title {
    font-size: 26px;
    padding-top: 60px;
    border-bottom: solid 3px;
  }

  p.title-sub {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 25px;
  }

  .title-text {
    font-size: 16px;
    margin-bottom: 40px;
  }
}


/* ここからFV */
#fv {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.header-bg {
  width: 100%;
  height: auto;
}

.header-bg picture,
.header-bg img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .header-bg img {
    max-height: 600px;
  }
}

@media screen and (max-width: 480px) {
  .header-bg img {
    max-height: 500px;
  }
}

/* ここから 問題解決 */
.circle_flexAll {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 40px 20px;
}

.circle_flexAll_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.circle_bg1 {
  background: var(--main-color-1);
}

.circle_bg2 {
  background: var(--main-color-2);
}

.circle_bg3 {
  background: var(--main-color-1);
}

.circle_text {
  font-size: 20px;
  padding: 20px;
  white-space: normal;
  word-break: break-word;
  color: #fff;
}

/* 矢印の調整 */
.img-center {
  text-align: center;
  margin: 20px 0 50px;
}

.arrow-img {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto;
}

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

  .circle_flexAll {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .circle_flexAll_inner {
    flex-basis: 100%;
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

@media screen and (max-width: 768px) {
  .circle_flexAll {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .circle_flexAll_inner {
    flex-basis: 100%;
    width: 100%;
    max-width: 280px;
  }

  .circle_text {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .circle_flexAll_inner {
    max-width: 250px;
  }

  .circle_text {
    font-size: 20px;
  }

  .arrow-img {
    width: 80px;
  }
}

.dxBox {
  position: relative;
  width: 100%;
  height: 400px;
  background: url("../images/PC_sozai/bg_pc.webp") no-repeat center/cover;
}

@media screen and (max-width: 768px) {
  .dxBox {
    height: 300px;
    background: url("../images/SP_sozai/bg_sp.webp") no-repeat center/cover;
  }
}

@media screen and (max-width: 480px) {
  .dxBox {
    height: 250px;
  }
}

.dx-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  width: 80%;
  padding: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .dx-inner {
    max-width: 500px;
    padding: 30px;
  }
}

@media screen and (max-width: 480px) {
  .dx-inner {
    max-width: 90%;
    padding: 20px;
  }
}

.title-dx {
  color: var(--main-color-1);
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .title-dx {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .title-dx {
    font-size: 18px;
  }
}

/* ここまで 問題解決 */

/* ここからサービス */
/* サービスセクション全体 */
#service .service-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 50px 0;
}

/* テーブル全体 */
#service .service-table {
  width: 100%;
  max-width: 800px;
  border-collapse: separate;
  text-align: left;
  font-size: 16px;
  background: #fff;
  border: 2px solid var(--main-color-1);
  margin: 0 auto;
  /* 確実に中央寄せ */
}

/* 見出し部分 */
#service .service-header {
  background: var(--main-color-1);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 15px;
  text-align: center;
}

#service .service-subheader {
  color: #333;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  padding: 20px;
}

#service .service-subheader .service-subheader-text-color {
  color: var(--main-color-1);
}

/* 番号のスタイル */
#service .service-number {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 5px;
  width: 40px;
  background: #f6faf1;
}

/* ChatGPT のリンク部分 */
#service .service-title {
  color: var(--main-color-1);
  font-weight: bold;
  padding-left: 10px;
}

/* 説明文 */
#service .service-desc {
  padding: 10px;
}

/* 行のボーダー */
#service .service-table th,
#service .service-table td {
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #ccc;
}

/* レスポンシブ対応（横スクロールなし） */
@media screen and (max-width: 768px) {
  #service .service-box {
    display: flex;
    justify-content: center;
    padding: 25px 0;
  }

  #service .service-table {
    font-size: 14px;
    width: 100%;
    max-width: 600px;
    /* スマホ時に少し小さめに */
  }

  #service .service-header {
    font-size: 18px;
  }

  #service .service-subheader {
    font-size: 14px;
  }

  #service .service-number {
    width: 30px;
    font-size: 14px;
  }

  #service .service-table th,
  #service .service-table td {
    padding: 8px;
    font-size: 13px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 480px) {
  #service .service-table {
    font-size: 14px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

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

.text-center .training-text-sub {
  font-size: 14px;
  padding-bottom: 100px;
}


/* 価格 */
#price {
  background: #f6faf1;
  /* padding: 60px 0; */
  text-align: center;
}

/* 価格全体のコンテナ */
.price-container {
  margin-top: 20px;
  padding-bottom: 100px;
  text-align: center;
}

/* 価格全体 */
.price-value {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  /* 余白を狭める */
  position: relative;
}

/* Google Fontsを読み込む（Oswaldを使用） */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');

/* 12,600 */
.price-number {
  font-size: 90px;
  font-weight: 900;
  letter-spacing: 1px;
  font-family: 'Oswald', sans-serif;
  display: block;
  line-height: 1;
  position: relative;
  top: 8px;
  /* 「円」に合わせる */
}

/* 「税込」や「円/人・日」をまとめる */
.price-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* 左右を中央揃え */
  position: relative;
}

.price-tax {
  font-size: 16px;
  position: static;
  top: auto;
  left: auto;
  transform: none;
}

.price-unit-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.price-unit-big {
  font-size: 50px;
  font-weight: bold;
  display: block;
  line-height: 1;
  text-align: center;
}

.price-unit-small {
  font-size: 24px;
  margin-left: 5px;
  line-height: 1;
}

/* ラベル（黄色部分） */
.price-labels {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 35px;
}

/* ラベルのデザイン */
.price-label {
  background: #fff000;
  color: #222;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 50px;
  display: flex;
  /* フレックスボックスを適用 */
  align-items: center;
  /* 上下中央揃え */
  justify-content: center;
  /* 横方向中央揃え */
  text-align: center;
  min-width: 150px;
}

/* 数字を強調 */
.price-label .price-label-text-big {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 5px;
  vertical-align: middle;
  line-height: 1;
}

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

  .price-number {
    font-size: 70px;
  }

  /* 「税込」部分 */
  .price-tax {
    font-size: 16px;
    font-weight: bold;
    margin-left: 8px;
    position: static;
    top: auto;
    left: auto;
    transform: none;
  }

  /* 「円」と「/人・日」を横並びに */
  .price-unit-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  /* 「円」を大きく */
  .price-unit-big {
    font-size: 40px;
    font-weight: bold;
    display: block;
    line-height: 1;
    text-align: center;
  }

  /* 「/人・日」を小さく */
  .price-unit-small {
    font-size: 20px;
    margin-left: 3px;
  }

  .price-label {
    font-size: 12px;
  }

  .price-label .price-label-text-big {
    font-size: 20px;
  }
}


/* 会社概要 */

/* 会社概要セクション */
#company-info .table {
  padding: 60px 0 100px;
}

#company-info table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0 40px;
}

#company-info th {
  width: 150px;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
  padding-right: 20px;
  white-space: nowrap;
  font-size: 16px;
}

#company-info td {
  vertical-align: top;
  line-height: 1.8;
  font-size: 16px;
}

.business-list {
  list-style-type: disc;
}

.business-list li {
  margin-bottom: 4px;
}

/* レスポンシブ対応 */

@media screen and (max-width: 480px) {
  #company-info .table {
    border-spacing: 0 24px;
    padding: 50px 30px 0;
  }

  #company-info tr {
    display: block;
    margin-bottom: 24px;
  }

  #company-info th,
  #company-info td {
    display: block;
    width: 100% !important;
    padding: 0;
    font-size: 14px;
  }

  #company-info th {
    margin-bottom: 4px;
    font-weight: bold;
    color: #222;
  }

  #company-info td {
    font-size: 14px;
    line-height: 1.8;
  }

  .business-list {
    margin-top: 8px;
  }

  .business-list li {
    margin-bottom: 6px;
    font-size: 14px;
  }
}

/* @media screen and (max-width: 768px) {
  #company-info table {
    max-width: 100%;
  }

  #company-info th,
  #company-info td {
    font-size: 14px;
  }

  #company-info th {
    width: 30%;
  }

  #company-info td {
    width: 70%;
  }
}

@media screen and (max-width: 480px) {
  #company-info .table {
    padding: 40px 0 80px;
  }

  #company-info th,
  #company-info td {
    font-size: 13px;
  }

  .business-list li {
    margin-bottom: 3px;
  }
} */




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

/* #company-info .table {
  padding-top: 60px;
  padding-bottom: 100px;
}

#company-info table {
  width: 100%;
  max-width: 600px;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto;
}

#company-info th,
#company-info td {
  text-align: left;
  padding: 15px 20px;
  vertical-align: middle;
}


#company-info th {
  width: 180px;
  font-weight: bold;
  white-space: nowrap;
}

#company-info td {
  width: calc(100% - 180px);
}

@media screen and (max-width: 768px) {
  #company-info table {
    width: 100%;
    max-width: 100%;
  }

  #company-info th,
  #company-info td {
    padding: 10px;
    font-size: 14px;
  }

  #company-info th {
    width: 30%;
  }

  #company-info td {
    width: 70%;
  }
}

@media screen and (max-width: 480px) {
  #company-info .table {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  #company-info th,
  #company-info td {
    font-size: 13px;
    padding: 8px;
  }

  #company-info th {
    width: 35%;
  }

  #company-info td {
    width: 65%;
  }
} */


/* ここから お問い合わせ */
#contact {
  background: #f6faf1;
  text-align: center;
}

.contactBox {
  padding-bottom: 50px;
}

.contact-text {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 1.2;
  margin: 50px 0;
}

.contact-note {
  font-size: 13px;
  margin-top: 20px;
}

#contact a.btn {
  display: block;
  text-align: center;
  text-decoration: none;
  width: 420px;
  margin: 0 auto;
  padding: 15px 20px;
  font-size: 21px;
  font-weight: bold;
  background: var(--main-color-2);
  color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
  transition: 0.5s;
}

a.btn:hover {
  color: #fff;
  opacity: 0.5;
}

/* ここから お申し込み */
#apply {
  text-align: center;
}

.contactBox {
  padding-bottom: 50px;
}

.contact-text {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 1.2;
  margin: 50px 0;
}

.contact-note {
  font-size: 13px;
  margin-top: 20px;
}

#apply a.btn {
  display: block;
  text-align: center;
  text-decoration: none;
  width: 420px;
  margin: 0 auto;
  padding: 15px 20px;
  font-size: 21px;
  font-weight: bold;
  background: var(--main-color-1);
  color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
  transition: 0.5s;
}

a.btn:hover {
  color: #fff;
  opacity: 0.5;
}

/* 会社ロゴ＆メニュー */
/* フッター全体 */
.contact-footer {
  text-align: center;
  padding: 50px 0;
}

/* ロゴ画像 */
.footer-logo img {
  width: 350px;
  max-width: 100%;
  height: auto;
}

/* ナビゲーション */
.footer-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px 0 50px;
  padding: 0;
  list-style: none;
}

/* メニュー項目 */
.footer-nav ul li {
  font-size: 16px;
  font-weight: bold;
  position: relative;
}

/* メニューのリンク */
.footer-nav ul li a {
  text-decoration: none;
  color: #333;
  padding: 0 15px;
}

/* 縦線（区切り）を追加 */
.footer-nav ul li:not(:first-child) {
  border-left: 2px solid var(--main-color-1);
  padding-left: 15px;
}

@media screen and (max-width: 768px) {
  .contact-text {
    font-size: 16px;
  }

  a.btn {
    width: 100%;
    max-width: 300px;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .footer-nav ul li:not(:first-child) {
    border-left: none;
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .footer-nav {
    display: none;
  }

  .footer-logo img {
    width: 200px;
  }
}



/* ここまで お問い合わせ */

/* ここから footer */
.footer {
  background: #d3cdc9;
  padding: 2rem;
  font-size: 14px;
  color: #fff;
  text-align: center;
}

/* ここまで footer */

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}



/* ====== Responsive Tablet start ====== */

@media (max-width: 768px) {
  .pc_only {
    display: none;
  }

  .sp_only {
    display: block;
  }
}