html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
body {
	line-height: 1.6;
  background: #f5f5f5;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body{
    font-family: 'Noto Sans JP', sans-serif;
    color: #222222;
    font-size: 18px;
}
a{
    color: #dac7c7;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
img{
    max-width: 100%;
}
ul{
    margin: 0;
    padding: 0;
}
p{
    margin: 0;
    padding: 0;
}
.pc{
    display: block;
}
.sp{
    display: none;
}
.flex{
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}

/* ヘッダーコンテンツ */
/* ヘッダーコンテンツ */
.container{
  max-width: 750px;
  margin: 0 auto 2.5%;
}
.container > div{
  padding: 3%;
}
.small-ttl{
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
}
.text-center{
  text-align: center;
}
.base-ttl{
  font-size: 36px;
  font-weight: 700;
  display: inline-block;
  position: relative;
  padding-bottom: 12px;
}
.base-ttl:before{
  content: '';
  background: #17ACFE;
  width: 100%;
  bottom: 0;
  height: 6px;
  margin: auto;
  left: 0;
  right: 0;
  position: absolute;
}
.number-list-box{
  border: 1px solid #17ACFE;
  border-radius: 16px;
}
.number-list-box ol{
  padding: 5% 5% 5% 8%;
  font-size: 18px;
  font-weight: 500;
  list-style: decimal;
}
.number-list-box ol li{
  margin-bottom: 16px;
  list-style: decimal;
}
.number-list-box ol li:last-child{
  margin-bottom: 0;
}
.privacy-check-block{
  margin: 5% auto;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}
.privacy-check-block p{
  margin-bottom: 16px;
}
.privacy-check-block p a{
  color: #17ACFE;
  text-decoration: underline;
}
.back-wh{
  background: #fff;
}
.cta-btn{
  display: block;
  padding: 21.5px 0 18.5px;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.17;
  text-align: center;
  background-color: #FB1E46;
  border-radius: 200px;
  box-shadow: 0 8px 0 0 #D10026;
  transition: .3s;
  width: 80%;
  margin: 0 auto;
}
.cta-btn:hover {
  transform: translateY(8px);
  box-shadow: none;
}
.footer-link{
  width: 90%;
  margin: 0 auto;
}
.footer-link li{
  width: calc(100% / 3);
}
.logo-contents{
  text-align: center;
  color: #A2A2A2;
}
/*フッターコンテンツ*/

/*フッターコンテンツ*/
@media screen and ( max-width: 812px ){
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
    /*ヘッダーコンテンツ*/
    .g-area .member,
    .g-area .login{
        width: 160px;
        padding: 0 6px;
        display: inline-block;
    }
    .g-navi,
    .g-contact{
        float: right;
    }
    .g-navi{
        margin-top: 12px;
    }
    .g-navi li{
        margin: 0 30px;
    }
    
    /* ハンバーガーメニュー*/
    .header {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 40px;
      background-color: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,.16);
    }
    main{
        margin-top: 70px;
    }
    .global-nav {
      position: fixed;
      right: -320px; /* これで隠れる */
      top: 0;
      width: 300px; /* スマホに収まるくらい */
      height: 100vh;
      padding-top: 40px;
      background-color: #0099D9;
      transition: all .6s;
      z-index: 200;
      overflow-y: auto; /* メニューが多くなったらスクロールできるように */
    }
    .global-nav__list {
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .global-nav__item {
      text-align: center;
    }
    .global-nav__item a {
      display: block;
      padding: 8px 0;
      text-decoration: none;
      color: #fff;
    }
    .global-nav__item a:hover {
      background-color: #eee;
    }
    .black-bg {
          position: fixed;
          left: 0;
          top: 0;
          width: 100vw;
          height: 100vh;
          z-index: 100;
          background-color: #000;
          opacity: 0;
          visibility: hidden;
          transition: all .6s;
          cursor: pointer;
    }
    /* 表示された時用のCSS */
    .nav-open .global-nav {
      right: 0;
    }
    .nav-open .black-bg {
      opacity: .8;
      visibility: visible;
    }
    .nav-open .hamburger__line--1 {
      transform: rotate(45deg);
      top: 20px;
    }
    .nav-open .hamburger__line--2 {
      width: 0;
      left: 50%;
    }
    .nav-open .hamburger__line--3 {
      transform: rotate(-45deg);
      top: 20px;
    }
    .g-area li{
        float: none;
        text-align: left;
    }
    .g-area li a{
        padding: 5%;
    }
    .global-nav__list li:nth-child(even){
        background: #00ABF2;
    }
      /* ハンバーガーメニュー*/ 
}
/*スマホ用の電話ボタンの位置調整*/
@media screen and ( max-width: 599px ){
  .number-list-box ol {
    padding: 24px 24px 24px 36px;
    font-size: 14px;
  }
  .cta-btn{
    width: 100%;
  }
  .cta-btn img{
    width: 240px;
  }
  .logo-contents img{
    width: 240px;
  }
  .small-ttl {
      font-size: 18px;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 8px;
  }
  .base-ttl{
    line-height: 1.3;
    font-size: 32px;
  }
  .logo-contents p{
    font-size: 80%;
  }
  .privacy-check-block{
    font-size: 16px;
  }
}

