@charset "UTF-8";
/* CSS Document */
/*-------------------------------------------------------------------------------------
PC用レイアウト（768px以上スクリーン）
----------------------------------------------------------------------------------------*/
/*--------------------------------------------------
共通設定(PC)
-----------------------------------------------------*/
body {
  font-size: 62.5%; /*emの計算をしやすくするための定番設定*/
  font-family: "Zen Maru Gothic", "YuGothic", "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: normal;
  color: #000;
}

a {
  text-decoration: underline;
}

a:link, a:visited {
  color: #39f;
}

a:hover, a:active {
  color: #f60;
}

p {
  margin: 0;
  padding: 0;
}

section {
  clear: both;
  overflow: auto;
}

/*--------------------------------------------------
見出しタグ設定（PC）
-----------------------------------------------------*/
h2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

h3 {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

/*--------------------------------------------------
全体レイアウト／背景設定（PC）
-----------------------------------------------------*/
.main {
  max-width: 1440px;
  margin: 0 auto;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  background-color: #EEEEEE;
}

.fv img,
.main img {
  width: 100%;
}



header {
  height: 76px;
  display: flex;
  font-size: 16px;
  padding: 0 100px;
  background-color: #fff;
  border-bottom: 2px solid #ccc;
  align-items: center;
}
.logo {
  color: #22016b;
  font-size: 32px;
  font-weight: 900;
  margin-right: auto;
}

ul.menu {
  display: flex;
  justify-content:center;
  text-decoration: none;
}

ul.menu li {
  font-weight: 700;
  margin-left: 30px;
  list-style-type: none !important;
}

ul.menu li a {
  color: #22016b;
  text-decoration: none;
}

a.btn {
  color: #fff !important;
  font-weight: 500;
  background-color: #ccc;
  padding: 15px 30px;
  border-radius: 100vh;
  background: #06C755;
}

section.cta {
  position: relative;
}

a.btn02 {
  position: absolute;
  top: 260px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  text-decoration: none;
  color: #fff !important;
  font-weight: 500;
  background-color: #ccc;
  padding: 18px 54px;
  border-radius: 100vh;
  background: #06C755;
}

a.btn02:hover {
  opacity: 0.7;
}







/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer {
  background-color: #333;
  padding: 1.6em 0em;
  text-align: center;
  font-size: 1.4em;
  color: #fff;
}

.footer p.foot {
  margin-bottom: 8px;
}

.footer a {
  color: #fff;
}

/*--------------------------------------------------
特商法ページ
-----------------------------------------------------*/
.tokushou_inr {
  max-width: 800px;
  margin: 0 auto 80px;
}

table {
  width: 100%;
  font-size: 1rem;
  border: 1px solid #333;
}

th {
  background-color: #f5f5f5;
  width: 30%;
  padding: 8px;
  text-align: left;
}

td {
  width: 70%;
  padding: 8px;
}

/*--------------------------------------------------
プライバシーポリシー
-----------------------------------------------------*/
.privacy p {
  font-size: 1rem;
}

.privacy li {
  font-size: 1rem;
}

.privacy_inr {
  max-width: 800px;
  margin: 0 auto 80px;
}









