/*---------------------------------
  Blumaで設定されているスタイルのリセット
----------------------------------*/
blockquote,
body,
dd,
dl,
dt,
fieldset,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
html,
iframe,
legend,
li,
ol,
p,
pre,
textarea,
ul {
  margin: revert;
  padding: revert;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: revert;
  font-weight: revert;
}

ul {
    list-style: revert;
}

#wrap-original {
  overflow: visible;
  position: relative;
  min-height: 100vh;
}

/*-----------------
  PC/SPで出力の有無を分ける項目
-------------------*/
.logo {
  display: none;
}
.logo-sp {
  margin-left: auto;
  display: block;
}
/*-----------------
  リンクに関わる書式
-------------------*/
a {
  color: #000000;
  text-decoration: underline;
}
.gnavi a {
  color: #000000;
  text-decoration: none;
}
/*-----------------
  その他文字に関わる書式
---------------------*/
.title {
  text-decoration: none;
  color: #000000;
}
span {
  text-decoration: none;
}
.f-bold{
  font-weight: bold;
}
.f-right{
  text-align: right;
}
.f-center{
  text-align: center;
}
.text {
  font-size: 14px;  
  text-align: center;
  padding: 0px;
}
p,li{
  overflow-wrap: break-word;
  word-break: break-all;
  line-break: auto;
}
address{
  font-style: normal;
}
#website p{
  text-indent: 1em;
}
.hdg {
  margin: 18px 0 20px;
  color: #2C9669;
  font-weight: bold;
  position: relative;
}
/*-----------------
  グローバルナビゲーションに関わる書式
-------------------*/
.gnavi {
  color: #000000;
  width: 100%;
  height: 30px;
  text-align: center;
  background-color: #f6f2ea;
}
.gnavi ul {
  margin: 0;
  padding: 0;
}
.gnavi li {
  border-left: 1px solid #cccccc;
  display: inline;
  margin-left: 12px;
  padding-left: 12px;
}
/*最終要素には右側にも枠線を引く*/
.gnavi li:last-child {
  border-right: 1px solid #cccccc;
  display: inline;
  margin-right: 12px;
  padding-right: 12px;
}
/*-----------------
  プライベートナビゲーション
-------------------*/
.pnavi {
  padding-bottom: 6px;
  border-bottom: 4px solid #f6f2ea;
  margin-bottom: 10px;
}

/*-----------------
  フッターに関わる書式
-------------------*/
footer ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
footer ul li{
  padding: 0;
  margin-block: 0;
  margin-inline-start: 0.5em;
  margin-inline-end: 0.5em;
}
/*-----------------
  リストに関わる書式
-------------------*/

/* 全般 */
.doc-content ol[class],
.doc-content ul[class]{
  padding-inline-start: 0;
}
/* 括弧つきカタカナリスト(3種類の括弧に対応) */

ol[class^="kana_bracket_"]{
  counter-reset: kana_cnt 0;
  list-style-type: none;
}
ol[class^="kana_bracket_"]>li{
  position: relative;
  padding-left: 2rem;
}
ol[class^="kana_bracket_"]>li:before{
  counter-increment: kana_cnt 1;
  position: absolute;
  top: 0;
  left: 0;
}
ol.kana_bracket_s>li:before{
  content: "("counter(kana_cnt,katakana)") ";
}
ol.kana_bracket_m>li:before{
  content: "{"counter(kana_cnt,katakana)"} ";
}
ol.kana_bracket_l>li:before{
  content: "["counter(kana_cnt,katakana)"] ";
}

/* 丸付き番号リスト */

.list-number {
  list-style: none;
  counter-reset: list-counter;
  padding: 0;
  margin: 0;
}
.list-number > li {
  margin: 5px 0;
  padding-left: 1.4em;
  position: relative;
}
.list-number > li:before {
  content: counter(list-counter);
  counter-increment: list-counter;
  border: 1px solid;
  box-sizing: border-box;
  border-radius: 50%;
  height: 1.1rem;
  width: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0.2rem;
  left: 0;
  font-size: 80%;
}

/* 定義リスト */
dd{
  margin-inline-start: 3em;
  margin-inline-end: 0;
  margin-block-start: 0;
  margin-block-end: 0.5em;
  padding: 0;
  overflow-wrap: normal;
  word-break: keep-all;
  line-break: auto;
}
/* ---------------------------------
  画像に関わる書式
----------------------------------*/
.icon {
  height: 50px;
  width: auto;
  padding: 10px 5px 5px;
}
.inline-img{
  height: 1em;
  width: auto;
  padding: 0;
}
/*スクリーンショットの外線*/
.iphone-frame{
  border: none;
  padding: 0;
  margin: 2% 10px;
  max-width: 46%;
}
.app-bunner{
  text-align: center;
  margin: 0 auto;
}
/*ストアのバッジ*/
.app-bunner img{
  height: 45px;
  margin: 6px;
}