html{color:#000;background:#fff;-webkit-font-smoothing: antialiased;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,xmp{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}ol,ul{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}legend{color:#000}input,select,textarea,button{outline:none;}*,*:before,*:after {box-sizing: border-box;min-height: 0%;}body {color: #000;-webkit-text-size-adjust: 100%;}img {max-width: 100%;vertical-align: bottom;}

body{
  background: url(../img/maintenance_banner.webp)no-repeat center;
  background-size: cover;
  font-family: "Noto Sans JP", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo", "游ゴシック体", "YuGothic", "Segoe UI", Roboto, Arial, sans-serif;
  position: relative;
  min-height: auto !important;
}
.p-maintenance{
  min-height: 100dvh;
  width: 100dvw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem 3.5rem;
  background: rgba(32, 109, 188, .5);
  backdrop-filter: blur(10px);
  min-width: 100%;
}
.p-maintenanceWrap{
  display: flex;
  justify-content: center;
  gap: .5rem 0;
  width: 100%;
  max-width: fit-content;
  box-shadow: 10px 14px 16px rgba(0, 0, 0, .1);
}
@media screen and (max-width:1240px){
  .p-maintenanceWrap{
    flex-direction: column;
    align-items: center;
    max-width: 540px;
    box-shadow: none;
  }
}
.p-maintenance__head{
  flex: 1;
  min-width: 1px;
  max-width: 560px;
  background: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  width: 100%;
  position: relative;
  .title{
    font-size: 36px;
    font-weight: 800;
    color: #2074c8;
    text-align: center;
  }
}
@media screen and (max-width:1240px){
  .p-maintenance__head{
    flex: 0 0 auto;
    padding: 1rem 0;
    .title{
      font-size: clamp(1.5rem, 6vw,34px);
    }
  }
}
.dot--top,
.dot--bottom{
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  padding: 12px;
}
.dot--bottom{
  top: auto;
  bottom: 0;
}
.dot--top:before,
.dot--top:after,
.dot--bottom:before,
.dot--bottom:after{
  content: '';
  width: 12px; height: 12px;
  border-radius: 50%;
  display: block;
  background: #cddceb;
}
@media screen and (max-width:1240px){
  .dot--top,
  .dot--bottom{
    padding: 6px;
  }
  .dot--top:before,
  .dot--top:after,
  .dot--bottom:before,
  .dot--bottom:after{
    width: 8px; height: 8px;
  }
}
.p-maintenance__body{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  flex: 1;
  min-width: 1px;
  max-width: 560px;
  max-height: fit-content;
  img{
    width: 100%;
    height: auto;
    max-width: 640px;
    margin: auto;
    display: block;
    flex: auto;
    min-height: 1px;
    object-fit: contain;
  }
}
@media screen and (max-width:1240px){
  .p-maintenance__body{
    flex: auto;
    height: auto;
    min-height: 1px;
    img{
      max-width: 540px;
    }
  }
}
footer{
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  text-align: center;
  .copyright{
    font-size: 11px;
    color: #fff;
    letter-spacing: .08em;
  }
}