/* 共通 */
*:not(.header-nav,.footer){
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 170%;
}

p:not(.header-nav,.footer){
  margin: 0;
}

a:not(.header-nav a){
  color:#FFFEF9;
  transition: 0.5s;
}

a:not(.header-nav a):hover{
  color:#FFFEF9;
  transition: 0.5s;
  opacity: 0.7;
}


/* パンくず */
.breadcrumb-area {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 40px; 
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb-list p{
  font-size: clamp(12px, 1.4vw, 14px);
}

.breadcrumb-list a{
  text-decoration: underline;
  font-size: clamp(12px, 1.4vw, 14px);
}

/* 文字組 */
.vertical-title{
  writing-mode: vertical-rl;
  line-height: 130%;
  letter-spacing: 5px;
}
h3.vertical-title{
  margin: 0;
  padding: 0;
}






/* ボタン */
.link_button{
  border: 2px solid #E7000B;
  color: #E7000B !important;
  background-color: #FFF;
  display: inline-block;
  border-radius: 30px;
  padding: 10px 40px;
  text-align: center;
  font-weight: 700;
  font-size: clamp(14px, 1.4vw, 16px);
}
.link_button:hover{
  text-decoration: none;
}


/* 画像 */
.img_border{
  border: 8px solid #FFF;
  border-radius: 16px;
  overflow: hidden;
  box-sizing: border-box;
}

.img_border_12{
  overflow: hidden;
  border: 12px solid #FFF;
  box-sizing: border-box;
}
.img_border_8{
  overflow: hidden;
  border: 8px solid #FFF;
  box-sizing: border-box;
}


/* 背景画像 */
@media (min-width: 768px) {
  #root{
    background-image: url(/system_panel/uploads/images/bg_common.jpg);
    background-repeat: repeat-y;
    background-size: 100%;

  }
}



/* コンテンツタイトル（画像） */
.content-title{
  margin-top: 2em;
}
.content-title{
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center top;
  margin-left: auto;
  margin-right: auto;
}
.content-title{
  width: 23%;
  height: 23%;
}

@media (min-width: 768px) {
  .content-title{
    margin-top: 64px;
  }
}

/*  改行キャンセル */
@media (max-width: 768px) {
  .pc-br br {
    display: block;
  }
  .sp-br br {
    display: none;
  }
}
@media (min-width: 767px) {
  .pc-br br {
    display: none;
  }
  .sp-br br {
    display: block;
  }
}