@charset "utf-8";

/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
 html, body, div, span, applet, object, iframe,
 h1, h2, h3, h4, h5, h6, p, blockquote, pre,
 a, abbr, acronym, address, big, cite, code,
 del, dfn, em, img, ins, kbd, q, s, samp,
 small, strike, strong, sub, sup, tt, var,
 b, u, i, center,
 dl, dt, dd, ol, ul, li,
 fieldset, form, label, legend,
 table, caption, tbody, tfoot, thead, tr, th, td,
 article, aside, canvas, details, embed,
 figure, figcaption, footer, header, hgroup,
 menu, nav, output, ruby, section, summary,
 time, mark, audio, video {
   margin: 0;
   padding: 0;
   border: 0;
   font-size: 100%;
   font: inherit;
   vertical-align: baseline;
 }
 /* HTML5 display-role reset for older browsers */
 article, aside, details, figcaption, figure,
 footer, header, hgroup, menu, nav, section {
   display: block;
 }
 body {
   line-height: 1;
 }
 ol, ul {
   list-style: none;
 }
 blockquote, q {
   quotes: none;
 }
 blockquote:before, blockquote:after,
 q:before, q:after {
   content: '';
   content: none;
 }
 table {
   border-collapse: collapse;
   border-spacing: 0;
 }

 /* For modern browsers */
.clearfix:before,
.clearfix:after {
  content:"";
  display:table;
}

.clearfix:after {
  clear:both;
}

/* For IE 6/7 (trigger hasLayout) */
.clearfix {
  zoom:1;
}

/*--------------------------------------
 - 共通CSS
 ---------------------------------------*/
body {
  font-size: 90%;
  line-height: normal;
}
#container{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#contents {
  flex: 1;
}

p.read a{
  color:#ED1417;
}

input[type='text'], input[type='tel'], input[type='email'], textarea, select{
  border:1px solid #ccc;
  padding: 5px;
  color: #333;
  font-size: 120%;
  background: #fefefe;
  max-width: 100%;
  box-sizing: border-box;
  margin: 1px 0;
  vertical-align: middle;
}

label {
  display: inline-block;
}

.comment {
  margin: 5px 0;
}

.required {
  background: #f00;
  color: #fff;
  border-radius: 5px;
  display: inline-block;
  padding: 1px 3px;
  font-size: 0.8em;
  margin: 0 3px;
}


/* エラーメッセージ */
.errmsg {
  width:100%;
  box-sizing: border-box;
  background:#FFF;
  border:3px solid #f00;
  padding:10px;
  margin:0 auto 20px auto;
}
.errmsg,
.errmsg a,
.errmsg a:link,
.errmsg a:visited,
.errmsg a:hover,
.errmsg a:active {
  color:#F00;
}

.errmsg strong{
  font-weight: 900;
  font-size: 1.1em;
}

/* 必須 */
.need {
  color: #c00;
}

/* 画面別 表示/非表示 */
.formLayout.input_now .display_check,
.formLayout.check_now .display_input{
  display:none;
}


/* ドメイン指定解除input */
#contents #domain {
  padding: 1px;
  width: 90px;
}

/*--------------------------------------
 - PC・印刷用CSS
 ---------------------------------------*/
@media screen and (min-width: 769px), print {



/*container
---------------------------------------------------------------------- */
#container{
}


/*header
---------------------------------------------------------------------- */
#headerCover{
  width:100%;
  margin:0px 0px 50px 0px;
}
  #headerCover #header{
    width:100%;
    height:50px;
    background-color: #FDF304;
  }
    #header #headerRead{
      width:930px;
      height:auto;
      margin:0px auto;
      padding:80px 0;
    }
    .pc {
      display: block !important;
    }
    .sp {
      display: none !important;
    }


/*contents
---------------------------------------------------------------------- */

#contents{
  width:1100px;
  height:auto;
  margin:160px auto 30px auto;
  padding:0px 0px 0px 0px;
}
  
  #contents .submit {
    text-align: center;
    margin: 100px auto;
  }
  
    #contents .submit input {
      width: 387px;
      height: 64px;
      padding: 0;
      background: #FDF304;
      border-radius: 32px;
      color: #000000;
      font-size: 120%;
      font-weight: bold;
      border: 0;
    }
      #contents .submit #retouchBtn {
        background: #999;
        margin: 0 50px 0 0;
      }


/* tableレイアウト 必須CSS *****************************************/
.formLayout table,.formLayout th,.formLayout td{
	border:1px solid #A1A1A1;
}
.formLayout th,.formLayout td{
	padding:5px;
}

.formLayout table{
	width:100%;
	table-layout:fixed;
	border-collapse:collapse;
}

.formLayout th{
	width:25%;
	background:#F7F7F7;
	font-weight:bold;
	text-align:left;
	vertical-align: middle;
}
.formLayout td{
	vertical-align: middle;
}


/* footer
---------------------------------------------------------------------- */
#footerCover{
  width:100%;
  height: 167px;;
  margin:0px 0px 0px 0px;
  padding:0px 0px 0px 0px;
  background:url('../images/kiyaku/footer.png');
}
  #footerCover #footer{
    width:930px;
    height:auto;
    margin:0px auto;
  }
    #footer p.copyright{
      text-align:center;
      padding:73px 0px 73px 0px;
      color:#000000;
      font-weight: 600;
    }
}

/*--------------------------------------
 - スマホ用CSS
 ---------------------------------------*/
@media screen and (max-width: 768px) {

/*container
---------------------------------------------------------------------- */
#container{
}

/*header
---------------------------------------------------------------------- */
#headerCover{
  width:100%;
  height:280px;
}
  #headerCover #header{
    width:100%;
    height:50px;
    margin:0px auto;
    background:#FDF304;
  }
    #header #headerRead{
      width:90%;
      height:auto;
      margin:0px auto;
      padding:60px 5% 5% 5%;
    }
    .pc {
      display: none !important;
    }
    .sp {
      display: block !important;
      width: 100%;
    }


/*contents
---------------------------------------------------------------------- */
#contents{
  width:96%;
  margin:0px auto 30px auto;
  padding: 0px 0px 0px 0px;
}

  #contents .submit {
    text-align: center;
    width: 180px;
    margin: 50px auto;
  }
  
    #contents .submit input {
      width: 180px;
      height: 40px;
      padding: 0;
      border: 0;
      background: #FDF304;
      border-radius: 32px;
      box-sizing: border-box;
      color: #000000;
      font-size: 120%;
      font-weight: bold;
    }
      #contents .submit #retouchBtn {
        background: #999;
        margin: 0 0 20px 0;
      }

/* tableレイアウト 必須CSS *****************************************/
.formLayout table,
.formLayout tbody,
.formLayout tr,
.formLayout th,
.formLayout td{
	display: block;
	width: 100%;
	box-sizing: border-box;
}
.formLayout tr{
	border-right:1px solid #A1A1A1;
	border-bottom:1px solid #A1A1A1;
	border-left:1px solid #A1A1A1;
}
.formLayout tr:first-of-type{
	border-top:1px solid #A1A1A1;
}
.formLayout th,
.formLayout td {
	padding:5px;
}
.formLayout table{
	width:100%;
	border-collapse:collapse;
}

.formLayout th{
	background:#F7F7F7;
	font-weight:bold;
	text-align:left;
	vertical-align: middle;
	border-bottom:1px solid #A1A1A1;
}
.formLayout td{
	vertical-align: middle;
}


/* 入力欄別 */
#vl010,
#vl011,
#vl012 {
  width: 60px;
}


/* footer
---------------------------------------------------------------------- */
#footerCover{
  width:100%;
  height: 167px;
  margin:0px 0px 0px 0px;
  padding:0px 0px 0px 0px;
  background:url('../images/kiyaku/footer.png');
}
  #footerCover #footer{
    width:100%;
    height:auto;
    margin:0px auto;
  }
    #footer p.copyright{
      text-align:center;
      padding-top: 73px;
      color:#000000;
      font-weight: 600;
    }
}
/* スマホ用CSS end */

/* 追加 */
.common__link {
  text-align: center;
  max-width: 380px;
  margin: 100px auto 0;
}
@media all and (max-width: 896px) {
  .common__link {
    max-width: 260px;
  }
}
.common__link > a {
  position: relative;
  box-sizing: border-box;
  border-radius: 100px;
  padding: 16px 10px;
  display: block;
  background: #FDF304;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
}
@media all and (max-width: 896px) {
  .common__link > a {
    line-height: 1.6;
  }
}
.common__link > a svg {
  margin-left: 18px;
}
@media all and (max-width: 896px) {
  .common__link > a svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
  }
}
.common__link > a span.small {
  font-size: 85%;
}
@media all and (max-width: 896px) {
  .common__link > a span.small {
    display: block;
  }
}
@media (hover: hover) {
  .common__link > a:hover {
    opacity: 1;
    color: #fff;
    background: #000;
  }
}
.common__link > a:hover svg path {
  stroke: #fff;
}
.common__link > a:hover svg path + line {
  stroke: #fff;
}
.common__link > a::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: #FDF304;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  transition: all 0.3s ease-out;
}

/* 利用規約コピー */
@media all and (max-width: 480px) {
  body.kiyaku #headerCover {
    height: 180px;
  }
}
body.kiyaku h1 {
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
  margin-bottom: 30px;
}
body.kiyaku .lead {
  text-align: center;
  font-size: 1rem;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
  padding: 0px 0px 40px 0px;
}
@media all and (max-width: 896px) {
  body.kiyaku .lead {
    text-align: left;
    padding: 0px 0px 20px 0px;
  }
}
body.kiyaku .kiyaku__wrap {
  height: 480px;
  overflow: auto;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 15px 30px;
  border: 1px solid #eee;
  border-radius: 8px;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
  line-height: 2;
}
@media all and (max-width: 896px) {
  body.kiyaku .kiyaku__wrap {
    padding: 15px;
    width: 100%;
  }
}
@media all and (max-width: 480px) {
  body.kiyaku .kiyaku__wrap {
    height: 50vh;
    width: calc(100% - 33px);
  }
}
body.kiyaku .kiyaku__wrap p {
  width: 100%;
}
body.kiyaku .kiyaku__tablebox table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.8;
}
@media all and (max-width: 480px) {
  body.kiyaku .kiyaku__tablebox table {
    font-size: 90%;
  }
}
body.kiyaku .kiyaku__tablebox table caption {
  display: inline-block;
  overflow: hidden;
  height: 0;
  width: 0;
  margin: 0;
  padding: 0;
}
body.kiyaku .kiyaku__tablebox table td {
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 10px;
}
body.kiyaku .kiyaku__tablebox table td.bg {
  background: #eee;
}
@media all and (max-width: 480px) {
  body.kiyaku .kiyaku__tablebox table td {
    padding: 10px 5px;
  }
}
body.kiyaku .kiyaku__tablebox.first table td {
  width: 25%;
}
body.kiyaku .kiyaku__tablebox.second table td {
  width: 20%;
}

.kiyaku__txtr {
  text-align: right;
  margin: 15px 0;
  margin-right: 0.8em;
}

.kiyaku__ttl {
  font-size: 1rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  margin: 40px 0 15px;
}

.kiyaku__numberlist {
  margin: 30px 0;
}

.kiyaku__numberlist li {
  padding-left: 2.6em;
  text-indent: -1.7em;
}
@media all and (max-width: 480px) {
  .kiyaku__numberlist li {
    padding-left: 1.6em;
  }
}
.kiyaku__numberlist li span.marker {
  background: #FDF304;
}
.kiyaku__numberlist li ul {
  margin: 10px 0;
}
.kiyaku__numberlist li ul li {
  padding-left: 1.5em;
}

.kiyaku__normallist {
  margin-top: 10px;
}
.kiyaku__normallist li {
  padding-left: 1em;
  text-indent: -1em;
}

.kiyaku__contact {
  border: 1px solid #ccc;
  padding: 30px;
  margin-top: 30px;
}
@media all and (max-width: 480px) {
  .kiyaku__contact {
    padding: 20px;
  }
}

.kiyaku__link {
  color: red;
  font-size: 2em;
  text-align: center;
}

.list_end {
  padding-left: 0;
  text-indent: 0;
}

/* /利用規約コピー */