body {
  margin: 0 auto;
  padding: 0;
  font-family:'Yu Gothic',sans-serif;
  color: #181B39;
  line-height: 1.6;
  letter-spacing: .15em;
  background: #fff;
}

.privacypoly_header {
  position: relative;
  height: 80px;
}

.privacypoly_header_wrapper {
  overflow: hidden;
  padding: 16px 0 16px 0;
  max-width: 1000px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  right: 104px;
  z-index: 100;
}


.nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 21, 46, .8);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  /* 初期：非表示 */
  visibility: hidden;
  opacity: 0;
  /* ふわっと表示 */
  transition: 0.5s ease-in-out;
  z-index: 100;
}
.nav ul{
  list-style:none;
}
.nav li:not(:last-child){
  margin-bottom: 8px;
}
.nav a{
  color: #ffffff;
}

/* ナビゲーションボタン（開く） */
#navbtn{
position: fixed;
top: 80px;
right: 104px;
padding: 0;
outline: none;
border: none;
background: none;
width: 30px;
height: 20px;
cursor: pointer;
z-index: 100;
}

#navbtn::before,
#navbtn::after{
content : '';
display: block;
height: 1px;
background-color: #00152E;
transform: translateY(10px);
transition: 0.3s ease-in-out;
}

#navbtn::before{
transform: translateY(-10px);
box-shadow: 0 10px #00152E;
}

/* ナビゲーションボタン（閉じる） */
.open #navbtn{
z-index: 100;
}
.open #navbtn::before{
transform: rotate(-45deg);
box-shadow: none;
background-color: white;
}
.open #navbtn::after{
transform: rotate(45deg);
box-shadow: none;
background-color: white;

}
/* ナビゲーションメニュー 開いた時*/
.open .nav{
visibility: visible;
opacity: 1;
}

.nav{
  margin-left: auto;
}
.nav ul{
  display: flex;
  list-style:none;
  flex-direction: column;
  width: 48%;
}

.nav ul li a {
  text-decoration: none;
  color: #fff;
  text-decoration :none;
  font-size: 40px;
  font-weight: 700;
}

.nav ul li a:hover{
  opacity: .5;
  padding-left: 8px;
}

.privacypoly {
  position: relative;
  padding: 104px;
  overflow: hidden;
  margin: 0 auto;
}

.privacypoly_title {
  background: rgba(33, 93, 99, 0.03);
  padding: 32px 0 32px 32px;
}

.first {
  padding: 32px 32px 64px 32px;
}

.privacypoly_contents {
  padding: 0 32px 16px 32px;
  border-bottom: dashed 1px rgba(24, 27, 57, .2);
}

.end{
  border-bottom: dashed 0px transparent;
}

/*    footer     */

.footer {
  position: relative;
  /* height: 160px; */
  background: #040324;
}

.footer_wrapper {
  padding: 24px 104px;
  margin: 0 auto;
}

.footer_menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer_menubox{
  width: 100%;
}

.footer_menubox nav {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

.footer_menubox ul{
  display: flex;
  justify-content: right;
}

.footer_menubox li {
  margin-left: 24px;
  list-style: none;
}

.footer_menubox a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  color: white;
  display: inline-block;
  position: relative;
}

.footer_menubox a:hover {
  opacity: .7;
}

.footer_copywriter {
  color: #fff;
  font-size: 12px;
  text-align: right;
  margin-top: 40px;
}


@media screen and (min-width:1024px) and (max-width:1279px){
  .privacypoly_contents {
    padding: 16px 32px 32px 32px;
  }

  .nav li:not(:last-child) {
    margin-bottom: 24px;
  }

}

@media screen and (min-width:768px) and (max-width:1024px) {

  /*  共通  */

  #navbtn {
    right: 40px;
    top: 56px;
  }

  .nav ul li a {
    font-size: 32px;
  }

  .footer_wrapper {
    padding: 56px;
  }

  .footer_menubox {
    display: none;
  }

  .footer_copywriter {
    text-align: center;
    margin: 0 ;
  }
  /* 　プライバシーポリシー　 */

  .privacypoly_contents {
    padding: 16px 32px 32px 32px;
  }

  .privacypoly {
    padding: 80px 40px 40px 40px;
  }

  .privacypoly_header {
    position: relative;
    height: 40px;
  }

}


@media screen and (min-width:375px) and (max-width:767px) {

  /*  共通  */

  .header_pages {
    height: 200px;
  }

  .header_pages_wrapper {
    padding: 0 24px;
  }

  #navbtn {
    top: 40px;
    right: 24px;
  }

  .header_pages_titles {
    margin-top: 120px;
  }

  .header_pages_link {
    display: none;
  }

  .nav ul {
    width: auto;
    padding: 0;
  }

  .nav ul li a {
    font-size: 28px;
  }

  .nav li:not(:last-child) {
    margin-bottom: 16px;
  }

  .footer_menubox {
    display: none;
  }

  .footer_wrapper {
    padding: 40px 0;
  }

  .footer_copywriter {
    font-size: 8px;
    width: 100%;
    margin-top: 0;
    text-align: center;
  }

  .privacypoly {
    padding: 0 24px;
    margin: 0 auto;
  }

  .privacypoly_title {
    padding: 32px 0;
    text-align: center;
  }

  .privacypoly_title h1 {
    font-size: 24px;
  }

  .first {
    padding: 24px 0;
  }

  .privacypoly_contents {
    padding: 16px 0;
  }

  .privacypoly_contents h2 {
    font-size: 18px;
  }

  .end {
    padding-bottom: 40px;
  }

}
