/* extracted style block 1 from pages/toolc.blade.php */
html {
    scroll-behavior: auto !important;
}
h3.forchild {
    font-size: 1.1vw;
    font-weight: 600;
    margin: 3% 0 3%;
    background: #eaeaea;
    padding: 1% 2%;
    font-size: 1vw;
    letter-spacing: 1px;
    background: #dcdcdc;
    color: #000;
    font-weight: 600;
    padding: 1% 2%;
    margin-bottom: 5%;
}
.js-anchor-offset {
    padding-top: 0;
    transition: padding 0.3s ease;
}

.js-anchor-offset.active {
    padding-top: 8vw; /* ページ内リンククリック時のみ適用 */
}
.section .section-inner .block-container {
    display: block;
}
ul.circle {
    margin: 1% 0%;
    font-weight: 500;
    list-style: none;
}
img.attachment-article-thumb.size-article-thumb.wp-post-image {
    border: 3px solid;
}

img.foximg {
    width: 90%;
    margin: 3% 0 1%;
}
.pdfbox {
    display: flex;
    margin-bottom: 8%;
    width: 40%;
}
p.text.event.bold {
    font-weight: 600;
    margin-bottom: 8%;
}
a.sublink {
    text-decoration: underline;
}
@media screen and (max-width: 768px) {
}
/* 全体ベーススタイル */
.workshop-guide {
  width: 100%;
  box-sizing: border-box;    margin-bottom: 7%;
}

/* 見出しスタイル */
.workshop-title {
  font-size: 1vw;
  margin-bottom: 1.5vw;
  font-weight: 700;
  color: #000;    margin-bottom: 6%;
}

/* 横並び構造（PC） */
.workshop-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2vw;
}

/* 左：画像40% */
.workshop-image {
  width: 40%;
}

.workshop-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 右：テキスト60% */
.workshop-text {
  width: 60%;
}

/* テキスト段落にクラスを指定して反映 */
.workshop-paragraph {
  font-size: 0.94vw;
  line-height: 1.8vw;
  color: #000;
  font-weight: 500;
}

/* スマホ対応（縦並び） */
@media screen and (max-width: 768px) {
  .workshop-title {
    font-size: 5vw;
    margin-bottom: 4vw;
  }

  .workshop-content {
    flex-direction: column;
  }

  .workshop-image,
  .workshop-text {
    width: 100%;
  }

  .workshop-paragraph {
    font-size: 4vw;
    line-height: 6.5vw;
  }
}
.form-flow-container {
  width: 100%;
  padding: 0vw 0vw;
  box-sizing: border-box;    margin-bottom: 10%;
}

.form-box {
    background-color: #f5f5f5;
    border-radius: 2vw;
    padding: 2vw 3vw 2vw;
    margin-bottom: 1vw;
}

.form-step-title {
  font-size: 1vw;
  font-weight: bold;
  margin-bottom: 1vw;
}

.form-subtitle {
  font-size: 1vw;
  margin-bottom: 0.8vw;
}

.form-list {
  margin-left: 1.5vw;
  margin-bottom: 1.5vw;
  padding-left: 1vw;
}

.form-list-item {
  font-size: 0.95vw;
  line-height: 1.8vw;
  list-style-type: disc;
  margin-left: 1vw;
}

.form-button {
  display: inline-block;
  padding: 0.6vw 2vw;
  background-color: #5fa8dc;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.95vw;
  transition: background-color 0.3s ease;
}

.form-button:hover {
  background-color: #397fb9;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .form-step-title {
    font-size: 4.5vw;
  }

  .form-subtitle {
    font-size: 4vw;
  }

  .form-list-item {
    font-size: 3.8vw;
    line-height: 6vw;
  }

  .form-button {
    font-size: 3.8vw;
    padding: 2vw 5vw;
  }

  .form-box {
    padding: 4vw;
  }
}
.form-arrow {
  width: 100%;
  text-align: center;
  margin: 1vw 0;
}

.form-arrow::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4.2vw solid transparent;
  border-right: 4.2vw solid transparent;
  border-top: 0.6vw solid #000; /* ← ここが「平べったさ」を調整 */
}

/* スマホ調整 */
@media (max-width: 768px) {
  .form-arrow::after {
    border-left: 4vw solid transparent;
    border-right: 4vw solid transparent;
    border-top: 2vw solid #000;
  }

  .form-arrow {
    margin: 5vw 0;
  }
}
/* 固有クラスでスタイル調整 */
.workshop-image-set {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.workshop-image-item {
  width: 145px;
  height: auto;
}

/* モバイルでも横並び（wrapされる） */
@media screen and (max-width: 768px) {
  .workshop-image-set {
    gap: 12px;
  }

  .workshop-image-item {
    width: 80px;
  }
}
/* 固有クラスでエリアを定義 */
.workshop-image-salt {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.workshop-image-salt .workshop-image-item {
  width: 45%;
  height: auto;
  max-width: 300px;
}

/* モバイルでも2つ並べる（wrap対応） */
@media screen and (max-width: 768px) {
  .workshop-image-salt .workshop-image-item {
    width: 45%;
  }
h3.forchild {
    font-size:15px;
}
.pdfbox {
    display: flex;
    margin-bottom: 8%;
    width: 90%;
}
a.pdflink {
    font-weight: 500;
    -webkit-text-stroke: 0.04vw;
    text-decoration: underline;
    font-size: 13px;
    line-height: 18px;
}
    .workshop-paragraph {
        margin: 0% 0 5%;
        font-size: 13px;
        line-height: 20px;
        color: #000;
        font-weight: 500;
    }
    .workshop-title {
        font-size: 15px;
        margin-bottom: 4vw;
    }
span.hituyou {
    background: #f4f860;
    margin: 0 0 0 1vw;
    border-radius: 20px;
    padding: 1% 2%;
    color: #000000;
    font-size: 0.84vw;
}
span.subtext {
    margin: 0% 0 5%;
    font-size: 13px;
    line-height: 20px;
    color: #000;
    font-weight: 500;
    font-size: 13px;
    display: block;
    margin-bottom: 8%;
}
    .form-subtitle {
        font-size: 13px;
        font-weight: 600;
    }
    .form-button {
        font-size: 15px;
        padding: 2vw 5vw;
        width: 80%;
        display: block;
        text-align: center;
        margin: 5% auto;
    }
    .form-step-title {
        font-size: 15px;
        font-weight: 600;
    }
    .form-list-item {
        font-size: 13px;
        margin: 0% 0 3%;
        font-size: 13px;
        line-height: 20px;
        color: #000;
        font-weight: 500;
        font-size: 13px;
        margin-bottom: 1%;
        /* line-height: 6vw; */
    }
}
span.hituyou {
    background: #f4f860;
    margin: 0 0 0 1vw;
    border-radius: 20px;
    padding: 1% 2%;
    color: #000000;
    font-size: 0.84vw;
}
ul.workshop-rules {
    border: 4px solid #6d6565;
    padding: 4%;
}
h4.point {
    font-size: 1vw;
    font-weight: 600;
    margin: 0 0 4% -17px;
}
.workshop-rules li {
    line-height: 20px;
    margin-bottom: 1em;
    font-size: 13px;
}
.workshop-rules li {
    line-height: 20px;
    margin-bottom: 1em;
    font-size: 13px;
}

.workshop-rules .underline {
  text-decoration: underline;
}
.section .copy {
    width: 100%;
}
p.main.sum {
    font-size: 1.1vw;
}
a.pdflink {
    font-weight: 500;
    -webkit-text-stroke: 0.04vw;
    text-decoration: underline;
    font-size: 0.94vw;
}
@media screen and (min-width: 768px) {
    .workshop-rules li {
        font-size: 0.94vw;
        line-height: 1.8vw;
        color: #000;
        font-weight: 500;        margin-bottom: 1rem;
    }
.workshop-rules li {
    margin-bottom: 1em;
}
.workshop-rules {
    list-style-type: disc;
    padding-left: 1.5em;
    font-family: sans-serif;
    margin: 0 0 6%;
}
}
.line {
    border: 1px solid #000;
}

/* extracted style attributes */
.csp-s-b75fad0009{margin-bottom: 20px;}
.csp-s-cad980f4b7{width:100%;}
