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

:root {
  --Primary-color: #4584a7;
  --Accent-color: #fff674;
  --bg-color: #e6e9ec;
  --button-color: #F18F01;
}

/* 共通スタイル */
body {
  font-family: '游ゴシック', 'YuGothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, 'メイリオ', Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  color: #000;
  line-height: 1.8;
}

img {
  width: 100%;
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  margin: 0 15px 50px;
  padding-top: 50px;
  letter-spacing: 0.05em;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

strong {
  font-size: 3.4rem;
  font-weight: 600;
  color: var(--Primary-color);
}

.wrap {
  margin-left: auto;
  margin-right: auto;
}

.col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* ボタン関連 */
.button_area {
  margin: 80px 20px 0px;
  text-align: center;
}

.button_area a,
.lead a,
a.zoom {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  background: var(--button-color);
  padding: 10px 60px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.button_area a:hover,
.lead a:hover,
a.zoom:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.lead a {
  margin-top: 15px;
  background: #fff;
  color: #257aaf;
}

.appeal {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 41px 0 9px;
}

/* テキスト関連 */
.sub_msg {
  text-align: center;
  font-size: 1.1rem;
  margin: -35px 20px 0;
  color: #000;
}

.pcbr {
  display: none;
}

/* メインビジュアル */
#mv {
  /* background: #257aae; */
  background-image: url(../img/bg.png);
  background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: left top;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.mv {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 600px;
  display: flex;
  flex-direction: row;
  padding: 0 40px;
  gap: 40px;
  z-index: 0;
}

#mv img {
  width: 65%;
  position: absolute;
  right: -180px;
  top: 50px;
  max-width: 1000px;
}

.badge {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  position: relative;
  z-index: 1;
  margin-bottom: 4%;
}

.badge-item {
  position: relative;
  width: 180px;
  height: 180px;
  background-image: url('../img/mglp/badge.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-item span {
  font-size: 3.3rem;
  font-weight: 600;
  color: #257aae;
  padding-right: 2px;
}

.shadow-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  box-shadow: 0px 1px 15px #0e476a;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.badge-item p {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
  text-align: center;
}

.lead {
  max-width: 640px;
  padding-top: 24%;
  padding-left: 60px;
  padding-bottom: 10%;
  position: relative;
  z-index: 1;
}

.lead h1 {
  color: #fff;
  font-size: clamp(1.5rem, 4.1vw, 3.1rem);
  line-height: 1.4;
  text-align: left;
  margin: 0 0 25px;
  padding: 0;
  font-weight: 600;
  letter-spacing: 0.05em;
  filter: drop-shadow(0px 0px 5px var(--Primary-color));
}

.lead p {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 8px;
  filter: drop-shadow(0px 0px 5px var(--Primary-color));
}

.lead a {
  display: inline-block;
  margin-top: 15px;
  background: #fff;
  padding: 15px 30px;
  font-size: 1.2rem;
  border-radius: 50px;
  color: #257aaf;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lead a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.sllp {
  padding-top: 150px;
}

.sllp h2 {
  font-size: 3rem;
  line-height: 3.5rem;
}



/* 問題点セクション */
#ploblem {
  background: var(--bg-color);
  padding: 80px 0 70px;
  margin-bottom: 40px;
  position: relative;
}

#ploblem span {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 40px 0 40px;
  border-color: var(--bg-color) transparent transparent transparent;
}

#ploblem h2 {
  font-size: 2.4rem;
  margin-bottom: 35px;
}

#ploblem .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

#ploblem .col {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 0 auto;
  align-items: stretch;
}

#ploblem .row {
  height: auto !important;
  width: calc(33.333% - 20px);
  text-align: center;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: transform 0.3s ease;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}

#ploblem .row:hover {
  transform: translateY(-5px);
}

#ploblem .row img {
  margin: 20px auto 10px;
  /* width: 192px; */
  width: 23vw;
  max-width: 330px;
  height: 200px;
  object-fit: contain;
  flex-shrink: 0;
}

#ploblem .row h3 {
  font-size: 1.3rem;
  padding: 22px 15px;
  line-height: 1.6;
  font-weight: 600;
  margin: 0;
  flex-shrink: 0;
  background: #333;
  color: #fff;
}

#ploblem .row p {
  text-align: left;
  font-size: 1rem;
  line-height: 1.8;
  padding: 22px 28px;
  margin: 0;
  flex-grow: 1;
}

/* ソリューションセクション */
#solution {
  padding: 0px 0 70px;
  background: #fff;
}

#solution h2 {
  font-size: 2.4rem;
  margin-bottom: 50px;
}

#solution .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

#solution .col {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 0 auto 120px;
  align-items: stretch;
}

#solution .row {
  height: auto !important;
  width: calc(33.333% - 20px);
  text-align: center;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
#solution .row span {
  font-size: 85%;
  color: var(--Accent-color);
}

#solution .row:hover {
  transform: translateY(-5px);
}

#solution .row img {
  margin: 20px auto 10px;
  /* width: 192px; */
  width: 23vw;
  max-width: 330px;
  height: 200px;
  object-fit: contain;
  flex-shrink: 0;
}

#solution .row h3 {
  font-size: 1.3rem;
  padding: 22px 15px;
  line-height: 1.6;
  font-weight: 600;
  margin: 0;
  flex-shrink: 0;
  background: var(--Primary-color);
  color: #fff;
}

#solution .row p {
  text-align: left;
  font-size: 1rem;
  line-height: 1.8;
  padding: 22px 28px;
  margin: 0;
  flex-grow: 1;
}

/* トレーニングセクション */
.fl_box {
  display: flex;
  flex-wrap: wrap;
}
.wrap {
  max-width: 1024px;
  margin: 0px auto;
  padding: 0 15px;
}
#training {
  background-image: url(../img/bg_gray.png);
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: left top;
  padding: 10px 0 30px;

}

#training h2 {
  font-size: clamp(1.5rem, 4.1vw, 3.3rem);
    display: block;
      width: fit-content;
  background-color: var(--Primary-color);
  color: #fff;
  padding: 10px 30px;
  text-align: center;
  margin: 80px auto 50px;
  line-height: 1.2;
}

#training h3 {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
}

#training .board_img {
  max-width: 600px;
  margin: 0 auto;
}

#training .board_img img {
  /* filter: drop-shadow(4px 4px 4px rgb(85 85 120 / 50%)); */
}

#training .fl_box {
  gap: 2px;
  margin-bottom: 40px;
  margin-top: 30px;
  justify-content: center;
  align-items: center;
}



#training .fl_box .board_box {
  flex: 8;
}

#training .fl_box h3 {
  background-color: var(--Primary-color);
  color: #fff;
  border-radius: 20px;
  width: 80%;
  margin: 0 auto 10px;
}

#training .fl_box div p {
  margin-top: 10px;
  display: inline-block;
  min-height: 70px;
}

#training .arrow {
  flex: 1;
}

/* サービスセクション */
#service {
  padding: 0px 0 90px;
  color: #fff;
  background-image: url("../img/sv_bg.png");
  background-position: center;
  background-size: cover;
}

#service h2 {
  color: #000;
  font-size: 2.3rem;
  margin-bottom: 10px;
  padding-top: 100px;
}

#service .sub_msg {
  color: #000;
  text-align: center;
  margin-top: 20px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 28px;
}

#service .sub_msg--second {
  background-color: white;
  display: inline-block;
  width: fit-content;
  text-align: center;
  margin: 20px auto 8px;
  padding: 2px 6px;
  font-weight: bold;
}

#service .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#service .col {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}

#service .row {
  aspect-ratio: 1/1;
  text-align: center;
  color: #000;
  flex: 1;
  border-radius: 50%;
  margin: 15px 0;
  background-color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0px 1px 15px rgb(167 167 167);
  max-width: 300px;
  width: 100%;
}

#service img {
  width: 100px;
  margin-bottom: 8px;
}

#service h3 {
  font-size: clamp(16px, 5vw, 24px);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  width: 100%;
}

#service .row p {
  font-size: clamp(12px, 1.3vw, 16px);
}

/* 受講者コメントセクション */
#survey h2 {
  padding-top: 100px;
}
#survey .col {
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  padding: 0 80px;
  box-sizing: border-box;
  gap: 30px;
  margin: 0 auto 100px;
}
#survey .row {
  flex: 1;
  width: calc(100% - 180px);
  background-color: #f8f8f8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
}
#survey .row:nth-child(2) {
  transform: translateX(50px);
}
#survey .row:nth-child(3) {
  transform: translateX(100px);
}
#survey .row p {
  font-size: 1.2rem;
  line-height: 1.8;
}

#survey .row p::first-letter {
  font-size: 2.4rem;
  font-weight: bold;
  float: left;
  margin-right: 4px;
  margin-top: 6px;
  line-height: 1;
  color: var(--Primary-color);
}

#survey h3 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin: 0 0 50px;
  letter-spacing: 0.05em;
}

.chart-wrapper {
  display: flex;
  justify-content: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto 120px;
  padding: 0 30px;
}

.chart-container {
  display: flex;
  align-items: left;
  gap: 2rem;
  font-family: sans-serif;
  flex-direction: column;
}

.pie-chart {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: conic-gradient(#36a2eb 0% 74.4%,
      #ff6384 74.4% 89.8%,
      #ffce56 89.8% 100%);
  animation: rotateIn 1s ease-out;
  position: relative;
  margin: 0 auto;
}

.chart-container-second .pie-chart {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: conic-gradient(#36a2eb 0% 83.3%,
      #ff6384 83.3% 100%);
  animation: rotateIn 1s ease-out;
  position: relative;
}

.pie-chart::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  z-index: 1;
}
.chart-container-second .pie-chart::after {
  content: "83.3%";
  color: white;
  font-weight: bold;
  position: absolute;
  top: 158px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.pie-chart::after {
  content: "74.4%";
  color: white;
  font-weight: bold;
  position: absolute;
  top: 158px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.chart-labels {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.label:nth-child(1) {
  font-weight: bold;
  font-size: 1.2rem;
}

.label::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

.label[data-color="#ff6384"]::before {
  background: #ff6384;
}

.label[data-color="#36a2eb"]::before {
  background: #36a2eb;
}

.label[data-color="#ffce56"]::before {
  background: #ffce56;
}

.client-slider {
  display: flex;
  overflow: hidden;
  width: 100%;
  background: #fff;
  padding: 20px 0;
  position: relative;
}

.slider-track {
  display: flex;
  animation: slide 80s linear infinite;
  gap: 20px;
}

.client-slider img {
  width: fit-content;
  max-width: 150px;
  min-width: 100px;
  height: 40px;
  object-fit: contain;
  margin: 0 20px;
  flex-shrink: 0;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-slider:hover .slider-track {
  animation-play-state: paused;
}

.chart-container h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-left: 1.2em;
}

.chart-container h4::before {
  content: "■";
  position: absolute;
  left: 0;
  color: var(--Primary-color);
}

/* @keyframes rotateIn {
  from {
    transform: rotate(-90deg);
    opacity: 0;
  }

  to {
    transform: rotate(0deg);
    opacity: 1;
  }
} */



/* 特徴セクション */
#feature * {
  box-sizing: border-box;
}
#feature {
  background: #f8f8f8;
}

#feature .box {
  max-width: 1200px;
  margin-bottom: 120px;
}
#feature .wrap {
  max-width: 1200px;
  padding: 0 40px;
}

#feature .col {
  align-items: flex-start;
  gap: 40px;
}

.col_right {
  flex-flow: row-reverse;
}

#feature .row {
  flex: 2;
}
#feature .row:nth-child(1) {
  flex: 3;
}

.number {
  font-size: 2.9rem;
  font-weight: 600;
}

#feature h2 {
  padding-top: 100px;
}
#feature h3 {
  font-size: 2.6rem;
  line-height: 3rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  margin-bottom: 32px;
}

#feature .text {
  font-size: 1rem;
  line-height: 1.5;
  /* letter-spacing: 0.08rem; */
  line-height: 1.8;
}

#feature .row .ft_img {
  display: block;
  /* max-width: 500px; */
  width: 100%;
  height: 350px;
  object-fit: contain;
  object-position: center;
  margin-top: 50px;
}

#feature .button_area {
  padding-bottom: 120px;
}

/* 研修セクション */
#learning {
  background-color: var(--bg-color);
  padding: 30px 0 120px;
}

#learning .fl_box {
  justify-content: space-around;
  gap: 20px;
}

#learning .content {
  position: relative;
}

#learning .fl_box .content_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0px 5px 12px #5c5c5c;
}

#learning .fl_box .content_item div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
}
#learning .fl_box .content_item div h3 {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: center;
}

/* #learning .fl_box内の最後の.content_item */
#learning .fl_box .content_item:last-child {
  margin-bottom: 0;
}

#learning .fl_box .content_item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  word-break: keep-all;
  color: var(--Primary-color);
}

#learning .fl_box .content_item p {
  margin-top: 20px;
  text-align: center;
  padding: 0 26px;
}

#learning .fl_box .content_item:has(ul) p {
  margin-top: 0px;
}

#learning .fl_box .content_item ul {
  text-align: left;
  list-style: circle;
  padding: 0 0 0 17px;
}
#learning .fl_box .content_item ul ul {
  margin-top: 0px;
  text-align: left;
  padding: 0 0 0 20px;
}

#learning .fl_box .content_item li {
  list-style: disc;
  line-height: 1.3;
  padding-bottom: 10px;
}
#learning .fl_box .content_item ul ul li {
  list-style: circle;
}

/* 内容セクション */
#detail {
  position: relative;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 30px 0 50px;
}

#detail .wrap {
  margin: 0 auto;
  max-width: 700px;
}

#detail table {
  /* 隙間の設定 */
  border-collapse: separate;
  width: 100%;
  border-spacing: 20px;
  vertical-align: top;
}

#detail th {
  width: 30%;
  text-align: center;
  padding: 0;
  border: solid 3px var(--Primary-color);
  background-color: var(--bg-color);
  color: var(--Primary-color);
  border-radius: 5px;
  margin: 0 auto;
  font-size: 1.3rem;
  font-weight: bold;
}

#detail td span {
  font-size: 1rem;
}

#detail td {
  word-break: keep-all;
}

#detail td:first-child {
  width: 30%;
}


/* 事例セクション */
#cases .row {
  height: auto !important;
  background-color: #fff;
  box-shadow: 1px 1px 13px #efefef;
  flex: 1;
  padding: 10px 10px 20px;
}

#cases .wrap {
  margin-bottom: 70px;
}
#cases .col {
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: stretch;
}

.cp_name {
  font-size: 0.9rem;
  background: rgb(255 255 255 / 95%);
  position: relative;
  display: inline-block;
  top: -34px;
  padding: 0 6px;
}

.comment {
  font-size: 0.9rem;
  line-height: 1.4rem;
  margin: 0 8px;
}

.voice {
  text-align: left;
  position: relative;
  top: -10px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 8px;
}

/* フローセクション */
#flow {
  padding: 20px 0 60px;
  background-color: var(--bg-color);
}

#flow h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--Primary-color);
}

#flow .wrap {
  max-width: 1024px;
}

#flow .button_area {
  margin: 50px 20px 0;
}

.flow_area {
  margin: 40px 0 45px;
  display: flex;
  justify-content: space-between;
}

.flow_one {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(25% - 30px);
  height: 80px;
  background-color: #fff;
  position: relative;
  font-weight: 600;
}

.flow_one span {
  display: block;
  position: absolute;
  top: 0;
  right: -25px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 0 40px 25px;
  border-color: transparent transparent transparent #fff;
}

.flow-text {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 20px;
}

.flow-text_one {
  width: calc(50% - 20px);
}

.flow-text_one p {
  font-size: 0.95rem;
  line-height: 1.8rem;
  letter-spacing: 0.05rem;
}

.flow_one:nth-child(2),
.flow_one:nth-child(4) {
  background-color: var(--Primary-color);
  color: #fff;
}

.flow_one:nth-child(2) span {
  border-color: transparent transparent transparent var(--Primary-color);
}

/* メッセージセクション */
#message {
  background: #000;
  padding: 35px 0 65px;
}

#message h2 {
  color: #fff;
  margin: 30px 0 20px;
  padding-top: 0px;
}

.msg_area {
  max-width: 800px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}

.msg_area p {
  color: #fff;
  margin-bottom: 30px;
}

/* お問い合わせセクション */
#contact {
  padding: 20px 0 60px;
}

/* FAQセクション */
#faq {
  padding: 30px 0;
  background-color: var(--bg-color);
}

.faq_box {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq_one {
  text-align: left;
  border-bottom: solid 1px #dedede;
  padding: 30px 0;
  margin-bottom: 50px;
}

.faq_q {
  font-size: 1.1rem;
  letter-spacing: 0.03rem;
  font-weight: 600;
  cursor: pointer;
}

.faq_box input {
  display: none;
}

.faq_box .accshow {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
}

.cssacc:checked+.accshow {
  height: auto;
  padding-top: 10px;
  opacity: 1;
}

.faq_q p {
  padding-right: 20px;
  position: relative;
}

.faq_q p::before,
.faq_q p::after {
  content: '';
  display: block;
  width: 15px;
  height: 3px;
  border-radius: 5px;
  background: var(--Primary-color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.faq_q p::after {
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}

.faq_q p.open::after {
  transform: rotate(0);
  transition: 0.5s;
}

.reference {
  font-size: 0.7rem;
  letter-spacing: 0rem;
  color: #828282;
  margin-top: 5px;
}

/* フォーム関連 */
.formrun * {
  box-sizing: border-box;
}

.form_wrap {
  max-width: 730px;
  margin: 30px auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Yu Gothic", YuGothic, Roboto, Ubuntu, "Hiragino Kaku Gothic Pro", "Hiragino Sans GB", Meiryo, "Malgun Gothic", "Helvetica Neue", sans-serif;
}

.formrun label {
  display: inline-block;
  margin-bottom: .5rem;
}

.formrun input,
.formrun textarea,
.formrun select {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.25;
  color: #546E7A;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.form-group {
  margin-bottom: 1rem;
}

span.required {
  background-color: #d9534f;
}

span.required {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

span.default {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background-color: #78909C;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.formrun .error {
  color: #d9534f;
  line-height: 165%;
  margin: 0.25rem auto 1rem;
}

.formrun button {
  border-color: rgb(0, 188, 212);
  background-color: rgb(0, 188, 212);
  border-radius: 4px;
  border-width: 2px;
  border-style: solid;
  color: #fff;
  padding: 0.25em 0.25em;
  font-size: 20px;
  line-height: 150%;
  border-radius: 4px;
  display: block;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
}

#concept {
  margin: 100px 0;
  text-align: center;
}

#concept p {
  font-size: 1.1rem;
  margin-top: 40px;
  line-height: 2.3rem;
}

#company a {
  display: inline-block;
  text-decoration: none;
  color: #0a0a0a;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: normal;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background: none;
}

#company table {
  text-align: left;
  max-width: 600px;
  margin: 30px auto;
}

#company tr {
  border-bottom: 1px solid #dfdfdf;
}

#company th {
  width: 30%;
  padding: 24px 0;
}

#company td {
  width: 70%;
  padding: 24px 0;
}

.privacy {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 10px;
}

.privacy li {
  list-style-type: inherit;
  margin: 10px 0 0 20px;
}

.arrow {
  width: 30px;
  height: 100%;
  margin-top: 140px;
}

/* パートナー企業 */

#partner {
  margin: 100px 0;
  text-align: center;
}

#partner span {
  font-size: 1.5rem;
  margin-top: 40px;
  line-height: 2.3rem;
  font-weight: bold;
}

.partner_company {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  margin-top: 40px;
}

.partner_company img {
  width: calc(100% / 4 - 2px);
  border: solid 1px #efefef;
}
