/**　全体共通　**/
html {
    overflow-y: scroll;
    overflow-x: hidden;
    width: calc(100vw - calc(100vw - 100%));
    max-width: 1200px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: #e5f7fe;
}
body {
    font-family: 'メイリオ', Meiryo,'ヒラギノ丸ゴ ProN','Hiragino Maru Gothic ProN','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
    letter-spacing: 0.1em;
    position: relative;
    font-size: 1rem;
    background-color: #fff;
    /*　footerを下部に固定するため　*/
    display: flex;
    flex-flow: column;
    min-height: 100%;
}

.main {
    margin: 1.5rem 1rem;
    line-height: 1.2;
    /*　footerを下部に固定するため　*/
    flex: 1;
}

/*　outline用タイトル等で消しておくもの用　*/
.hidden {
    display: none;
}
/*　空きなどを設定　*/
.bottom-margin1 {
    margin-bottom: 1rem;
}
.bottom-margin2 {
    margin-bottom: 2rem;
}
.padding-top1 {
    padding-top: 1rem;
}



/**　header　ここから各メイン　**/
.header-title-box {
    background-color: #ffffff;
    background-image: url(../img/ugocco_221003.png);
    background-repeat: no-repeat;
    background-position: center;
    height: 0;
    padding-top: 63%;  /* 表示画像の高さ(200) ÷ 表示画像の幅(1200) ×100 =16.67%でも見た目で修正*/
    background-size: cover;
    /*background-size: 90%;*/
    /*margin-top: 10%;*/
}

/*　ライン設定　*/
.main-title {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #8fc31f;
}

.maintxt {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: #404040;
}

.hr {
    display: block;
      margin: 1rem 0;
      border-top: 1px dashed #cecece;
      border-bottom: none;
      border-left: none;
      border-right: none;
}
.subtitle a {
    color: #404040;
}



/**　footer　コピーライトここから　**/
footer {
    text-align: center;
    height: 3rem;
    background-color: #8fc31f;
    color: #fff;
}
.copyright {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    font-size: 0.8rem;
    }


/**　プライバシーポリシーhtml　**/

.privacy-subtitle {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: bold;
    padding-top: 1rem;
}
.privacy-txt {
    margin-top: 0.5rem;
    line-height: 1.5;
}
.privacy-li {
    margin-left: 2rem;

}
.privacy-li::before {
  content:"";
  width:  0.2rem;               /* 幅指定 */
  height:  0.2rem;              /* 高さ指定 */
  display:  inline-block;     /* インラインブロックにする */
  background-color: black;  /* 背景色指定 */
  border-radius:  50%;        /* 要素を丸くする */
  position:  relative;        /* 位置調整 */
    top: -4px;                  /* 位置調整 */
    margin-left: -1rem; 
    margin-right: 0.9rem;
}

.button-box {
    padding-top: 3rem;
    text-align: right;
}

.button {
    color: #ffffff;
    background-color: grey;
    padding: 0.3rem 1rem;
    border-radius: 1rem;
}