/* -----------------------------
   RESET & BASE STYLE
------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color: #111;
  background-color: #F1E1BF !important;
}

/* -----------------------------
   TYPOGRAPHY
------------------------------ */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 600;
}

p {
  margin: 0;
}


/* -----------------------------
   LAYOUT UTILITIES
------------------------------ */
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-center {
  justify-content: center;
  align-items: center;
}
.flex-between {
  justify-content: space-between;
  align-items: center;
}
.flex-column {
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* -----------------------------
   SPACING UTILITIES
------------------------------ */
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.pt-10 { padding-top: 10px; }
.pb-10 { padding-bottom: 10px; }

/* -----------------------------
   FONT SIZE UTILITIES
------------------------------ */
.fs-14 { font-size: 14px; }
.fs-16 { font-size: 16px; }
.fs-20 { font-size: 20px; }
.fs-24 { font-size: 24px; }
.fs-32 { font-size: 32px; }
.fs-40 { font-size: 40px; }



/* PCとSPで表示内容を変化させる */
  .hidden-sp{
    display: block;
  }
  .hidden-pc{
    display: none;
  }
  
  @media screen and (max-width: 767px) {
    .hidden-sp{
      display: none !important;
    }
    .hidden-pc{
      display: block;
    }
  }


/* -----------------------------
   DISPLAY UTILITIES
------------------------------ */
.hidden { display: none !important; }
.block { display: block !important; }

/* -----------------------------
   RESPONSIVE BREAKPOINTS
------------------------------ */
@media screen and (max-width: 1024px) {
  .pc-only { display: none !important; }
}

@media screen and (min-width: 1025px) {
  .sp-only { display: none !important; }
}


.border-bottom {
    border-bottom: 1px solid #dee2e6; 
}

.border-111 {
    border-bottom: 1px solid #111111; 
}


/* 改行 */
.br-sp {
    display: none;
  }
  
  @media screen and (max-width: 768px) {
    .br-pc {
      display: none;
    }
  
    .br-sp {
      display: inline-block;
    }
  }

.overflow-hidden{
    overflow:hidden;
}


/*-- 下層カバー --------------------------------------------------------------*/

.inCoverBg {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1920px;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inCoverTit {
    font-size: 43px;
    margin: 40px 0 0;
    padding: 20px 0;
    /* font-weight: 700; */
    color: #FFF;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, .5);
}


@media screen and (max-width: 768px) {
  .inCoverTit {
      font-size: 24px;
  }}



/*-- ボタン --------------------------------------------------------------*/
.button-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  margin:0 auto;
  padding: .9em 2em;
  border: none;
  border-radius: 5px;
  background-color: #bd2b06;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}

.button-2::after {
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
}

.button-2:hover {
  background-color: #ad1b00;
}


/*-- スライダー --------------------------------------------------------------*/
.controlArea .carousel-item {
    display: block;
    opacity: 1;
}