/* 全体のリセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: Verdana, Meiryo UI, sans-serif;
}

/* ヘッダー（最上部固定） */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #eea03b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between; /* 左右端に配置 */
    padding: 0 20px;
    z-index: 1000;
}

/* ヘッダーロゴ（左側に固定） */
.header .logo {
    flex: 1;
    text-align: left;
}

/* ナビゲーションメニュー（中央に配置） */
.header .menu {
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: space-around;
}

.header .menu a {
    margin: 30 40px;
    padding: 0 10px; /* 左右に20pxの余白を追加 */
    min-width: 150px;
    text-decoration:   none; 
    color: black;
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: bold;
    transition: color 0.3s;
}

.header .menu a:hover {
    color: #ff6600;
}

/* ヘッダーテキスト（右側に固定） */
.header .header-text {
    flex: 1;
    text-align: right;
    margin-right: 20px;
    font-size: 14px;
    color: #000000;
}

/* モバイル対応（画面幅が768px以下のときメニューを縦に） */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        height: auto;
        padding: 10px;
    }

    .header .menu {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}
/* パララックスセクション */

.parallax {
    position: relative;
    width: 100%;
    height: 55vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-video {
    position: absolute;
    top: 5%;
    left: 0%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 0;
}

.parallax h1 {
    position: absolute;
    top: 30%;
    left: 10%;
    z-index: 1;
    color: white;
    font-size: clamp(20px, 5vw, 50px);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    text-align: left;
    white-space: nowrap;
}


@media (min-width: 1024px) {
    .parallax {
        background-attachment: fixed;
    }
}

/* メインコンテンツ */
.content {
    width: 100%;
    margin: 0px;
    margin-bottom: 0%;
    margin-right: 0%;
    padding: 0;
    background: #fff2e5;
    text-align: left;
    display: block;
    img-align:light;
    min-height: auto;

    font-size: clamp(16px, 2vw, 24px);
}

.content2 {
    width: 100%;
    margin left: 0;
    margin right: 0;
    padding: 20px;
    padding-left:5%;
    background-color: #ffffff;
    text-align: left;
    display: inline-block; 
    justify-content: space-around;
    white-space: nowrap;
    min-height: auto;
    font-size: clamp(16px, 1.8vw, 30px);
}

.content3 {
    max-width: 80%;
    display: flex;
    margin: 0;
    padding: 0;
    background: #fff2e5;
    text-align: left;
    display: flex;
    min-height: 80vh;
    font-size: clamp(8px, 1vw, 12px);
}

/* 横並び */

.flex {
  display: flex; /*横並び*/

}
.flex image {
  width: 10%; /*画像サイズ指定*/
  align: left;
  margin: 0;
  padding-left:20%
  overflow: hidden;
  position: relative;
}

.flex .text {
  margin: 50px 0 0 20px;
  padding: 20% 5% 20% 10%;
  padding-left:20%;
}

.flex2 {
  display: flex; /*横並び*/

}
.flex image2 {
  width: 10%; /*画像サイズ指定*/
  align: right;
  margin: 0;
  padding-left:20%
  overflow: hidden;
  position: relative;
}

.flex .text2 {
  margin: 50px 0 0 20px;
  padding: 20% 5% 20% 10%;
  padding-left:20%;
}


/* メインコンテンツ */
.content ul {
    padding-left: 0;
    list-style: none;
    display: flex;
}

.content ul li {
    text-align: left;
}




.txt1{
  font-size: 1vw;
}
.txt2{
  font-size: 3min;
  line-height: 1;
}
.txt3{
  font-size: 2vw;
  line-height: 2;
}
.txt4{
  font-size:2vw;
  line-height:1;
  text-shadow: 1px 1px 2px black;
}

.txt5{
  font-size: 4vmax;
}
.txt6
  font-size; 14px
line-height:normal;
}
.txt7{
  font-size: 100%;
}
.txt8{
font-size:2em;
line-height:0.8;
}
.txt9{
  font-size: 1.2vw;
  line-height: 1.2;
  margin-right: 1em;
  margin-left: 1em;
}
    .txt10 { 
     font-size: 1.3vw; 
     color: #0000ff;
     font-weight: bold; /*太字に*/
     line-height: 1.2; text-shadow: 1px 1px 2px black; 
}
.txt11{
  font-size: 0.9vw;
}


    .right{
      text-align: right;
    }
    .center{
      text-align: center;
    }
    .left{
      text-align: left;
    }

     img{
        vertical-align: top;
    }

    .img-right {
        float: right;
        width: 48%; /* 画像の幅を指定 */
        height: auto; /* 縦横比を維持 */
        margin-right: 50px; 
        margin-left: 10px; /* 画像とテキストの間に余白を追加 */
    }

    .img-right2 {
        float: right;
        width: 10%; /* 画像の幅を指定 */
        height: auto; /* 縦横比を維持 */
        margin-right: 50px; 
        margin-left: 10px; /* 画像とテキストの間に余白を追加 */
    }

    .img-right3 {
        float: right;
        width: 25%; /* 画像の幅を指定 */
        height: auto; /* 縦横比を維持 */
        margin-right: 50px; 
        margin-left: 10px; /* 画像とテキストの間に余白を追加 */
    }

    .img-right4 {
        float: right;
        width: 33%; /* 画像の幅を指定 */
        height: auto; /* 縦横比を維持 */
        margin-right: 50px; 
        margin-left: 10px; /* 画像とテキストの間に余白を追加 */
    }

    .img-right5 {
        float: right;
        width: 7%; /* 画像の幅を指定 */
        height: auto; /* 縦横比を維持 */
        margin-right: 50%; 
        margin-left: 10px; /* 画像とテキストの間に余白を追加 */
    }

    .img-right6 {
        float: right;
        width: 15%; /* 画像の幅を指定 */
        height: auto; /* 縦横比を維持 */
        margin-right: 55%; 
        margin-left: 10px; /* 画像とテキストの間に余白を追加 */
    }

    .img-left {
        float: left;
        width: 25%; /* 画像の幅を指定 */
        height: auto; /* 縦横比を維持 */
        margin-left: 30%; 
        margin-right: 10px; /* 画像とテキストの間に余白を追加 */
    }

    .img-left2 {
        float: left;
        width: 50%; /* 画像の幅を指定 */
        height: auto; /* 縦横比を維持 */
        margin-left: 5%; 
        margin-right: 20px; /* 画像とテキストの間に余白を追加 */
    }

    .img-left3 {
        float: left;
        width: 25%; /* 画像の幅を指定 */
        height: auto; /* 縦横比を維持 */
        margin-left: 5%; 
        margin-right: 20px; /* 画像とテキストの間に余白を追加 */
    }

    .img-left4 {
        float: left;
        width: 50%; /* 画像の幅を指定 */
        height: auto; /* 縦横比を維持 */
        margin-left: 1em; 
        margin-right: 2%; /* 画像とテキストの間に余白を追加 */
    }

    .img-left5 {
        float: left;
        width: 15%; /* 画像の幅を指定 */
        height: auto; /* 縦横比を維持 */
        margin-left: 1em; 
        margin-right: 2%; /* 画像とテキストの間に余白を追加 */
    }

    .img-left6 {
        float: left;
        width: 25%; /* 画像の幅を指定 */
        height: auto; /* 縦横比を維持 */
        margin-left: 1em; 
        margin-right: 2%; /* 画像とテキストの間に余白を追加 */
    }

    .img-center {
        float: center;
        width: 50%; /* 画像の幅を指定 */
        height: auto; /* 縦横比を維持 */
        margin-left: 50px; 
        margin-right: 10px; /* 画像とテキストの間に余白を追加 */
    }

.example {
  position: relative;
  }

.example p {
  position: absolute;
  color:#233B6C;/*文字の色*/
  font-weight: bold; /*太字に*/
  font-size: 1.5vw;/*サイズ*/
  line-height: 1.2;
  top: 5%;
  left: 1.3em;
  }

.example img {
  width: 100%;

  }

.example2 {
  position: relative;
  }

.example2 p {
  position: absolute;
  color:#000000;/*文字の色*/
  font-weight: normal /*太字に*/
  font-size: 1vw;/*サイズ*/
  line-height: 1.2;
  top: 2%;
  left: 1.2em;
  }

.example2 img {
  width: 100%;
  top: 50%;
  right: 50%;
  }

.example3 td{
    vertical-align: top;
}
.example4 {
  position: relative;
  }

.example4 p {
  position: absolute;
  color:#000000;/*文字の色*/
  font-weight: normal /*太字に*/
  font-size: 1vw;/*サイズ*/
  line-height: 1.2;
  top: 2%;
  left: 3em;
  }

.example4 img {
  width: 80%;
  left: 5%;
  }

    .zoomable-image {
      transition: transform 0.3s ease; /* 拡大のトランジション設定 */
    }

    .zoomable-image:hover {
      transform: scale(3); /* マウスオーバー時に画像を1.2倍に拡大 */
      /* 必要に応じて、拡大時の位置を調整 */
      /* 拡大時に画像が見切れないように、overflow:hidden; を親要素に指定することもできます */
    }


/* ボックスのコンテナ */
.container {
    display: flex;
    background-color: #fff2e5;margin: 25px;
    justify-content: flex-start; /* 左揃え */
    gap: 3px; /* 間隔を小さく */
    max-width: 100%;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    flex-wrap: wrap;
    font-size: clamp(16px, 1.6vw, 30px);
}
.container2 {
    display: block;
    background-color: #fff2e5;
    justify-content: flex-start; /* 左揃え */
    gap: 3px; /* 間隔を小さく */
    max-width: 100%;
    width: 100%;
    margin:  0;
    margin-top: 0;
    padding: 0;
    flex-wrap: wrap;
    font-size: clamp(16px, 1.6vw, 30px);
}


.container3 {
    display: flex;
    background-color: #ffffff;
    justify-content: flex-start; /* 左揃え */
    gap: 3px; /* 間隔を小さく */
    max-width: 100%;
    width: 100%;
    margin: 10px 0;
    margin-top: 2%;
    padding: 10px;
    flex-wrap: wrap;
    font-size: clamp(16px, 1.6vw, 30px);
}

.container4 {
  display: flex;
  justify-content: center;
}

.image-text {
  display: flex;
  align-items: center;
}

.image {
  width: 20%; /* 画像の幅を調整してください */
  height: auto; /* 画像の高さは自動調整 */
  margin-left: 12em; 
}

.text {
  margin-left: 1em; /* テキストと画像の間に余白を設けます */
  text-align: left; /* テキストを左揃えにします */
}

a {
    color: inherit;
    text-decoration: none;
}


/* ボックスデザイン */
.box {
    width: calc(50% - 5px); /* gapの影響を考慮 */
    max-width: 100%;
    height: auto;
    background-color: #ffffff;
    background-position: top right;
    display: flex;
    align-items: flex-start;
    padding: 10px;
    padding-left: 1%;
    padding-right: 1%;
    border: 1px solid #fff2e5; /* ボーダーを小さくする */
    box-sizing: border-box; /* paddingとborderが幅に影響しないように */
    font-size: clamp(16px, 1.8vw, 30px);
}
.box2 {
    width: calc(70% - 5px); /* gapの影響を考慮 */
    max-width: 100%;
    height: auto;
    margin: 0 auto;  /* 水平方向の中央揃え */
    background-color: #ffffff;
    background-position: bottom right;
    display: block;
    align-items: flex-start; center;
    padding: 10px;
    padding-left: 1%;
    padding-right: 1%;
    border: 1px solid #fff2e5; /* ボーダーを小さくする */
    box-sizing: border-box; /* paddingとborderが幅に影響しないように */
    font-size: clamp(16px, 1.8vw, 30px);
}
  .box3 {
    width: calc(70% - 5px); 
    border: 2px solid black;  /* 線の太さ 2px、実線、黒色 */
    padding: 10px; /* 文字と枠線の間の余白 */
    display: block; /* 要素が横に並ぶように */
    text-align: left; 
  }
  .box4 {
    width: calc(88% - 5px); 
    border: 2px solid black;  /* 線の太さ 2px、実線、黒色 */
    padding: 10px; /* 文字と枠線の間の余白 */
    display: block; /* 要素が横に並ぶように */
    text-align: left; 
    background-position: center center;
  }
  .box5 {
    width: calc(90% - 5px); 
    border: 0;  /* 線の太さ 2px、実線、なし */
    padding: 10px; /* 文字と枠線の間の余白 */
    display: block; /* 要素が横に並ぶように */
    text-align: left; 
  }
  .box6 {
    width: calc(88% - 5px); 
    border: 2px solid blue;  /* 線の太さ 2px、実線、なし */
    padding: 10px; /* 文字と枠線の間の余白 */
    display: block; /* 要素が横に並ぶように */
    text-align: left; 
  }

/* 追加のボックスデザイン */

.box_css{

width:250px;
display: flex;
height: auto;
margin-right: auto;
box-align: left;
border: solid 2px #fff2e5;
background-color: #fff2e5;
background-size: contain;
background-position: bottom;
background-repeat: no-repeat;
padding:0px;
position: relative;
z-index: 1;


.margin-area {
  margin-left:  1em; /* 左の余白 */
  margin-right: 1em; /* 右の余白 */
  margin-top:   1em; /* 上の余白 */
  margin-bottom:1em; /* 下の余白 */
}

p {
  line-height: 1.5;
  font-size: clamp(16px, 1.8vw, 30px);
}

}

.sitemap {
    background-color: #fff2e5;
    font-size: clamp(1px, 1.0vw, 13px);
    padding: 20px;
    margin-top: 0px
    border-radius: 8px;
    max-width: 100%;
}

.sitemap ul {
    list-style: none;
    margin-top: 0;
    display: flex 1 ;
    padding: 10;
}

.sitemap li {
    text-align: center;
    margin: 20px 0;
    margin-left: 60px;
    display: block;
}

.sitemap a {
    text-decoration: none;
    color: #0067C0;
    font-weight: bold;
    display: block;
    padding: 5px;
    transition: color 0.3s;
}

.sitemap a:hover {
    color: #ff6600;
}

/* ネストされたリスト（サブメニュー）のスタイル */
.sitemap ul ul {
    display: block;
    margin-left: 0px;
    padding-left: 10px;
    border-left: 2px solid #ddd;
}

.sitemap ul ul li {
    margin: 0px 0;
}

/* 右下固定画像 */
.fixed-bottom-right {
    position: fixed;
    bottom: 20px;
    right: 0px;
    width: 550px;
    height: auto;
    z-index: -1;
}

/* フッター（最下部固定） */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: #0097db;
    color: white;
    font-size: 0.7em;
    text-align: center;
    padding: 15px;
    display: flex;
    align-items: left;
    justify-content: right;
    z-index: 1000;
}

