
/*YELL専用CSS*/

/*---------(h2)--watanabe-------------*/
.index-h2 {
	min-height: auto !important;
}

/*---------(画像横並び)--watanabe-------------*/
.box-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.box-item {
	margin-right: 5px;
	margin-left: 5px;
}
.box-row img {
	max-width: 100%;
}

.box-row .shadow_test {
  @media screen and (max-width:1024px) {
  margin-bottom: 15px;
}
}

/*---------(吹き出し風見出し)--watanabe-------------*/
.balloon {
  font-weight: bold;
  border: 3px solid #333333;
  padding: 0.7em 0.5em;
  border-radius: 10px;
  margin-bottom: 10px;
  position: relative;
  text-align: center
}
.balloon::before {
  content: '';
  background-color: #fff;
  width: 20px;
  height: 3px;
  position: absolute;
  left: 30px;
  bottom: -3px;
}
.balloon::after {
  content: '';
  background-color: #333333;
  width: 20px;
  height: 3px;
  transform: rotate(50deg);
  position: absolute;
  left: 25px;
  bottom: -10px;
}

/*---------(枠ストライプ見出し)--watanabe-------------*/
.st_frame {
  font-weight: bold;
  border: 3px solid #ff6699;
  padding: 2em 1em 0.5em calc(1em + 10px);
  position: relative;
  text-align: center;
  margin: 3em 0em 3em 0em;
}
.st_frame::before {
  content: '';
  background-color: #ff6699;
  background: repeating-linear-gradient( -45deg, #ff6699, #ff6699 5px, #ffffff 5px, #ffffff 10px );
  width: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/*---------(画像横3)--watanabe-------------*/
.container {
    display: flex;
    justify-content: space-around; /* 画像の間に均等に余白を設定 */
}
.container img {
/*    width: 30%;*/ /* 画像が3つ並ぶように設定 */
    height: auto;
}

/*---------(font)--watanabe-------------*/
.p_font {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 1.7em;
  margin-top: 0em;
}

/*---------(box)--watanabe-------------*/
.boxbt {
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #FFF;
    background: #fff;
    border-bottom: solid 6px #3f87ce;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
    border-radius: 9px;
}
.boxbt p {
    margin: 0; 
    padding: 0;
}
/*---------(リンク)--watanabe-------------*/

.btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 300px;
	height: 60px;
	color: #333;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.3s;
}

.btn a:hover {
	color: #f2f2f2;
}


.btn07 a {
	background-color: #ceb849;
	border: 1px solid transparent;
}

.btn07 a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 17px;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-color: transparent;
	border: 1px solid #333;
	border-radius: 50%;
}

.btn07 a::after {
	content: '';
	position: absolute;
	top: calc(50% - 1px);
	right: 27px;
	transform: rotate(45deg) translateY(-50%);
	width: 6px;
	height: 6px;
	border-width: 1px 1px 0 0;
	border-style: solid;
	border-color: #333 #333 transparent transparent;
}

.btn07 a:hover {
	background-color: #B99b00;
	border: 1px solid #333;
}

.btn07 a:hover::before {
	border: 1px solid #f2f2f2;
}

.btn07 a:hover::after {
	border-color: #f2f2f2 #f2f2f2 transparent transparent;
}

/*---------(リンク)--watanabe-------------*/
.shadow_test {
    padding: 0px;                      /* 余白指定 */
    background-color:  #eee;            /* 背景色指定 */
    box-shadow: 2px 2px 2px 2px #bbb;   /* 影指定 */
    width: 222px;                       /* 幅指定 */
    height: 65px;                     /* 高さ指定 */
}

/*---------(アコーディオンメニュー)--watanabe-------------*/
details {
  border: 1px solid #ccc;
}
details:not(:last-child) {
  margin-bottom: 20px;
}

/**
 * list-style: none; ←デフォルト三角削除（Chrome非対応）
 * cursor: pointer; ←カーソルをポインターに
**/
details summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  background: #20b2aa;
  color: #ffff;
  font-size: 1.5rem;
  font-weight: bold;
}
/**
 * Chrome用のデフォルト三角削除
**/
details summary::-webkit-details-marker {
  display: none;
}
/**
 * Font Awesomeのプラスアイコン使用
**/
details summary::before {
  font-family: FontAwesome;
  content: '\f067';
  margin-right: 20px;
}
/**
 * アコーディオンがオープン時はマイナスアイコンに変更
**/
details[open] summary::before {
  content: '\f068';
}

details p {
  margin: 0;
  padding: 20px;
}


/*helpページリンク用*/
.helplink a {
  text-decoration: none;
}

.helplink a:link {
  color:#006eb0;
}

/*.helplink a:visited {
  color: gray;
}*/

.helplink a:hover {
  color: deeppink;
}

/**
 * 25041 追加CSS
**/
/**テンプレートを使って作成するページのリンクカラー変更**/
#sec_page .helplink a,
#sec_page a:link{
	color: #006eb0;
	text-decoration: underline;
}
#sec_page .helplink a:hover,
#sec_page a:link:hover{
	color: #006eb0;
	text-decoration: none;
}
/**上記の設定をするとボタンの文字色も変わってしまうのでカラー変更**/
#sec_page a.btn{
	color: #222;
	text-decoration: none;
}
#sec_page a.btn:hover{
	color: #FFF;
}
/**利用規約等の数字付きのリストの表示を修正**/
#sec_page ol>li {
	list-style-type: decimal;
	margin-left: 1.5em;
}