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

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

/*-------------------------------------------------------------------------------------
スマホ用レイアウト（768px以下スクリーン）
----------------------------------------------------------------------------------------*/
/*--------------------------------------------------
共通設定(PC)
-----------------------------------------------------*/
body {
  width: 100%;
  font-size: 62.5%; /*emの計算をしやすくするための定番設定*/
  font-family: 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: 1.6rem;
  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 {
  background-color: #EEEEEE;
}

.header_inr {
  max-width: fit-content;
  margin: 0px auto 40px;
}

.fv_inr {
  max-width: 100%;
  margin: 0;
}

/*--------------------------------------------------
改行、表示・非表示
-----------------------------------------------------*/
.sp_br {
  display: block;
}

.pc_br {
  display: none;
}

.f_sen {
  display: none;
}

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

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

.footer a {
  color: #fff;
}

/*--------------------------------------------------
特商法ページ
-----------------------------------------------------*/
.tokushou {
  padding-top: 30px;
  margin-bottom: 80px;
}

.tokushou h2 {
  font-size: 1.2rem;
  margin-top: 60px;
  margin-bottom: 20px;
}

.tokushou_inr {
  max-width: 100%;
  margin: 0 20px;
}

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

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

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

/*--------------------------------------------------
プライバシーポリシー
-----------------------------------------------------*/
.privacy {
  padding-top: 30px;
  margin-bottom: 80px;
}

.privacy h2 {
  font-size: 1.2rem;
  margin-top: 60px;
  margin-bottom: 20px;
}

.privacy h3 {
  font-size: 1rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

.privacy p,
.privacy li {
  font-size: .8rem;
}

.privacy ol {
  padding-left: 22px;
}

.privacy_inr {
  max-width: 100%;
  margin: 0 20px 0 20px;
}

}