@charset "utf-8";

*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: rgb(69, 58, 61);
  line-height: 1;
  background-color: #fff;
}

img {
  max-width: 100%;
}


header {
  background-color: rgb(230, 238, 251);
  height: 20%;
}

.header-inner {
  height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-logo {
  display: block;
  width: 30%;
  margin-left: 5%;
}

.site-menu ul {
  display: flex;

}

.site-menu ul li {
  margin: 0 20px;
}

.header-site-menu {
  margin-right: 5%;
}

.site-menu ul li a {
  font-weight: bold;
  font-size: 15px;
  padding-right: 30px;
}

.site-menu img {
  width: 50%;
}

ul.page-navi {
  padding: 0;
  text-align: center;
}

ul.page-navi li {
  display: inline-block;
}

ul.page-navi li a {
  display: block;
  color: rgb(18, 36, 93);
  padding: 1em;
  text-decoration: none;
}

ul.page-navi a::first-line {
  font-size: 16px;
  font-weight: bold;
}

.page-navi img {
  padding-bottom: 8px;
}

.form strong {
  color: rgb(234, 60, 97);
}

ul.page-navi li:hover {
  opacity: 0.5;
}


/* ここからメイン */
.title {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 60px;
  font-size: 20px;
  font-weight: bold;
  color: rgb(18, 36, 93);
}

.formTable {
  width: 960px;
  margin: 0 auto;
  padding: 60px 0;
}

.contact-item,
.contact-body {
  padding: 15px;
}

.contact-item {
  text-align: left;
  width: 30%;
  background-color: rgb(230, 238, 251);
  color: rgb(18, 36, 93);
  position: relative;
}

.contact-body {
  width: 70%;
  background-color: rgb(245, 246, 247);
}

.required::after {
  content: "必須";
  background-color: rgb(241, 168, 184);
  color: #fff;
  position: absolute;
  font-size: 12px;
  font-weight: bold;
  min-width: 10px;
  padding: 4px 7px;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: end;
  border-radius: 5px;
  display: inline-block;
}


.wide,
.p-postal-code,
.p-region,
.p-locality,
.p-street-address,
.p-extended-address {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  max-width: 400px;
}

.form-textarea {
  width: 100%;
  padding: 10px;
  height: 200px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.file {
  margin-top: 20px;
  margin-bottom: 18px;
  font-size: 14px;
}

.file a {
  color: rgb(95, 161, 255);
  border-bottom: 1px solid;
}


/*プライバシーのデザインcss↓*/
.con_pri {
  max-width: 700px;
  margin: 40px auto;
}

.con_pri .box_pri {
  height: 300px;
  overflow-y: scroll;
  border: 1px solid #cdcdcd;
  background: #f7f7f7;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 20px;
  padding: 20px 55px;
}

.con_pri .box_pri .box_tori {
  text-align: left;
  margin-top: 40px;
}

.con_pri .box_pri .box_tori h4 {
  font-weight: normal;
  margin-bottom: 30px;
  font-size: 150%;
}

.con_pri .box_pri .box_tori .txt {
  padding: 0 20px;
}

.con_pri .box_pri .box_num {
  margin-top: 30px;
}

.con_pri .box_pri .box_num h4 {
  font-weight: normal;
  font-size: 113%;
}

.con_pri .box_pri .box_num .txt {
  padding: 10px 0 0 20px;
}

.box_check {
  text-align: center;
  margin: 1em auto;
}

.box_check label {
  display: inline-block;
}

.box_check label span {
  margin-left: .3em;
}

.btn {
  text-align: center;
}

.btn input {
  display: inline-block;
  background: #eee;
  padding: .5em 4em;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  border: none;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn input:hover {
  background-color: rgb(230, 238, 251);
}





/* フッター */
.footer {
  background-color: rgb(230, 238, 251);
  margin-top: 200px;
  color: rgb(28, 37, 77);
}

.footer-logo {
  padding-top: 30px;
  padding-left: 100px;
}

.add-area {
  padding-left: 100px;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
  padding-right: 100px;
  margin-top: 40px;
}

.footer-site-menu ul {
  display: flex;
  text-align: center;
}

.footer-site-menu ul li {
  display: inline;
  padding: 0 40px 30px;
  font-weight: bold;

}

.footer-site-menu ul li:hover {
  opacity: 0.5;
}

.adress-small {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 14px;
}

@media (max-width: 850px) {

  header,
  .header-inner {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: rgb(230, 238, 251);
    z-index: 9999;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);

  }

  .header-inner {
    padding: 5px 50px 0 20px;
    position: fixed;
  }

  .header-inner .header-logo {
    width: 30%;
  }

  .site-menu ul li img {
    display: none;
  }

  .ham,
  .ham::before,
  .ham::after {
    display: block;
    width: 35px;
    height: 2px;
    background-color: #000;
    margin: 0 auto;
    position: relative;
    transition: all 0.5s 0.1s linear;
  }

  .header-inner {
    padding: 0;
  }

  .ham {
    transition: all 0.2s 0s linear;
  }

  .ham::before,
  .ham::after {
    content: "";
    position: absolute;
  }

  .ham::before {
    top: -10px
  }

  .ham::after {
    top: 10px;
  }

  .ham.is-show {
    background-color: transparent;
  }

  .ham.is-show::before {
    top: 0;
    transform: rotate(45deg);
  }

  .ham.is-show::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .site-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    width: 100%;
    height: 40%;
    background-color: rgba(230, 238, 251, 0.9);
    transition: 0.5S;
    z-index: -50;
  }

  .site-menu.is-show {
    top: 60px;
  }

  .site-menu ul {
    display: block;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }

  .site-menu ul li {
    text-align: center;
    padding-bottom: 3px;
    border-bottom: 1px solid rgb(28, 37, 77);
    font-weight: bold;
  }

  .site-menu ul li a {
    width: 150px;
  }

  .footer-logo {
    width: 45%;
  }

  /* メイン */
  main,
  .formTable {
    width: 95%;
    margin: 0 auto;
  }

  main p,
  .title {
    font-size: 16px;
  }

  .title {
    margin-bottom: 0;
    margin-top: 90px;
  }

  .formTable {
    padding-top: 30px;
  }

  .contact-item {
    padding: 6px;
  }

  .contact-item,
  .contact-body {
    display: block;
    float: left;
    clear: both;
    width: 100%;
  }

  .required::after {
    margin-left: 12px;
  }

  main p {
    font-size: 12px;
  }

  main br {
    display: none;
  }

  .btn {
    padding-top: 10px;
  }


  /* フッター */

  .footer {
    margin-top: 100px;
  }

  .add-area {
    padding-left: 0;
  }

  .add-area p,
  .footer-logo {
    padding-left: 20px;
  }

  .footer-logo {
    padding-top: 10px;
    width: 35%;
  }

  .add-area p {
    font-size: 10px;
  }

  .adress-small {
    font-size: 10px;
  }

  .footer-site-menu ul {
    flex-wrap: nowrap;
  }

  .footer-site-menu ul li {
    font-size: 10px;
    padding: 0 5px 10px;
  }

  .footer-right {
    padding-right: 0;
    justify-content: center;
  }

  .adress-small {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

}