@charset "UTF-8";

:root {
  --color_red:   #FF2E3B;
  --color_blue:  #1198CD;
  --color_gray:  #F2F2F2;
  --color_white: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
form,
input,
button,
textarea,
p,
th,
td {
    margin: 0;
    padding: 0;
}

html {
  overflow: auto;
}

body {
  overflow: hidden;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input,
select,
textarea,
button {
    font-family: inherit;
    color: inherit;
}

li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

a img {
    border-style: none;
}

img {
    vertical-align: bottom;
}

button {
    font-size: 1em;
    background-color: transparent;
    border: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

*:focus {
    outline: none;
}

button:hover {
    cursor: pointer;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* *::-webkit-scrollbar {
    width: 15px;
}

*::-webkit-scrollbar-thumb {
    background: #0b1834;
}

*::-webkit-scrollbar-track {
    background: #fff;
} */


/*--------------------------------------------------------
サイト毎に変化のある定数
--------------------------------------------------------*/

.container1920 {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.container {
    width: 800px;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
}


/*--------------------------------------------------------
定数
--------------------------------------------------------*/

.marigin_top100 {
  margin-top: 100px;
}

.marigin_bottom100 {
  margin-bottom: 100px;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

main,
article,
aside,
nav,
header,
footer,
img,
button,
picture,
picture source {
    display: block;
}

body {
    /*iphone用*/
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -o-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* フッター固定用 */
/* body {
    min-height: 100vh; 
    position: relative;
    padding-bottom: 74px;
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
} */

/*--------------------------------------------------------
定数 ※個別設定
--------------------------------------------------------*/
.background_gray {
  background-color: var(--color_gray);
}

.background_white {
  background-color: var(--color_white);
}

/*--------------------------------------------------------
フッター
--------------------------------------------------------*/

footer {
  background-color: var(--color_blue);
  /* position: relative; */
  z-index: 2;
  text-align: center;
}

.copyright {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 0;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.footer_logo{
  display: inline-block;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media screen and (max-width: 500px) {
  .copyright {
      font-size: 12px;
  }
}

/*======================================================
common
======================================================*/
.header {
  background-image: url('../img/rtyu_pp_01.png');
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  overflow-x: clip;
  
}

.header_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0px 0px 5px 0px #fff;
}

.header_logo {
  width: 108px;
}

.header_logo img {
  width: 100%;
}

.header_navigation__list {
  display: flex;
}

.header_navigation__list li {
  padding: 0 10px;
}

/*======================================================
top
======================================================*/
.law_container {
  padding: 2%;
}

.law_title {
  margin: auto;
}

.law_title h2{
  margin: 50px auto 20px;
}

.law_title.law_title--law{
  width: 47.4%;
}
.law_title.law_title--privacy{
  width: 91.8%;
}
.law_title.law_title--rules{
  width: 17.9%;
}

.back_btn {
  width: 30.3%;
  margin-left: auto;
  margin-right: auto;
}