@charset "UTF-8";


/* 2025/09/13 */
.box1 {
    margin: 2em 0;
    font-weight: bold;
	padding: 0.5em;/*文字周りの余白*/
  color: #494949;/*文字色*/
  background: #fffaf4;/*背景色*/
  border-left: solid 5px #ffaf58;/*左線（実線 太さ 色）*/

}
.box1 p {
    margin: 0; 
    padding: 0;
}
.box29 {
    margin: 2em 0;
    background: #FFEFEF;
}
.box29 .box-title {
    font-size: 1.2em;
    background: #FFDBDB;
    padding: 4px;
    text-align: center;
    color: #6B3500;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.box29 p {
    padding: 15px 20px;
    margin: 0;
}
.box29 a {
	color:#333;
	}
.table_design03 {
border-collapse: collapse;
width: 100%;
max-width: 700px;
border:none;
}
.table_design03 th, .table_design03 td {
border-bottom: 2px solid #c1c7c6;
padding: 1em;
background:none;
border-left:none;
}
.table_design03 th {
	border-bottom: 2px solid #4d9bc1;
	;
	font-weight: bold;
	text-align: left;
	width: 40%;
	min-width: 4em;
}
.toc-005 {
    margin-bottom: 30px;
    border-radius: 3px;
    background-color: #f8f8f8;
}

.toc-005 div {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 10px 0;
	background-color: #EA494F;
	color: #fff;
	font-weight: 600;
	font-size: 1.1em;
}

.toc-005 ol {
    list-style-type: disc;
    margin: 0;
    overflow: hidden;
}

.toc-005 > ol {
    padding: 1em 1em 1em 3em;
}

.toc-005 ol ol {
    margin-top: 5px;
    padding-left: 1.1em;
}

.toc-005 li {
    padding: 5px 0;
    font-weight: 600;
}

.toc-005 ol ol li {
    font-weight: 500;
    font-size: .9em;
}

.toc-005 a {
    color: #333;
    text-decoration: none;
}
.box27 {
    position: relative;
    margin: 2em 0;
    padding: 1em 1em 0 1em;
    border: solid 3px #62c1ce;
}
.box27 .box-title {
    position: absolute;
    display: inline-block;
    top: -30px;
    left: -3px;
    padding: 0 9px;
    height: 30px;
    line-height: 25px;
    font-size: 16px;
    background: #62c1ce;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.box27 p {
    margin: 0; 
    padding: 0 0 20px 0;
}
.fukidashi-01-03 {
  position: relative;
  width: fit-content;
  padding: 12px 16px;
  border-bottom: 2px solid #333333;
  background-color: #ffffff;
}
.fukidashi-01-03::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  background-color: #ffffff; /* 背景色と同じ色を指定 */
  rotate: 135deg;
  translate: -50%;
}
.fukidashi-01-03::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  z-index: -1;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  border: 2px solid;
  border-color: #333333 #333333 transparent transparent;
  background-color: #ffffff;
  rotate: 135deg;
  translate: -50%;
}
.box2 {
    padding: 1.5em;
    margin: 2em 0;
    background: #FFF;
    border: solid 1px #D9D9D9;/*線*/
    border-radius: 10px;/*角の丸み*/
	 box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .3);
}
.box2 p {
    margin: 0; 
    padding: 0;
}.bg-color {
	background-color: #FFFAF1;
}
.design02 {
 width: 100%;
 text-align: center;
 border-collapse: collapse;
 border-spacing: 0;
 border: solid 1px #778ca3;
}
.design02 tr {
 border-top: dashed 1px #778ca3;
}
.design02 th {
 padding: 10px;
 background: #e9faf9;
}
.design02 td {
 padding: 10px;
}
/* 001 */
.button001 a {
    background: #eee;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 280px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.button001 a:hover {
    background: #313131;
    color: #FFF;
}
.button001 a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #313131;
    border-right: 3px solid #313131;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button001 a:hover:after {
    border-color: #FFF;
}