
/* デフォルト
--------------------------------------------------*/

html {
  width: 100%;
  height: 100%;
  color: #000;
  font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 5px;
  background-color: #FFF;
  background-image: url(../image/form_bg.jpg);
  background-position: center;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, p, img, ol, ul, li, th {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

body {
  display: none;
  height: 100%;
}

img {
  vertical-align: bottom;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

.clear {
  clear: both;
}

/* ヘッダー
--------------------------------------------------*/
#header {
  position: fixed;
  width: 100%;
  height: 70px;
  background: rgba(255,255,255,.9);
  z-index: 999;
  transition: .5s;
  opacity:0.9;
}

#header_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 200px;
  z-index: 100;
}

#header_logo img {
  width: 100%;
  height: auto;
}

.btn_header {
  margin: 0 auto 20px;
  font-size: 0;
}

.btn_header li {
  display: inline-block;
  list-style-type: none;
  padding: 0 10px;
  box-sizing: border-box;
}

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

#header_logo {
  left: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
	
.btn_header {
  margin: 0 auto 20px;
}

.btn_header li {
  width: 100%;
  padding: 0 0 10px;
}

.btn_header li:last-child {
  padding: 0;
}
}

/* Toggle Button */
#nav-toggle {
  display: block;
  position: absolute;
  right: 20px;
  top: 16px;
  width: 22px;
  height: 18px;
  padding: 10px;
  cursor: pointer;
  z-index: 101;
}

#nav-toggle div {
  position: relative;
}

#nav-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #000;
  left: 0;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

#nav-toggle span:nth-child(1) {
  top: 0;
}

#nav-toggle span:nth-child(2) {
  top: 8px;
}

#nav-toggle span:nth-child(3) {
  top: 16px;
}

/* #nav-toggle 切り替えアニメ */
.open #nav-toggle span:nth-child(1) {
  top: 8px;
  height: 2px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.open #nav-toggle span:nth-child(2) {
  width: 0;
  left: 50%;
  height: 2px;
}

.open #nav-toggle span:nth-child(3) {
  top: 8px;
  height: 2px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* #global-nav 画面外 */
#global-nav {
  position: absolute;
  top: -500px;
  background: rgba(255,255,255,.9);
  width: 100%;
  text-align: center;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

/* #global-nav 画面内スライド */
.open #global-nav {
  top: 70px;
}

/* タイトル
--------------------------------------------------*/
.title {
  width: 80%;
  max-width: 732px;
  margin: auto;
  padding: 140px 0 0;
  text-align: center;
}

.title img {
  width: 100%;
  height: auto;
}

.title p {
  margin: 20px 0 0;
}

.page {
  width: 90%;
  margin: 60px auto 0;
  text-align: center;
}

/* フォーム
--------------------------------------------------*/

.policy_wrapper {
  position: relative;
  width: 90%;
  max-width: 1020px;
  margin: 60px auto 0;
  padding: 40px 60px;
  box-sizing: border-box;
}

.policy {
  margin: 40px auto 0;
}

.policy:first-child {
  margin: 0 auto;
}

.policy dt {
  clear: left;
  float: left;
  width: 16em;
}

.policy dd {
  margin-left: 16em;
  padding: 0 0 0 2em;
  border: solid #CCC;
  border-width: 0 0 0 1px;
  box-sizing: border-box;
}

.policy_wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 20px;
  height: 100%;
  border: solid #000;
  border-width: 1px 0 1px 1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.policy_wrapper::after {
  position: absolute;
  top: 0;
  right: 0;
  content: '';
  width: 20px;
  height: 100%;
  border: solid #000;
  border-width: 1px 1px 1px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.bottom {
  width: 90%;
  margin: 60px auto 0;
  text-align: center;
}

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

.policy_wrapper {
  width: 90%;
  margin: 60px auto 0;
  padding: 50px 0;
  border: solid #000;
  border-width: 1px 0;
}

.policy dt {
  clear: left;
  float: none;
  width: auto;
}

.policy dd {
  width: 100%;
  margin: .5em 0 0;
  padding: .5em 0 0;
  border: solid #CCC;
  border-width: 1px 0 0;
}

.policy_wrapper::before {
  display: none;
}

.policy_wrapper::after {
  display: none;
}

.bottom {
  text-align: left;
}
}

/* フッター
--------------------------------------------------*/
.footer {
  width: 90%;
  max-width: 310px;
  margin: 120px auto 0;
  text-align: center;
}

.footer img {
  width: 100%;
  height: auto;
}

/* テキスト
--------------------------------------------------*/
.text10 {
  font-size: 10px;
  line-height: 1.6em;
}

.text12 {
  font-size: 12px;
  line-height: 1.6em;
}

.text13 {
  font-size: 13px;
  line-height: 1.6em;
}

.text14 {
  font-size: 14px;
  line-height: 1.6em;
}

.text16 {
  font-size: 16px;
  line-height: 1.5em;
}

.text22 {
  font-size: 22px;
  line-height: 1.4em;
}

.text30 {
  font-size: 30px;
  line-height: 1.4em;
}

.white {
  color: #FFF;
}

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

.text14 {
  font-size: 13px;
}

.text16 {
  font-size: 15px;
}

.text22 {
  font-size: 20px;
}

.text30 {
  font-size: 28px;
}
}

/* リンク
--------------------------------------------------*/
a, a:link, a:active, a:visited {
  color: #000;
  font-style: normal;
  text-decoration: none;
}

a:hover, a:active {
  border: none;
  outline: none;
}

a:focus, *:focus {
  outline: none;
}

a.opacity {
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
}

a.opacity:hover {
  opacity: 0.6;
}

a.border {
  border-bottom: solid 1px #000;
}

/* スペース調整
--------------------------------------------------*/

.pt10 {
  padding-top: 10px;
}

.pt15 {
  padding-top: 15px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pt40 {
  padding-top: 40px;
}

.pt50 {
  padding-top: 50px;
}

.pt60 {
  padding-top: 60px;
}

.pt70 {
  padding-top: 70px;
}

.pt80 {
  padding-top: 80px;
}

.pt90 {
  padding-top: 90px;
}

.pt100 {
  padding-top: 100px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb70 {
  padding-bottom: 70px;
}

.pb80 {
  padding-bottom: 80px;
}

.pb90 {
  padding-bottom: 90px;
}

.pb100 {
  padding-bottom: 100px;
}

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

/* 非表示
--------------------------------------------------*/
.none {
  display: none;
}
}
