---------------------------------------------------- */

/* ■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: 55%;
  left: 10%;
  width: 50%;
  z-index: 6;
  font-size: 30px;
  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;
}

/* パンくず　ここまで */
/* ヘッダー設定　ここまで */

/* 文字色共通設定 */
h2, h3, h4 {
  color: dimgray;
}

h2, h3, h4 {
  text-align: center;
  font-weight: bold;
}

dd {
  margin: 40;
  text-align: left;
  color: #000;
}

ul {
  list-style-type: none;
}

/* privacy 記事の背景設定 */
.privacy {
  background-color: #fff;
  margin: 3% 20%;
  border-radius: 5px; 
  padding: 3%;
}

/* buttonの設定 */
.privacy a {
  text-decoration: none; 
  color: white;
}

.button {
  display: block;
  padding: 10px 20px; /* ボタンの内側の余白 */
  font-size: 16px; /* フォントサイズ */
  color: #fff; /* 文字色 */
  background-color: #0e2439; /* ボタンの背景色 */
  border: none; /* ボーダーをなしに */
  border-radius: 30px; /* 角を丸くする */
  text-align: center; /* テキストを中央揃えに */
  text-decoration: none; /* テキストの下線を消す */
  cursor: pointer; /* カーソルをポインターに */
  transition: background-color 0.3s ease; /* 背景色の変化にアニメーションを追加 */
}

/* ボタン　マウスオンで背景色変更 */
.button:hover {
  background-image: linear-gradient(to bottom, rgba(14, 36, 57, 0.88)30%, rgba(246, 114, 151, 1)110%); 
  box-shadow: unset;
  transform: translate(4px,4px);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

/* PCでSPのハンバーガーを非表示 */
@media screen and (min-width: 641px) {

  #content1 {
    display: none;
  }
}

/* PC用 設定ここまで */

/* ============================= */
/* PC用 ブレイクポイント　1025px～1200px */
/* ============================= */


@media screen and (min-width: 1025px) and (max-width:1200px) {
  img {
    width: 100%;
  }

  .main-title {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 100%;
    z-index: 6;
    font-size: 20px;
    color: #fff;
    letter-spacing: 10px;
  }

  .breadcrumb {
    position: absolute;
    top: 58%;
    margin: 0 8%;
    font-size: 20px;
    list-style: none;
    z-index: 10;
  }
}


/* タブレット用 ブレイクポイント834px 設定ここまで */

/* ============================= */
/* PC用 ブレイクポイント　768～1024px */
/* ============================= */

@media (min-width: 768px) and (max-width: 1024px) {

  img {
    width: 100%;
  }
  
  .main-title {
    position: absolute;
    top: 35%;
    left: 10%;
    width: 100%;
    z-index: 6;
    font-size: 18px;
    color: #fff;
    letter-spacing: 10px;
  }

  .breadcrumb {
    position: absolute;
    top: 45%;
    margin: 0 8%;
    font-size: 15px;
    list-style: none;
    z-index: 10;
  }

}


/* ============================= */
/* タブレット用 ブレイクポイント　641～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 {
  position: absolute;
  top: 35%;
  left: 10%;
  width: 100%;
  z-index: 6;
  font-size: 18px;
  color: #fff;
  letter-spacing: 10px;
}

.breadcrumb {
  position: absolute;
  top: 45%;
  margin: 0 8%;
  font-size: 15px;
  list-style: none;
  z-index: 10;
}
}

/* ============================= */
/* SP用 設定 ブレイクポイント 401px～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: 20%;
  left: 10%;
  width: 100%;
  z-index: 6;
  font-size: 14px;
  color: #fff;
  letter-spacing: 2px;
}

/* sp パンくず設定 */

.breadcrumb {
  position: absolute;
  top: 25%;
  margin: 0 5%;
  font-size: 15px;
  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;
}

/* パンくず　ここまで */

.privacy {
  background-color: #fff;
  margin: 3% 10%;
  border-radius: 5px;
  padding: 3%;
  font-size: 14px;
}
}
/* SP用 ブレイクポイント640px 設定ここまで */

/* ============================= */
/* SP用 設定 ブレイクポイント　400px */
/* ============================= */

@media screen and (max-width: 400px) {

  img {
    width: 100%;
  }

  .header-logo {
    width: 20%;
    position: absolute;
    bottom: 85%;
  }

  /* ヘッダーナビ　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: 15%;
  left: 10%;
  width: 60%;
  z-index: 6;
  font-size: 13px;
  color: #fff;
  letter-spacing: 2px;
}
  
  /* sp パンくず設定 */
  
  .breadcrumb {
    position: absolute;
    top: 24%;
    margin: 0 1%;
    font-size: 13px;
    list-style: none;
    z-index: 10;
  }

  .privacy {
    background-color: #fff;
    margin: 3% 8%;
    border-radius: 5px;
    padding: 3%;
    font-size: 13px;
  }
}
