@charset "UTF-8";

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: "Zen Kaku Gothic Antique", sans-serif;
  color: #666666;
  font-weight: 500;
}

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

body::-webkit-scrollbar {
  width: 15px;
}

body::-webkit-scrollbar-thumb {
  background: #FF7700;
}

body::-webkit-scrollbar-track {
  background: #F1F8FF;
}

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

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

.mt500 {
  margin-top: 500px;
}

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

.back_pink {
  background-color: #FFF0F3;
}

.back_blown {
  background-color: #f9f4ef;
}

.white {
  color: #fff;
}

.blue2 {
  color: #0F97FF;
}

/*--------------------------------------------------------
フッター
--------------------------------------------------------*/
footer {
  background-color: #cf8e58;
  width: 100%;
  text-align: center;
}

.copyright {
  padding: 10px 0;
  text-decoration: none;
  font-size: 19px;
  color: #fff;
}

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

/*--------------------------------------------------------
各種レイアウト
--------------------------------------------------------*/
.title {
  width: 100%;
  font-size: 40px;
  text-align: center;
  padding: 35px 0 45px;
  background-color: #cf8e58;
}

.lawtext p {
  font-size: 20px;
}

.lawtext p>span:nth-of-type(1) {
  font-size: 16px;
}

.lawtext p>span:nth-of-type(2) {
  font-size: 23px;
}

.flex {
  display: flex;
  align-items: flex-start;
  /* 上揃えに設定 */
}

.icon {
  margin-top: 0.3em;
  /* 調整しアイコンを1行目に揃える */
}

.b {
  line-height: 1.5;
  /* テキストが複数行になったときの行間 */
}

.mb3em {
  margin-bottom: 3rem;
}

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

  .break_800:after {
    content: "\A";
    white-space: pre;
  }

  .img_center {
    margin-left: 0px;
  }

  body {
    min-width: 100%;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .mt100 {
    margin-top: 12%;
  }

  .mt200 {
    margin-top: 22%;
  }

  .mt500 {
    margin-top: 52%;
  }

  .title {
    font-size: 5vw;
    padding: 4% 0 5%;
  }

  .lawtext p {
    font-size: 18px;
  }

  .lawtext p>span:nth-of-type(1) {
    font-size: 15px;
  }

  .lawtext p>span:nth-of-type(2) {
    font-size: 20px;
  }

  .mb3em {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 600px) {
  .lawtext p {
    font-size: 16px;
  }

  .lawtext p>span:nth-of-type(1) {
    font-size: 13px;
  }

  .lawtext p>span:nth-of-type(2) {
    font-size: 18px;
  }

}

@media screen and (max-width: 450px) {
  .lawtext p {
    font-size: 15px;
  }

  .lawtext p>span:nth-of-type(1) {
    font-size: 12px;
  }

  .lawtext p>span:nth-of-type(2) {
    font-size: 16px;
  }

}