@charset "utf-8";
/* -----------------------------共通部分----------- */
img {
  max-width: 100%;
}
h1 {
  color: #023859;
  font-family: "Montserrat", sans-serif;
}

.my_name {
  display: none;
}
/* -----------------------------header部-------------- */
/* --------------　固定窓　開始-------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 147px; /* ヘッダーの高さに合わせて調整 */
  background-color: #fff;
  z-index: 1000;
}
/* --------------　固定窓　終了-------------- */
/* -----------------------------main部-------------- */
.full-line {
  width: 100%; /* ビューポート幅いっぱい */
  height: 1px;
  background-color: #333; /* 線の色 */
  position: fixed; /* スクロールしても固定したい場合 */
  top: 20%; /* 画面中央に配置 */
  left: 0;
  z-index: 98;
  animation: expandLine 1s ease-out forwards;
}
@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.vertical-line {
  height: 100%; /* 画面全体の高さ */
  width: 1px;
  background-color: #666;
  position: fixed;
  left: 10%;
  top: 0;
  z-index: 98;
}
/* -----------------------------ナビメニュー----------- */
nav {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 1rem;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
nav ul {
  display: flex;
  justify-content: flex-end;
  gap: 10px; /* アイテム間の間隔 */
  margin-top: 5rem;
  list-style: none;
}
nav li {
  list-style: none;
  padding-right: 1rem;
  margin-right: 2rem;
  position: relative;
  z-index: 97;
  font-family: "Montserrat", sans-serif;
}
nav li a {
  text-decoration: none; /* 下線を消す */
  color: #333; /* 文字色（黒系） */
  font-size: 1rem;
  padding: .5rem .5rem;
  border-radius: 50%;
  position: relative;
}
nav li a:hover {
  background-color: #8eb7cd; /* ホバー時の色 */
  color: #333;
  border-radius: 50%;
  transition: .7s;
}
@media screen and (min-width: 800px) { /*PC版  800px以上*/
  /* --------------　固定窓　開始-------------- */
  header {
    height: 147px; /* PC用 */
  }
  .full-line {
    position: absolute;
    top: 147px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
  }
  /* --------------　固定窓　終了-------------- */
  /* -----------------------------main部-------------- */
  main {
    padding-top: 10rem;
    padding-bottom: 10rem;
    /*outline: 1px solid;*/
    max-width: 75%;
    margin: auto;
  }
  /* ------------------works 見出し部-------------- */
  h2 {
    font-family: "Montserrat", sans-serif;
    color: #023859;
    padding-top: 1rem;
    padding-bottom: .5rem;
  }
  h3 {
    color: #023859;
	 font-size: 1rem;
	 margin-bottom: 1.5rem;
  }
  h3 {
    display: flex;
    align-items: center;
    padding: .5em .7em;
    background-color: #f2f2f2;
    border-radius: 20px;
    color: #333333;
  }
  h3::before {
    display: inline-block;
    width: 5px;
    height: 1.5em;
    margin-right: .5em;
    background-color: #023859;
    content: '';
  }
	
	
	
  /* ------------------works banner部　-------------- */
  .banner_stripe {
    background-color: #bacbd5;
    border-radius: 20px;
    background: repeating-linear-gradient(to right, /* ← 縦ストライプに変更 */ #023859, #023859 15px, #bacbd5 15px, #bacbd5 25px);
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
	  
	  
    /*---   バナーリンクとsite_itemの間の余白   ---*/
    margin-bottom: 1rem;
  }
  .banner_link {
    display: block; /* aタグをブロック要素化 */
    text-decoration: none;
  }
  .banner_link:hover .banner_stripe {
    opacity: 0.8;
  }
  /* ------------------works main部-------------- */
	.container {
		max-width: 800px;
		margin: 0 auto;
	}

	
  .site_item {
    background-color: #bacbd5;
    border-radius: 20px;
    text-align: center;
  }
    .site_item p {
    line-height: 1.8;
	margin-bottom: 2rem;
  }
  .site_kinds {
    display: inline-block;
    background-color: #023859;
    width: 100px;
    color: #bacbd5;
    border-radius: 20px;
    padding-left: .3rem;
    margin: 1rem;
  }
  .site_capture {
    padding-top: 2rem;
  }

  .item_name {
    color: #023859;
    margin: .5rem auto;
    padding-bottom: 1rem;
  }

}
@media screen and (max-width: 799px) { /*モバイル版　799px未満*/
  body {
    background-image: none;
  }
  img {
    max-width: 80%;
  }
  /* ----------------header 部------ */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 87px; /* デフォルトはモバイル */
    background-color: #fff;
    z-index: 1000;
  }
  .full-line {
    top: 87px;
  }
  .vertical-line {
    display: none;
  }
  /* ----------------header 部　------ */
  nav ul {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
  }
  nav li {
    padding: 0;
    margin: 0;
  }
  nav li a {
    font-size: 0.9rem;
    padding: 0.6rem;
    background-color: #f0f0f0;
    border-radius: 12px;
    display: inline-block;
  }
  .floating-icon {
    width: 45px;
  }
  p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  /* ----------------------------main部----------- */
  main {
    padding-top: 5rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  table {
    padding-bottom: 1rem;
  }
  th {
    font-size: .875rem;
  }
  /* ----------------　-見出し部----------- */
  h1 {
    font-size: 1.1rem;
    text-align: center;
    padding: 3rem;
  }
  h2 {
	 font-size: 1.2rem;
		
	}
  /* ------------------works banner部　-------------- */
  .banner_link {
    display: block; /* aタグをブロック要素化 */
    text-decoration: none;
  }
  .banner_stripe {
    background-color: #bacbd5;
    border-radius: 20px;
    background: repeating-linear-gradient(to right, /* ← 縦ストライプに変更 */ #023859, #023859 15px, #bacbd5 15px, #bacbd5 25px);
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
    /*---   バナーリンク内の余白   ---*/
    padding-top: .5rem;
    /*---   バナーリンクとsite_itemの間の余白   ---*/
    margin-bottom: 2rem;
  }
  /* -----------------　　見出し-------------- */
	

  h2 {
    color: #023859;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
	  h3 {
    color: #023859;
	 font-size: 1rem;
	 margin-bottom: 1.5rem;
  }
  h3 {
    display: flex;
    align-items: center;
    padding: .5em .7em;
    background-color: #f2f2f2;
    border-radius: 20px;
    color: #333333;
  }
  h3::before {
    display: inline-block;
    width: 5px;
    height: 1.5em;
    margin-right: .5em;
    background-color: #023859;
    content: '';
  }
	
	
  /* ------------------works main部-------------- */

  .container {
    margin-right: .5rem;
    margin-left: .5rem;
  }
  .site_item {
    background-color: #bacbd5;
    border-radius: 20px;
    text-align: center;
    width: 100%;
    height: 100%;
    padding-bottom: .5rem;
	margin-bottom: 3rem;
  }
  .site_kinds {
    display: inline-block;
    background-color: #023859;
    width: 100px;
    color: #bacbd5;
    border-radius: 20px;
  }
  .site_capture {
    max-width: 70%;
    margin-top: 1rem;
  }
  .text_item {
    text-align: left;
  }
  .item_name {
    color: #023859;
  }
}