/*html {
  scroll-behavior: smooth;
}*/
body{
	max-width: 1024px;
	margin:0 auto;
	padding:0 auto;
	
}
h1{
	margin:0 auto 20px auto;
	padding:0;
	text-align: center;
}
h1 img{
	width:100%;
}
main{
	max-width: 1024px;
	margin:0 auto;
	padding:0 auto;
	position: relative;
}
section{
	margin-bottom:40px;
}
#fes{
	margin:0;
	padding:0;
	font-size:16px;
	line-height: 1.8em;
	font-weight:lighter;
}
a:link { color:#333; }
a:visited { color:#333; }
a:hover { color:#333;text-decoration: underline; }
a:active { color:#c333;text-decoration: underline; }
.kv-pc{
	position: relative;
	z-index:1;
}
.kv-sp{
}
.report-pc{
	background: #333;
	color:#FFF;
	font-family: "vdl-logog", sans-serif;
	font-weight: 400;
	font-style: normal;
	position: absolute;
	bottom:0;
	width:100%;
	text-align: center;
	font-size:20px;	
	line-height: 80px;
	height:80px;
}
.report-sp{
	background: #333;
	color:#FFF;
	font-family: "vdl-logog", sans-serif;
	font-weight: 400;
	font-style: normal;
	width:100%;
	font-size:20px;	
	display: flex;
	justify-content: center;
	align-items: center;
}
.report-sp p{
	line-height: 1.8em;
	padding:auto;
	margin:16px auto;
}
.report-pc span{
	font-size:30px;	
}
.report-sp span{
	font-size:30px;	
}
.fes-sp{
	display: none;	
}
.fes-pc{
	display: block;
}
/*.yellow-line{
	text-decoration: underline;
	text-decoration-color: #f0e686;
	text-decoration-thickness:0.4em;
	font-weight:bold;
	font-size:1.2em;
}*/
.nomal-txt{
	margin:20px 0 0 0;
	padding:0;
}
.pre100{
	margin:20px auto 0 auto;
	display:block;
	width:70%;
}
.left-balloon-box,.right-balloon-box{
	display: flex;
	align-items: center;
	margin-bottom:20px;
}
.left-balloon-box img{
	width:100px;
	margin-right:20px;
}
.right-balloon-box img{
	width:100px;
	margin-left:20px;
}
.speech-bubble {
  position: relative;
  background: white;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 10px 20px;

}
.speech-bubble:before,
.speech-bubble:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.speech-bubble:before {
  left: -11px; /* 外側の三角形を適切に位置づけ */
  border-style: solid;
  border-width: 9px 11px 9px 0; /* 高さを少し減らす */
  border-color: transparent #333 transparent transparent;
}

.speech-bubble:after {
  left: -10px; /* 内側の三角形を正確に位置づけ */
  border-style: solid;
  border-width: 8px 11px 8px 0; /* 高さをさらに減らす */
  border-color: transparent white transparent transparent;
}
.speech-bubble-right {
  position: relative;
  background: white;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 10px 20px;

}

.speech-bubble-right:before,
.speech-bubble-right:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.speech-bubble-right:before {
  right: -11px; /* 外側の三角形を右に位置づけ */
  border-style: solid;
  border-width: 9px 0 9px 11px; /* 右向き三角形 */
  border-color: transparent transparent transparent #333;
}

.speech-bubble-right:after {
  right: -10px; /* 内側の三角形を右に位置づけ */
  border-style: solid;
  border-width: 8px 0 8px 11px; /* 右向き三角形 */
  border-color: transparent transparent transparent white;
}
.panel{
	width: 600px;
	margin:20px auto;
	display: block;
}
.prof-area{
	margin:20px auto 0 auto;
	padding:0;
	display: flex; 
    align-items: center; 
    width: calc(240px + 20em);
	flex-wrap: wrap;
	justify-content: center;
	
}
.prof{
	margin:20px 0 0 0;
	padding:0;
	display: flex; 
    align-items: center; 
    width: 100%;
}
.prof-box{
	display: flex;
	align-items: center;
    width: 100%;
}
.prof-box picture {
    width: 200px; 
    height: auto;
}

.prof-box img {
    width: 200px;
    height: auto; 
}
.prof-info{
	margin-left:40px;
	text-align: center;
}
.prof-info2{
	margin-left:40px;
	margin-bottom:0;
	text-align: left;
	padding:0;
}
.b-txt{
	font-weight:bold;
}
.prof-bth{
	background: #333;
	color:#FFF;
	padding:5px 10px;
	display: inline-block;
	margin:20px auto 0 auto;
	cursor: pointer;
}
.prof-info{
	width:20em;
}
.modal {
    display: none; /* デフォルトではモーダルを表示しない */
    position: fixed; /* 画面中央に表示 */
    z-index: 1; /* コンテンツの上に表示 */
    left: 0;
    top: 0;
    width: 100%; /* 全幅 */
    height: 100%; /* 全高 */
    overflow: auto; /* スクロール可能に */
    background-color: rgb(0,0,0); /* 背景色 */
    background-color: rgba(0,0,0,0.4); /* 背景の透明度 */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 上下左右中央に */
    padding: 10px 20px 40px 20px;
    border: 1px solid #888;
    width: 80%; /* 幅は80% */
	border-radius: 10px;
	-webkit-border-radius: 10px; 
	-moz-border-radius: 10px; 

}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.s-txt{
	font-size:12px;
	color:#333;
	margin-top:20px;
}
.qa{
	margin:20px 0 20px 0;

}
.a-img{
	width:100px;
	float:left;
	margin:0 16px 10px 0;
	padding:0;
	text-align:center;
}
.a-img img{
	width:100%;
	
}
.a-img p{
	margin:5px 0 0 0;
	padding:0;
	font-weight:bold;
	
}
.box{
	width:100%;
	display: block;
	padding:20px 0 10px 0;
	clear:both;
}
/*折り畳みstart*/
.acd-check {
    display: none;
}
.acd-label {
    border-top: #333 solid 1px;
    /*border-bottom: #333 solid 1px;*/
    font-weight: bold;
    display: block;
    margin-bottom: 1px;
    padding: 10px 44px 10px 10px;
    position: relative;
    /*font-size: 16px; 
    line-height: 24px;*/ 
}
.acd-label:after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 24px;
    height: 24px;
    background-image: url('../img/open.png');
    background-size: contain;
    vertical-align: middle;
}
.acd-content {
    display: none; 
    padding: 0 10px;
    transition: opacity .5s, height .5s, padding .5s; /* スムーズなトランジション */
    overflow: hidden; 
    margin-bottom: 10px;
	 border-top: #333 solid 1px;
}

.acd-check:checked + .acd-label:after {
    background-image: url('../img/close.png');
}
.acd-check:checked + .acd-label + .acd-content {
    display: block; /* チェック時に表示 */
    height: auto; /* 内容に応じて高さ調整 */
    opacity: 1;
    padding: 10px;
    visibility: visible;
}

/*折り畳みend*/
.left-box{
	float:left;
}
.right-box{
	float:right;
}
.speech-bubble-down {
  position: relative;
  background: white;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 10px 20px;
  max-width: 80%;
  margin: 20px;
}
.speech-bubble-down:before,
.speech-bubble-down:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.speech-bubble-down:before {
  bottom: -10px; 
  border-style: solid;
  border-width: 10px 10px 0 10px; 
  border-color: #333 transparent transparent transparent;
}

.speech-bubble-down:after {
	bottom: -9px;
	border-style: solid;
	border-width: 10px 10px 0 10px; 
	border-color: white transparent transparent transparent;
}
.m40{
	margin-bottom:40px;
}
.mt40{
	margin-top:40px;	
}
.photo{
	width:70%;
	display: block;
	margin:0 auto 40px auto;
}
.photo img{
	width:100%;
}


.fes-h3{
	background-color: #333;
	color:#FFF;
	padding:10px 16px;
	width:fit-content;
	transform:skew(-20deg);
	font-size:24px;
	margin:40px auto 30px auto;
}
.fes-h3 span{
	margin:0;
	transform:skew(20deg);
	font-family: "vdl-logog", sans-serif;
	font-weight: 400;
	font-style: normal;
	display: block;
}
.center-txt{
	text-align: center;
	display: block;
	margin-right:auto;
	margin-left:auto;
}
section{
	margin:0 16px;
}
.kv{
	display: block;
	margin:20px auto;
}
.fes-h4{
	font-weight:bold;
	font-size:1.5em;
	margin:20px 0 10px 0;
}
.txt-l{
	font-size:1.2em;
}
.line-btn{
	display: flex;
	justify-content: center;
	align-items: center;
	background : #00CC00;
	background : rgba(0, 204, 0, 1);
	box-shadow : 0px 10px 0px rgba(0, 102, 0, 1);
	filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0, OffY=10, Color='#006600') ;
	text-align: center;
	font-weight:bold;
	
	display: inline-block;
	border-radius: 20px;
	-webkit-border-radius: 20px; 
	-moz-border-radius: 20px; 
	margin:20px auto;
	line-height: 1.8em;
}
.line-btn a{
	display: block;
	padding:16px 20px;
	color:#FFF;
	font-size:1.4em;
	text-decoration: none;
}

.font-L{
	font-size:24px;
}
/* 画面幅が1024px以上の場合 */
@media (min-width: 1024px) {
    #backToTop {
        right: calc((100% - 1024px) / 2);
        right: max(20px, calc((100% - 1024px) / 2)); /* 画面幅が広い場合は中央の1024pxの内側に、それより狭い場合は右から20pxに配置 */
    }
}

footer{
	margin-top:100px;
}
.footer-area{
	width:100%;
	text-align: center;
	margin:20px auto;
	padding-bottom:40px;
}
/* clear */
.clearfix:after,section:after{
  content: "."; 
  display: block; 
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix,section{
  min-height: 1px;
}
* html .clearfix,* html section{
  height: 1px;
  /*\*//*/
  height: auto;
  overflow: hidden;
  /**/
}

/* ------------------------------------------------------------*/ 
@media (max-width: 768px) {
.fes-pc{
	display: none;
}
.fes-sp{
	display: block;	
}	
#fes{
	font-size:12px;
}
.read-txt{
	background-size:20%,20%,20%,20%;	
}
.fes-h3,.font-L{
	font-size:18px;
}
.kv{
	width:80%;
	max-width:558px; 
}

}


/* ------------------------------------------------------------*/ 
@media (max-width: 600px) {
.pre100{
	width:90%;
}
.left-balloon-box img,.right-balloon-box img{
	width:60px;

}
.prof-area{
    width: 100%;
}	
.prof-box picture {
    width: 30%; 
    height: auto; 

}
.prof-box img {
    width: 100%; 
    height: auto; 
}
.prof-info{
	margin-left:0;
	width:68%;
}	

.modal-content .prof-box{
	display: block;
    width: 100%;
}
.modal-content .prof-box picture {
    width: 50%; 
    height: auto;
}

.modal-content .prof-box img {
	display: block;
	margin:0 auto;
    width: 50%;
    height: auto; 
}	
.modal-content  .prof-info2{
	width:calc(80%-40px);
	margin:20px 0 0 0;
}	
.photo{
	width:100%;
}
.panel{
	width: 100%;
}		
}

/* ------------------------------------------------------------*/ 
@media (max-width: 430px) {
.fix-btn{
	width:94%;
}

}

