---------------------------------------------------- */

/* ■01.reset
--------------------------------------------------- */
body,
div,p,
dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
pre,code,
form,fieldset,legend,input,textarea,blockquote,
th,td,figure,figcaption
{
    margin:0;
    padding:0;
    -webkit-text-size-adjust: none;
    letter-spacing: 0.06em;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  line-height:25px;
  font-size:0.95em;
  max-width: 1920px;
  /* min-width: 960px; */
  margin: 0 auto 0 auto;
  background-color: #c2d4d8;
}

img {
  width: 100%;
} 

 .slider img { 
  max-width: 1920px; 
  height: auto; 
  margin: 0;
 } 

 ul.slider {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ヘッダー位置調整 */
.background-header {
  position: relative;
  top: 0; 
  left: 0; 
  z-index: 4;
  justify-content: space-between;
  width: 100%;
}

.header-item {
  position: absolute;
  top: 3%;
  max-width: 1920px; 
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}

.header-item a { 
  color: #fff; 
  text-decoration: none; 
}

.header-li {
  display: flex;
  list-style: none;
  font-size: 30px;
}

.header-li>li {
  margin-right: 50px;
}

.header-logo {
  width: 10%;
  height: auto;
  margin-left: 50px;
}

/* ヘッダー設定 ここまで*/

.main-title {
  position: absolute; 
  top: 50%;
  left: 10%; 
  width: 30%; 
  z-index: 6; 
  font-size: 50px;
  color: #fff;
  letter-spacing: 10px;
}

/* パンくず */
.breadcrumb {
  position: absolute; 
  top: 65%;
  margin: 0 8%;
  font-size: 20px;
  list-style: none;
  z-index: 10;
}

.breadcrumb li {
  display: inline;/*横に並ぶように*/
  list-style: none;
  font-weight: bold;/*太字*/
}

.breadcrumb li:after {
  /* >を表示*/
  content: '>';
  padding: 0 0.2em;
  color: #fff;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color: #fff;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

/* パンくず　ここまで */
/* ヘッダー設定　ここまで */

/* 文字色共通設定 */
h3, h4, p {
  color: dimgray;
}

h2, h3, h4 {
  text-align: center;
  font-weight: bold;
}

p {
  text-align: center;
}

/* news 記事の背景設定 */
.news-area {
  background-color: #fff;
  text-align: center;
  margin: 3% 20%;
  border-radius: 5px; 
  padding: 50px 0;
}

.news {
  margin-bottom: 50px;
}

h4 {
  position: relative;
  color: #333;
  display: inline-block;
  margin: 47px 0;
  text-shadow: 0 0 2px white;
  z-index: 1;
}

h4:before {
  content: "";
  position: absolute;
  background: #f6e4cb;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  z-index: -1;
}

/* ページネーション */
.page-nation {
  display: flex; /* フレックスボックスを使用 */
  justify-content: center; /* 中央に配置 */
  list-style: none; /* リストスタイルをなしにする */
  padding: 0; /* パディングをリセット */
  margin-bottom: 50px;
}

.page-nation li {
  margin: 0 10px; /* 各アイテムに間隔を設定 */
}

/*.page-nation a { */
  /*.text-decoration: none; /* 下線を消す */
 /*. color: dimgray /* リンクの色を設定 */

 /*. display: inline-block; /* インラインブロック要素として表示 */
  /*.border: 2px solid dimgray; /* 枠線の色と太さを設定 */
  /*.border-radius: 50%; /* 角を丸めて円形にする */
 /*. padding: 10px; /* 内側の余白を設定 */
 /*. text-align: center; /* テキストを中央に配置 */
/*.} */

.page-nation a:hover {
  color: dimgray; /* ホバー時のリンクの色 */
}

/* .page-nation a {
    box-sizing: border-box;
    display: inline-block;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    border: 1px solid dimgray;
    border-radius: 25px;
    color: dimgray;
  }*/
  
  .page-nation a:not(:hover) {
    text-decoration: none;
  }
  
  .page-nation .current a {
    background-color: dimgray;
    color: #fff;
    pointer-events: none;
  }
  
  .page-nation {
    margin: 50px;
  }

  .navi-links {
    display: flex;
  }

/* ページネーション　ここまで */


/* PCでSPのハンバーガーを非表示 */
@media screen and (min-width: 641px) {

  #content1 {
    display: none;
  }
}

/* PC用 設定ここまで */

/* ============================= */
/* PC用 ブレイクポイント　1025px～1200px */
/* ============================= */

/* PC用 */
@media screen and (min-width: 1025px) and (max-width:1200px)  {

  img {
    width: 100%;
  }
 
  .main-title {
    position: absolute; 
    top: 45%;
    left: 10%; 
    width: 30%; 
    z-index: 6; 
    font-size: 50px;
    color: #fff;
    letter-spacing: 10px;
    transform: translate(-10%, -50%);
  }
  
  /* パンくず */
  .breadcrumb {
    position: absolute; 
    top: 50%;
    margin: 0 7%;
    font-size: 20px;
    list-style: none;
    z-index: 6;
    transform: translate(-10%, -10%);
  }

}
 /* PC用スタイル 1025px～　ここまで*/

/* ============================= */
/* PC用 ブレイクポイント　768～1024px */
/* ============================= */

@media (min-width: 768px) and (max-width: 1024px) {

  img {
    width: 100%;
  }
 
  .main-title {
    position: absolute; 
    top: 25%;
    left: 10%; 
    width: 30%; 
    z-index: 6; 
    color: #fff;
  }

  .breadcrumb {
    position: absolute; /* 絶対位置に設定 */
    top: 40%;
    margin: 0 10%;
    font-size: 18px;
    list-style: none;
    z-index: 10;
    transform: translate(-10%, -100%);
  }
}

/* ============================= */
/* タブレット用 ブレイクポイント　640～767px */
/* ============================= */

@media screen and (min-width: 641px) and (max-width: 767px) {

  img {
    width: 100%;
  }

.header-logo {
  width: 15%;
}

.header-li {
  font-size: 24px;
}

.main-title h1 {
  font-size: 60px;
}

.main-title {
  position: absolute; 
  top: 20%;
  left: 10%; 
  width: 30%; 
  z-index: 6; 
  color: #fff;
}

.breadcrumb {
  position: absolute;
  top: 32%;
  margin: 0 9%;
  font-size: 18px;
  list-style: none;
  z-index: 10;
  transform: translate(-10%, -100%);
}

.news-area {
  background-color: #fff;
  text-align: center;
  margin: 3% 20%;
  border-radius: 5px;
  padding: 50px 5%;
}
}

/* タブレット用 ブレイクポイント 設定ここまで */

/* ============================= */
/* タブレット用 ブレイクポイント　401～640px */
/* ============================= */

@media screen and (min-width: 401px) and (max-width:640px) {

  img {
    width: 100%;
  }

  .header-item {
    max-width: 640px;
    width: 100%;
    align-items: flex-start;
  }

  .header-logo {
    width: 20%;
  }

  /* ヘッダーナビ　SP表示なし */
  .header-li {
    display: none;
  }
  
  /* ハンバーガー　表示設定 */

/* ハンバーガーボタンのスタイル */
#content1 {
  position: relative;
  height: 50vh;
  }

  #button1 {
  display: block;
  position: fixed;
  right: 0px;
  width: 50px;
  height: 50px;
  border: none;
  background: #0e2439;
  color: #fff;
  }

  #button1:hover {
  opacity: .6;
  }

.list1 {
  display: block;
  width: 100px;
  position: fixed;
  top: 50px;
  right: -120%;
  padding: 0;
  background: #0e2439;
  transition: all 0.8s;
  z-index: 6;
}

.list1 li {
  list-style: none;
  border-bottom: 1px solid #0e2439;
}

.list1 li:last-child {
  border-bottom: none;
}

.list1 li:hover {
  opacity: .6;
}

.list1 li a {
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #fff;
}

.open {
  right: 0;
}

@media all and (-ms-high-contrast: none) {
#button1:hover + .list1, .list1:hover {
  right: 0;
}
}
/*  ハンバーガー　表示設定 ここまで*/
/* SP main画像設定 */

.slider img { 
  width: 100%;
  height: 100%;
  margin: 0;
} 

.main-title {
  position: absolute;
  top: 12%;
  left: 10%;
  width: 30%;
  z-index: 4;
  font-size: 24px;
  color: #fff;
  letter-spacing: 5px;
}

/* sp パンくず設定 */
.breadcrumb {
  position: absolute;
  top: 21%;
  margin: 0 2%;
  font-size: 16px;
  list-style: none;
  z-index: 10;
}

.breadcrumb li {
display: inline;/*横に並ぶように*/
list-style: none;
font-weight: bold;/*太字*/
}

.breadcrumb li:after {
/* >を表示*/
content: '>';
padding: 0 0.2em;
color: #fff;
}

.breadcrumb li:last-child:after {
content: '';
}

.breadcrumb li a {
text-decoration: none;
color: #fff;
}

.breadcrumb li a:hover {
text-decoration: underline;
}

/* パンくず　ここまで */

.news-area {
  margin: 50px;
  padding: 5%;
}
}
/* SP用 ブレイクポイント640px 設定ここまで */

/* ============================= */
/* タブレット用 ブレイクポイント　～400px */
/* ============================= */

@media screen and (max-width:400px) {

  img {
    width: 100%;
  }
  
  .header-item {
    max-width: 640px;
    width: 100%;
    align-items: flex-start;
  }

  .header-logo {
    width: 20%;
  }

  /* ヘッダーナビ　SP表示なし */
  .header-li {
    display: none;
  }
  
  /* ハンバーガー　表示設定 */

/* ハンバーガーボタンのスタイル */
#content1 {
  position: relative;
  height: 50vh;
  }

  #button1 {
  display: block;
  position: fixed;
  right: 0px;
  width: 50px;
  height: 50px;
  border: none;
  background: #0e2439;
  color: #fff;
  }

  #button1:hover {
  opacity: .6;
  }

.list1 {
  display: block;
  width: 100px;
  position: fixed;
  top: 50px;
  right: -120%;
  padding: 0;
  background: #0e2439;
  transition: all 0.8s;
  z-index: 6;
}

.list1 li {
  list-style: none;
  border-bottom: 1px solid #0e2439;
}

.list1 li:last-child {
  border-bottom: none;
}

.list1 li:hover {
  opacity: .6;
}

.list1 li a {
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #fff;
}

.open {
  right: 0;
}

@media all and (-ms-high-contrast: none) {
#button1:hover + .list1, .list1:hover {
  right: 0;
}
}

.main-title {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 30%;
  z-index: 4;
  font-size: 20px;
  color: #fff;
  letter-spacing: 5px;
}

/* sp パンくず設定 */
.breadcrumb {
  position: absolute;
  top: 16%;
  margin: 0 1%;
  font-size: 14px;
  list-style: none;
  z-index: 10;
}

.breadcrumb li {
display: inline;/*横に並ぶように*/
list-style: none;
font-weight: bold;/*太字*/
}

.breadcrumb li:after {
/* >を表示*/
content: '>';
padding: 0 0.2em;
color: #fff;
}

.breadcrumb li:last-child:after {
content: '';
}

.breadcrumb li a {
text-decoration: none;
color: #fff;
}

.breadcrumb li a:hover {
text-decoration: underline;
}

/* パンくず　ここまで */

.news-area {
  background-color: #fff;
  text-align: center;
  margin: 3%;
  border-radius: 5px;
  padding: 20px 5%;
  font-size: 14px;
}

}