/**
 * Close page CSS
 * @package adsell
 */

body {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  color: #333;
  background-color: #65c6d9;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: no-repeat center/cover url(../images/adsell_service_bg.png);
}

.box {
  padding: 100px 20px 20px 20px;
  width: 600px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  background: no-repeat center top 36px/200px url(../images/adsell_service_logo.png) #fff;
}

.box h1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  color: #004e89;
  border-bottom: 1px solid #0068b7;
  text-align: center;
}

.content {
  padding: 0 10px;
  line-height: 1.8;
}
.content p {
  margin-bottom: 10px;
}

.contact {
  padding: 0;
  margin-bottom: 20px;
  list-style: none;
}
.contact li {
  margin-bottom: 10px;
  list-style: none;
}
.contact li a {
  display: flex;
  justify-content: center;
  background-color: #fff;
  border: solid 2px #004e89;
  color: #004e89;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 0.9rem;
  text-align: center;
}
.contact li a:hover {
  color: #ccc;
  background-color: #004e89;
}
.contact li a span {
  align-self: center;
  white-space: nowrap;
}
.contact li a i {
  align-self: center;
  width: 3em;
  height: 1.5em;
  margin-right: 0.25rem;
  background-color: #004e89;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.contact li a:hover i {
  background-color: #fff;
}
.contact li a .product {
  -webkit-mask: url('../images/marker_tagged_icon.svg') no-repeat center;
  mask: url('../images/marker_tagged_icon.svg') no-repeat center;
}
.contact li a .mail {
  -webkit-mask: url('../images/envelope_mail_icon.svg') no-repeat center;
  mask: url('../images/envelope_mail_icon.svg') no-repeat center;
}

.sign {
  margin-top: 40px;
  text-align: right;
}

@media screen and (max-width: 600px) {
  .container {
    height: auto;
    padding: 36px 0;
  }
  .box {
    width: 90%;
    padding: 60px 10px 10px 10px;
    background: no-repeat center top 18px/150px url(../images/adsell_service_logo.png) #fff;
  }
  .box h1 {
    font-size: 20px;
  }
  .content {
    line-height: 1.6;
  }
  .contact li a span {
    white-space: pre-wrap;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp {
    display: unset;
  }
}
