@charset "UTF-8";

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

body,
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  line-height: 1;
}

article,
aside,
footer,
header,
nav,
section,
figcaption,
figure,
main {
  display: block;
}

blockquote,
body,
button,
dd,
dl,
fieldset,
h1,
h2,
h3,
hr,
iframe,
input,
legend,
ol,
option,
p,
pre,
select,
td,
textarea,
th,
ul {
  margin: 0;
  padding: 0;
  border: 0;
}

b,
strong {
  font-weight: bolder;
}

h1,
h2,
h3,
small,
strong,
sub,
sup,
th {
  font-size: inherit;
  font-weight: inherit;
}

ol,
ul,
li {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

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

th,
td {
  empty-cells: show;
  text-align: left;
}

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

sub,
sup {
  vertical-align: baseline;
}

img {
  border: none;
  vertical-align: bottom;
}

figure {
  margin: 0;
}

button,
input,
select,
textarea {
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  outline: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

select {
  border-radius: 0;
}

a,
button,
input[type=checkbox],
input[type=radio],
label,
select {
  cursor: pointer;
  line-height: normal;
}

.clearfix {
  *zoom: 1;
}

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


/* base */

body {
  font: 100% "A1 Mincho", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "Helvetica", sans-serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #333;
  box-sizing: border-box;
  background: #fff;
  font-display: optional;
}

p,
td {
  font-size: calc((18 - 16) * ((100vw - 375px) / (1000 - 375)) + 16px);
}

/* header */

.inner {
  width: calc(100% - 64px);
  max-width: 1040px;
  margin: 0 auto;
}

.hdBlock {
  background: #c4a3bf;
  color: #fff;
  padding: 24vmin 0 20vmin 0;
  position: relative;
}

header {
  padding-bottom: 10vmin;
}

header h1 {
  position: absolute;
  top: 24px;
  right: 24px;
}

header h1 img {
  width: calc((48 - 40) * ((100vw - 375px) / (1000 - 375)) + 40px);
  max-width: 48px;
  height: auto;
}

header p {
  line-height: 2.2;
}

@media screen and (max-width: 414px) {
  header p br {
    display: none;
  }
}


/* about */

.about table th,
.about table td {
  text-align: left;
  vertical-align: middle;
  padding: 0.8rem 0;
}

.about table th {
  width: 100px;
  font-weight: normal;
  font-size: 14px;
}

.about table td span {
  font-size: 13px;
  display: block;
}

@media screen and (max-width: 414px) {
  .about table th {
    width: 80px;
    font-size: 13px;
  }
}


/* contact */

.infoBlock {
  padding: 20vmin 0;
  color: #ad85a7;
}

.infoBlock ul {
  display: flex;
  width: 100%;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

.infoBlock li {
  width: 50%;
}

.infoBlock .photo {
  text-align: right;
}

.infoBlock .photo img {
  width: 80%;
  min-width: 220px;
  max-width: 360px;
  height: auto;
}

.button a {
  display: block;
  text-align: center;
  width: 100%;
  max-width: 280px;
  padding: 16px 0;
  margin: 48px 0 0 0;
  background-color: #c4a3bf;
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.05em;
  line-height: 1.1;
  transition: all .3s;
}

.button a:hover {
  opacity: .7;
}

@media screen and (max-width: 767px) {
  .infoBlock ul {
    display: block;
  }

  .infoBlock li {
    width: 100%;
    text-align: center;
  }

  .infoBlock .photo {
    text-align: center;
    padding-bottom: 10vmin;
  }

  .infoBlock .photo img {
    width: 220px;
  }

  .button a {
    margin: 48px auto 0 auto;
  }

}

/* footer */

footer {
  text-align: center;
  padding-bottom: 20vmin;
}

footer .logo {
  padding-bottom: 40px;
}

footer .logo img {
  width: 144px;
  height: auto;
}

footer .copy {
  font-size: 14px;
}

footer .copy span {
  display: block;
  margin-bottom: 8px;
}

footer .copy span a {
  color: 333;
  text-decoration: underline;
}


/* contact */

.contact header {
  background: #c4a3bf;
  padding: 24px;
  text-align: right;
}

.contact header h1 {
  position: relative;
  top: auto;
  right: auto;
}

.contact .entry,
.contact .confirm,
.contact .send,
.contact .error {
  padding: 10vmin 0;
  text-align: center;
}

form {
  background: #fff;
  padding: 0;
  margin: 0 auto;
  position: relative;
}

form div {
  display: flex;
  justify-content: space-between;
  width: 768px;
  margin: 0 auto 20px auto;
}

@media screen and (max-width: 768px) {
  form div {
    width: 100%;
    display: block;
    margin: 0 auto 20px auto;
  }
}

form label {
  width: 180px;
  max-width: 180px;
  text-align: left;
  padding-top: 7px;
}

@media screen and (max-width: 768px) {
  form label {
    padding-top: 0;
    display: block;
    padding-bottom: 5px;
  }
}

form input,
form textarea {
  background-color: #fff;
  padding: 8px;
  width: 620px;
  height: inherit;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

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

  form input,
  form textarea {
    width: 100%;
    font-size: 16px;
    display: block;
  }
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
  border: 2px solid #c4a3bf;
}

form textarea {
  height: 150px;
}

@media screen and (max-width: 416px) {
  form textarea {
    height: 100px;
  }
}

form button {
  cursor: pointer;
  width: 500px;
  padding: 20px 0;
  margin: 40px auto;
  background-color: #c4a3bf;
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.05em;
  line-height: 1.1;
  transition: all .3s;
}

@media screen and (max-width: 768px) {
  form button {
    width: 80%;
  }
}

@media screen and (max-width: 416px) {
  form button {
    width: 100%;
    padding: 15px 0;
    font-size: 16px;
  }
}

form button:hover {
  opacity: .7;
}

@media screen and (max-width: 416px) {
  form .note {
    text-align: left;
  }

  form .note br {
    display: none;
  }
}

.confirm form .list {
  display: block;
  width: 768px;
  margin: 0 auto 32px auto;
  border-top: 1px solid #ddd;
}

@media screen and (max-width: 768px) {
  .confirm form .list {
    width: 100%;
  }
}

.confirm form .list div {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  padding: 20px 0;
  margin: 0 auto;
  flex-flow: wrap;
  border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 416px) {
  .confirm form .list div {
    padding: 10px 0;
  }
}

.confirm form .list div p {
  width: 170px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .confirm form .list div p {
    width: 100%;
  }
}

.confirm form .list div p + p {
  width: 630px;
}

@media screen and (max-width: 768px) {
  .confirm form .list div p + p {
    width: 100%;
  }
}

.confirm .btn-back {
  width: 220px;
  background-color: #888;
}

.confirm .btn-send {
  width: 500px;
}

@media screen and (max-width: 768px) {
  .confirm .btn-back {
    width: 30%;
    margin-right: 10px;
  }

  .confirm .btn-send {
    width: 50%;
  }
}