header img{
  width: 100%
}
header p{
  margin-bottom: 0px;
}
footer img{
  width: 100%
}
footer p{
  margin-bottom: 0px;
}

header .btn_area {
    display: flex;
    justify-content: space-between;
    width: 70%;
    max-width: 300px;
    transition: .3s;
}
header .btn_area .btn {
    width: calc(90%/2);
    max-width: 100px;
    text-align: center;
    padding: 8px 0;
    /* padding: 10px 0 5px; */
    box-sizing: border-box;
    position: relative;
    background: linear-gradient(90deg, #CDB89A 0%, #91723F 100%);
}
header .btn_area .btn a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    cursor: pointer;
}
header .btn_area .btn p {
    font-size: 13px;
    color: #fff;
    letter-spacing: .15em;
}
header .btn_area .resbtn {
    background: linear-gradient(90deg, #aaa 0%, #534741 50%, #aaa 100%);
}
header .top_header {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 8000;
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .top_header .logo_img {
    width: 30%;
    filter: drop-shadow(1px 1px 3px #333);
    max-width: 150px;
}
header .top_header .right {
    display: flex;
    justify-content: space-between;
    width: 50%;
    max-width: 300px;
}
header .top_header .right .menu_btn {
    width: 45px;
    height: 30px;
    cursor: pointer;
    position: relative;
}
header .top_header .right .menu_btn span {
    width: 100%;
    height: 1px;
    background: #000;
    filter: drop-shadow(0px 0px 1px #fff);
    position: absolute;
    left: 50%;
    transition: .3s;
}
header .top_header .right .menu_btn span:first-of-type {
    top: 5%;
    transform: translate(-50%, 0);
}
header .top_header .right .menu_btn span:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}
header .top_header .right .menu_btn span:last-of-type {
    top: 95%;
    transform: translate(-50%, 0);
}
header .top_header .right .menu_btn.active span:first-of-type {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
header .top_header .right .menu_btn.active span:nth-of-type(2) {
    opacity: 0;
}
header .top_header .right .menu_btn.active span:last-of-type {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
header .top_header .right.active .btn_area {
    opacity: 0;
}
@media screen and (max-width: 768px) {
    header {
    }
    header .top_header {
        padding: 10px 0 5px;
    }
    header .top_header .right .btn_area .btn{
      padding: 8px 0;
    }
    header .top_header .right .btn_area .btn p {
        font-size: 10px;
    }
}
header .g_nav {
    width: 100%;
    min-width: 300px;
    height: 100%;
    background-image: url(../img/top/main.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    z-index: -100;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: .8s;
}
header .g_nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
}
header .g_nav nav {
    width: 90%;
    /* max-width: 800px; */
    max-width: 1000px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
header .g_nav nav ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-left: 0px;
}
header .g_nav nav ul li {
  /* width: calc(90%/2); */
    width: calc(95%/2);
    position: relative;
    margin-top: 30px;
    border-bottom: solid 1px #666666;
    display: flex;
    align-items: center;
    font-family: 'optima', serif;
}
header .g_nav nav ul li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    cursor: pointer;
}
header .g_nav nav ul li .cir {
    width: 5px;
    height: 90%;
    background: #666666;
    margin-right: 10px;
}
header .g_nav nav ul li p {
    font-size: 30px;
    font-weight: lighter;
    margin-left: 20px;
}
header .g_nav nav ul li p span.p02 {
    font-size: 15px;
    margin-left: 20px;
    font-family: 'Hiragino', serif;
}
header .g_nav nav ul li:nth-of-type(1) {
    width: 100%;
    margin-bottom: 20px;
}
header .g_nav nav ul li:nth-of-type(1) p {
    border-left: 2px solid #666666;
    border-image: linear-gradient(0deg, rgba(102, 102, 102, 0) 0%, rgba(102, 102, 102, 0) 14.99%, #666666 15%, #666666 85%, rgba(102, 102, 102, 0) 85.01%, rgba(102, 102, 102, 0) 100%);
    border-image-slice: 1;
    margin-left: 0;
    padding-left: 20px;
}
header .g_nav nav .btn_area {
    max-width: 500px;
    margin: 5% auto 0;
}
header .g_nav nav .btn_area .btn {
    max-width: 250px;
    padding: 15px 0 10px;
}
header .g_nav nav .btn_area .btn p {
    font-size: clamp(10px, 3vw, 22px);
}
header .g_nav.active {
    opacity: 1;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 7000;
}
@media screen and (max-width: 768px) {
    header {
    }
    header .g_nav nav ul {
        flex-wrap: wrap;
    }
    header .g_nav nav ul li {
        width: 100%;
        margin-top: 20px;
    }
    header .g_nav nav ul li p {
      margin-left: 5px;
      font-size: clamp(15px, 6vw, 30px);
        /* font-size: clamp(15px, 7vw, 30px); */
    }
    header .g_nav nav ul li:nth-of-type(1){
      margin-bottom: 0px;
    }
    header .g_nav nav ul li:nth-of-type(1) p {
      padding-left: 5px;
    }
    header .g_nav nav ul li p span.p02 {
      font-size: clamp(10px, 3vw, 18px);
        /* font-size: clamp(10px, 4vw, 18px); */
        margin-left: 10px;
    }
    header .g_nav nav .btn_area {
        width: 90%;
    }
    header .g_nav nav .btn_area .btn p {
        font-size: clamp(10px, 5vw, 30px);
    }
}



/* #top footer{
  height: 700px;
}
@media screen and (max-width: 768px) {
  #top footer {
    height: 2000px;
  }
} */
footer .bottom_footer {
    display: block;
    /* flex-direction: column;
    align-items: center;
    margin-top: 30px; */
}
#top footer .bottom_footer{
  margin-top: 0px;
}
footer .bottom_footer .top00_btft {
    width: 100%;
    max-width: 1000px;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .bottom_footer .top00_btft .img_box {
    width: calc(95%/2);
    position: relative;
}
footer .bottom_footer .top00_btft .img_box a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    cursor: pointer;
}
footer .bottom_footer .top00_btft .img_box .p_top00_btft {
    text-align: left;
    font-size: 13px;
}
footer .bottom_footer .top_btft {
    width: 100%;
    max-width: 900px;
    margin: 0px auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .bottom_footer .top_btft .logo_00 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
footer .bottom_footer .top_btft .logo_00 {
  width: 75%;
  max-width: 900px;
  margin: 0 auto;
    /* width: 100%; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
footer .bottom_footer .top_btft .logo_00 .ft_wapp{
  width: calc(96%/3);
}
footer .bottom_footer .top_btft .logo_00 .ft_jpx{
  width: calc(85%/3);
}
footer .bottom_footer .top_btft .logo_00 .ft_cmbnr{
  width: calc(100%/3);
}
footer .bottom_footer .top_btft .logo_00 img {
  /* width: 100%;
  height: auto; */
    /* height: 100px;
    width: auto; */
}
footer .bottom_footer .top_btft .logo_00 img:nth-of-type(1), footer .bottom_footer .top_btft .logo_00 img:nth-of-type(2), footer .bottom_footer .top_btft .logo_00 img:nth-of-type(3) {
    /* height: 90px; */
    margin-bottom: 10px;
}
footer .bottom_footer .tell {
    width: 100%;
    max-width: 800px;
    margin: 0px auto;
}
footer .bottom_footer .tell .flex_tell {
    display: flex;
    justify-content: space-between;
    margin: 0px auto 10px;
}
footer .bottom_footer .tell a {
    cursor: pointer;
    width: calc(90%/2);
    text-decoration: none;
    color: #000;
}
footer .bottom_footer .tell a .telp02 {
    margin-top: 10px;
}
footer .bottom_footer .tell p {
    font-size: 13px;
    text-align: left;
    letter-spacing: .1em;
    line-height: 1.3em;
    text-decoration: none;
}
footer .bottom_footer .tell .kaki{
  font-size: 13px;
  color: red;
}
footer .bottom_footer .tell .telp02 {
    text-align: left;
}
footer .bottom_footer .bt_btft {
    width: 100%;
    max-width: 200px;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
}
footer .bottom_footer .bt_btft .img_box {
    position: relative;
}
footer .bottom_footer .bt_btft .img_box a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    cursor: pointer;
}
footer .bottom_footer .bt_btft img {
    width: 100%;
}
footer .copy {
    width: 100%;
    text-align: center;
    font-size: 10px;
}
@media screen and (max-width: 768px) {
    footer .bottom_footer .top00_btft {
        flex-direction: column;
    }
    footer .bottom_footer .top00_btft .img_box {
        width: 80%;
    }
    footer .bottom_footer .top00_btft .img_box:nth-of-type(2) {
        margin-top: 20px;
    }
    footer .bottom_footer .top00_btft .img_box .p_top00_btft {
        font-size: 10px;
    }
    footer .bottom_footer .top_btft {
        max-width: 400px;
        padding: 10px 0;
        flex-direction: column;
    }
    footer .bottom_footer .top_btft .logo_pre {
        width: 80%;
    }
    footer .bottom_footer .top_btft .logo_00 {
      width: 90%;
        /* width: 80%; */
        margin: 10px auto;
        flex-wrap: wrap;
        justify-content: center;
    }
    footer .bottom_footer .top_btft .logo_00 img {
        width: calc(95%/3);
        height: auto;
        margin: 5px auto;
    }
    footer .bottom_footer .top_btft .logo_00 img:nth-of-type(1), footer .bottom_footer .top_btft .logo_00 img:nth-of-type(2), footer .bottom_footer .top_btft .logo_00 img:nth-of-type(3) {
        height: auto;
    }
    footer .bottom_footer .top_btft .logo_00 img:last-of-type {
        width: 80%;
    }
    footer .bottom_footer .tell {
        width: 80%;
    }
    footer .bottom_footer .tell .flex_tell {
        flex-wrap: wrap;
    }
    footer .bottom_footer .tell a {
        width: 100%;
        margin-top: 15px;
    }
    footer .bottom_footer .tell p {
        font-size: 10px;
    }
    footer .bottom_footer .tell .kaki{
      font-size: 10px;
    }
    footer .bottom_footer .bt_btft {
        max-width: 400px;
        flex-direction: column;
    }
    footer .bottom_footer .bt_btft .logo_one {
        width: 80%;
    }
    footer .bottom_footer .bt_btft .logo_vol {
        width: 60%;
        margin-top: 20px;
    }
}
 .footarea {
  width: 100%;
}
 .footarea p {
  color: #000;
}
 .footarea .note {
  width: 95%;
  max-width: 1000px;
  font-size: 10px;
  margin: 20px auto;
}
 .footarea .flex02 {
  margin: 100px auto;
}
 .footarea .bnrarea01 {
  width: 90%;
  max-width: 800px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
 .footarea .bnrarea01 .bnrarea_tex {
  width: 70%;
  max-width: 500px;
  margin: 0 auto;
}
 .footarea .bnrarea01 a img{
  width: 100%;
}
@media screen and (max-width: 768px) {
   {
    /*@media screen end*/
  }
}
 .slick-dots li button:before {
  font-size: 30px;
}
@media screen and (min-width: 768px) {
   .notes {
    width: 90%;
    padding: 20px 0;
  }
   ._sp {
    display: none !important;
  }
   ._pc {
    display: block;
  }
}
@media screen and (max-width: 768px) {
   ._sp {
    display: block;
  }
   ._pc {
    display: none !important;
  }
}
 .flex02 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  margin: 20px auto 10px;
}
 .flex02 .btn {
  width: calc(90%/2);
  padding: 10px 0 5px;
  box-sizing: border-box;
  background: linear-gradient(90deg, #CDB89A 0%, #91723F 100%);
  background-size: 150% 100%;
  text-align: center;
  color: #fff;
  font-size: 18px;
  transition: 0.5s;
  box-sizing: border-box;
  animation: AnimationName 5s ease infinite;
  position: relative;
}
 .flex02 .btn:hover {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
}
 .flex02 .btn::before,  .flex02 .btn::after,
 .flex02 .btn span::before,
 .flex02 .btn span::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
}
 .flex02 .btn::before {
  right: 0;
  top: 0;
  height: 1.5px;
  width: 0%;
  transition: width 300ms;
}
 .flex02 .btn::after {
  right: 0;
  top: 0;
  height: 0%;
  width: 1.5px;
  transition: height 300ms;
}
 .flex02 .btn span::before {
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0%;
  transition: width 300ms;
}
 .flex02 .btn span::after {
  left: 0;
  bottom: 0;
  height: 0%;
  width: 1.5px;
  transition: height 300ms;
}
 .flex02 .btn:hover::before {
  width: 100%;
}
 .flex02 .btn:hover::after {
  height: 100%;
}
 .flex02 .btn:hover span::before {
  width: 100%;
}
 .flex02 .btn:hover span::after {
  height: 100%;
}
 .flex02 .btn a {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
 .flex02 .btn p {
  color: #fff;
}
 .flex02 .btn p:nth-of-type(1) {
  font-size: 13px;
}
 .flex02 .resbtn {
  background: linear-gradient(90deg, #aaa 0%, #534741 50%, #aaa 100%);
}
@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media screen and (max-width: 768px) {
   {
    /*@media screen end*/
  }
   .flex02 {
    width: 90%;
    margin: 8px auto 10px;
  }
   .flex02 .btn {
    width: calc(98%/2);
    font-size: clamp(10px,4vw,18px);
  }
}
