@charset "UTF-8";
:root {
  --colorBlack       : #333;
  --colorRed         : #ff3e3e;
  --colorYellow      : #ffe45f;
  --colorLightYellow : rgba(252,245,185,0.6);
  --colorLightBlue   : rgba(15,176,247,0.2);
  --colorGray        : #B4B3B3;
  --colorOrange      : #FF7300;
}

body,
div,
ul,
li,
form,
input,
button,
textarea,
p {
  margin: 0;
  padding: 0;
}

html {
  overflow: auto;
  /*以下選択禁止のコード*/
  user-select: none;
  /* CSS3 */
  -moz-user-select: none;
  /* Firefox */
  -webkit-user-select: none;
  /* Safari、Chromeなど */
  -ms-user-select: none;
  /* IE10かららしい */
}

body {
  overflow: hidden;
  font-size: 1em;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color_black);
  font-weight: 400;
}

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;
}

input {
  padding: 0;
  margin: 0;
}

button:hover {
  cursor: pointer;
}

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

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

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

.img_center {
  margin-left: -400px;
}

.area1600 {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.op0 {
  opacity: 0;
}

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

.c {
  text-align: center !important;
}

.cm {
  margin-left: auto;
  margin-right: auto;
}

.b {
  font-weight: bold;
}

.visible1000 {
  display: none !important;
}

.mt100 {
  margin-top: 100px;
}

.mt200 {
  margin-top: 200px;
}

.relative {
  position: relative;
}

.z1 {
  z-index: +1;
}

.z2 {
  z-index: +2;
}

.z3 {
  z-index: +3;
}

.z99 {
  z-index: +9999;
}

/*横幅*/

.w100 {
  width: 100%;
}

.w90 {
  width: 90%;
}

.w80 {
  width: 80%;
}

.w75 {
  width: 75%;
}

.w70 {
  width: 70%;
}

.w60 {
  width: 60%;
}

.w50 {
  width: 50%;
}

.span span {
  display: inline-block;
}

.justify {
  text-align: justify;
  text-justify: inter-ideograph;
}

.pointer_evNone {
  pointer-events: none;
}

.pointer {
  cursor: pointer;
}

/*--------------------------------------------------------
定数 ※個別設定
--------------------------------------------------------*/
.back_white {
  background-color: #fff;
}

.white {
  color: #fff;
}

.margin_bottom10p {
    margin-bottom: 10%;
}

.padding_top10p {
    padding-top: 10%;
}

.padding_bottom10p {
    padding-bottom: 10%;
}

/*--------------------------------------------------------
フッター
--------------------------------------------------------*/
footer {
  text-align: center;
  background-color: var(--colorOrange);
  font-weight: 500;
}

.copyright {
  padding: 10px 0;
  text-decoration: none;
}

.copyright {
  font-size: 14px;
  color: #fff;
}

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

/*--------------------------------------------------------
各種レイアウト
--------------------------------------------------------*/
.background_white {
    background-color: #fff;
}

.background_yellow {
    background-color: rgba(255,247,189,0.3);
}

.shadow_black {
    box-shadow: 0px 0px 10px -5px #000;
}

.law_container {
    padding: 5%;
}

.law_title {
  background-color: var(--colorOrange);
  padding-top: 3%;
  padding-bottom: 3%;
  color: #fff;
}

.law_title h2{
    margin: 0;
}

.law_title h2 span{
    /* background: linear-gradient(transparent 50%, var(--colorOrange) 70%); */
}

.law_text h3{
    margin: 0;
    font-size: inherit;
    color: var(--colorOrange);
}

.law_text p {
    margin-bottom: 1.5em;
}

.modoru {
    color: var(--colorOrange);
    font-size: 1.2em;
}

@media screen and (max-width: 1600px) {
    .area1600 {
        width: 100%;
        margin-left: 0px;
    }
}

@media screen and (max-width: 800px) {
    .visible800 {
        display: block;
    }

    .hidden800 {
        display: none;
    }

    .area800 {
        width: 100%;
    }

    .visible800 {
        display: block;
    }

    .hidden800 {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    body {
        font-size: 14px;
    }
  .law_title {
    padding-top: 5%;
    padding-bottom: 5%;
  }
}

@media screen and (max-width: 400px) {
}