@charset "utf-8";

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font-size: 100%;
  font: inherit;
  padding: 0;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font: normal 16px/1.8 "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  text-align: left;
  line-height: 1.6;
  color: #333333;
  text-align: justify;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

button {
  all: unset;
  cursor: pointer;
}

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

.main {
  width: 640px;
  text-align: center;
  margin: auto;
  box-shadow: 0px 0px 10px #888888;
}

@media (max-width: 650px) {
  .main {
    width: 100%;
  }
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.sp {
  display: none;
}

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

.header {
  width: 100%;
}

.cont_Wrap {
  width: 95%;
  text-align: center;
  margin: auto;
  padding: 25% 0;
}

@media (max-width: 500px) {
  .cont_Wrap {
    padding: 80px 0;
  }
}

.error-message {
  color: #f3ff44;
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
}

.btn:hover {
  transform: scale(0.97, 0.97);
  /* ボタンを小さくする */
  transition: transform 0.2s ease-in-out;
  /* アニメーション効果 */
}

/* ----------------------------------------------------
    header
---------------------------------------------------- */

.FV {
  filter: drop-shadow(0px 8px 5px #cfcfcf);
  /* position: relative; */
  z-index: 0;
}

header {
  position: relative;
}

header .dot {
  position: absolute;
  width: 10px;
  left: 0;
  right: 0;
  margin: auto;
  top: 23%;
  z-index: 2;
}

@media (max-width: 650px) {
  header .dot {
    width: 1%;
  }
}

.FV_txt {
  width: 80%;
  text-align: center;
  margin: auto;
  margin-bottom: 50px;
  margin-top: 50px;
}

.FV_im {
  width: 95%;
  text-align: center;
  margin: auto;
}

/* ----------------------------------------------------
カードアニメーション
---------------------------------------------------- */
.card-area {
  position: relative;
  width: 95%;
  height: 700px;
  /* margin-top: 800px; */
}

.card {
  position: absolute;
  width: 200px;
  height: 300px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  opacity: 0;
  transition: all 0.8s ease;
  filter: drop-shadow(0px 0px 5px #cfcfcf);
}

@media (max-width: 650px) {
  .card-area {
    height: 600px;
  }

  .card {
    width: 34%;
  }
}

/* 初期扇状の角度 */
.card1 {
  transform: translateX(-50%) rotate(-20deg);
  z-index: 1;
}

.card2 {
  transform: translateX(-50%) rotate(-10deg);
  z-index: 2;
}

.card3 {
  transform: translateX(-50%) rotate(0deg);
  z-index: 3;
}

.card4 {
  transform: translateX(-50%) rotate(10deg);
  z-index: 2;
}

.card5 {
  transform: translateX(-50%) rotate(20deg);
  z-index: 1;
}

/* アニメーション表示 */
.card-area.active .card {
  opacity: 1;
}

/* 展開後（整列） */
.card-area.expanded .card1 {
  top: 0;
  left: 4%;
  transform: rotate(0deg);
}

.card-area.expanded .card2 {
  top: 0;
  left: 37%;
  transform: rotate(0deg);
}

.card-area.expanded .card3 {
  top: 0;
  left: 70%;
  transform: rotate(0deg);
}

.card-area.expanded .card4 {
  top: 300px;
  left: 20%;
  transform: rotate(0deg);
}

.card-area.expanded .card5 {
  top: 300px;
  left: 55%;
  transform: rotate(0deg);
}

@media (max-width: 650px) {
  .card-area.expanded .card4 {
    top: 45%;
    left: 20%;
    transform: rotate(0deg);
  }

  .card-area.expanded .card5 {
    top: 45%;
    left: 55%;
    transform: rotate(0deg);
  }
}

@media (max-width: 500px) {
  .card-area {
    height: 450px;
  }

  .card-area.expanded .card4 {
    top: 50%;
  }

  .card-area.expanded .card5 {
    top: 50%;
  }
}

@media (max-width: 400px) {
  .card-area {
    height: 400px;
  }

  .card-area.expanded .card4 {
    top: 44%;
  }

  .card-area.expanded .card5 {
    top: 44%;
  }
}

.card1 {
  transition-delay: 0.1s;
}

.card2 {
  transition-delay: 0.2s;
}

.card3 {
  transition-delay: 0.3s;
}

.card4 {
  transition-delay: 0.4s;
}

.card5 {
  transition-delay: 0.5s;
}

/* ----------------------------------------------------
    CTA
---------------------------------------------------- */

.cta {
  position: relative;
}

.cta .btn {
  position: absolute;
  width: 90%;
  bottom: 14%;
  left: 0;
  right: 0;
  margin: auto;
  box-shadow: 0px 8px 0px #ffa200;
}

.cta .btn:hover {
  box-shadow: 0px 0px 0px #ffa200;
  transition: transform 0 ease-in-out;
}

/* ----------------------------------------------------
sec
---------------------------------------------------- */
.sec01,
.sec02 {
  background-image: linear-gradient(#fff, #f4f4f4);
  filter: drop-shadow(0px 2px 3px #888888);
}

.sec01 {
  position: relative;
  z-index: 10;
}

.sec01 h2 {
  width: 55%;
  margin-bottom: 100px;
  margin-left: 30px;
}

.graph {
  width: 90%;
  text-align: center;
  margin: auto;
}

.sec01 .dot {
  position: absolute;
  width: 10px;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -4%;
  z-index: 20;
}

@media (max-width: 500px) {
  .sec01 .dot {
    width: 1.5%;
    bottom: -13%;
  }
}

.sec01-2 {
  background-image: linear-gradient(#fff, #28a5ec);
  padding-bottom: 5%;
}

.sec01-2 h2 {
  width: 88%;
  text-align: center;
  margin: auto;
  margin-bottom: 50px;
}

.sec01-2 .cont_Wrap {
  padding-bottom: 0%;
}

.sec01-2 .bg-w {
  background-color: #fff;
}

.sec01-2 .w-100 img {
  width: 100%;
}

.sec02 {
  position: relative;
  z-index: -1;
}

.sec02 h2 {
  width: 55%;
  text-align: center;
  margin: auto;
  margin-bottom: 80px;
}

.sec02 p {
  margin-bottom: 20px;
}

.sec03 {
  background-color: #ffcc00;
  padding: 80px 0 40px;
}

@media (max-width: 500px) {
  .sec03 {
    padding: 40px 0 20px;
  }
}

.sec03 {
  position: relative;
  z-index: -10;
}

.sec03 h2 {
  width: 85%;
  text-align: center;
  margin: auto;
  filter: drop-shadow(0px 0px 2px #ffa200);
  padding: 40px 0px 0px;
}

.sec03 .cont_Wrap {
  padding: 40px 0px 0px;
}

.voice {
  margin-top: 20px;
  padding-top: 0px;
}

.voice p {
  margin-bottom: 20px;
}

/* ----------------------------------------------------
FORM
---------------------------------------------------- */

.yajirushi {
  width: 80%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 0 20px;
}

.form-section {
  text-align: center;
  box-shadow: 0px 0px 10px #888888;
}

.arrows {
  font-size: 40px;
  color: #ffcc00;
  margin: 10px 0 30px;
}

.form-wrapper {
  /* width: ; */
  margin: 0 auto;
  background: #fff;
  border: 25px solid #ffcc00;
  padding: 30px;
  box-sizing: border-box;
  text-align: left;
}

@media screen and (max-width: 640px) {
  .form-wrapper {
    padding: 15px;
    border: 15px solid #ffcc00;
  }
}

label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

label span:not(.checkbox-text) {
  color: #fff;
  background-color: #ff3636;
  font-size: 12px;
  padding: 4px;
  border-radius: 2px;
  margin-left: 10px;
  margin-bottom: 10px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-top: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.checkbox-group {
  margin-top: 10px;
  padding-bottom: 15px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.checkbox-group label {
  font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}

.checkbox-text {
  display: inline-block;
  line-height: 1.5;
  text-align: left;
}

.prpoli label {
  font-weight: 400;
}

.submit-btn {
  width: 100%;
  background-color: #ffcc00;
  color: #000;
  font-weight: bold;
  font-size: 18px;
  padding: 18px 0;
  border: none;
  cursor: pointer;
  text-align: center;
  margin: auto;
}

.logo {
  margin-top: 30px;
}

.logo img {
  width: 150px;
}

/* ----------------------------------------------------
    confirm
---------------------------------------------------- */
.confirm .header {
  background: url(./img/form_header_bg.jpg);
}

.confirm_container {
  background-color: #113669;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  text-align: left;
  margin-left: 20px;
}

.form-group input {
  width: 95%;
  padding: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.mail_form {
  background-color: #fff;
  padding: 20px 0;
}

.consent label {
  text-align: center;
  margin: auto;
  margin-top: 30px;
  color: #333333;
  /* border-bottom: #333333 solid 1px; */
}

.consent label a {
  /* border-bottom: #333333 solid 1px; */
  cursor: pointer;
}

.mail_form .btn {
  width: 95%;
}

/* ----------------------------------------------------
    thanks
---------------------------------------------------- */

.download .btn {
  width: 90%;
  bottom: 14%;
  left: 0;
  right: 0;
  margin: auto;
  box-shadow: 0px 8px 0px #ffa200;
}

.download .btn:hover {
  box-shadow: 0px 0px 0px #ffa200;
  transition: transform 0 ease-in-out;
}

.thanks .container {
  padding: 0;
}

.thanks .cont {
  width: 95%;
  text-align: center;
  margin: auto;
  margin-top: 40px;
  padding-bottom: 40px;
}

.thanks p {
  text-align: left;
  margin: auto;
  font-size: 12px;
  line-height: 1.6;
  color: #5a5a5a;
}

.thanks .header {
  background: url(./img/thanks_header_bg.jpg);
}

.thanks_btn_cont {
  position: relative;
}

.thanks_btn {
  position: absolute;
  width: 95%;
  left: 0;
  right: 0;
  bottom: 3%;
  margin: auto;
}

.thanks h2 {
  padding: 15px 0;
  color: #fff;
  background-color: #113669;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.4;
}

.skills-list {
  list-style-type: none;
  padding-left: 0;
  text-align: left;
  margin: auto;
  padding: 20px;
  line-height: 1.6;
  font-size: 20px;
  color: #333333;
  border: #333333 solid 1px;
}

.skills-list li {
  background-color: #fff;
  border-radius: 8px;
  margin: 10px 0;
  padding: 15px;
  font-size: 20px;
  transition: background-color 0.3s ease;
  margin-left: 1.4em;
  text-indent: -1.4em;
}

.skills-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 15px;
  background-color: #ffa500;
  /* オレンジ */
  border-radius: 50%;
}

.seminar-details {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.seminar-table {
  width: 100%;
  border-collapse: collapse;
}

.seminar-table td {
  padding: 15px;
  font-size: 14px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  text-align: left;
  line-height: 1.6;
  position: relative;
  width: 9px;
}

.seminar-table span {
  color: #d32f2f;
  font-size: 14px;
  font-weight: 600;
}

.thanks .container h2 span {
  font-size: 28px;
}

.seminar-table td strong {
  font-weight: bold;
}

/* オレンジのリストマーカー（丸点）を追加 */
.seminar-table td ul {
  list-style-type: none;
  padding-left: 0;
}

.seminar-table td ul li {
  position: relative;
  padding-left: 20px;
}

.seminar-table td ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* フローティング */
.sec00 {
  background-color: rgb(255, 255, 255, 0.5);
  /* position: -webkit-sticky; */
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 0 5px 0px;
  z-index: 1000;
}

.sec00 .cont_Wrap {
  padding: 5px;
}

.fix-btn:hover {
  opacity: 0.9;
  transition: 0.3s;
}

.sec00 img {
  width: 100%;
}

/*************footer******************/
/*************footer******************/

footer {
  font-size: 12px;
  color: #fff;
  background-color: #333333;
}

@media screen and (max-width: 740px) {
  footer {
    padding: 18px 0px;
    /* font-size: 2.5vw; */
  }
}

.footer {
  width: 90%;
  padding: 20px 0px 10px;
  text-align: center;
  margin: auto;
}

.footer p {
  text-align: left;
}

.Copyright {
  display: block;
  text-align: center;
  margin: auto;
}

footer nav {
  width: 90%;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  margin-bottom: 20px;
}

footer li {
  list-style-type: none;
  margin-right: 10px;
  margin-left: 10px;
}

footer a {
  text-decoration-line: none;
  color: #fff;
}

footer a:hover {
  color: #7c7c7c;
}
