@charset "UTF-8";
/* CSS Document */



.resizeimage img { width: 100%; }

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}
@media screen and (min-width: 640px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 640px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
}

p {
  font-weight: nomal;
}


 /* ↓縦に積むテーブル↓ */
table {
}
.tbl-r02 th {
}
.tbl-r02 td {
}
 
@media screen and (max-width: 640px) {
  .last td:last-child {
  }
  .tbl-r02 {
  }
  .tbl-r02 th,
  .tbl-r02 td {
　　border-bottom: none;
    display: block;
  }
}
 /* ↑縦に積むテーブル↑ */
 
 

.font_white {
	font-size: 130%;
	line-height: 1.8rem;
	font-family: "Noto Serif JP", sans-serif;
	color: #FFF;
	font-weight:500;
}

.font_blue {
	font-size: 200%;
	line-height: 2.8rem;
	font-family: "Noto Serif JP", sans-serif;
	color: #01A0E8;
}
.font_col {
	font-family: "Noto Serif JP", sans-serif;
	color: #e4007f;
}
.font_col_l {
	font-size: 150%;
	line-height: 2.0rem;
	font-family: "Noto Serif JP", sans-serif;
	color: #e4007f;
}

.font_blue_m {
	font-size: 80%;
	line-height: 0.8rem;
	font-family: "Noto Serif JP", serif;
	color: #01A0E8;
}
.font_s {
	font-size: 40%;
	line-height: 0.6rem;
	font-family: "Noto Serif JP", sans-serif;
}
.font_l {
	font-size: 150%;
	line-height: 2.2rem;
	font-family: "Noto Serif JP", sans-serif;
}
.font_2l {
	font-size: 200%;
	line-height: 2.8rem;
	font-family: "Noto Serif JP", sans-serif;
}
p {
text-align:justify;
}


a,a:hover,a:visited{
    color: inherit;
}


table.sample {
   display: block;
   border: none;
   width: 80%;
   max-width: 600px;
   min-width: 400px;
   text-align:  center;
}
table.sample tr {
   display: inline;
}
table.sample td {
   display: inline-block;
   margin-bottom: 10px;
}


@media screen and (max-width: 500px){
.bg-color {
	background:#E8DBC3;
  }
  
  
   /* ↓角丸テーブル↓ */
.table {
  table-layout: fixed;
  width: 100%;
  max-width: 500px;
  margin: 50px auto;
  border-spacing: 0;
  border-collapse: separate;
  border-radius: 10px;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
}
.table th, .table td {
  padding: 10px;
  border-right: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}
.table th {
  width: 100px;
  text-align: center;
}
.table tr:first-child th {
  border-radius: 20px 0 0 0;
}
.table tr:first-child td {
  border-radius: 0 20px 0 0;
}
.table tr:last-child th {
  border-radius: 0 0 0 20px;
}
.table tr:last-child td {
  border-radius: 0 0 20px 0;
}