@charset "utf-8";


/*----------------------------------

animation

----------------------------------*/
@keyframes bodyfade {
  0% {opacity: 0}
  100% {opacity: 1}
}


/*----------------------------------

setup

----------------------------------*/
:root {
  --main-font: zen-kaku-gothic-new,"游ゴシック体","Yu Gothic",YuGothic,"メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  --main-color: #333;
  --key-color: #e0a67d;
  --sub-color: #666;
  --bg-color: #f7f5e9;
}

html {
  height: 100%;
  font-size: 62.5%;
  -webkit-animation: bodyfade 3s ease 0s 1 normal;
  animation: bodyfade 3s ease 0s 1 normal;
}

body {
  height: 100%;
  text-align: left;
  color: var(--main-color);
  background: #fff;
  font-size: 100%;
  font-weight: 400;
  font-family: var(--main-font);
  letter-spacing: .14em;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

input,
textarea,
input::placeholder,
textarea::placeholder {
  color: var(--main-color);
}

::selection {
  background: transparent;
  color: var(--key-color);
}

a {
  display: inline-block;
  text-decoration: none;
  transition: all .2s;
  color: #333;
}

img {
  width: 100%;
  height: auto;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}


/*----------------------------------

modules

----------------------------------*/
.wrap {
  max-width: 1280px;
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.read {
  font-size: 1.4rem;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
}

.read p:not(:first-of-type) {
  margin-top: 20px;
}

.read em {
  color: var(--key-color);
}

.note {
  color: var(--sub-color);
  font-size: 1.2rem;
  line-height: 1.6;
}

.cta .btn a {
  background: #fff;
  color: var(--main-color);
  border-radius: 4px;
  font-size: 1.6rem;
  padding: 22px 100px;
  position: relative;
}

.cta .btn a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  content: "";
  transition: all .2s;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--main-color);
  border-right: 1px solid var(--main-color);
  transform: rotate(45deg);
}

.cta .btn a:hover::after {
  transform: translate(3px) rotate(45deg);
}

.cta .price {
  font-size: 1.4rem;
  margin-top: 20px;
}

.cta .price em {
  font-size: 1.8rem;
}

.cta .price span {
  font-size: 1.2rem;
}

.cta .debit {
  font-size: 1.2rem;
  margin-top: 12px;
  line-height: 1.4;
}

.contents .cta {
  color: var(--main-color);
  text-align: center;
  margin-top: 70px;
}

.contents .cta .btn a {
  background: var(--key-color);
  color: #fff;
}

.contents .cta .btn a::after {
  border-color: #fff;
}

.contents > section {
  padding: 80px 0 110px;
}

section .wrap h2 {
  font-size: 2.4rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 60px;
}

section header h2 {
  margin-bottom: 30px!important;
}

section header p {
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
}



@media screen and (max-width: 768px) {

.pc {
  display: none !important;
}

.sp {
  display: block !important;
}



}



@media screen and (max-width: 480px) {

.wrap {
  padding: 0 clamp(20px, 4vw, 30px)
}

.mv .cta .price,
.mv .cta .debit {
  display: none;
}

.mv .cta .btn {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 30px;
}

.mv .cta .btn a {
  border-radius: 9999px 0 0 9999px;
  padding: 18px 30px 20px 25px;
  font-size: 1.3rem;
}

.mv .cta .btn a::after {
  right: 15px;
}

.mv .cta.invert .btn a {
  background: #dd9460;
  color: #fff;
}

.mv .cta.invert .btn a::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.contents > section {
  padding: 60px 0;
}

section .wrap h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

section header h2 {
  margin-bottom: 20px!important;
}

.contents .cta {
  margin-top: 50px;
  padding: 0 clamp(20px, 4vw, 30px);
}

.cta .btn a {
  padding: 22px 20px;
  width: 100%;
}

section header p {
  font-size: 1.3rem;
}

.read {
  font-size: 1.3rem;
}

}





/*----------------------------------

header.global

----------------------------------*/
header.global {
  padding: 10px 30px 12px;
  background: var(--key-color);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

header.global a {
  color: #fff;
  font-size: 1.3rem;
}








@media screen and (max-width: 768px) {


header.global .trigger {
  top: calc(50% - 6px);
  width: 30px;
  height: 12px;
}

}



@media screen and (max-width: 480px) {


header.global {
  padding: 10px clamp(20px, 4vw, 30px) 12px;
}

}



/*----------------------------------

footer

----------------------------------*/

footer {
  padding: 60px 0 40px;
  background: var(--main-color);
  color: #fff;
}

footer .caution h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

footer .caution ul {
  font-size: 1.3rem;
  line-height: 1.6;
}

footer .note {
  color: #fff;
  margin-top: 10px;
}

footer nav ul {
  margin-top: 50px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
}

footer nav li:not(:first-of-type) a:before {
  content: "|";
  padding: 0 15px;
}

footer nav li a {
  color: #fff;
  font-size: 1.4rem;
}

footer .copyright {
  text-align: right;
  margin: 50px 30px 0 0;
}



