@charset "UTF-8";
body {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
  line-height: 1;
  box-sizing: border-box;
  letter-spacing: 1.2px;
  color: #333333;
  overflow-x: hidden;
}

.br_pc {
  display: block;
}

.br_sp {
  display: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

img {
  display: block;
  width: 50%;
}

.bg {
  position: relative;
}

.con {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

input,
textarea {
  -webkit-appearance: none;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
  opacity: 0.8;
}

.pc_nav {
  display: block;
}

.nav-wrapper {
  display: none;
}

header {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #EAE7DE;
  box-sizing: border-box;
  padding: 0 5%;
}
header .logo {
  max-width: 300px;
}
header nav {
  width: 100%;
  max-width: 46%;
}
header nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav ul li a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

article {
  padding: 100px 0;
}

section {
  max-width: 1100px;
  display: block;
  margin: 0 auto;
}

h2 {
  margin-bottom: 40px;
}
h2 p {
  font-size: 14px;
  text-align: center;
  color: #906D6D;
}
h2 img {
  width: auto;
  height: 40px;
  margin: 24px auto;
}
h2 .line {
  max-width: 160px;
  width: 100%;
  height: 1px;
  margin: 0 auto;
  background: #000;
}

.text {
  font-size: 16px;
  text-align: center;
  line-height: 2.5;
}

/* 
hamburger(ハンバーガーアイコン)
=================================== */
.hamburger {
  position: absolute;
  right: 3%;
  top: 6.8%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 300;
}

.hamburger__line {
  position: absolute;
  width: 30px;
  height: 2px;
  right: 0;
  background-color: #333333;
  transition: all 0.5s;
}

.hamburger__line--1 {
  top: 1px;
}

.hamburger__line--2 {
  top: 10px;
}

.hamburger__line--3 {
  top: 19px;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  transform: rotate(-45deg);
  top: 11px;
}

.open .hamburger__line--2 {
  opacity: 0;
}

.open .hamburger__line--3 {
  transform: rotate(45deg);
  top: 11px;
}

/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
  box-sizing: border-box;
  padding: 75px 30px;
  position: fixed;
  right: -100%;
  /*ハンバーガーがクリックされる前はWindow右側に隠す*/
  top: 0;
  width: 70%;
  /* 出てくるスライドメニューの幅 */
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto;
  /* メニューが多くなったらスクロールできるように */
}
.sp-nav ul {
  display: block;
}
.sp-nav ul li {
  margin-bottom: 45px;
}
.sp-nav ul li a p {
  font-size: min(2.5vw, 16px);
  margin-bottom: 10px;
}
.sp-nav ul li a img {
  width: auto;
  height: 23px;
}
.sp-nav small {
  position: absolute;
  bottom: 3%;
  font-size: min(2vw, 14px);
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  right: 0;
}

/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}

.fv {
  position: relative;
  width: 100%;
  height: 800px;
  background: url("../img/fv_bg.png") no-repeat;
  background-position: center;
  background-size: cover;
}
.fv h1 {
  width: 100%;
  max-width: 1176px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fv .fv_sub {
  top: auto;
  bottom: 10%;
  margin: 0 auto;
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 10px;
  text-align: center;
  opacity: 0.8;
}
.fv .fv_scroll {
  width: auto;
  top: 36%;
  left: auto;
  right: 5%;
  height: 220px;
}

.art1 {
  background: #EAE7DE;
}
.art1 .art1_ul {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}
.art1 .art1_ul li {
  max-width: 340px;
}

.art2 section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.art2 section .flex_l {
  max-width: 400px;
}
.art2 section .flex_l h2 p {
  text-align: left;
}
.art2 section .flex_l h2 img {
  margin-left: 0;
}
.art2 section .flex_l h2 .line {
  max-width: 160px;
  width: 100%;
  height: 1px;
  margin-left: 0;
  background: #000;
}
.art2 section .flex_l .text {
  text-align: left;
}
.art2 section .flex_r img {
  max-width: 610px;
}

.art3 {
  background: #D3BF9E;
}
.art3 section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
.art3 section .flex_l {
  max-width: 400px;
}
.art3 section .flex_l h2 p {
  text-align: left;
  color: #fff;
}
.art3 section .flex_l h2 img {
  margin-left: 0;
}
.art3 section .flex_l h2 .line {
  max-width: 160px;
  width: 100%;
  height: 1px;
  margin-left: 0;
  background: #fff;
}
.art3 section .flex_l .text {
  text-align: left;
  color: #fff;
}
.art3 section .flex_r img {
  max-width: 610px;
}

.art4 {
  background: #EAE7DE;
}
.art4 section {
  box-sizing: border-box;
  padding: 80px;
  border-radius: 40px;
  background: #fff;
}
.art4 section dl {
  display: flex;
  flex-wrap: wrap;
  line-height: 2.5;
}
.art4 section dl dt {
  width: 15%;
  font-weight: bold;
  border-bottom: 1px solid #906D6D;
  padding: 25px 0;
}
.art4 section dl dd {
  width: 70%;
  border-bottom: 1px solid #DDDDDD;
  padding: 25px 0;
  padding-left: 15%;
}

.art5 .lead-form {
  text-align: center;
  font-size: 20px;
}
.art5 form {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 40px 80px;
}
.art5 .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.art5 .label {
  font-weight: bold;
}
.art5 .inputs {
  display: block;
  width: 100%;
  max-width: 70%;
  height: 30px;
  background: #F7F7F7;
  border: none;
  font-size: min(3.6vw, 16px);
}
.art5 input[type=text],
.art5 input[type=email] {
  border: none;
  padding: 10px;
  font-size: 14px;
}
.art5 textarea {
  border: none;
  padding: 10px;
  height: 160px;
  font-size: 14px;
}
.art5 textarea.inputs {
  height: 200px;
}
.art5 .btn-area {
  text-align: center;
}
.art5 input[type=submit] {
  display: block;
  color: #fff;
  width: 100%;
  max-width: 330px;
  height: 50px;
  background: #D5BF96;
  border-radius: 25px;
  margin: 0 auto;
  font-size: 14px;
  border: none;
  letter-spacing: 2px;
}
.art5 input[type=tel i] {
  padding: 10px !important;
}
.art5 .item_txt {
  align-items: flex-start;
  margin-bottom: 80px;
}

footer {
  color: #fff;
  width: 100%;
  background: #000;
  font-size: 16px;
  letter-spacing: 1.2px;
  line-height: 2.5;
  padding-top: 100px;
}
footer .inner_ft1 {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
}
footer .inner_ft1 .flex_ft {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 60px;
}
footer .inner_ft1 .ft_p2 {
  margin-top: auto;
}
footer small {
  text-align: center;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 1325px) {
  .fv h1 img {
    max-width: 960px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1100px) {
  header {
    position: fixed;
    top: 0;
    z-index: 1;
  }
  .hamburger {
    top: 45px;
  }
  .pc_nav {
    display: none;
  }
  .nav-wrapper {
    display: block;
  }
  h2 p {
    font-size: 1.4vw;
  }
  h2 img {
    width: 30vw;
    height: auto;
    margin: 15px auto;
  }
  .text {
    font-size: 1.6vw;
  }
  article {
    padding: 10% 0;
  }
  .fv {
    margin-top: 65px;
  }
  .fv h1 img {
    margin: 0 auto;
    width: 70%;
  }
  .fv .fv_sub {
    font-size: 3vw;
  }
  .art1 h2 img {
    width: 28vw;
  }
  .art1 .art1_ul li {
    max-width: 32%;
  }
  .art2 section .flex_l {
    max-width: 47%;
  }
  .art2 section .flex_l h2 img {
    width: 26vw;
  }
  .art2 section .flex_l h2 .line {
    width: 50% !important;
  }
  .art2 section .flex_r {
    max-width: 47%;
  }
  .art3 section .flex_l {
    max-width: 47%;
  }
  .art3 section .flex_l h2 img {
    width: 32vw;
  }
  .art3 section .flex_l h2 .line {
    width: 50% !important;
  }
  .art3 section .flex_r {
    max-width: 47%;
  }
  .art4 section {
    padding: 8%;
  }
  .art4 section dl {
    font-size: 1.6vw;
  }
  .art4 section h2 img {
    width: 24vw;
  }
  .art4 section h2 .line {
    width: 50% !important;
  }
  .art5 section form {
    padding: 4% 8%;
  }
  .art5 section h2 img {
    width: 24vw;
  }
  .art5 section h2 .line {
    width: 50% !important;
  }
  .art5 input[type=text],
  .art5 .art5 input[type=email] {
    font-size: 1.4vw;
  }
  .art5 .label {
    font-size: 1.6vw;
  }
  header {
    padding: 0 3%;
  }
  section {
    max-width: 94%;
  }
  footer {
    font-size: 1.4vw;
  }
  footer .inner_ft1 {
    max-width: 94%;
  }
  footer .inner_ft1 .flex_ft {
    display: block;
  }
  footer .inner_ft1 .flex_ft .logo img {
    width: 50%;
  }
  footer .inner_ft1 .flex_ft .ft_p1 {
    margin-top: 8%;
  }
  footer .inner_ft1 .flex_ft .ft_p2 {
    margin-top: 4%;
  }
}
@media screen and (max-width: 768px) {
  .hamburger {
    top: 20px;
  }
  /*ハンバーガーがクリックされたら右からスライド*/
  .open .sp-nav {
    right: 0;
  }
  .br_pc {
    display: none;
  }
  .br_sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .fv .fv_sub {
    font-size: 4vw;
  }
  .fv .fv_scroll {
    width: auto;
    top: 36%;
    left: auto;
    right: 5%;
    height: 25%;
  }
  .fv h1 {
    width: 100%;
    max-width: 1176px;
    top: 25%;
    left: 50%;
    transform: translate(-50%, 0%);
  }
  .fv_sp {
    position: relative;
    width: 100%;
    height: 80vh;
    background: url("../img/fv_bg_sp.png") no-repeat;
    background-position: center;
    background-size: cover;
  }
  h2 p {
    font-size: 3vw;
  }
  h2 img {
    width: 40vw;
    height: auto;
    margin: 15px auto;
  }
  .text {
    font-size: 4.2vw;
    text-align: left;
  }
  article {
    padding: 17% 0;
  }
  header {
    padding: 0 5%;
    height: 65px;
  }
  header nav {
    max-width: 100%;
  }
  header .logo {
    width: 40%;
  }
  section {
    max-width: 90%;
  }
  .fv h1 img {
    margin: 0 auto;
    width: 70%;
  }
  .fv .fv_sub {
    font-size: 4vw;
    top: 72%;
    bottom: auto;
    letter-spacing: 4px;
  }
  .art1 h2 p {
    text-align: center;
  }
  .art1 h2 img {
    width: 45vw;
  }
  .art1 .art1_ul li {
    width: 100%;
    max-width: 100%;
  }
  .art1 .art1_ul li:first-child,
  .art1 .art1_ul li:last-child {
    display: none;
  }
  .art2 section {
    display: block;
  }
  .art2 section .flex_l {
    max-width: 100%;
  }
  .art2 section .flex_l h2 p {
    text-align: center;
  }
  .art2 section .flex_l h2 img {
    width: 43vw;
    margin: 15px auto;
  }
  .art2 section .flex_l h2 .line {
    max-width: 35%;
    width: 35% !important;
    margin: 0 auto;
  }
  .art2 section .flex_r {
    max-width: 100%;
    margin-top: 40px;
  }
  .art2 section .flex_r img {
    width: 50%;
    max-width: 100%;
  }
  .art3 section {
    display: block;
  }
  .art3 section .flex_l {
    max-width: 100%;
  }
  .art3 section .flex_l h2 p {
    text-align: center;
  }
  .art3 section .flex_l h2 img {
    width: 49vw;
    margin: 15px auto;
  }
  .art3 section .flex_l h2 .line {
    max-width: 35%;
    width: 35% !important;
    margin: 0 auto;
  }
  .art3 section .flex_r {
    max-width: 100%;
    margin-top: 40px;
  }
  .art3 section .flex_r img {
    width: 100%;
    max-width: 100%;
  }
  .art4 section {
    padding: 8%;
  }
  .art4 section dl {
    display: block;
    font-size: 4vw;
  }
  .art4 section dl dt {
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
  }
  .art4 section dl dd {
    width: 100%;
    padding-top: 0;
    padding-left: 0;
  }
  .art4 section h2 img {
    width: 41vw;
  }
  .art4 section h2 .line {
    max-width: 35%;
    width: 35% !important;
  }
  .art5 section form {
    padding: 4% 8%;
    /* バリデーション有効時 */
  }
  .art5 section form input:focus:valid ~ span.p_required::after {
    content: "必須";
    color: white;
    background-color: green;
    border-radius: 4px;
    font-weight: bold;
    padding: 4px 12px;
    margin-left: 8px;
    vertical-align: top;
  }
  .art5 section h2 img {
    width: 41vw;
  }
  .art5 section h2 .line {
    max-width: 35%;
    width: 35% !important;
  }
  .art5 input[type=text],
  .art5 .art5 input[type=email] {
    font-size: min(3.6vw, 16px);
  }
  .art5 .label {
    font-size: 3.6vw;
  }
  .art5 .item {
    display: block;
  }
  .art5 .inputs {
    margin-top: 6%;
    max-width: 100%;
    font-size: min(3.6vw, 16px);
  }
  .art5 input[type=submit] {
    display: block;
    color: #fff;
    width: 100%;
    max-width: 100%;
    height: 70px;
    background: #D5BF96;
    border-radius: 35px;
    margin: 0 auto;
    font-size: 3.6vw;
    border: none;
    letter-spacing: 2px;
  }
  footer {
    font-size: 2.4vw;
  }
  footer .inner_ft1 {
    max-width: 94%;
  }
  footer .inner_ft1 .flex_ft {
    display: block;
  }
  footer .inner_ft1 .flex_ft .logo img {
    width: 50%;
  }
  footer .inner_ft1 .flex_ft .ft_p1 {
    margin-top: 8%;
  }
  footer .inner_ft1 .flex_ft .ft_p2 {
    margin-top: 4%;
  }
}
.confirm h4 {
  margin-bottom: 60px;
}
.confirm .formTable {
  border-collapse: separate;
  border-spacing: 10px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 60px;
}
.confirm .formTable tr th {
  text-align: left;
  font-weight: bold;
}
.confirm .formTable td {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 30px;
  background: #F7F7F7;
  border: none;
  font-size: min(3.6vw, 16px);
  padding: 10px;
  font-size: min(3.6vw, 16px);
  line-height: 30px;
}
.confirm .con_conf {
  margin-top: 60px;
}
.confirm .con_conf .inputs {
  padding: 10px;
  font-size: min(3.6vw, 16px);
  line-height: 30px;
}
.confirm .flex_conf {
  display: flex;
}
.confirm .flex_conf .button {
  display: block;
  color: #fff;
  width: 100%;
  max-width: 330px;
  height: 50px;
  background: #666;
  border-radius: 25px;
  margin: 0 auto;
  font-size: 14px;
  border: none;
  letter-spacing: 2px;
}
.confirm .flex_conf .submit {
  display: block;
  color: #fff;
  width: 100%;
  max-width: 330px;
  height: 50px;
  background: #D5BF96;
  border-radius: 25px;
  margin: 0 auto;
  font-size: 14px;
  border: none;
  letter-spacing: 2px;
}
@media screen and (max-width: 1100px) {
  .confirm .flex_conf {
    display: block;
  }
  .confirm .flex_conf .button {
    display: block;
    color: #fff;
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    height: 20vw;
    background: #666;
    border-radius: 35px;
    margin: 0 auto;
    font-size: min(3.6vw, 16px);
    border: none;
    letter-spacing: 2px;
    margin-bottom: 30px;
    max-height: 70px;
  }
  .confirm .flex_conf .submit {
    display: block;
    color: #fff;
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    height: 20vw;
    background: #D5BF96;
    border-radius: 35px;
    margin: 0 auto;
    font-size: min(3.6vw, 16px);
    border: none;
    letter-spacing: 2px;
    max-height: 70px;
  }
}
.confirm .error_messe {
  text-align: center;
  margin-bottom: 30px;
}
.confirm .submit {
  display: block;
  color: #fff;
  width: 100%;
  max-width: 330px;
  height: 50px;
  background: #D5BF96;
  border-radius: 25px;
  margin: 0 auto;
  font-size: 14px;
  border: none;
  letter-spacing: 2px;
}
@media screen and (max-width: 1100px) {
  .confirm main {
    margin-top: 120px;
  }
  .confirm .submit {
    display: block;
    color: #fff;
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    height: 20vw;
    background: #D5BF96;
    border-radius: 35px;
    margin: 0 auto;
    font-size: min(3.6vw, 16px);
    border: none;
    letter-spacing: 2px;
    max-height: 70px;
  }
}
@media screen and (max-width: 768px) {
  .confirm .formTable th {
    padding-top: 20px;
    padding-bottom: 15px;
  }
  .confirm .formTable th,
  .confirm .formTable td {
    width: 100%;
    display: block;
  }
  .confirm .text {
    font-size: min(4.2vw, 16px);
    text-align: center;
  }
  .confirm main {
    margin-top: 65px;
  }
}

.thanks {
  /*
  position: relative;
  footer {
      position: absolute;
      bottom: 0;
  }*/
}
.thanks .p_thanks {
  font-size: min(4.2vw, 16px);
  text-align: center;
}
.thanks .btn_thanks {
  display: flex;
  color: #fff;
  width: 100%;
  max-width: 330px;
  height: 50px;
  background: #D5BF96;
  border-radius: 25px;
  margin: 0 auto;
  font-size: 14px;
  border: none;
  letter-spacing: 2px;
  margin-top: 60px;
  text-decoration: none;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .thanks main {
    margin-top: 120px;
  }
  .thanks .btn_thanks {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    height: 20vw;
    background: #D5BF96;
    border-radius: 35px;
    margin: 0 auto;
    font-size: min(3.6vw, 16px);
    border: none;
    letter-spacing: 2px;
    max-height: 70px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 1100px) {
  .thanks main {
    margin-top: 65px;
  }
}/*# sourceMappingURL=style.css.map */