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

/***************************************
-------------- PAGE --------------
***************************************/
.low_header {
  width: 100%;
  height: 65px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.phone_num {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 0 2% 0 0;
  a { 
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    line-height: 1.0;
  }
  a:before {
    content: "";
    display: block;
    background: url(../img/svg/icn_tel_bk.svg) no-repeat;
    background-position: center center;
    background-size: contain;
    width: clamp(1.8rem, 3vw, 2.4rem);
    height: auto;
    margin-right: 10px;
    aspect-ratio: 31/25;
    object-fit: cover;
  }
  .open_time {
    font-size: .75em;
    font-weight: 600;
    line-height: 1.0;
  }
}




#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;
  position: relative;
  z-index: -2;
}
#pagetitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: min(100%,200px);
  aspect-ratio: 1/3;
  background: url(../img/bg_wing_bk.svg) no-repeat top center / cover;
  display: block;
  z-index: -1;
}
#pagetitle::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: min(100%,200px);
  aspect-ratio: 1/3;
  background: url(../img/bg_wing_bk.svg) no-repeat top center / cover;
  display: block;
  rotate: 180deg;
  z-index: -1;
}



#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; }
}
