@charset "utf-8";
@import url("root.css");

/***************************************
-------------- PAGE --------------
***************************************/
#pagetitle {
  width: 100%;
  height: 200px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: url(../img/main_bg.webp) no-repeat;
  background-position: center center;
  background-size: cover;
}
#pagetitle h1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 2px;
  color: var(--text-color);
}
#pagetitle h1 span {
  font-size: .75em;
  color: var(--text-color);
  margin-left: 1rem;
}
#pagetitle h1::before,
#pagetitle h1::after{
  content: "";
  display: block;
  background: var(--grad-color01);
  width: calc(clamp(2.4rem, 4.5vw, 3.2rem) * 1.2);
  height:2px;
  margin-top: 2px;
}
#pagetitle h1::before {
	margin-right: 10px;
}
#pagetitle h1::after {
	margin-left: 10px;
}

.desc {
  width: 100%;
  margin: clamp(25px, 5vw, 50px) auto;
  text-align: center;
}
.page_wrap {
  position: relative;
  z-index: -1;
}

/***************************************
------------- desc -------------
***************************************/
.desc {
  font-size: calc(17px + 3 * (100vw - 320px)/880);
  line-height: 160%;
	text-align: center;
}
@media only screen and (min-width: 1200px) {
  .desc {
    font-size: 2.0rem;
  }
}

/***************************************
-------------- パンくず --------------
***************************************/
#Breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.0;
  width: 100%;
  margin: 2rem auto;
  padding-bottom: 2rem;
  /*border-bottom: 2px dotted #ddd;*/
}
#Breadcrumb li {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
#Breadcrumb li a {
  font-size: 1.4rem;
  line-height: 1.0;
}
#Breadcrumb li a:hover {
  text-decoration: underline;
}
#Breadcrumb li span {
  font-size: 1.4rem;
  line-height: 1.0;
}
#Breadcrumb li:not(:last-of-type)::after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 600;
  display: block;
  margin: .25rem 1rem 0;
  font-size: 1.2rem;
  line-height: 1.0;
}


/* =======================
  PC
======================== */
@media (min-width: 1200px) {
}

/* =======================
  TABLET
======================== */
@media (max-width: 1199px) {
}

/* =======================
  SP
======================== */
@media (max-width: 599.98px) {
  #pagetitle { margin-top:65px; }
}
