@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap");
html {
  font-size: 62.5%;
  margin: 0;
  padding: 0;
}

body {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

h1, h2, h3, h4, h5, h6, p, ul, li, dl, dt, dd, table, th, td, figure {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  letter-spacing: .3rem;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
}

.en {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
}

/*      MV      */
.mv {
  display: block;
  width: 100%;
}

.mv .mv_contents {
  position: relative;
  z-index: -1;
}

.mv .mv_contents .slider li .pc_only {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1080px) {
  .mv .mv_contents .slider li .pc_only {
    display: none;
  }
}

@media screen and (max-width: 1080px) {
  .mv .mv_contents .slider li .sp_only {
    display: block;
    width: 100%;
    height: 100vh;
  }
}

.mv .sp_only {
  display: none;
}

.mv .header_pc {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 226px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
}

@media screen and (max-width: 1080px) {
  .mv .header_pc {
    display: none;
  }
}

.mv .header_pc h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 80px;
}

.mv .header_pc h1 a img {
  width: 100%;
}

.mv .header_pc h1 a img:hover {
  opacity: .8;
}

.mv .header_pc .h_address {
  position: absolute;
  bottom: 0;
  background-color: #726346;
  width: 186px;
  text-align: center;
  padding: 16px 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.mv .header_pc .h_address p {
  font-size: 1rem;
  color: #fff;
  margin: 5px 0;
}

.mv .header_pc .h_address .tel {
  font-size: 1.8rem;
}

.mv .header_sp {
  display: none;
}

@media screen and (max-width: 1080px) {
  .mv .header_sp {
    display: block;
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 100;
    /*開閉ボタンopen時*/
  }
  .mv .header_sp nav {
    display: none;
    width: 100%;
    height: 100vh;
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.55);
    /*background-color: rgba(255,255,255,0.55);*/
  }
  .mv .header_sp nav ul {
    position: absolute;
    bottom: 100px;
    right: 20px;
    width: 100%;
  }
  .mv .header_sp nav ul li {
    margin-bottom: 20px;
  }
  .mv .header_sp nav ul li a {
    width: 100%;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .mv .header_sp nav ul li a p {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 8px 12px;
    font-size: 16px;
    background-color: #fff;
    border-radius: 4px;
    text-align: center;
    margin-right: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .mv .header_sp nav ul li a span {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #fff;
    padding: 16px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .mv .header_sp nav ul li a span img {
    width: 100%;
  }
  .mv .header_sp .toggle_wrap {
    width: 60px;
    height: 60px;
    background-color: #fff;
    position: absolute;
    bottom: 40px;
    right: 20px;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 5px #ccc, 0 0 1px #aaa;
            box-shadow: 0 0 5px #ccc, 0 0 1px #aaa;
    z-index: 100;
  }
  .mv .header_sp #nav_toggle {
    display: block;
    width: 30px;
    height: 30px;
    z-index: 100;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
  }
  .mv .header_sp #nav_toggle div {
    position: relative;
  }
  .mv .header_sp #nav_toggle span {
    display: block;
    height: 3px;
    background: #444;
    position: absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  .mv .header_sp #nav_toggle span:nth-child(1) {
    top: 0px;
  }
  .mv .header_sp #nav_toggle span:nth-child(2) {
    top: 12px;
  }
  .mv .header_sp #nav_toggle span:nth-child(3) {
    top: 24px;
  }
  .mv .header_sp #nav_toggle p {
    display: block;
    position: absolute;
    top: 30px;
    left: 0;
    color: #444;
    font-size: 14px;
    text-align: center;
  }
  .mv .header_sp .open #nav_toggle span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .mv .header_sp .open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .mv .header_sp .open #nav_toggle span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
}

.mv .mv_read_pc {
  width: 560px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  text-align: center;
}

@media screen and (max-width: 1080px) {
  .mv .mv_read_pc {
    width: 56%;
  }
}

@media screen and (max-width: 767px) {
  .mv .mv_read_pc {
    display: none;
  }
}

.mv .mv_read_pc h2 img {
  width: 100%;
}

.mv .mv_read_pc p {
  margin-top: 100px;
  color: #B5B3AD;
  font-size: 1.6rem;
}

@media screen and (max-width: 1080px) {
  .mv .mv_read_pc p {
    margin-top: 60px;
  }
}

.mv .mv_read_sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .mv .mv_read_sp {
    display: block;
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    text-align: center;
  }
  .mv .mv_read_sp h2 {
    width: 100%;
  }
  .mv .mv_read_sp h2 img {
    width: 100%;
  }
  .mv .mv_read_sp img {
    width: 30%;
    margin: 50% auto 20px;
  }
  .mv .mv_read_sp p {
    color: #B5B3AD;
    font-size: 1.6rem;
  }
}

.about {
  width: 100%;
  padding: 60px 0;
}

.about .about_content {
  width: 980px;
  padding: 0 20px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1080px) {
  .about .about_content {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .about .about_content {
    width: 92%;
    padding: 0;
  }
}

.about .about_content .about_tit_wrap {
  width: 100%;
  position: relative;
}

.about .about_content .about_tit_wrap h3 {
  width: 100%;
}

.about .about_content .about_tit_wrap h3 span {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .about .about_content .about_tit_wrap h3 span {
    position: unset;
    text-align: center;
    margin: 0 auto 20px;
    display: block;
  }
}

.about .about_content .about_tit_wrap h3 img {
  width: 45px;
  margin: 0 auto;
}

.about .about_content .about_content_wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}

@media screen and (max-width: 1080px) {
  .about .about_content .about_content_wrap {
    display: block;
  }
}

.about .about_content .about_content_wrap figure {
  width: 450px;
  margin-right: 45px;
}

@media screen and (max-width: 1080px) {
  .about .about_content .about_content_wrap figure {
    width: 100%;
    margin-bottom: 20px;
  }
}

.about .about_content .about_content_wrap figure img {
  width: 100%;
}

.about .about_content .about_content_wrap p {
  width: 450px;
  font-size: 1.4rem;
  line-height: 2.8rem;
}

@media screen and (max-width: 1080px) {
  .about .about_content .about_content_wrap p {
    width: 100%;
  }
}

.about .symbol_img {
  width: 200px;
  margin: 60px auto 0;
}

.product {
  padding: 60px 0 160px;
  background-color: #F2EEE6;
  position: relative;
  z-index: -1;
}

.product .symbol_img {
  width: 200px;
  margin: 0 auto 60px;
}

.product .product_content {
  width: 980px;
  padding: 0 20px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1080px) {
  .product .product_content {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .product .product_content {
    width: 92%;
    padding: 0;
  }
}

.product .product_content .product_tit_wrap {
  width: 100%;
  position: relative;
  margin-bottom: 100px;
}

.product .product_content .product_tit_wrap h3 {
  width: 100%;
}

.product .product_content .product_tit_wrap h3 span {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .product .product_content .product_tit_wrap h3 span {
    position: unset;
    text-align: center;
    margin: 0 auto 20px;
    display: block;
  }
}

.product .product_content .product_tit_wrap h3 img {
  width: 45px;
  margin: 0 auto;
}

.product .product_content .product_content_wrap {
  position: relative;
}

@media screen and (max-width: 767px) {
  .product .product_content .product_content_wrap {
    position: unset;
  }
}

@media screen and (max-width: 767px) {
  .product .product_content .product_content_wrap .p_sub_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 40px;
  }
}

.product .product_content .product_content_wrap .p_sub_left {
  position: absolute;
  top: 0;
  left: -50px;
  width: 100px;
  z-index: 100;
}

.product .product_content .product_content_wrap .p_sub_left img {
  width: 100%;
}

@media screen and (max-width: 1080px) {
  .product .product_content .product_content_wrap .p_sub_left {
    width: 70px;
    left: -35px;
  }
}

@media screen and (max-width: 767px) {
  .product .product_content .product_content_wrap .p_sub_left {
    position: unset;
    display: block;
    margin-right: 10px;
    width: 70px;
    height: auto;
  }
}

.product .product_content .product_content_wrap .p_sub_right {
  position: absolute;
  top: 0;
  right: -50px;
  width: 100px;
  z-index: 100;
}

.product .product_content .product_content_wrap .p_sub_right img {
  width: 100%;
}

@media screen and (max-width: 1080px) {
  .product .product_content .product_content_wrap .p_sub_right {
    width: 70px;
    right: -35px;
  }
}

@media screen and (max-width: 767px) {
  .product .product_content .product_content_wrap .p_sub_right {
    position: unset;
    display: block;
    margin-left: 10px;
    width: 70px;
    height: auto;
  }
}

.product .product_content .product_content_wrap .p_content_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .product .product_content .product_content_wrap .p_content_list {
    display: block;
  }
}

.product .product_content .product_content_wrap .p_content_list .p_content_item {
  width: 450px;
  margin-bottom: 40px;
  position: relative;
}

@media screen and (max-width: 1080px) {
  .product .product_content .product_content_wrap .p_content_list .p_content_item {
    width: 48%;
  }
}

@media screen and (max-width: 767px) {
  .product .product_content .product_content_wrap .p_content_list .p_content_item {
    width: 100%;
  }
}

.product .product_content .product_content_wrap .p_content_list .p_content_item img {
  width: 100%;
}

.product .product_content .product_content_wrap .p_content_list .p_content_item figcaption {
  position: absolute;
  bottom: 0;
  text-align: center;
  color: #fff;
  padding: 0 60px 30px;
}

@media screen and (max-width: 1080px) {
  .product .product_content .product_content_wrap .p_content_list .p_content_item figcaption {
    padding: 0 30px 30px;
  }
}

.product .product_content .product_content_wrap .p_content_list .p_content_item figcaption h4 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.product .product_content .product_content_wrap .p_content_list .p_content_item figcaption p {
  font-size: 1.2rem;
}

.product .product_content .product_content_wrap .p_content_list .p_c_item_r {
  margin-left: 40px;
}

@media screen and (max-width: 1080px) {
  .product .product_content .product_content_wrap .p_content_list .p_c_item_r {
    margin-left: 4%;
  }
}

@media screen and (max-width: 767px) {
  .product .product_content .product_content_wrap .p_content_list .p_c_item_r {
    margin-left: 0;
  }
}

.product .product_content .product_caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 120px;
  width: 100%;
}

@media screen and (max-width: 1080px) {
  .product .product_content .product_caption {
    width: 90%;
    margin-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  .product .product_content .product_caption {
    display: block;
    margin: 60px auto 0;
  }
}

.product .product_content .product_caption li {
  width: 300px;
  padding-top: 60px;
  position: relative;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 1080px) {
  .product .product_content .product_caption li {
    width: 35%;
    margin-right: 3%;
  }
}

@media screen and (max-width: 767px) {
  .product .product_content .product_caption li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}

.product .product_content .product_caption li h4 {
  width: 80px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  -webkit-transform: translateY(0%) translateX(-50%);
  z-index: 100;
}

@media screen and (max-width: 1080px) {
  .product .product_content .product_caption li h4 {
    width: 50px;
  }
}

@media screen and (max-width: 767px) {
  .product .product_content .product_caption li h4 {
    width: 60px;
  }
}

.product .product_content .product_caption li h4 img {
  width: 100%;
}

.product .product_content .product_caption li .p_caption_item {
  width: 100%;
  position: relative;
}

.product .product_content .product_caption li .p_caption_item img {
  width: 100%;
}

.product .product_content .product_caption li .p_caption_item figcaption {
  position: absolute;
  bottom: 0;
  padding: 20px;
  font-size: 1.2rem;
}

@media screen and (max-width: 1080px) {
  .product .product_content .product_caption li .p_caption_item figcaption {
    padding: 16px;
  }
}

.commit {
  background-color: #2C2A26;
  z-index: -100;
  position: relative;
}

.commit .commit_kv {
  width: 100%;
  position: relative;
}

.commit .commit_kv .pc_only {
  display: block;
  width: 100%;
}

.commit .commit_kv .sp_only {
  display: none;
}

@media screen and (max-width: 1080px) {
  .commit .commit_kv .pc_only {
    display: none;
  }
  .commit .commit_kv .sp_only {
    display: block;
    width: 100%;
  }
}

.commit .commit_kv .commit_tit_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .commit .commit_kv .commit_tit_wrap {
    width: 80%;
  }
}

.commit .commit_kv .commit_tit_wrap h3 img {
  width: 45px;
  margin: 0 auto 30px;
}

.commit .commit_kv .commit_tit_wrap h3 span {
  display: block;
  margin-bottom: 30px;
}

.commit .commit_kv .commit_tit_wrap p {
  font-size: 1.5rem;
}

.commit .commit_content {
  width: 100%;
  padding: 100px 0;
}

.commit .commit_content .commit_wrap {
  width: 940px;
  margin: 0 auto 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1080px) {
  .commit .commit_content .commit_wrap {
    width: 90%;
    display: block;
  }
}

.commit .commit_content .commit_wrap .commit_read {
  width: 430px;
  color: #fff;
  font-size: 2rem;
  line-height: 4rem;
}

@media screen and (max-width: 1080px) {
  .commit .commit_content .commit_wrap .commit_read {
    width: 60%;
    margin: 0 auto 60px;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .commit .commit_content .commit_wrap .commit_read {
    width: 100%;
    font-size: 1.5rem;
    line-height: 3rem;
  }
}

.commit .commit_content .commit_wrap figure {
  width: 510px;
}

@media screen and (max-width: 1080px) {
  .commit .commit_content .commit_wrap figure {
    width: 80%;
    margin: 0 auto;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .commit .commit_content .commit_wrap figure {
    width: 100%;
  }
}

.commit .commit_content .commit_wrap figure img {
  width: 100%;
}

.commit .commit_content .commit_wrap figure figcaption {
  text-align: right;
  color: #fff;
}

.commit .commit_txt {
  width: 860px;
  margin: 0 auto;
  color: #fff;
  font-size: 1.6rem;
  line-height: 3.2rem;
}

@media screen and (max-width: 1080px) {
  .commit .commit_txt {
    width: 80%;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .commit .commit_txt {
    font-size: 1.4rem;
    width: 90%;
  }
}

.commit .commit_bnr_pc {
  display: block;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .commit .commit_bnr_pc {
    display: none;
  }
}

.commit .commit_bnr_sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .commit .commit_bnr_sp {
    width: 100%;
    display: block;
  }
}

.history {
  width: 100%;
  padding: 60px 0 200px;
}

.history .history_content {
  width: 980px;
  padding: 0 20px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1080px) {
  .history .history_content {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .history .history_content {
    width: 92%;
    padding: 0;
  }
}

.history .history_content .history_tit_wrap {
  width: 100%;
  position: relative;
}

.history .history_content .history_tit_wrap h3 {
  width: 100%;
}

.history .history_content .history_tit_wrap h3 span {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #B5B3AD;
}

@media screen and (max-width: 767px) {
  .history .history_content .history_tit_wrap h3 span {
    position: unset;
    text-align: center;
    margin: 0 auto 20px;
    display: block;
  }
}

.history .history_content .history_tit_wrap h3 img {
  width: 45px;
  margin: 0 auto;
}

.history .history_content .history_content_wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}

@media screen and (max-width: 1080px) {
  .history .history_content .history_content_wrap {
    display: block;
  }
}

.history .history_content .history_content_wrap figure {
  width: 450px;
  margin-right: 45px;
}

@media screen and (max-width: 1080px) {
  .history .history_content .history_content_wrap figure {
    width: 100%;
    margin-bottom: 20px;
  }
}

.history .history_content .history_content_wrap figure img {
  width: 100%;
}

.history .history_content .history_content_wrap p {
  width: 450px;
  font-size: 1.4rem;
  line-height: 2.8rem;
}

@media screen and (max-width: 1080px) {
  .history .history_content .history_content_wrap p {
    width: 100%;
  }
}

.history .symbol_img {
  width: 200px;
  margin: 200px auto;
}

.history .history_second_content {
  width: 980px;
  padding: 0 20px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1080px) {
  .history .history_second_content {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .history .history_second_content {
    width: 92%;
    padding: 0;
  }
}

.history .history_second_content .history_tit02_wrap {
  width: 100%;
  position: relative;
}

.history .history_second_content .history_tit02_wrap h3 {
  width: 100%;
}

.history .history_second_content .history_tit02_wrap h3 span {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .history .history_second_content .history_tit02_wrap h3 span {
    position: unset;
    text-align: center;
    margin: 0 auto 20px;
    display: block;
  }
}

.history .history_second_content .history_tit02_wrap h3 img {
  width: 120px;
  margin: 0 auto 200px;
}

.history .history_kv {
  width: 1120px;
  margin: 0 auto 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1080px) {
  .history .history_kv {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .history .history_kv {
    width: 90%;
    display: block;
  }
}

.history .history_kv img {
  width: 560px;
}

@media screen and (max-width: 1080px) {
  .history .history_kv img {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .history .history_kv img {
    width: 100%;
  }
}

.history .history_outtxt {
  font-size: 4rem;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 1080px) {
  .history .history_outtxt {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .history .history_outtxt {
    font-size: 2.6rem;
  }
}

.access {
  width: 100%;
  padding: 200px 0;
  background-color: #F2EEE6;
  position: relative;
  z-index: -1;
}

.access .symbol_img {
  position: absolute;
  top: 200px;
  left: -80px;
  width: 260px;
}

@media screen and (max-width: 1080px) {
  .access .symbol_img {
    width: 240px;
  }
}

@media screen and (max-width: 767px) {
  .access .symbol_img {
    top: 100px;
    left: -80px;
  }
}

.access .access_content {
  width: 980px;
  padding: 0 20px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1080px) {
  .access .access_content {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .access .access_content {
    width: 92%;
    padding: 0;
  }
}

.access .access_content .access_tit_wrap {
  width: 100%;
  position: relative;
}

.access .access_content .access_tit_wrap h3 {
  width: 100%;
}

.access .access_content .access_tit_wrap h3 span {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #585D6C;
}

@media screen and (max-width: 767px) {
  .access .access_content .access_tit_wrap h3 span {
    position: unset;
    text-align: center;
    margin: 0 auto 20px;
    display: block;
  }
}

.access .access_content .access_tit_wrap h3 img {
  width: 45px;
  margin: 0 auto;
}

.access .access_content .access_content_wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}

@media screen and (max-width: 1080px) {
  .access .access_content .access_content_wrap {
    display: block;
  }
}

.access .access_content .access_content_wrap figure {
  width: 600px;
  margin-right: 45px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 1080px) {
  .access .access_content .access_content_wrap figure {
    width: 100%;
    margin-bottom: 20px;
  }
}

.access .access_content .access_content_wrap figure img {
  width: 100%;
}

.access .access_content .access_content_wrap .access_inner {
  font-size: 1.4rem;
  line-height: 2.8rem;
  width: 100%;
}

@media screen and (max-width: 1080px) {
  .access .access_content .access_content_wrap .access_inner {
    width: 100%;
    margin-top: 60px;
  }
}

.access .access_content .access_content_wrap .access_inner h4 {
  font-weight: 500;
  margin-bottom: 40px;
}

.access .access_content .access_content_wrap .access_inner ul li {
  padding: 20px 0;
  border-bottom: 1px solid #BEB294;
}

.access .access_content .access_content_wrap .access_inner ul li a {
  color: #1C1C1C;
}

.contact {
  width: 100%;
  padding: 200px 0 200px;
}

.contact .contact_content {
  width: 980px;
  padding: 0 20px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1080px) {
  .contact .contact_content {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .contact .contact_content {
    width: 92%;
    padding: 0;
  }
}

.contact .contact_content .contact_tit_wrap {
  width: 100%;
  position: relative;
}

.contact .contact_content .contact_tit_wrap h3 {
  width: 100%;
}

.contact .contact_content .contact_tit_wrap h3 span {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #726346;
}

@media screen and (max-width: 767px) {
  .contact .contact_content .contact_tit_wrap h3 span {
    position: unset;
    text-align: center;
    margin: 0 auto 20px;
    display: block;
  }
}

.contact .contact_content .contact_tit_wrap h3 img {
  width: 45px;
  margin: 0 auto;
}

.contact .form_wrap {
  width: 940px;
  margin: 60px auto;
  overflow: hidden;
}

@media screen and (max-width: 1080px) {
  .contact .form_wrap {
    width: 90%;
  }
}

.contact .form_wrap form {
  width: 100%;
}

.contact .form_wrap form .form_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1080px) {
  .contact .form_wrap form .form_inner {
    display: block;
    margin-bottom: 60px;
  }
}

.contact .form_wrap form .form_inner label {
  width: 450px;
  margin-bottom: 30px;
  font-size: 1.4rem;
}

.contact .form_wrap form .form_inner label input {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  background-color: #F6F6F6;
  padding: 20px;
  margin-top: 10px;
}

.contact .form_wrap form .form_inner label textarea {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  background-color: #F6F6F6;
  padding: 20px;
  margin-top: 10px;
  height: 200px;
}

.contact .form_wrap form .form_inner .second {
  margin-left: 40px;
}

.contact .form_wrap form .term {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px;
  border: 1px solid #C8C8C8;
  border-radius: 6px;
  margin-bottom: 60px;
}

.contact .form_wrap form .term h4 {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

.contact .form_wrap form .term p {
  font-size: 1.2rem;
}

.contact .form_wrap form .check_btn {
  text-align: center;
  font-size: 1.6rem;
  margin: 0 auto 60px;
  width: 100%;
}

.contact .form_wrap form .check_btn .checker {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.contact .form_wrap form .check_btn #checkbtn {
  width: 20px;
  height: 20px;
}

.contact .form_wrap form .check_btn .text {
  padding-top: 2px;
}

.contact .form_wrap form .button {
  width: 600px;
  margin: 0 auto;
}

@media screen and (max-width: 1080px) {
  .contact .form_wrap form .button {
    width: 70%;
  }
}

@media screen and (max-width: 767px) {
  .contact .form_wrap form .button {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .contact .form_wrap form .button {
    padding: 20px 0;
  }
}

.contact .form_wrap form .button #submitbtn[disabled] {
  border: 1px solid #c9caca;
  background-color: #c9caca;
  cursor: default;
  pointer-events: none;
}

.contact .form_wrap form .button .submit_btn {
  display: block;
  border: 1px solid #2C2A26;
  background-color: #2C2A26;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-size: 2rem;
  padding: 30px 0;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .contact .form_wrap form .button .submit_btn {
    font-size: 2rem;
    padding: 12px;
  }
}

.contact .form_wrap form .button .submit_btn:hover {
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #2C2A26;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #2C2A26;
}

footer {
  background-color: #BEB294;
  padding-bottom: 60px;
  padding-top: 20px;
}

footer a {
  margin: 0 auto;
  width: 200px;
  display: block;
  text-align: center;
}

footer a:hover {
  opacity: .4;
}

footer a span {
  display: block;
  margin: 0 auto;
  height: 1px;
  width: 40px;
  background: #444;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(135deg);
}

footer a p {
  margin-top: 20px;
  display: block;
  font-size: 1.5rem;
  color: #000;
}

footer .copy {
  text-align: center;
  margin-top: 60px;
}

.thanks_area {
  background-color: #BEB294;
  min-height: 100vh;
  position: relative;
}

.thanks_area .thanks_wrap {
  width: 600px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

.thanks_area .thanks_wrap h2 {
  width: 100%;
  margin-bottom: 30px;
}

.thanks_area .thanks_wrap h2 img {
  width: 100%;
}

.thanks_area .thanks_wrap p {
  font-size: 1.4rem;
  line-height: 2.8rem;
  text-align: center;
}

.thanks_area .thanks_wrap a {
  width: 300px;
  text-align: center;
  background-color: #2C2A26;
  border: 1px solid #2C2A26;
  color: #fff;
  padding: 16px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  font-size: 1.6rem;
  -webkit-transition: .3s;
  transition: .3s;
}

.thanks_area .thanks_wrap a:hover {
  -webkit-transition: .3s;
  transition: .3s;
  border: 1px solid #2C2A26;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #2C2A26;
}
/*# sourceMappingURL=style.css.map */