/*--------------------------------------

header style

--------------------------------------*/

.headerWrap {
  position: relative;
}

.headerIcon {
  max-width: 250px;
  width: calc(100% - 100px);
  padding: 19px 15px 18px 15px;
}

.navName {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  padding: 15px 0;
}

.navNameMin {
  padding: 0;
}

.navTreeWrap {
  display: none;
  padding: 0 0 0;
}

.navItem:hover .navName {
  color: #70A5D9;
}

.navTree {
  display: block;
  padding: 0 0 10px;
}

.navBranchLink {
  display: block;
  position: relative;
  transition: 0.3s;
  padding: 8px 0 8px 20px;
  text-decoration: none;
  color: #444;
}
.navBranchLink:hover {
  opacity: 0.8;
}
.navBranchLink::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 3px #70A5D9;
  border-right: solid 3px #70A5D9;
  position: absolute;
  left: 0;
  top: 16px;
  transform: rotate(45deg);
}

.headFacilityBtn {
  padding: 10px 10px 6px;
  border: solid 1px #CCCCCC;
  background: #F9F9F9;
  border-radius: 4px;
  position: absolute;
  top: 13px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10;
}

.headFacilityBtn.on {
  padding: 10px 10px 6px;
  border: solid 1px #CCCCCC;
  background: #F9F9F9;
  border-radius: 4px;
  position: fixed;
  top: 13px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10;
}

.headSelstText {
  font-size: calc(1.255rem + 0.045vw);
}

.headFacilityList {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.headFacilityLink {
  display: block;
  background: #F2F2F2;
  color: #444;
  font-size: calc(1.255rem + 0.045vw);
  line-height: 1.3;
  transition: 0.3s;
  text-decoration: none;
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding: 10px;
}
.headFacilityLink:hover {
  color: #fff;
  background: #70A5D9;
}

.headFacilityLinkActive {
  background: #70A5D9;
  color: #fff;
}

.btnWrap {
  background: #70A5D9;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn {
  position: relative;
  height: 20px;
  width: 25px;
}
.btn span {
  position: absolute;
  display: block;
  background: #fff;
  height: 2px;
  width: 25px;
  transition: 0.3s;
}
.btn span:nth-of-type(1) {
  left: 50%;
  top: calc(50% + 10px);
  transform: translate(-50%, -50%);
}
.btn span:nth-of-type(2) {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn span:nth-of-type(3) {
  left: 50%;
  top: calc(50% - 10px);
  transform: translate(-50%, -50%);
}

.btn.on span:nth-of-type(1) {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(405deg);
}
.btn.on span:nth-of-type(2) {
  left: 50%;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0;
}
.btn.on span:nth-of-type(3) {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-405deg);
}

nav {
  display: none;
}

.navList {
  border-top: solid 5px #70A5D9;
  border-left: solid 5px #70A5D9;
  border-right: solid 5px #70A5D9;
  background: #fff;
  padding: 15px;
}

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

.navLink {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #444;
  transition: 0.3s;
  text-decoration: none;
  padding: 15px 0;
}
.navLink::after {
  content: "";
  background: url(../images/header_arrow.svg) no-repeat;
  background-size: contain;
  width: 21px;
  height: 21px;
}
.navLink:hover {
  color: #70A5D9;
}

.subNuv {
  border-bottom: solid 5px #70A5D9;
  border-left: solid 5px #70A5D9;
  border-right: solid 5px #70A5D9;
  background: #fff;
  padding: 15px;
}

.subNuvLink {
  font-size: calc(1.265rem + 0.135vw);
  position: relative;
  padding: 0 0 0 15px;
  color: #444;
  transition: 0.3s;
  text-decoration: none;
}
.subNuvLink:hover {
  color: #70A5D9;
}
.subNuvLink span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
/*--------------------------------------

contents style

--------------------------------------*/
.pageTitleWrap {
  margin: 0;
  position: relative;
}

.pageTitle {
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 15px 0;
  font-size: calc(1.525rem + 2.475vw);
  font-weight: bold;
}

.pageImg img {
  object-fit: cover;
  font-family: "object-fit: cover;";
  object-position: top;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.breadWrap {
  margin: 0 0 55px;
}

.breadList {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow-x: auto;
  margin: 15px 0;
  padding: 5px;
}

.breadListItem {
  display: flex;
  align-items: center;
  font-size: calc(1.265rem + 0.135vw);
}
.breadListItem:not(:last-of-type)::after {
  content: ">";
  margin-right: 10px;
}

.breadListItemLink {
  color: #444444;
  text-decoration: none;
  font-size: calc(1.265rem + 0.135vw);
  margin: 0 15px 0 0;
}

.contentMinTitle {
  font-size: calc(1.375rem + 1.125vw);
  font-weight: 700;
  border-bottom: solid #EEEEEE 3px;
  position: relative;
  margin: 0 0 20px;
  padding: 0 0 2px;
}
.contentMinTitle::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 3px;
  width: 80px;
  background: #70A5D9;
  z-index: 1;
}

/*--------------------------------------

footer style

--------------------------------------*/
.footerPageUp {
  padding: 50px 0 30px;
}

.footerUpLink {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.3s;
  color: #444;
  font-weight: bold;
  text-decoration: none;
}
.footerUpLink:hover {
  opacity: 0.8;
}

.footerContent {
  background: #F9F9F9;
  padding: 40px 15px 40px;
}

.footerContentBg {
  max-width: 1180px;
  margin: 0 auto;
}

.footerLink {
  display: block;
  margin: 0 0 10px;
}

.footerTable {
  margin: 0 0 25px;
  max-width: 480px;
  width: 100%;
}

.footerTableHead {
  display: block;
  width: 100%;
  text-align: left;
  vertical-align: top;
  padding: 10px 0 0;
}

.footerTableData {
  display: block;
  padding: 0 0 10px;
  border-bottom: solid 1px #CCCCCC;
}

.footerTime {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footerTel {
  display: flex;
  align-items: flex-start;
  font-size: calc(1.325rem + 0.675vw);
  font-weight: bold;
}
.footerTel a {
  text-decoration: none;
  font-size: calc(1.325rem + 0.675vw);
  font-weight: bold;
  color: #444;
}

.footerTelLink {
  margin: 0 0 0 10px;
}

.footerAddress {
  margin: 0 0 15px;
}

.footerOtherList {
  display: flex;
  flex-wrap: wrap;
}

.footerOtherItem {
  margin: 0 10px 10px 0;
}

.otherImg01 img {
  max-width: 90px;
}

.otherImg02 img {
  max-width: 60px;
}

.otherImg03 img {
  max-width: 50px;
}

.otherImg04 img {
  max-width: 160px;
}

.footerGmap {
  position: relative;
  padding: 0 0 52%;
}
.footerGmap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 299px;
}

.footerSub {
  padding: 40px 15px 20px;
}

.footerSubList {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footerSubItem {
  margin: 0 20px 10px 0;
}

.footerSubLink {
  display: inline-block;
  padding: 0 0 0 20px;
  position: relative;
  color: #444;
  transition: 0.3s;
  text-decoration: none;
  font-size: calc(1.265rem + 0.135vw);
}
.footerSubLink:hover {
  opacity: 0.8;
}
.footerSubLink span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footerCopy {
  background: #70A5D9;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

small {
  font-size: calc(1.265rem + 0.135vw);
  color: #fff;
}

@media (min-width: 1000px) {
  .headSelstText {
    font-size: 1.3rem;
  }
  .headFacilityLink {
    font-size: 1.3rem;
  }
  .subNuvLink {
    font-size: 1.4rem;
  }
  .pageTitle {
    font-size: 4rem;
  }
  .breadListItem {
    font-size: 1.4rem;
  }
  .breadListItemLink {
    font-size: 1.4rem;
  }
  .contentMinTitle {
    font-size: 2.5rem;
  }
  .footerTel {
    font-size: 2rem;
  }
  .footerTel a {
    font-size: 2rem;
  }
  .footerSubLink {
    font-size: 1.4rem;
  }
  small {
    font-size: 1.4rem;
  }
}

@media print, screen and (min-width: 500px) {
  .footerTableHead {
    display: table-cell;
    width: 130px;
    border-bottom: solid 1px #CCCCCC;
    padding: 15px 0;
  }
  .footerTableData {
    padding: 15px 0;
  }
  .footerTimeBefore {
    margin: 0 20px 0 0;
  }
  .footerSubList {
    justify-content: flex-end;
  }
}

@media print, screen and (min-width: 768px) {
  .footerContent {
    padding: 60px 15px 40px;
  }
  .footerContentBg {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footerMain {
    width: 50%;
  }
  .footerMap {
    width: calc(50% - 10px);
  }
  .footerSub {
    padding: 30px 15px 20px;
  }
}

@media print, screen and (min-width: 960px) {
  .headerLine {
    position: relative;
    border-bottom: solid 5px #70A5D9;
    z-index: 1;
  }
  .headerWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
  }
  .headerIcon {
    padding: 18px 0 18px 15px;
  }
  .navName {
    padding: 0;
    border-left: solid 1px #CCCCCC;
    justify-content: center;
  }
  .navName span {
    display: none;
  }
  .navTreeWrap {
    padding: 20px 0 0 !important;
    position: absolute;
    left: 15px;
    right: 15px;
    z-index: 1;
  }
  .navTree {
    display: flex;
    align-items: flex-start;
    border: solid 1px #ccc;
    background: #fff;
    box-shadow: 4px 3px 10px rgba(0, 0, 0, 0.1);
    border-radius: 17px;
    padding: 35px;
  }
  .navBranch {
    margin: 0 20px 0 0;
  }
  .navBranchLink {
    padding: 0 0 0 20px;
    display: inline-block;
  }
  .navBranchLink::before {
    top: 10px;
  }
  .headFacilityBtn {
    display: none;
  }
  .headFacilityBtn.on {
    display: none;
  }
  .headFacilityList {
    transform: translateX(0);
    background: transparent;
    position: static;
    display: flex !important;
    justify-content: space-between;
    margin: 60px 15px 0 0;
  }
  .headFacilityItem:not(:last-of-type) {
    margin: 0 8px 0 0;
  }
  .headFacilityItem {
    display: flex;
    align-items: stretch;
  }
  .headFacilityLink {
    text-align: center;
    padding: 7px;
  }
  .btnWrap {
    display: none;
  }
  nav {
    display: block !important;
  }
  .navMain {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 5px);
  }
  .navList {
    display: flex;
    justify-content: space-between;
    max-width: 1180px;
    border-top: solid 0 #70A5D9;
    border-left: solid 0 #70A5D9;
    border-right: solid 0 #70A5D9;
    margin: 0 auto;
    background: transparent;
  }
  .navList .navItem:last-of-type .navName {
    border-right: solid 1px #CCCCCC;
  }
  .navItem {
    width: 100%;
    border-bottom: solid 0 #CCCCCC;
  }
  .navLink {
    padding: 0;
    justify-content: center;
  }
  .navLink::after {
    display: none;
  }
  .subNuv {
    border-bottom: solid 0 #70A5D9;
    border-left: solid 0 #70A5D9;
    border-right: solid 0 #70A5D9;
    position: absolute;
    right: 0;
    top: 0;
  }
  .subNuvList {
    display: flex;
    align-items: center;
  }
  .subNuvItem {
    margin: 0 10px 0 0;
  }
  .pageTitleWrap {
    margin: 57px 0 0;
  }
  .pageTitle {
    min-height: 240px;
  }
  .breadList {
    margin: 0 0 50px;
  }
}

/*# sourceMappingURL=watari_common.css.map*/