@charset "UTF-8";
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
video {
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  outline: none;
  border: none;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.bold {
  font-weight: bold;
}

small {
  font-size: 11px;
}
@media screen and (max-width: 414px) {
  small {
    font-size: 9px;
  }
}
small.sup {
  vertical-align: super;
  font-weight: normal;
}

.footnote {
  font-size: 11px;
}
@media screen and (max-width: 414px) {
  .footnote {
    font-size: 9px;
  }
}
.footnote.right {
  text-align: right;
}

ol.footnote {
  list-style-type: none;
  margin-top: 10px;
  padding-left: 0;
  display: table;
  text-align: left;
}
ol.footnote.right {
  margin-left: auto;
}
ol.footnote li {
  display: table-row;
  counter-increment: table-ol;
}
ol.footnote li:before {
  content: "※" counter(table-ol);
  display: table-cell;
  padding-right: 1em;
  width: 1em; /*Firefox用*/
}
ol.footnote li:after {
  content: "";
  display: block;
  margin-bottom: 0.5em;
}

.ani_heartbeat {
  animation: heartbeat 2s ease-in-out infinite;
}
@keyframes heartbeat {
  0% {
    transform: scale(0.9);
  }
  20%, 60% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}

/* ==========================
★↓↓↓2列降下アニメーション★

1) HTMLタグを追加
<div class="ani_threeArrow_flowDouble"></div>
2) cssファイル（このファイル）を追加
3) scssファイルの先頭に@useを追加して読み込み
    @use 'ani_ArrowThree_DoubleFlow';
4) jsファイル「ani_ArrowTheree_DoubleFlow.js」を追加
5) 以下の変数$arrowColorを設定
========================== */
.ani_threeArrow_flowDouble {
  position: relative;
  width: 80%;
  max-width: 300px;
  height: 240px;
  overflow: hidden;
  margin: auto;
  text-align: center;
}
.ani_threeArrow_flowDouble [class^=arrow_flow-] {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  width: 100%;
  margin: 60px 0;
}
.ani_threeArrow_flowDouble [class^=arrow_flow-] .arrow_flow__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.ani_threeArrow_flowDouble [class^=arrow_flow-] .arrow_flow__arrow::before, .ani_threeArrow_flowDouble [class^=arrow_flow-] .arrow_flow__arrow::after {
  display: inline-block;
  content: "";
  background-color: #ffd000;
  vertical-align: middle;
}
.ani_threeArrow_flowDouble [class^=arrow_flow-] .arrow_flow__arrow::before {
  width: 30%;
  height: 64px;
}
.ani_threeArrow_flowDouble [class^=arrow_flow-] .arrow_flow__arrow::after {
  width: 100%;
  height: 56px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin-top: -1px;
}
.ani_threeArrow_flowDouble [class^=arrow_flow-]:first-of-type {
  transform: translateY(0);
  animation: flow 2s infinite;
}
.ani_threeArrow_flowDouble [class^=arrow_flow-]:last-of-type {
  transform: translateY(-200%);
  animation: flow 2s 1s infinite;
}
@keyframes flow {
  0% {
    transform: translateY(-200%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(200%);
  }
}

html {
  font-size: 22px;
}
@media screen and (max-width: 414px) {
  html {
    font-size: 18px;
  }
}

body, html {
  height: 100%;
}

body {
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

.container {
  max-width: 750px;
  margin: 0 auto;
}
.container img, .container video {
  display: block; /* 縦配置画像の隙間対策 */
  width: 100%;
}
.container > img, .container > video {
  margin: 1em;
}
.container > p {
  padding: min(36px, 4vw);
}
@media screen and (max-width: 414px) {
  .container > p {
    padding: 10px;
  }
}

.center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.bigger {
  font-size: 1.2em;
}

.txtC-BL {
  color: #001ec5;
}

.txtC-RD {
  color: #c41a1a;
}

.marker-YL {
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 0, 0.6) 50%, rgba(255, 255, 0, 0.6) 100%);
}

.memo {
  padding: min(36px, 4vw);
}
@media screen and (max-width: 414px) {
  .memo {
    padding: 10px;
  }
}
.memo__contents {
  position: relative;
  background-color: #fff5e5;
  border: 1px solid #d16c6c;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
  padding: 1em;
  text-align: center;
  font-size: 0.9em;
}
.memo__contents::before {
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #c41a1a;
  transform-origin: 100% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.tableOfContents {
  padding: min(36px, 4vw);
  font-size: 0.8em;
}
@media screen and (max-width: 414px) {
  .tableOfContents {
    padding: 10px;
  }
}
.tableOfContents .tableOfContents__inner {
  padding: min(36px, 4vw);
  background-color: #fff5e5;
  border-top: 2px solid #d16c6c;
  border-bottom: 2px solid #d16c6c;
}
@media screen and (max-width: 414px) {
  .tableOfContents .tableOfContents__inner {
    padding: 10px;
  }
}
.tableOfContents dl {
  line-height: 1.6;
}
.tableOfContents dl dt {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  line-height: 2;
  font-weight: bold;
  cursor: pointer;
}
.tableOfContents dl dt::before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #d16c6c;
  border-right: 1px solid #d16c6c;
  transform-origin: 50% 50%;
  transform: rotate(45deg) translateX(0);
  transition: transform 0.5s;
}
.tableOfContents dl dt:not(:first-of-type) {
  margin-top: 1em;
}
.tableOfContents dl dt.is-show::before {
  transform: rotate(135deg) translateX(-5px);
  transition: transform 0.5s;
}
.tableOfContents dl dt.is-show + dd {
  grid-template-rows: 1fr;
  transition: 0.5s;
}
.tableOfContents dl dd {
  display: grid;
  grid-template-rows: 0fr;
  margin-left: 1.5em;
  transition: 0.5s;
}
.tableOfContents dl dd ul {
  overflow: hidden;
  list-style: disc;
}

.column {
  padding-left: min(36px, 4vw);
  padding-right: min(36px, 4vw);
}
@media screen and (max-width: 414px) {
  .column {
    padding-left: 10px;
  }
}
@media screen and (max-width: 414px) {
  .column {
    padding-right: 10px;
  }
}
.column__baloon {
  position: relative;
  background-color: #6c8fd1;
  margin: 1em 0;
  padding: 16px;
  text-align: center;
  font-size: 24px;
  line-height: 1.6;
  font-weight: bold;
  color: #fff;
}
.column__baloon::before {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  content: "";
  height: 16px;
  aspect-ratio: 2/1;
  background-color: #6c8fd1;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.column__heading {
  display: flex;
  background-color: #fff5e5;
  text-align: left;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: min(36px, 4vw);
  margin-bottom: min(36px, 4vw);
}
@media screen and (max-width: 414px) {
  .column__heading {
    margin-top: 10px;
  }
}
@media screen and (max-width: 414px) {
  .column__heading {
    margin-bottom: 10px;
  }
}
.column__heading span {
  margin: min(36px, 4vw);
}
@media screen and (max-width: 414px) {
  .column__heading span {
    margin: 10px;
  }
}
.column__heading::before {
  display: block;
  content: "";
  width: 1.3em;
  background-color: #d16c6c;
}

.switchTab {
  text-align: center;
}
.switchTab__tab {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  font-size: min(4.5vw, 24px);
}
.switchTab__tab li {
  flex: 4;
  border-radius: 12px 12px 0 0;
  padding: 8px;
  cursor: pointer;
}
.switchTab__tab li:nth-of-type(1) {
  background-color: #eba9a9;
}
.switchTab__tab li:nth-of-type(2) {
  background-color: #a9c2eb;
}
.switchTab__tab li.is-active {
  flex: 5;
  padding: 12px;
  font-size: 1.1em;
  cursor: default;
}
.switchTab__tab li p {
  margin: 0;
}
.switchTab__tab li p.tab__sub {
  font-size: 0.8em;
}
.switchTab__tab li p.tab__main {
  font-size: 1.1em;
  font-weight: bold;
  color: #fff;
  paint-order: stroke;
}
.switchTab__tab li:nth-of-type(1) .tab__main {
  -webkit-text-stroke: 4px #d16c6c;
}
.switchTab__tab li:nth-of-type(2) .tab__main {
  -webkit-text-stroke: 4px #6c8fd1;
}
.switchTab__desc {
  padding: min(36px, 4vw);
  text-align: left;
}
@media screen and (max-width: 414px) {
  .switchTab__desc {
    padding: 10px;
  }
}
.switchTab__desc__wrap {
  background-color: #fff;
  padding: 1em;
}
.switchTab__desc[data-option="01"] {
  background-color: #ffecec;
}
.switchTab__desc[data-option="01"] .switchTab__desc__contents.desc-01 {
  display: block;
}
.switchTab__desc[data-option="01"] .switchTxtColor {
  color: #ae2c2c;
}
.switchTab__desc[data-option="01"] .column__heading {
  background-color: #ffecec;
}
.switchTab__desc[data-option="01"] .column__heading::before {
  background-color: #d16c6c;
}
.switchTab__desc[data-option="02"] {
  background-color: #eaf2ff;
}
.switchTab__desc[data-option="02"] .switchTab__desc__contents.desc-02 {
  display: block;
}
.switchTab__desc[data-option="02"] .switchTxtColor {
  color: #2b5cb8;
}
.switchTab__desc[data-option="02"] .column__heading {
  background-color: #eaf2ff;
}
.switchTab__desc[data-option="02"] .column__heading::before {
  background-color: #6c8fd1;
}
.switchTab__desc__contents {
  display: none;
}
.switchTab__desc__contents__check {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  background-color: #eee;
  border: 3px solid #aaa;
  padding: min(36px, 4vw);
  text-align: left;
}
@media screen and (max-width: 414px) {
  .switchTab__desc__contents__check {
    padding: 10px;
  }
}
.switchTab__desc__contents__check li {
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #aaa;
  padding: 0.4em 0;
}
.switchTab__desc__contents__check input[type=checkbox] {
  width: 1.5em;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.switchTab__desc__contents__check label {
  margin-left: 0.5em;
  cursor: pointer;
}

.btn_cv {
  margin-top: min(36px, 4vw);
  margin-bottom: min(36px, 4vw);
}
@media screen and (max-width: 414px) {
  .btn_cv {
    margin-top: 10px;
  }
}
@media screen and (max-width: 414px) {
  .btn_cv {
    margin-bottom: 10px;
  }
}

footer {
  padding: 2em 0;
  text-align: center;
  font-size: 14px;
}
footer .copyright {
  margin-top: 3em;
}/*# sourceMappingURL=style.css.map */