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

/*　++++++++++++++　年表　++++++++++++++++++++++++++　*/
/* 年表全体のコンテナ */
.timeline-container {
  display: flex;               /* 縦に積む */
  flex-direction: column;      /* アイテムを縦方向に並べる */
  align-items: center;         /* 中央揃え */
  position: relative;          /* 中央線を絶対配置するため */
  width: 75%;                  /* 全体幅 */
  margin: 0 auto;              /* 横中央に配置 */
}

/* 中央の縦線 */
.timeline-line {
  position: absolute;          /* 年表コンテナ内で絶対位置 */
  left: 50%;                   /* コンテナ中央 */
  transform: translateX(-50%); /* 真ん中に揃える */
  width: 2px;                  /* 線の太さ */
  background: linear-gradient(to bottom, #007acc, #00aaff); /* 上下グラデーション */
  top: 0;
  bottom: 0;
  z-index: 1;                  /* 他の要素より下 */
}

/* 年度アイテム1つ分の行 */
.timeline-item {
  display: flex;               /* 左右にテキストを並べる */
  width: 100%;
  justify-content: space-between; /* 左右の隙間を最大化 */
  position: relative;          /* 年度数字を絶対配置するため */
  margin: 20px 0;              /* 上下の間隔 */
  align-items: flex-start; /* 上揃えに変更 */
}

/* 年度（1960など）の表示 */
.timeline-year {
  position: absolute;          /* 中央線上に配置 */
  left: 50%;                   /* 横中央 */
  transform: translateX(-50%); /* 上下中央は削除 */
  top: 0;                       /* 上揃えに変更 */
  background: white;           /* 線と被らないように白背景 */
  padding: 2px 6px;            /* 上下の余白を狭く */
  z-index: 2;                  /* 線より上に表示 */
  text-align: center;          /* 数字中央寄せ */
  font-weight: bold;           /* 太字 */
  color: var(--primary-color); /* 青系 */
  font-size: 2.4rem;           /* お好みで変更可能 */
  font-family: "Bodoni MT", "Didot", "Times New Roman", serif;
  margin-top: -0.6em;
}

/* 年度下のポイント● */
.timeline-point {
  position: absolute;
  left: 50%;                   /* 中央線上 */
  transform: translateX(-50%);
  top: 65%;                   /* 年度の下 */
  font-size: 14px;
  color: var(--primary-color);
  width: 15rem;           /* お好みで調整 */
  text-align: center;    /* 横幅中央に●を配置 */
}

/* 左右テキスト */
.timeline-left, .timeline-right {
  width: 45%;                  /* 左右幅 */
  padding: 0 10%;
}

/* 左テキストは右寄せ（中央線側） */
.timeline-left {
  text-align: right;     /* 右寄せで中央線側に寄せる */
  width: 45%;            /* 左側の幅 */
  margin-right: 20px;    /* 中央線との距離調整 */
  padding: 0;            /* 不要なpaddingは削除 */
}

/* 右テキストは左寄せ（中央線側） */
.timeline-right {
  text-align: left;      /* 左寄せで中央線側に寄せる */
  width: 45%;            /* 右側の幅 */
  margin-left: 20px;     /* 中央線との距離調整 */
  padding: 0;            /* 不要なpaddingは削除 */*/
}

/* 左右のタイトル（ヘッダ） */
.timeline-header {
  display: flex;
  justify-content: space-between; /* 左右にタイトルを配置 */
  width: 100%;
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--primary-color);
}

.timeline-header > div:first-child {
  /* 左側タイトルの右側に空き */
  padding-right: 3em;  /* 文字幅の目安として 0.5em～1em 調整可能 */
}

.timeline-header > div:last-child {
  /* 右側タイトルの左側に空き */
  padding-left: 3em;   /* 文字幅の目安として 0.5em～1em 調整可能 */
}

/* 日付のフォントスタイル・サイズ・色を指定 */
.event-date {
  font-family: "Bodoni MT", "Didot", "Times New Roman", serif; /* 明朝系フォント */
  font-size: 1.2rem;          /* サイズ調整 */
  color: var(--primary-color);             /* 青系 */
  font-weight: bold;           /* 太字 */
  display: inline-block;       /* 上下余白を使えるように */
  margin-top: 0.2em;           /* 上の文章との隙間 */
  margin-bottom: 0em;        /* 下の線との隙間 */
}

/* <hr> の太さ・色・線種を指定 */
.event-hr {
  border: none;                /* デフォルトの線をリセット */
  height: 1px;                 /* 線の太さ */
  background-color: var(--primary-color);  /* 線の色 */
  margin: 0em 0em;             /* 上下の余白調整 */
}
/* ▼スマホは1列に */
@media screen and (max-width: 600px) {
  .timeline-item {
    display: flex;
    flex-direction: column;    /* 縦並び */
    align-items: flex-start;   /* 左揃え */
  }

  /* 中央年度 */
  .timeline-year {
    position: relative;        /* 絶対位置解除 */
    left: 0;
    transform: none;
    width: auto;
    background: none;          /* 背景なし */
    padding: 2px 0;
    margin-bottom: 5px;
    font-size: 2rem;           /* 調整可能 */
    z-index: 2;
  }

  /* 左タイトル */
  .timeline-header-left {
    display: block;
    text-align: left;
    font-size: 1.2rem;         /* 調整可能 */
    font-weight: bold;
    margin-bottom: 5px;
  }

  /* 左テキスト */
  .timeline-left {
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
  }

  /* 右タイトルは左タイトル・左テキストの下に配置 */
  .timeline-header-right {
    display: block;
    text-align: left;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
  }

  /* 右テキストは右タイトルの下に配置 */
  .timeline-right {
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
  }

  /* 年度下のポイント● */
  .timeline-point {
    position: relative;
    top: auto;
    width: auto;
    transform: none;
    text-align: left;
    font-size: 12px;
    margin-bottom: 5px;
  }

  /* イベント日付やhrの調整 */
  .event-date {
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .event-hr {
    height: 1.5px;
    margin-bottom: 10px;
  }
}

/*　フローデザイン01　*/
.flow_design01 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow_design01 ul {
  padding: 0;
}

.flow_design01 li {
  list-style-type: none;
}

.flow_design01 dd {
  margin-left: 0;
}

.flow01 > li {
  position: relative;
  list-style: none;
}

.flow01 > li:not(:last-child) {
  margin-bottom: 40px;
}

.flow01 > li dl {
  box-sizing: border-box;
  width: 100%;
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #F88400;
  border-radius: 10px;
  position: relative;
}

.flow01 > li:not(:last-child) dl::before,
.flow01 > li:not(:last-child) dl::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow01 > li:not(:last-child) dl::before {
  border-width: 22px;
  border-top-color: #F88400;
}

.flow01 > li:not(:last-child) dl::after {
  border-width: 20px;
  border-top-color: #fff;
}

.flow01 > li dl dt {
  font-size: 1.2em;
  font-weight: 600;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  margin-right: 2vw;
  text-align: center;
}

.flow01 > li dl dt .icon01 {
  font-size: 0.6em;
  color: #fff;
  background: #F88400;
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 100;
}

@media(max-width: 650px) {
  .flow01 > li:not(:last-child) {
    margin-bottom: 30px;
  }

  .flow01 > li dl {
    display: block;
    padding: 10px 15px;
  }

  .flow01 > li dl dt {
    margin-right: 0;
  }

  .flow01 > li dl dt .icon01 {
    font-size: .7em;
  }
}

/*　フローデザイン02　*/
.flow_design02 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow_design02 ul {
  padding: 0;
}

.flow_design02 li {
  list-style-type: none;
}

.flow_design02 dd {
  margin-left: 0;
}

.flow02 > li {
  padding: 40px 10px;;
}

.flow02 > li:not(:last-child) {
  border-bottom: 3px solid #B058D6;
  position: relative;
}

.flow02 > li:not(:last-child)::before,
.flow02 > li:not(:last-child)::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 15%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow02 > li:not(:last-child)::before {
  border-width: 22px;
  border-top-color: #B058D6;
}

.flow02 > li:not(:last-child)::after {
  border-width: 18px;
  border-top-color: #fff;
}

.flow02 > li dl {
  margin: 0;
}

.flow02 > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  border-bottom: 2px dotted #878787;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  display: flex;
}

.flow02 > li dl dt .icon02 {
  font-size: 0.6em;
  color: #fff;
  background: #B058D6;
  padding: 5px 10px;
  display: inline-block;
  margin-right: 0.5em;
}

/*　フローデザイン03　*/
.flow_design03 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
}

.flow_design03 ul {
  padding: 0;
}

.flow_design03 li {
  list-style-type: none;
}

.flow_design03 dd {
  margin-left: 0;
}

.flow03 {
  position: relative;
}

.flow03::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #eee;
  margin-left: -129px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
  border-radius: 20px;
}

.flow03 > li {
  position: relative;
}

.flow03 > li:not(:last-child) {
  margin-bottom: 60px;
}

.flow03 > li .icon03 {
  font-size: 0.8em;
  width: 2em;
  height: 2em;
  line-height: 2;
  text-align: center;
  font-weight: normal;
  border-radius: 100vh;
  color: #fff;
  background: #2589d0;
  display: inline-block;
  margin-right: 0.3em;
}

/* 文字サイズだけ小さくする */
.flow03 > li .icon03 small {
  font-size: 0.6em;
  position: relative;
  top: -1px; /* ←ここを調整して中心に合わせる */
}

.flow03 > li dl {
  padding-left: 70px;
  position: relative;
}

.flow03 > li dl::before,
.flow03 > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}

.flow03 > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #2589d0;
  border-radius: 50%;
  left: -4px;
}

.flow03 > li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}

.flow03 > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color: #2589d0;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}

/*　フローデザイン04　*/
.flow04 {
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.flow04 > li {
  list-style-type: none;
  width: 100%;
  max-width: 350px;
  display: flex;
}

.flow04 > li .icon04 {
  line-height: 2;
  width: 2em;
  height: 2em;
  text-align: center;
  color: #fff;
  background: #E26B5D;
  margin: 0 auto 10px;
  display: block;
  border-radius: 100vh;
  position: relative;
}

.flow04 > li .icon04::before {
  content: "";
  border: solid transparent;
  border-width: 7px;
  border-top-color: #E26B5D;
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow04 > li dl {
  padding: 30px 20px;
  margin: 0;
  border: 3px solid #E26B5D;
  position: relative;
}

.flow04 > li:not(:first-child) dl::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 10px;
  display: inline-block;
  border-top: 4px solid #E26B5D;
  border-right: 4px solid #E26B5D;
  position: absolute;
  top: calc(50% - 14px);
  left: -45px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.flow04 > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color: #E26B5D;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  margin-bottom: 10px;
  text-align: center;
}

.flow04 > li dl dd {
  margin-left: 0;
}

@media(max-width: 767px){
  .flow04 {
    gap: 20px;
  }
  .flow04 > li {
    max-width: unset;
    display: block;
  }
  .flow04 > li:not(:first-child) dl::before {
    display: none;
  }
}

/*　フローデザイン05　*/
.flow_design05 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow05 {
  padding-left: 0;
}

.flow05 > li {
  list-style-type: none;
  position: relative;
  padding-left: 50px;
}

.flow05 > li:not(:last-child) {
  padding-bottom: 10px;
}

.flow05 > li .icon05 {
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  border-radius: 100vh;
  display: inline-block;
  background: #4D9BC1;
  color: #fff;
  position: absolute;
  left: 0;
}

.flow05 > li:not(:last-child)::before {
  content: '';
  background: #c3c3c3;
  width: 4px;
  height: 100%;
  position: absolute;
  top: calc(50% - -30px);
  left: 19px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.flow05 > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color: #4D9BC1;
}

.flow05 > li dl dd {
  margin-left: 0;
}

/*　フローデザイン06　*/
.flow_design06 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow06 {
  padding-left: 0;
  overflow: hidden;
}

.flow06 > li {
  list-style-type: none;
  padding: 0 0 1.3em 2.3em;
  margin: 0;
  position: relative;
}

.flow06 > li .icon06 {
  font-size: 0.7em;
  display: block;
  color: #F88400;
}

.flow06 > li .icon06::before {
  content: "";
  display: block;
  width: 12px;
  border-top: solid 3px #f88400;
  position: absolute;
  top: 10px;
  left: 12px;
}

.flow06 > li::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #F88400;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 0;
}

.flow06 > li:not(:last-child)::after {
  content: "";
  display: block;
  height: 100%;
  border-left: solid 5px #bbb;
  position: absolute;
  top: 20px;
  left: 3px;
}

.flow06 > li dl::after {
    content: "";
    width: 100%;
    display: block;
    border-bottom: solid 3px #F88400;
    position: absolute;
    bottom: 22px;
    left: 21px;
}

.flow06 > li dl::before {
    content: "";
    height: calc(100% - 35px);
    display: block;
    border-left: solid 3px #F88400;
    position: absolute;
    top: 10px;
    left: 21px;
}

.flow06 > li dl dt {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
}

.flow06 > li dl dd {
  margin-left: 0;
}

/*　フローデザイン07　*/
.flow_design07 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow07 {
  padding-left: 0;
}

.flow07 > li {
  list-style-type: none;
  display: flex;
}

.flow07 > li:not(:last-child) {
  margin: 0 0 50px;
}

.flow07 > li .icon07 {
  width: 90px;
  box-sizing: border-box;
  padding: 20px 10px 10px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  background: #B058D6;
  border-radius: 5px 5px 0 0;
  position: relative;
  line-height: 125%;
  margin: 0;
}
.flow07 > li .icon07::after {
  content: ' ';
  width: 0;
  height: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-top: 20px solid #B058D6;
  position: absolute;
  bottom: -20px;
  left: 0;
}

.flow07 > li dl {
  padding: 0 0 0 30px;
  width: calc(100% - 115px);
}

.flow07 > li dl dt {
  padding: 0 0 5px;
  margin: 0 0 15px;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 4px solid #CCCCCC;
  position: relative;
}
.flow07 > li dl dt::after {
  content: '';
  width: 20%;
  height: 4px;
  position: absolute;
  bottom: -4px;
  left: 0;
  background-color: #B058D6;
}

.flow07 > li dl dd {
  margin: 0;
}

/*　フローデザイン08　*/
.flow_design08 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow08 {
  padding-left: 0;
}

.flow08 > li {
  list-style-type: none;
  border-radius: 15px;
  background: #F4F6FA;
  position: relative;
  padding: 20px;
}

.flow08 > li:not(:last-child) {
  margin-bottom: 20px;
}

.flow08 > li dl {
  display: flex;
  align-items: center;
  gap: 20px;
}

.flow08 > li dl dt {
  font-size: 1.2em;
  font-weight: 700;
  width: 20%;
  min-width: 7em;
}

.flow08 > li .icon08 {
  color: #8EB83C;
  margin-right: 0.5em;
}

.flow08 > li dl dd {
  margin: 0;
  width: calc(80% - 20px);
}

/*　フローデザイン09　*/
.flow_design09 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow09 {
  padding-left: 0;
  border-bottom: solid 1px #E1E8ED;
}

.flow09 > li {
  list-style-type: none;
  display: flex;
  padding: 20px 0;
  border-top: solid 1px #E1E8ED;
}

.flow09 > li dl dt {
  font-size: 1.2em;
  line-height: 2;
  font-weight: bold;
  margin-bottom: 10px;
}

.flow09 > li .icon09 {
  line-height: 1;
  font-size: 2em;
  font-weight: bold;
  color: #E26B5D;
  text-align: center;
  width: 70px;
  position: relative;
  margin-top: 0;
}

.flow09 > li .icon09::before {
  content: 'STEP';
  font-size: 0.3em;
  display: block;
  margin-bottom: 3px;
  letter-spacing: 1px;
}

.flow09 > li .icon09::after {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 40px);
  background-color: #858585;
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  margin: auto;
}

.flow09 > li dl dd {
  margin: 0;
}

.flow09 > li dl {
  width: calc(100% - 70px);
  margin-top: 0.8em;
}

/*　フローデザイン10　*/
.flow_design10 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow10 {
  padding-left: 0;
}

.flow10 > li {
  list-style-type: none;
  border: 2px solid #4D9BC1;
  padding: 20px;
  border-radius: 20px;
}

.flow10 > li:not(:last-child) {
  margin-bottom: 40px;
  position: relative;
}

.flow10 > li:not(:last-child)::after {
  content: '';
  position: absolute;
  border: 20px solid transparent;
  width: 0;
  height: 0;
  bottom: -53px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-top-color: #4D9BC1;
}

.flow10 > li dl dt {
  font-size: 1.3em;
  font-weight: bold;
  border-bottom: 2pt dashed #ccc;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}

.flow10 > li .icon10 {
  color: #4D9BC1;
  margin-right: 0.5em;
}

.flow10 > li dl dd {
  margin: 0;
}

/*　フローデザイン11　*/
.flow_design11 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow11 {
  padding-left: 0;
}

.flow11 > li {
  list-style-type: none;
  position: relative;
  padding: 0 20px 0 90px;
  border-bottom: 10px solid #F88400;
}

.flow11 > li:not(:last-child) {
  margin-bottom: 40px;
}

.flow11 > li .icon11 {
  position: absolute;
  margin: 0;
  line-height: 0;
  font-size: 100px;
  font-weight: bold;
  left: 10px;
  bottom: 30px;
  color: transparent;
  -webkit-text-stroke: 3px #F88400;
}

.flow11 > li dl dt {
  font-size: 1.3em;
  font-weight: bold;
}

.flow11 > li dl dd {
  margin: 0;
}

/*　フローデザイン12　*/
.flow12 {
	margin: 0;
	padding: 0;
}
.flow12 > li {
	list-style-type: none;
	position: relative;
  padding-bottom: 50px;
	display: flex;
	align-items: flex-start;
}
.flow12 > li:nth-of-type(even)::after {
	content: "";
	position: absolute;
	left: 50px;
	top: 0;
	width: 0;
  height: 100%;
	border-left: 4px dotted #d4d4d4;
}
.flow12 > li:nth-of-type(odd)::before {
	content: "";
	position: absolute;
	left: 50px;
	top: -40px;
	width: 20%;
	height: 40px;
}
.flow12 > li:nth-of-type(odd)::after {
	content: "";
	position: absolute;
	left: 50px;
	top: 50px;
	width: 20%;
	height: calc(100% - 50px);
	border-left: 4px dotted #d4d4d4;
}
.flow12 > li:first-of-type::before, .flow12 > li:last-of-type::after {
  content: unset;
}
.flow12 > li dl {
	display: inline-block;
	vertical-align: top;
	width: calc(100% - 130px);
}
.flow12 > li .icon12 {
	display: inline-block;
	margin: 0;
	width: 100px;
	height: auto;
	margin-right: 20px;
	text-align: center;
	font-weight: bold;
	vertical-align: middle;
	font-size: 2rem;
	line-height: 100px;
	background: #B058D6;
	color: #fff;
	border-radius: 100vh;
	position: relative;
	z-index: 1;
}
.flow12 > li dt {
	display: inline-block;
	margin: 1rem 0 0.5rem;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: .1em;
}
.flow12 > li dd {
	max-width: 550px;
	margin: 0;
	font-weight: normal;
	line-height: 2;
	letter-spacing: .1em;
}

@media screen and (min-width: 960px) {
	.flow12 > li:nth-of-type(even) {
		margin-left: 20%;
		padding-top: 20px;
	}
	.flow12 > li:nth-of-type(odd)::after {
		border-bottom: 4px dotted #d4d4d4;
	}
	.flow12 > li:nth-of-type(odd)::before {
		border-top: 4px dotted #d4d4d4;
		border-left: 4px dotted #d4d4d4;
	}
	.flow12 > li:nth-of-type(even)::after {
		height: calc(100% - 40px);
	}
}

/*テーブル　テンプレートパーティ　パーツ
---------------------------------------------------------------------------*/


/*　両側がめくれているような影のあるデザイン*/
.ttl_3d19 {
  background-color: #4c9ac0;
  color: #fff;
  font-weight: bold;
  position: relative;
  padding: 0.3em 0.5em;
  text-align: center;
}
.ttl_3d19::before,.ttl_3d19::after {
  position: absolute;
  bottom: 30px;
  width: 20%;
  height: 7px;
  background: transparent;
  box-shadow: 0 25px 20px rgba(0, 0, 0, .8);
  content: "";
  z-index: -1;
}
.ttl_3d19::before {
  transform: rotate(-5deg);
  left: 5px;
}
.ttl_3d19::after {
  transform: rotate(5deg);
  right: 5px;
}
/*実験*/
.container {
    /* これが最も重要 */
    display: flex; 
    
    /* 要素間のスペースを均等に開ける */
    justify-content: space-between; 
    
    /* 垂直方向の中央揃え */
    align-items: center; 
    
    border: 1px solid #ccc;
    padding: 10px;
    height: 100px;
}

.item {
    padding: 10px;
    background-color: #f0f0f0;
}


/*テンプレートパーティ　２カラムアクション付きを３カラムに*/
/*list-c3-parts（お問い合わせ、オンラインショップ）
---------------------------------------------------------------------------*/
.list-c3-parts > a {
    text-decoration: none;
    display: block;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	/*２つのボックスを囲むボックス*/
	.list-c3-parts {
		display: flex;	/*横並びにする*/
	}

	}/*追加指定ここまで*/


/*ボックス１個あたり*/
.list-c3-parts .list-parts {
	text-align: center;
	position: relative;
	overflow-y: hidden;
	color: #fff;		/*文字色*/
	padding: 5rem 2rem;	/*上下、左右へのボックス内の余白*/
	margin: 1rem 0;		/*上下、左右へのマージン*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	.list-c3-parts > * {
		flex: 1;
	}
	.list-c3-parts .list-parts {
		margin: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.list-c3-parts > a .list-parts {
		height: 100%;
	}

	}/*追加指定ここまで*/


/*左側ボックスの背景*/
.list-c3-parts .list-parts.image1-parts {
	background: url("../images/1.jpg") no-repeat center center / cover;
}
/*右側ボックスの背景*/
.list-c3-parts .list-parts.image2-parts {
	background: url("../images/2.jpg") no-repeat center center / cover;
}

/*h4見出し*/
.list-c3-parts h4 {
	font-weight: 200;	/*細字にする*/
	line-height: 1.2;	/*行間を狭く*/
}

/*h4見出し内のメインテキスト（main-text-parts）*/
.list-c3-parts h4 .main-text-parts {
	display: block;
	font-size: 3rem;		/*文字サイズ。3倍。*/
	padding-top: 1.5rem;	/*上に空ける余白*/
	padding-bottom: 3rem;	/*下に空ける余白*/
}

	@media screen and (min-width:600px) {

    /* 親を横並び＆折返し可能に */
    .list-c3-parts {
        display: flex;
        flex-wrap: wrap; /* ← 3つ以上でも折り返し防止 */
    }

    /* 子要素（aタグ）を3分割 */
    .list-c3-parts > a {
        width: calc(100% / 3); /* ← 3カラム */
        flex: 0 0 calc(100% / 3);
    }

    /* 各ボックスデザイン維持 */
    .list-c3-parts .list-parts {
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
}


/*h4見出し内のサブテキスト（sub-text-parts）*/
.list-c3-parts h4 .sub-text-parts {
	position: relative;
	padding: 0 5rem;	/*上下、左右への余白設定ですが、両サイドのラインの配置にも影響します。お好みで。*/
}
/*h4見出し内のサブテキストの左右のライン*/
.sub-text-parts::before {left: 0;}
.sub-text-parts::after {right: 0;}
.list-c3-parts h4 .sub-text-parts::before,.list-c3-parts h4 .sub-text-parts::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 2rem;	/*線の長さ*/
	border-top: 1px solid #fff;	/*ラインの幅、線種、色*/
}

/*見出しの下の説明テキスト*/
.list-c3-parts .list-parts .text-parts {
	position: relative;z-index: 1;
	font-size: 0.85rem;	/*文字サイズ85%*/
}

/*マウスオン用のアニメーション*/
.list-c3-parts .list-parts::before {
	content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;
	background: rgba(0,0,0,0.6);		/*写真に重ねておく半透明の黒い色。0,0,0は黒のことで0.6は色が60%出た状態。*/
	transition: transform 0.3s 0.1s;	/*アニメーションの速度（0.3秒）と待機時間（0.1秒）。*/
}
.list-c3-parts .list-parts:hover::before {
	transform: translateY(100%);	/*マウスオンで半透明の黒を枠外へ出す。-100%にすると逆に移動します。*/
}


/*ステップアクション*/
.timeline-003 {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 0;
}

.timeline-003 li {
    display: flex;
    flex: 1 1;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    color: #969da3;
    font-size: .8em;
}

.timeline-003 li.prev,
.timeline-003 li.current {
    color: #2589d0;
}

.timeline-003 li::before {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-bottom: 6px;
    content: '';
    border: 2px solid #d6dde3;
    border-radius: 50%;
    background-color: #fff;
}

.timeline-003 li.prev::before,
.timeline-003 li.current::before {
    border-color: #2589d0;
}

.timeline-003 li:not(:last-child)::after {
    position: absolute;
    top: 8px;
    left: 50%;
    z-index: -1;
    width: 100%;
    height: 2px;
    background-color: #d6dde3;
    content: '';
}

.timeline-003 li.current::before,
.timeline-003 li.prev::after {
    background-color: #2589d0;
}

/*　タブを追加　---------------------------------------------*/
.tab-4 {
    display: flex;
    flex-wrap: wrap;
	justify-content: center;     /* ← タブ全体を中央寄せ */
    gap: 2px;                    /* ← タブ同士の余白（必要なら） */
    max-width: 100%;
	margin: 0 auto;              /* ← 親幅内で中央に配置 */
}

.tab-4 > label {
    flex: 1 1;
    order: -1;
    position: relative;
    min-width: 70px;
    padding: .3em 1em;
    background-color: #f2f2f2;
    color: #555;
    font-size: .9em;
    text-align: center;
    cursor: pointer;
}

.tab-4 label a {
    text-decoration: none;   /* ← 下線を消す */
    color: inherit;          /* ← ラベルの文字色を継承 */
}

.tab-4 > label:hover,
.tab-4 label:has(:checked) {
    background-color: #2589d0;
    color: #fff;
}

.tab-4 label:has(:checked)::before {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 9px;
    background-color: #2589d0;
    content: '';
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.tab-4 input {
    display: none;
}

.tab-4 > div {
    display: none;
    width: 100%;
    padding: 1.5em 1em;
}

.tab-4 label:has(:checked) + div {
    display: block;
}



/*　<!--スケジュール実験-->　*/
/* ===== スケジュール全体 ===== */
.schedule {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

/* アイテム間の余白 */
.schedule_item {
  margin-bottom: 2rem;
}

/* コンテンツ横並び */
.schedule_content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

/* ===== 左側：時間 + 線 + ● ===== */
.schedule_time_block {
  position: relative;
  width: 80px;   /* 時間の幅 */
  text-align: center;
}

/* 時間 */
.schedule_time {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

/* 縦線（時間ブロック内に描画） */
.schedule_line {
  width: 2px;
  height: 100%;
  background: #999;
  margin: 0 auto;
}

/* ●（丸） */
.schedule_dot {
  position: absolute;
  top: 50%;           /* 時間ブロックの中央に配置 */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: #2589d0;
  border-radius: 50%;
  z-index: 2;
}

/* ===== 右側：タイトル + 詳細 ===== */
.schedule_text {
  flex: 1;
}

.schedule_title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
}

.schedule_detail p {
  margin-top: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.schedule ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.schedule li {
  margin-bottom: 2rem;
}

/* 1行目：時間・●・タイトル */
.schedule_row {
  display: flex;
  align-items: center;
  gap: 14px;     /* 時間→●→タイトルの間隔 */
}

/* 時間 */
.schedule_time {
  font-size: 1.2rem;
  font-weight: bold;
  white-space: nowrap;
}

/* ● */
.schedule_dot {
  width: 12px;
  height: 12px;
  background: #2589d0;
  border-radius: 50%;
}

/* タイトル */
.schedule_content_title {
  font-size: 1.1rem;
  font-weight: bold;
}

/* 2行目：説明文（タイトルの左に揃う） */
.schedule_content_detail {
  margin-left: calc(1.2rem + 12px + 14px + 14px);
  /* 時間幅 + ●サイズ + ギャップ 2個分 */
  margin-top: 0.4rem;
}

.schedule_content_detail p {
  margin: 0;
  line-height: 1.6;
}

/* モバイル向け（必要に応じて） */
@media screen and (max-width: 480px) {
  .schedule_content {
    flex-direction: column;
  }
  .schedule_time_block {
    width: auto;
    text-align: left;
  }
  .schedule_line {
    display: none; /* 縦線は表示しない、または別スタイルに */
  }
  .schedule_dot {
    position: static;
    transform: none;
    margin: 0.25rem 0;
  }
}
