/*---------------------------------
  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-pc {
  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: 18px;
  text-align: center;
  padding: 0;
}

p,
li {
  overflow-wrap: break-word;
  word-break: break-all;
  line-break: auto;
}

address {
  font-style: normal;
}

#website p {
  text-indent: 1em;
}

.hdg {
  margin: 48px 0 20px;
  color: #2C9669;
  font-weight: bold;
  position: relative;
}

/*-----------------
  グローバルナビゲーションに関わる書式
-------------------*/
.gnavi {
  color: #000000;
  width: 100%;
  height: 50px;
  text-align: center;
  background-color: #f6f2ea;
}

/*グローバルナビゲーション内のリスト*/
.gnavi ul {
  margin: 0;
}

.gnavi li {
  border-left: 1px solid #cccccc;
  display: inline;
  margin-left: 30px;
  padding-left: 30px;
}

/*最終要素には右側にも枠線を引く*/
.gnavi li:last-child {
  border-right: 1px solid #cccccc;
  display: inline;
  margin-right: 30px;
  padding-right: 30px;
}

/*-----------------
  フッターに関わる書式
-------------------*/
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;
}

/*-----------------
  プライベートナビゲーション
-------------------*/
.pnavi {
  padding-bottom: 7px;
  border-bottom: 5px solid #f6f2ea;
  margin-bottom: 12px;
}

/*-----------------
  リストに関わる書式
-------------------*/

/* 全般 */
.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.2em;
  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.4em;
  left: 0;
  font-size: 77%;
}

/* 定義リスト */
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: 70px;
  width: auto;
  padding: 10px;
}

.inline-img {
  height: 1em;
  width: auto;
  padding: 0;
  margin: 0;
}

/*スクリーンショットの外線*/
.iphone-frame {
  border: none;
  padding: 0;
  margin: 1em 10px;
  max-width: 46%;
  max-height: 70vh;
}

.app-bunner {
  text-align: center;
  margin: 0 auto;
}

.app-bunner img {
  height: 60px;
  margin: 15px;
}