@charset "UTF-8";
/****************************************
  Theme Name: Asante Lab Basic Template
  Theme URI: https://asante-lab.com/
  Author: Asante
  Author URI: https://asante-lab.com/
  Description: Asante Lab Products
  Version: 0.1
 ****************************************/
html {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  background-color: #fcfcfc;
  box-sizing: border-box;
  z-index: 1;
}

h1 {
  width: 100%;
  font-size: 54px;
  font-weight: bold;
  position: relative;
  color: #448db3;
  text-align: left;
  display: flex;
  justify-content: space-between;
  padding-left: 4px;
}
h1 span {
  font-size: 24px;
  font-weight: normal;
  text-align: right;
  margin-top: auto;
  padding-right: 8px;
  padding-bottom: 4px;
}
h1:before {
  position: absolute;
  bottom: -3px;
  left: 0px;
  width: 100%;
  height: 3px;
  content: "";
  border-radius: 2px;
  background: #448db3;
}
@media (max-width: 767px) {
  h1 {
    font-size: 36px;
    justify-content: center;
  }
  h1 > span {
    display: none;
  }
}

h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #448db3;
  margin: 4rem auto 1rem;
  position: relative; /*相対位置*/
  padding-left: 2.5rem; /*アイコン分のスペース*/
}
h2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f075"; /*アイコンのユニコード f04b 右向き三角、f075 吹き出し、*/
  font-weight: 900;
  position: absolute; /*絶対位置*/
  font-size: 1em; /*サイズ*/
  left: 0px; /*アイコンの位置*/
  top: 1px; /*アイコンの位置*/
  color: #448db3; /*アイコン色*/
}
@media (max-width: 767px) {
  h2 {
    margin: 2rem auto 1rem;
    font-size: 24px;
    padding-left: 30px;
  }
}

h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 2rem auto 1rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  h3 {
    font-size: 1.25rem;
    margin: 1.75rem auto 0.75rem;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 1rem;
    margin: 1.5rem auto 0.5rem;
  }
}

a {
  color: #424242;
  text-decoration: none;
  transition: all 0.5s ease;
}
a:hover {
  opacity: 50%;
  transition: all 0.5s ease;
}

p {
  text-indent: 1rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

.alCmnInbox {
  width: 92%;
  max-width: 1440px;
  margin: auto;
}
@media (max-width: 767px) {
  .alCmnInbox {
    width: 90%;
  }
}

.sksCmnInbox {
  padding-top: 3rem;
  margin-left: calc(140px + (100svw - 140px - min((100svw - 140px) * 0.92, 1440px)) / 2);
  margin-right: calc((100svw - 140px - min((100svw - 140px) * 0.92, 1440px)) / 2);
}
@media (max-width: 767px) {
  .sksCmnInbox {
    padding-top: 2rem;
    margin: auto;
    width: 92%;
    margin: auto;
  }
}

#alSplash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background: #f6f4ec;
  text-align: center;
  top: 0;
}