@charset "UTF-8";
/*------------------------------------------
  Font
------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Work+Sans:500,700");
.font-ws {
  font-family: 'Work Sans', sans-serif;
}
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700');


/*------------------------------------------
  Base Layout
------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.2em;
  background: #fff;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

img {
  max-width: 100%;
  vertical-align: top;
}

.img-full {
  width: 100%;
}

a {
  color: #333;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

a:hover {
  text-decoration: none;
  opacity: 0.7;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

small {
  font-size: 10px;
}

.wrapper {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .wrapper {
    min-width: 1182px;
    margin: 0 auto;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.js-fade {
  opacity: 0;
}

.js-fade.active {
  -webkit-animation: fadePage 2s ease 0s forwards;
  animation: fadePage 2s ease 0s forwards;
}

@-webkit-keyframes fadePage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadePage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.js-fade.fadeup.active {
  -webkit-animation: fadeup 2s ease 0s forwards;
  animation: fadeup 2s ease 0s forwards;
}

@-webkit-keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/*------------------------------------------
  header
------------------------------------------*/
.cmn-header-body {
  background: #fff;
  border-bottom: 1px solid #e7e2df;
  padding: 15px 0;
  text-align: center;
}

.cmn-header-body .hd-logo-aeontown {
  width: 138px;
  height: 19px;
}

.cmn-block {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

.cmn-headline-bg,
.cmn-pageheadline-bg {
  position: absolute;
  background: url(../images/pat-main.jpg) repeat;
  background-size: 250px;
  width: 100%;
  height: 200px;
  box-sizing: border-box;
  z-index: -1;
}

.cmn-headline-bg.active,
.cmn-pageheadline-bg.active {
  -webkit-animation: fadePage 1.5s ease 0s forwards;
  animation: fadePage 1.5s ease 0s forwards;
}

.cmn-pageheadline-bg {
  opacity: 0;
  -webkit-animation: fadePage 1.5s ease 0.5s forwards;
  animation: fadePage 1.5s ease 0.5s forwards;
}

.cmn-contents {
  position: relative;
  margin: 0 13px 50px;
  background: #fff;
  border: 1px solid #e7e2df;
  box-sizing: border-box;
  padding: 13px;
}

.cmn-contents.fade-in {
  opacity: 0;
  -webkit-animation: fadePage 1.5s ease 1.2s forwards;
  animation: fadePage 1.5s ease 1.2s forwards;
}

.cmn-contents.js-fade.active {
  -webkit-animation: fadePage 1.5s ease .8s forwards;
  animation: fadePage 1.5s ease .8s forwards;
}

.cmn-pageheadline-bg + .cmn-pageheadline-title {
  padding: 25px 13px;
  opacity: 0;
  -webkit-animation: fadePage 1.5s ease 0.9s forwards;
  animation: fadePage 1.5s ease 0.9s forwards;
}

.cmn-headline-title,
.cmn-pageheadline-title {
  padding: 0 13px;
  font-size: 13px;
  font-size: 1.3rem;
  color: #000;
  letter-spacing: .16em;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.cmn-headline-title .ttl-en,
.cmn-pageheadline-title .ttl-en {
  font-size: 20px;
  font-size: 2rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  letter-spacing: .05em;
  padding-right: 10px;
}

@media screen and (min-width: 769px) {
  .cmn-header-body {
    padding: 30px 0;
  }
  .cmn-header-body .hd-logo-aeontown {
    width: 193px;
    height: 27px;
  }
  .cmn-block {
    width: 100%;
    position: relative;
  }
  .cmn-headline-bg,
  .cmn-pageheadline-bg {
    position: absolute;
    background: url(../images/pat-main.jpg) repeat;
    width: 100%;
    height: 370px;
    box-sizing: border-box;
    z-index: -1;
  }
  .cmn-headline-bg.active,
  .cmn-pageheadline-bg.active {
    -webkit-animation: fadePage 1.5s ease 0s forwards;
    animation: fadePage 1.5s ease 0s forwards;
  }
  .cmn-pageheadline-bg {
    opacity: 0;
    -webkit-animation: fadePage 1.5s ease 0.5s forwards;
    animation: fadePage 1.5s ease 0.5s forwards;
  }
  .cmn-contents {
    position: relative;
    width: 1162px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e7e2df;
    box-sizing: border-box;
    padding: 40px;
  }
  .cmn-contents.fade-in {
    opacity: 0;
    -webkit-animation: fadePage 1.5s ease 1.2s forwards;
    animation: fadePage 1.5s ease 1.2s forwards;
  }
  .cmn-contents.js-fade.active {
    -webkit-animation: fadePage 1.5s ease .8s forwards;
    animation: fadePage 1.5s ease .8s forwards;
  }
  .cmn-pageheadline-bg + .cmn-pageheadline-title {
    display: block;
    padding: 80px 0 60px;
    opacity: 0;
    -webkit-animation: fadePage 1.5s ease 0.9s forwards;
    animation: fadePage 1.5s ease 0.9s forwards;
  }
  .cmn-headline-title,
  .cmn-pageheadline-title {
    width: 1162px;
    margin: 0 auto;
    font-size: 15px;
    font-size: 1.5rem;
    color: #000;
    letter-spacing: .16em;
    line-height: 1;
  }
  .cmn-headline-title .ttl-en,
  .cmn-pageheadline-title .ttl-en {
    font-size: 32px;
    font-size: 3.2rem;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    letter-spacing: .05em;
    padding-right: 20px;
  }
}

/*------------------------------------------
  Button
------------------------------------------*/
.cmn-btn {
  width: 235px;
  height: 44px;
  line-height: 44px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #333;
  border-radius: 4px;
}

.cmn-btn .inner {
  position: relative;
  display: block;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  font-size: 16px;
  font-size: 1.6rem;
}

.cmn-btn .inner a {
  display: block;
}

.cmn-btn .inner:hover {
  opacity: 1;
  color: #fff;
  box-shadow: inset 0 0 0 28px #333;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.cmn-btn .inner:hover:before {
  border-color: #fff;
}

.cmn-btn .inner:hover a {
  color: #fff;
}

.cmn-btn .arrow {
  position: relative;
}

.cmn-btn .arrow:before {
  position: absolute;
  content: "";
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

.cmn-btn .arrow.a-right:before {
  right: 8%;
  margin-top: -2px;
}

.cmn-btn .arrow.a-left:before {
  left: 8%;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  margin-top: -4px;
}

.cmn-btn .arrow.a-down:before {
  margin-top: -8px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

@media screen and (min-width: 769px) {
  .cmn-btn {
    width: 203px;
    height: 46px;
    line-height: 46px;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center;
  }
  .cmn-btn .inner {
    position: relative;
    display: block;
    border-radius: 4px;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
  .cmn-btn .inner a {
    display: block;
  }
  .cmn-btn .inner:hover {
    opacity: 1;
    color: #fff;
    box-shadow: inset 0 0 0 28px #333;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
  .cmn-btn .inner:hover:before {
    border-color: #fff;
  }
  .cmn-btn .inner:hover a {
    color: #fff;
  }
  .cmn-btn .arrow {
    position: relative;
  }
  .cmn-btn .arrow:before {
    position: absolute;
    content: "";
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
  }
  .cmn-btn .arrow.a-right:before {
    right: 16px;
  }
  .cmn-btn .arrow.a-left:before {
    left: 22px;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    margin-top: -3px;
  }
  .cmn-btn .arrow.a-down:before {
    margin-top: -5px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}

/*------------------------------------------
  contact
------------------------------------------*/
.cmn-contents {
  margin-bottom: 50px;
}

.form-lead {
  line-height: 1.615384615;
  padding: 10px 0 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e7e2df;
}

.form-required {
  color: #ff3737;
}

.form-block dl {
  margin-bottom: 30px;
}

.form-block dl dt {
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.2;
}

.form-block dl input {
  border: 1px solid #b6b1ae;
  border-radius: 4px;
  padding: 12px;
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
}

.form-block dl input:focus {
  background: #f0edeb;
}

.form-block dl input.error,
.form-block dl textarea.error {
  border: 1px solid #ff3737;
  background: #f0edeb;
}

.form-block dl input[type="radio"] {
  position: relative;
  -webkit-appearance: button;
  appearance: button;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  content: "";
  background-color: #FFFFFF;
  border: 1px solid #999999;
  -webkit-border-radius: 18px;
  border-radius: 18px;
  box-shadow: none;
  vertical-align: middle;
  cursor: pointer;
  padding: 0;
  margin-left: 10px;
}
.form-block dl label {
  vertical-align: middle;
}
.form-block dl input[type="radio"]:checked:after {
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  content: "";
  width: 10px;
  height: 10px;
  background: #333;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.form-block dl input[type="radio"]:first-child{
  margin-left: none;
}
.form-block dl textarea {
  border: 1px solid #b6b1ae;
  border-radius: 4px;
  width: 100%;
  height: 260px;
  box-sizing: border-box;
  padding: 10px;
}

.form-block dl textarea:focus {
  background: #f0edeb;
}

.form-block .submit-btn {
  margin: 40px auto;
}

.form-block .form-submit {
  width: 100%;
  height: 46px;
  font-size: 14px;
  font-size: 1.4rem;
}

.form-block .error-message {
  color: #ff3737;
  margin-top: 10px;
}

.form-select {
  overflow: hidden;
  width: 100%;
  border: 1px solid #b6b1ae;
  border-radius: 4px;
  background: url(../images/arrow02.svg) no-repeat right 12px center;
  background-size: 12px;
  box-sizing: border-box;
}

.form-select .inputSelect {
  height: 40px;
  width: 100%;
  padding-left: 12px;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline-style: none;
  border: none;
  background-color: transparent;
}

.form-select .inputSelect:focus {
  outline: -webkit-focus-ring-color auto 5px;
}

.form-select.error {
  border: 1px solid #ff3737;
  background: #f0edeb url(../images/arrow02.svg) no-repeat right 12px center;
  background-size: 12px;
}
.btn-wrap .cmn-btn .inner {
  font-size: 14px;
  font-size: 1.4rem;
}


@media screen and (min-width: 769px) {
  .cmn-contents {
    margin-bottom: 120px;
  }
  .form-lead {
    line-height: 1.857142857;
    padding: 20px 0;
    margin-bottom: 35px;
    border-bottom: 1px solid #e7e2df;
  }
  .form-required {
    color: #ff3737;
  }
  .form-block dl {
    margin-bottom: 30px;
  }
  .form-block dl dt, .form-block dl dd {
    display: inline-block;
    vertical-align: middle;
  }
  .form-block dl dt {
    width: 200px;
    margin-right: 10px;
  }
  .form-block dl input {
    border: 1px solid #b6b1ae;
    border-radius: 4px;
    padding: 10px 15px;
    width: 470px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .form-block dl input:focus {
    background: #f0edeb;
  }
  .form-block dl input.error,
  .form-block dl textarea.error {
    border: 1px solid #ff3737;
    background: #f0edeb;
  }
  .form-block dl input.input-name {
    width: 380px;
  }
  .form-block dl input.input-postcode {
    width: 207px;
  }
  .form-block dl textarea {
    border: 1px solid #b6b1ae;
    border-radius: 4px;
    width: 860px;
    height: 245px;
    box-sizing: border-box;
    padding: 10px;
  }
  .form-block dl dd {
    width: 860px;
  }
  .form-block dl textarea:focus {
    background: #f0edeb;
  }
  .form-block .form-inquiry dt, .form-block .form-inquiry dd {
    vertical-align: top;
  }
  .form-block .submit-btn {
    margin: 60px auto;
  }
  .form-block .form-submit {
    width: 203px;
    height: 46px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .form-block .error-message {
    color: #ff3737;
    margin-top: 10px;
  }
  .form-select {
    overflow: hidden;
    width: 303px;
    border: 1px solid #b6b1ae;
    border-radius: 4px;
    background: url(../images/arrow02.svg) no-repeat right 12px center;
    background-size: 12px;
    box-sizing: border-box;
  }
  .form-select.select-pref {
    width: 233px;
  }
  .form-select .inputSelect {
    height: 40px;
    width: 100%;
    padding-left: 15px;
    font-size: 14px;
    font-size: 1.4rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline-style: none;
    border: none;
    background-color: transparent;
  }
  .form-select .inputSelect:focus {
    outline: -webkit-focus-ring-color auto 5px;
  }
  .form-select.error {
    border: 1px solid #ff3737;
    background: #f0edeb url(../images/arrow02.svg) no-repeat right 12px center;
    background-size: 12px;
  }
  .btn-wrap {
    text-align: center;
  }
  .btn-wrap .cmn-btn {
    display: inline-block;
    vertical-align: top;
    margin: 60px 30px;
  }
}

.page-confirm .cmn-btn.submit-btn .inner{
  background: #333;
  color: #fff;
}
.page-confirm .cmn-btn.submit-btn:hover {
  opacity: .7;
}
.form-block dl dd.area input {
  width: 100px;
  margin: 0 5px;
}
.form-block dl dd.area > div {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 10px;
}
/*------------------------------------------
  thanks
------------------------------------------*/
.thanks-message {
  text-align: center;
  padding: 100px 0;
}
@media screen and (min-width: 769px) {
  .thanks-message {
    font-size: 20px;
    font-size: 2rem;
  }
}
/*------------------------------------------
  Clearfix
------------------------------------------*/
.clearfix {
  *zoom: 1;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
