@charset "utf-8";

/* PC：style-link-sp.css
 * おまかせプラン ver.6
 * リンク集
 * **************************************************
 * Global Navigation (Nav) ★
 * Elements
 * **************************************************
 */

/* Global Navigation (Nav) ★
------------------------------------------------------------------ */
/* 2階層：非表示 */
#globalNav nav li:hover > .sec {
	display: none;
}

/* Elements
------------------------------------------------------------------ */
/* 告知 */
#subPage .main .kokuchi {
	font-weight: bold;
	font-size: 1.0em;
	color: #e50101;
	background: #fafafa;
	padding: 20px 30px;
	margin-bottom: 1.6em;
	border: 1px #e50101 solid;
}

/* 告知内　リンクボタン用 */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.btn,
a.btn,
button.btn {
  font-size: 1.0rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn--yellow {
  color: #000;
  background-color: #fff100;
  border-bottom: 3px solid #ccc100;
	padding: 0.3rem 1.2rem 0.2rem;
}

a.btn--yellow:hover {
  margin-top: 3px;
  color: #000;
  background: #fff20a;
  border-bottom: 2px solid #ccc100;
}

a.btn--orange {
  color: #fff;
  background-color: #eb6100;
	padding: 0.5rem 2rem 0.4rem;
}

a.btn--orange:hover {
  color: #fff;
  background: #f56500;
}

a.btn-c {
  position: relative;
  border-radius: 100vh;
}

a.btn-c i.fa {
  margin-right: 1rem;
}

a.btn-c:before {
  font-family: 'Font Awesome 5 Free';
  font-size: 1.5rem;
  line-height: 1;
  position: absolute;
  top: calc(50% - .7rem);
  right: 0.8rem;
  margin: 0;
  padding: 0;
  content: '\f107';
}
/* 告知内　リンクボタン用　ここまで */

/* ロゴ画像 */
#subPage .main .kosmo_img {
	text-align: center;
}
#subPage .main .kosmo_img img {
    width: 18%;
}
#subPage .main .kosmo_img img:first-child {
        border: 1px solid #cccccc;
	width: 78%;
	margin-right: 10px;
}

#subPage.kosmo .main h3 {
        font-size: 1.6em;
}
/* 始めてログインするとき　注記 */
#subPage .main ul.notes2 {
    margin-left: 3em;
    text-indent: -3em;
	padding-left: 1em;
	margin-top: 1em;
	font-size: 1.5em;
}
#subPage .main ul.notes2 span {
	color: red;
	text-decoration: underline;
	font-weight: bold;
}

/* 問い合わせdl dt dd */
#subPage.kosmo .main dl.toiawase {
	display: flex;
  flex-wrap: wrap;
  width: 100%;
	margin-top: 5px;
	margin-bottom: 1em;
	padding-left: 1.6em;
}	
#subPage.kosmo .main dl.toiawase dt {
	font-size: 1.4em;
	color: #1c60ad;	
	font-weight: bold;
	width: 20%;
  margin-bottom: 10px;
}

#subPage.kosmo .main dl.toiawase dd {
	margin-bottom: 10px;
	font-size: 1.4em;
	display: inline;
	width: 75%;
}

/* List：よくある質問 */
  /* チェックボックスを隠す */
.accordion-check {
    display: none;
}

.accordion {
    margin-bottom: 10px;
    overflow: hidden;
}

/* ラベル（クリック対象） */
.accordion-label {
    display: flex;
    align-items: top;
    padding: 15px 20px 0;
    cursor: pointer;
    user-select: none;
    position: relative;
	font-size: 1.6em;
	text-decoration: underline;
}
.accordion-label span.tl {
	font-size: 1.1em;
	color: #4595df;
	text-decoration: underline white solid;
}

.accordion-label:hover {
	text-decoration: none;
}

/* チェック時のラベル */
.accordion-check:checked + .accordion-label {
}

/* コンテンツ */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* 開く */
.accordion-check:checked + .accordion-label + .accordion-content {
    max-height: 1000px;
}

.accordion-body {
    padding: 15px 20px;
    background-color: #f5f5f5;
	border-radius: 4px;
	position: relative;
	margin-top: 20px;
}
.accordion-body:after {
        z-index: 0;
        position: absolute;
        top: -38px;
        left: 20px;
        content: "";
        border: 20px solid transparent;
        border-bottom-color: #f5f5f5;
    }
.accordion-body p {
    margin: 0;
    line-height: 1.6;
}

.accordion-body p span.an {
	color: #e50101;
	font-size: 1.1em;
	display: block;
}