@charset "UTF-8";
body {
  font-family: sans-serif;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

img {
  width: 100%;
}

ul li {
  list-style: none;
}

table {
  border-spacing: 0;
}

body * {
  color: #000;
  line-height: 1;
  margin: 0;
  padding: 0;
}

a {
  color: #000;
  text-decoration: none;
  vertical-align: baseline;
  display: block;
}

a:hover, button:hover {
  opacity: 0.8;
}

.sp_item {
  display: none;
}
@media screen and (max-width: 750px) {
  .sp_item {
    display: block;
  }
}

.pc_item {
  display: block;
}
@media screen and (max-width: 750px) {
  .pc_item {
    display: none;
  }
}

.lp_wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 2000px;
  overflow-x: hidden;
  position: relative;
}
@media screen and (max-width: 750px) {
  .lp_wrap {
    width: 100vw;
  }
}

/*固定背景*/
.background-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/pc_bg.jpg") no-repeat center center;
  background-size: 2000px 1300px;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .background-fixed {
    display: none;
  }
}

.contents_wrap {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .contents_wrap {
    width: 100vw;
  }
}
@media screen and (max-width: 750px) {
  .contents_wrap {
    width: 100vw;
  }
}

/*吸着左*/
.l_menu {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translate(0%, -50%);
  width: 358px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
@media screen and (max-width: 2000px) {
  .l_menu {
    width: calc((100vw - 750px) / 2);
  }
}
@media screen and (max-width: 1340px) {
  .l_menu {
    display: none;
  }
}
.l_menu .tit {
  width: 325px;
}
@media screen and (max-width: 1600px) {
  .l_menu .tit {
    width: 230px;
  }
}
.l_menu ul {
  width: 194px;
  margin-top: 15px;
}
.l_menu li {
  margin-top: 38px;
}

/*吸着右*/
.r_menu {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translate(0%, -50%);
  width: 358px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 2000px) {
  .r_menu {
    width: calc((100vw - 750px) / 2);
  }
}
@media screen and (max-width: 1340px) {
  .r_menu {
    display: none;
  }
}
.r_menu .qr {
  width: 246px;
  position: relative;
}
.r_menu .qr img {
  position: relative;
  z-index: 2;
}
.r_menu .qr::before {
  content: "";
  display: block;
  background: url(../img/maru.png) no-repeat center 0/100%;
  width: 146px;
  height: 146px;
  position: absolute;
  top: -118px;
  right: -70px;
  z-index: 1;
}
.r_menu .qr_code {
    position: absolute;
    top: 2%;
    left: 50%;
    width: 93%;
    height: auto;
    transform: translateX(-50%);
    z-index: 10;
  }

/* ========================================
  スマホのみヘッダー表示 
======================================== */

@media (max-width: 767.98px) {
  .sp-header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(69, 33, 20, 0.5);
    /* backdrop-filter: blur(8px); */
    border-bottom: 1px solid rgba(0,0,0,0.06);

    /* ふわっと出る */
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .45s cubic-bezier(.2,.7,.2,1), opacity .45s;

    /* ノッチ対応 */
    height: calc(70px + env(safe-area-inset-top));
  }
  .sp-header.is-visible{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .sp-header__inner{
    display:flex; 
    align-items:center; 
    gap:.75rem;
    height:70px; 
    padding:0 12px;
  }
  .sp-header__logo {
    width: 33%;
  }
  .header__logo {
    filter: brightness(0) saturate(100%) invert(1);
  }
  .header__logo img {
    display: block;
    margin: 0 auto;
    width: 96%;
  }
  /* 縦線（白） */
  .sp-header__divider{
    width:1px; 
    height:70px;
    background: #fff;
    opacity:.6;
    margin: 0 8px;
  }

  /* 右：テキスト + ▶︎ */
  .sp-header__cta{
    margin: 0 auto;
    display:flex; 
    align-items:center; 
    gap:.5rem;
    font-size:17px; 
    letter-spacing: 1px;
    line-height:1;
    text-decoration:none; 
    color:#fff;
    padding:8px 10px;
  }
  .sp-header__cta-text{
    color: #fff;
    font-family: "Noto Serif JP", serif;
  }
}

/* PCでは非表示 */
@media (min-width: 768px){
  .sp-header{ display:none; }
}
/* ========================================
  スマホのみ　コピー品のモーダル
======================================== */
.mb-modal {
  position: fixed;
  inset: 0;
  display: none;        /* 非表示がデフォ */
  z-index: 2000;        /* sp-header(1000)より手前に出す */
}
.mb-modal[aria-hidden="false"] { 
  display: block; 
}

.mb-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

.mb-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: min(92vw, 680px);
  max-height: 90vh;
  background: #fff;
  /* border-radius: 12px; */
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  overflow: hidden;     /* 画像がはみ出さないように */
}

.mb-modal__img {
  display: block;
  width: 100%;
  height: auto;
}

.mb-modal__close{
  position: fixed;   /* 画面右上に固定 */
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  border-radius: 0;
  width: 44px; 
  height: 44px;
  color: #fff;
  font-size: 28px; 
  line-height: 44px;
  cursor: pointer;
  text-shadow: 0 0 4px rgba(0,0,0,.45), 0 1px 2px rgba(0,0,0,.35);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0); /* タップ時のハイライト無効 */
}
.mb-modal__close:focus,
.mb-modal__close:active{
  outline: none;
  box-shadow: none;
}
.mb-modal__close:hover { 
  opacity: .9; 
}
html, body { overscroll-behavior: none; } /* バウンス抑制の補助 */


/* ========================================
  btn_area
======================================== */
.btn_area {
  position: absolute;
  left: 0;
  right: 0;
}
.btn_area.btn01 {
  bottom: 75px;
}
@media screen and (max-width: 750px) {
  .btn_area.btn01 {
    bottom: 10vw;
  }
}
.btn_area.btn02 {
  bottom: 205px;
}
@media screen and (max-width: 750px) {
  .btn_area.btn02 {
    bottom: 27.33vw;
  }
}
.btn_area.btn03 {
  bottom: 70px;
}
@media screen and (max-width: 750px) {
  .btn_area.btn03 {
    bottom: 9.33vw;
  }
}
.btn_area.btn04 {
  bottom: 110px;
}
@media screen and (max-width: 750px) {
  .btn_area.btn04 {
    bottom: 14.67vw;
  }
}
.btn_area a {
  display: block;
  position: relative;
}
.btn_area a .offer_btn {
  width: 600px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
}
@media screen and (max-width: 750px) {
  .btn_area a .offer_btn {
    width: 80vw;
    border-radius: 2vw;
  }
}
.btn_area a .offer_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 20%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine 3s ease-in-out infinite;
}

/*./btn_area*/
@keyframes shine {
  0% {
    left: -75%;
  }
  40% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}
.sv {
  background: #786044;
}

.inner {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .inner {
    margin: 0 auto;
  }
}
@media screen and (max-width: 750px) {
  .inner {
    width: 100vw;
  }
}
.inner .relative {
  position: relative;
}
.inner .achieve_slider {
  width: 692px;
  margin: 0 auto;
  position: absolute;
  top: 399px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 750px) {
  .inner .achieve_slider {
    width: 92.27vw;
    top: 53.2vw;
  }
}
.inner .achieve_slider .slide_arrow {
  width: 66px;
  position: absolute;
  top: 356px;
  z-index: 99;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .inner .achieve_slider .slide_arrow {
    width: 8.8vw;
    top: 47.47vw;
  }
}
.inner .achieve_slider .slide_arrow.arrow_p {
  left: -29px;
}
@media screen and (max-width: 750px) {
  .inner .achieve_slider .slide_arrow.arrow_p {
    left: -3.87vw;
  }
}
.inner .achieve_slider .slide_arrow.arrow_n {
  right: -29px;
}
@media screen and (max-width: 750px) {
  .inner .achieve_slider .slide_arrow.arrow_n {
    right: -3.87vw;
  }
}
.inner .achieve_slider .slick-dots {
  bottom: -50px;
}
@media screen and (max-width: 750px) {
  .inner .achieve_slider .slick-dots {
    bottom: -6.67vw;
  }
}
.inner .achieve_slider .slick-dots li {
  width: 20px;
  height: 20px;
  margin: 0 35px;
}
@media screen and (max-width: 750px) {
  .inner .achieve_slider .slick-dots li {
    width: 2.67vw;
    height: 2.67vw;
    margin: 0 4.67vw;
  }
}
.inner .achieve_slider .slick-dots li button {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #fff;
}
@media screen and (max-width: 750px) {
  .inner .achieve_slider .slick-dots li button {
    width: 2.67vw;
    height: 2.67vw;
    border-radius: 1.33vw;
  }
}
.inner .achieve_slider .slick-dots li button::before {
  content: none;
}
.inner .achieve_slider .slick-dots li button:hover {
  opacity: 1;
  background: #502200;
}
.inner .achieve_slider .slick-dots li.slick-active button {
  background: #502200;
}
.inner .achieve_slider .slick-slide {
  margin: 0 13px;
}
@media screen and (max-width: 750px) {
  .inner .achieve_slider .slick-slide {
    margin: 0 1.73vw;
  }
}
.inner .footer {
  background: #CAC0AB;
  padding-bottom: 50px;
}
@media screen and (max-width: 750px) {
  .inner .footer {
    padding-bottom: 6.67vw;
  }
}
.inner .footer .foot_logo {
  width: 325px;
  margin: 0 auto;
  padding: 50px 0 35px;
}
@media screen and (max-width: 750px) {
  .inner .footer .foot_logo {
    width: 43.33vw;
    padding: 6.67vw 0 4.67vw;
  }
}
.inner .footer .foot_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 11px;  
}
@media screen and (max-width: 750px) {
  .inner .footer .foot_nav {
    row-gap: 6px;  
  }
}
.inner .footer .foot_nav li {
  display: flex;
}
.inner .footer .foot_nav li::before {
  content: "|";
  color: #502200;
  font-size: 20px;
  line-height: 1.76;
  padding-left: 20px;
}
@media screen and (max-width: 750px) {
  .inner .footer .foot_nav li::before {
    font-size: 3vw;
    padding-left: 2.67vw;
  }
}
.inner .footer .foot_nav li a {
  color: #502200;
  font-size: 20px;
  line-height: 1.76;
  letter-spacing: 0.2em;
  padding-left: 20px;
}
@media screen and (max-width: 750px) {
  .inner .footer .foot_nav li a {
    font-size: 3vw;
    padding-left: 2.67vw;
  }
}
.inner .footer .foot_nav li:nth-child(1)::before, .inner .footer .foot_nav li:nth-child(4)::before {
  content: none;
}
.inner .footer .foot_nav li:nth-child(1) a, .inner .footer .foot_nav li:nth-child(4) a {
  padding-left: 0;
}
.inner .footer .foot_copy {
  width: 215px;
  margin: 30px auto 0;
}
@media screen and (max-width: 750px) {
  .inner .footer .foot_copy {
    width: 28.67vw;
    margin: 4vw auto 0;
  }
}

@media screen and (max-width: 750px) {
  #reason p {
    margin-top: -1px;
  }
}

#flow {
  background: #6d4f2b;
}/*# sourceMappingURL=style.css.map */