@charset "utf-8";
/* CSS Document */

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
li {
	list-style-type: none;
}

ul.disc {
	padding-left: 20px;
}
ul.disc li {
	list-style-type: disc;
}

.num-list {
  list-style: none; /* デフォルトの数字を消す */
  counter-reset: my-counter; /* カウンターをリセットして初期化 */
  padding-left: 0;
}

.num-list li {
  counter-increment: my-counter; /* カウンターを1ずつ増やす */
  margin-bottom: 0.5em;
}

.num-list li::before {
  content: counter(my-counter) "） "; /* 番号の後ろに ) をつける */
}


body{
	width: 100%;
	margin: auto;
	padding: 0;
	text-align:center;
 }

 #wrapper{
	width: 100%;
	margin: auto;
 }
 #contaner{
	width: 98%;
	max-width: 1260px;
	margin: 0 auto 50px;
	padding: 0 1%;
	text-align: left;
	background-color: #FFF;
	font-size: 1.2em;
	line-height: 1.6;
 }

 footer {
	position: relative;
	bottom: 0;
	width: 100%;
	}
  .footer_in {
	width: 100%;
	margin: auto;
	justify-content: space-between;
	background: #ececec;
  }
  .footer_link_in {
	width: 100%;
	max-width: 1260px;
	margin: auto;
  }
  .footer_link_in ul {
    letter-spacing: -.4em;
	padding: 5px 7px;
	text-align: right;
  }
  .footer_link_in ul li {
	display: inline-block;
	padding: 5px 0;
    letter-spacing: 0;
	font-size: 0.9em;
	margin-left: 30px;
  }

  .copyright{
	width: 100%;
	background-color: #969696;
}
  .copyright ul{
	width: 100%;
	max-width: 1260px;
	margin: auto;
	padding: 20px 0;
	color: #fff;
	font-size: 0.8em;
	text-align: center;
}
  .copyright ul li{
	margin-right: 5px;
}


 

/*------------- link ----------------*/
a:link {
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
}

a:hover {	
	opacity: 0.5;
	filter:alpha(opacity=50);
	-moz-opacity: 0.5;
}
/*------------- line ----------------*/
a:link {
	color: #105096;
	text-decoration: none;
}
a:visited {	
	color: #105096;
	text-decoration:none;
}
a:hover {	
	text-decoration: none;
}

/*------------- img ----------------*/
figure {
	position: relative;
	margin: auto;
	text-align: center;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
}
a img {	
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
}
a img:hover {	
	opacity: 0.5;
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
}




.blue {
	color: #4574A3;
	text-shadow: 1px 1px 1px #E6FFFF;/*- 青 -*/
}
.pink {
	color: #E8204E;
	text-shadow: 1px 1px 3px #FAC7C1;/*- 桃 wakiaiai -*/
}
.gray {
	color: #5C637E;
}
.red {
	color: #CC0000;
}
.orange{
	color: #FF9900;
	text-shadow: 1px 1px 1px #E6FFFF;/*- 青 -*/
}



a.btn2:link , a.btn2:visited{
    color: #0C1549;
    text-align: center;
}
.btn2{
    display: inline-block;
    margin: 5px 0;
    text-decoration: none;
    border-radius: 4px;
    background-image: -webkit-linear-gradient(#81AEFC 0%, #C8F0FC 100%);
    background-image: linear-gradient(#81AEFC 0%, #C8F0FC 100%);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
    border-bottom: solid 3px #5e7fca;
}
.btn2{
    padding: 7px 10px;
}


.btn-s {
  display: inline-block;
  margin: 0.3rem 0.2rem;
  padding: .5rem 1rem;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  background-color: #ccc;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.2;
  border-radius: 1.0rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
a.btn-s {
  color: #0C1549;
}


/*--- link ---*/
  a.yamaru{
	margin-left: 5px;
  }
  a.yamaru:before{
	content: "\f138";
	font-family:"FontAwesome";
	margin: 0 5px;
	color: #0C1549;
	font-size: 1.0rem;
  }





.text p {
	text-indent: 1em;
 }

.ma-t1 {
	margin-top: 10px;
 }
.ma-t2 {
	margin-top: 20px;
 }
.ma-t3 {
	margin-top: 30px;
 }
.ma-auto {
	margin: auto;
 }

.f-l3 {
	font-size: 1.3em;
 }

.f-l20 {
	font-size: 2.0em;
 }

.t-c{
	text-align: center;
 }
.t-l{
	text-align: left;
 }

.f-b{
	font-weight: 800;
 }



.inline , .inline-ma-r1 , .inline-ma-r3 , .inline-ma-r5 {
    letter-spacing: -.4em;
}
.inline li , .inline-ma-r1 li , .inline-ma-r3 li , .inline-ma-r5 li {
	display: inline-block;
    letter-spacing: 0;
    padding: 3px 0;
}
.inline-ma-r1 li {
    margin-right: 10px;
}
.inline-ma-r3 li {
    margin-right: 30px;
}
.inline-ma-r5 li {
    margin-right: 50px;
}

.qr {
display: flex;
justify-content: center;
align-items: center;
}
.qr_child {
padding: 20px;
}


section {
  width: 100%;
  margin: auto;
}



/*---------------------------*/
hr {
    clear: both;
	height: 0;
	border: 0;
}

.line03 {
    padding-top: 30px;
    margin-bottom: 30px;
 }
.line17 {
	border-bottom: 1px dotted rgba(153,153,204,.3);
    padding-top: 30px;
    margin-bottom: 30px;
 }


  .pdf:after ,
  .word:after {
  font-family: FontAwesome;
  padding-left: 3px;
  font-size: 1.8em;
  }
  .pdf:after {
  content: '\f1c1';
  color: #BD0000;
  }
  .word:after {
  content: '\f1c2';
  color: #039;
  }

.biko {
    font-size: .9em;
	color: #8086A2;
	margin-left: 5px;
}
.biko:before {
	font-family: FontAwesome;
	content: '\f069';
	font-size: .5em;
	vertical-align: middle;
}

.no-spam {
	display: none;
}

/*- 訂正 -*/
.del {
   text-decoration : line-through ;
 }
 
.bg-gray {
	background-color: #ececec;
}





.waku1{
	padding: 30px;
	border: 2px solid #c2d6ed;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.parent {
  display: flex;
  justify-content: center;
}
        .box{
			display: inline-block;
            align-items: center;
            margin: 0 auto;
            background-color: #ffffff;
            padding: 24px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }


.en {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #898FA9;
}



/* 全体のコンテナ */
.timeline-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', sans-serif;
  color: #333;
}

/* タイトル */
.timeline-title {
  text-align: center;
  font-size: 2rem;
  margin: 70px 0 30px;
  letter-spacing: 0.1em;
	color: #2d56a3;
  position: relative;
}

.timeline-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #0076ff; /* アクセントカラー */
  margin: 10px auto 0;
}

/* タイムラインの軸線 */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15px; /* スマホ時の線の位置 */
  height: 100%;
  width: 2px;
  background: #e0e0e0;
}

/* 各アイテムの並び */
.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 40px; /* 線からの距離 */
}

/* タイムライン上のドット */
.timeline-item::after {
  content: '';
  position: absolute;
  left: 11px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: #fff;
  border: 2px solid #0076ff;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}

/* マウスホバーでドットを光らせる */
.timeline-item:hover::after {
  background: #0076ff;
  transform: scale(1.2);
}

/* 時間帯のスタイリング */
.timeline-time {
  font-size: 0.9rem;
  font-weight: bold;
  color: #0076ff;
  margin-bottom: 5px;
}

/* コンテンツカード */
.timeline-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #0076ff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
  margin: 10px 0;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #111;
}

.timeline-content p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* カテゴリタグ */
.category {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 4px;
  text-transform: uppercase;
}
.tag-open { background: #e3f2fd; color: #0d47a1; }
.tag-session { background: #e8f5e9; color: #1b5e20; }
.tag-break { background: #fff3e0; color: #e65100; }

/* パソコン表示（画面幅768px以上）の調整 */
@media (min-width: 768px) {
  .timeline::before {
    left: 160px; /* パソコン時は線を右に寄せる */
  }
  
  .timeline-item {
    display: flex;
    padding-left: 0;
  }
  
  .timeline-item::after {
    left: 156px; /* パソコン時のドットの位置 */
    top: 24px;
  }
  
  .timeline-time {
    width: 130px;
    text-align: right;
    padding-right: 30px;
    padding-top: 20px;
    flex-shrink: 0;
    font-size: 1rem;
  }
  
  .timeline-content {
    flex-grow: 1;
  }
}


/* プロフィールカード全体のスタイル */
        .profile-card {
            display: flex;
            align-items: center;
            gap: 24px; 
            max-width: 800px; 
            margin: 60px auto 0;
            background-color: #ffffff;
            padding: 24px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        /* 画像エリアのスタイル */
        .profile-image {
            flex-shrink: 0; /* 画像が縮まないように固定 */
            width: 200px;   /* 画像の横幅 */
            height: 200px;  /* 画像の縦幅 */
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 縦横比を崩さずに枠内に収める */
            border-radius: 50%; /* 画像を丸くする場合（四角のままなら削除してOK） */
        }

        /* テキストエリアのスタイル */
        .profile-text {
            flex-grow: 1; /* 残りのスペースをすべて使う */
        }

        .profile-name {
            font-size: 1.25rem;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .profile-description {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.6;
        }

        /* 📱モバイル用の設定（画面幅が600px以下になったとき） */
        @media (max-width: 600px) {
            .profile-card {
                flex-direction: column; /* 縦並びにする */
                text-align: center;     /* テキストを中央揃えにする */
                padding: 16px;
            }

            .profile-image {
                margin-bottom: 8px; /* 下（テキストとの間）に余白を作る */
            }
        }

