@charset "utf-8";
/* CSS Document */

*{
	box-sizing: border-box;
	font-size: 16px;
}

/*大きさの計算*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/*iOSフォーム要素の初期化*/
input, button, textarea, select {
	-webkit-appearance: none;
	appearance: none;
}

body {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: 100%; /*スマホ横向き時のフォントサイズ*/
	text-size-adjust: 100%; /*スマホ横向き時のフォントサイズ*/
	-webkit-font-feature-settings: 'palt';/*文字詰め*/
	font-feature-settings: 'palt';/*文字詰め*/
}

body *{
  box-sizing: inherit; /* box-sizingの値は継承されないので明示的に設定 */
}

/*画像の調整*/
img {
    max-width: 100%;
    height: auto;
	vertical-align: bottom;
	width: 100%;
}

a:hover {
    opacity: 0.8;
}

/*****LPコーディングここから*****/
.lp-content{
	max-width: 768px;
	margin: 0 auto;
	background: white;
}

/***背景を設定したいとき***/
/*背景に色を付ける*/
/*
.content01 {
    background: #fff7f8;
}
*/

/*背景を固定したいとき　例
.content01 {
    background-image: url("img/bg-content02.jpg");
	background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
	background-size: contain;
}*/



/***フッター***/
.footer-section {
    background: #72aa86; /*好きな色を設定してください*/
    padding: 2rem;
}

ul.footer-menu {
    display: flex;
    justify-content: center;
}

ul.footer-menu li {
    list-style: none;
}

ul.footer-menu li a {
    color: white;
    margin-right: 10px;
    font-size: 1rem;
}

.logo {
    width: 50%;  /*ロゴにあわせて調整してください*/
    margin: 0 auto;
}


@media screen and (max-width:768px) {
	ul.footer-menu {
    display: block;
    text-align: center;
}
	
	.logo {
    width: 90%;  /*ロゴにあわせて調整してください*/
}
	
	.footer-section {
    padding: 1rem;
}
}	


/***cta***/
.btn-wrap {
  position: relative;
}

.cta-bg {
  display: block;
  width: 100%;
  height: auto;
}

.cta-link {
  display: block;
}

.btn {
  position: absolute;
  top: 35%;
  left: 50%;
  width: 90%;
  max-width: 900px;
  transform: translate(-50%, -50%);
  animation: btnFloat 1.8s ease-in-out infinite;
  will-change: transform;
}

@keyframes btnFloat {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/***箇条書き調整***/

.document-inner ul {
  margin: 16px 0 16px 1.5em;
}


/***プライバシーポリシーページ***/

.document-inner li {
  margin-bottom: 8px;
  line-height: 1.8;
}


.document-inner {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 32px;
  box-sizing: border-box;
  color: #333;
  line-height: 1.9;
}

.document-inner h1 {
  margin: 0 0 32px;
  font-size: 28px;
  text-align: center;
  line-height: 1.5;
}

.document-inner h2 {
  margin: 32px 0 12px;
  font-size: 20px;
  line-height: 1.6;
}

.document-inner p {
  margin: 0 0 16px;
  font-size: 16px;
}

.document-inner ul {
  margin: 0 0 16px 1.4em;
  padding: 0;
}

.document-inner li {
  margin-bottom: 8px;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .document-page {
    padding: 24px 12px;
  }

  .document-inner {
    padding: 24px 16px;
  }

  .document-inner h1 {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .document-inner h2 {
    font-size: 18px;
    margin-top: 24px;
  }

  .document-inner p,
  .document-inner li {
    font-size: 14px;
  }
}

/***特商法ページ***/

.document-inner table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.document-inner th,
.document-inner td {
  border: 1px solid #dddddd;
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.document-inner th {
  background: #f5f5f5;
  width: 30%;
  white-space: nowrap;
  width: 35%;
}


@media screen and (max-width: 767px) {

  .document-inner table,
  .document-inner tbody,
  .document-inner tr,
  .document-inner th,
  .document-inner td {
    display: block;
    width: 100%;
  }

  .document-inner tr {
    margin-bottom: 5px;
    border: 1px solid #ddd;
  }

  .document-inner th {
    background: #f5f5f5;
    padding: 10px;
    font-weight: bold;
	font-size: 14px;
    line-height: 1.5;
  }

  .document-inner td {
    padding: 10px;
	font-size: 14px;
    line-height: 1.7;
  }

}


/***コピーライト***/

.copyright {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: white;
  line-height: 1.6;
}