@charset "utf-8";
/* リセット */
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,
header,
footer,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: 400;
  line-height: 1;
  vertical-align: baseline;
}
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;
}
img {
  border: none;
  height: auto;
  max-width: 100%;
  vertical-align: top;
}
a {
  color: #605850;
  outline: none;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
strong {
  font-weight: 700;
}
.clearfix::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  --font-sanserif: 'Zen Kaku Gothic New', sans-serif;
}

body {
  color: #3e362e;
  position: relative;
  font-family: var(--font-sanserif);
  text-align: justify;
  letter-spacing: 1px;
  word-wrap: break-word;
}
.flex {
  display: -webkit-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
sup {
  font-size: 10px;
  vertical-align: revert;
}

/* formリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* アニメーション */
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 80px);
}

.fade-in-down {
  transform: translate(0, -80px);
}

.fade-in-left {
  transform: translate(-80px, 0);
}

.fade-in-right {
  transform: translate(80px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* header */
header {
  background: #fff;
  padding-top: 15px;
  position: relative;
  width: 100%;
}

.header__logo {
  margin: 0 auto 15px;
  width: 60px;
}

@media screen and (max-width: 960px) {
  .header__logo {
	  width: 45px;
  }
}
/*
#header__menu__trigger,
.header__menu__btn {
  display: none;
}

@media screen and (max-width: 960px) {
  .header__menu__btn {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
  }
  
  .header__menu__btn label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    padding-top: 25px;
    position: relative;
    text-align: center;
  }
  
  .header__menu__btn label::before,
  .header__menu__btn label::after {
    background: #3e362e;
    border-radius: 3px;
    content: "";
    display: block;
    height: 5px;
    position: absolute;
    left: 0;
    width: 100%;
  }
  
  .header__menu__btn label::before {
    top: 0;
  }
  
  .header__menu__btn label::after {
    top: 12px;
    width: 80%;
  }
}

.header__menu {
  background: #a89b8d;
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .header__menu {
    padding: 0 10px;
  }
}

@media screen and (max-width: 960px) {
  .header__menu {
    height: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition: transform 0.3s;
    width: 0;
    z-index: 100;
  }
  
  .header__menu label::before {
    color: #3e362e;
    content: "×";
    display: block;
    font-size: 30px;
    wont-weight: 900;
    position: absolute;
    top: 8px;
    right: 15px;
  }
  
  #header__menu__trigger:checked ~ .header__menu {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    transform: translateX(0);
    transition: transform 0.3s;
    width: 100%;
  }
}

.header__menu ul {
  margin: 0 auto;
  max-width: 1100px;
}

@media screen and (max-width: 960px) {
  .header__menu ul {
    background: #f6f0eb;
    display: block;
    height: 100vh;
    margin: 0 0 0 calc(100% - 300px);
    padding: 50px 20px 30px;
    width: 300px;
  }
}

.header__menu a {
  color: #fff;
  display: block;
  font-size: 15px;
  font-weight: 400;
  padding: 20px 50px 20px 0;
}

@media screen and (max-width: 960px) {
  .header__menu a {
    border-top: dotted 1px #c8bcb0;
    color: #3e362e;
    font-size: 14px;
    font-weight: 400;
    padding: 15px 10px;
    position: relative;
  }
  
  .header__menu li:last-of-type a {
    border-bottom: dotted 1px #c8bcb0;
  }
}*/

/* footer */
footer {
  background: #19585b;
  padding: 30px 0;
}

@media screen and (max-width: 1100px) {
  footer {
    padding: 25px 20px;
  }
}


.copyright {
  color: #fff;
  font-size: 12px;
  text-align: center;
}

/* トップページ */
.top-service {
  padding: 70px 0;
}

@media screen and (max-width: 1100px) {
  .top-service {
    padding: 50px 0;
  }
}

.top-service h2 {
  font-size: 40px;
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .top-service h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.top-service p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 1em;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .top-service p {
    font-size: 16px;
    margin: 0 24px 1em;
    text-align: justify;
  }
}

.top-inquiry {
  background: #f4f4f4;
  padding: 70px 0;
}

@media screen and (max-width: 1100px) {
  .top-inquiry {
    padding: 50px 0;
  }
}

.top-inquiry h2 {
  font-size: 40px;
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .top-inquiry h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.top-inquiry p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 50px;
}

.top-inquiry > p {
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .top-inquiry p {
    font-size: 16px;
    margin: 0 24px 2em;
    text-align: justify;
  }
}

.wpcf7-form {
  max-width: 800px;
  margin: 0 auto;
}

.wpcf7-form p label {
  font-size: 14px;
  font-weight: 700;
}

.wpcf7-form .required {
  background: #b32121;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  margin-left: 7px;
  padding: 5px 7px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  background: #fff;
  border: solid 1px #3e362e;
  border-radius: 10px;
  margin-top: 10px;
  padding: 10px;
  width: 100%;
}

.wpcf7-form input[type="submit"] {
  background: #b32121;
  border-radius: 30px;
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 60px;
  margin: 0 auto;
  text-align: center;
  width: 300px;
}
