@charset "UTF-8";
@media screen and (min-width:769px){
.forsp {display: none !important;}
ul {list-style: none;}
/*a {text-decoration: none; color:#222; font-size: 18px;}*/
.mb25 {margin-bottom: 25px}
.pt30 {padding-top:30px;}

.comment {
	width: 100%;
	padding: .25em 0 .5em .75em;
	border-left: 6px solid #ff0046;
	border-bottom: 1px solid #ff0046;
	margin: 10px auto;
	font-weight: bold;
}
.wrap {
	width: 70%;
	justify-content: center;
	list-style: none;
	display: flex; /* フレックスボックスにする */
	border: solid 2px #ff0046;
	border-radius: 10px;
	position: relative;
	margin: 15px auto;
}
.wrap-item {
	width: calc(100%/3);
}
ul li {
	line-height: 1.5;
	border-bottom: dashed 1px silver;
	font-weight: bold;
	width: 180px;
}

/* a.underline */
a.underline {
  position: relative;
  display: inline-block;
  transition: .3s;
}
/* a.underline::after */
a.underline::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: '';
  width: 0;
  height: 3px;
  background-color: #fbb03b;
  transition: .3s;
}
/* a.underline:hover::after */
a.underline:hover::after {
  width: 180px;
}
}/*------FOR pc----------*/


/*---------------------------------
	FOR smartphone
---------------------------------*/
@media screen and (max-width : 768px), print and (max-width : 768px) {
.forpc {display: none !important;}
ul {list-style: none;padding: 0 5%;}
/*a {text-decoration: none; color:#222; font-size: 22px;}*/
.mb25 {margin-bottom: 25px}
.pt30 {padding-top:30px;}
.content_sp {
	margin: 0 10px;
}
.comment {
	padding: 10px;
	border-left: 6px solid #ff0046;
	border-bottom: 1px solid #ff0046;
	margin: 10px auto;
	font-weight: bold;
}
.wrap {
	width: 100%;
	list-style: none;
	border: solid 3px #e6002d;
	border-radius: 10px;
	position: relative;
	margin: 30px auto;
}

/* a.btn_03 */
a.btn_03 {
margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    position: relative;
    background: #fff;
    border: 2px solid #fad2dd;
    border-radius: 30px;
    box-sizing: border-box;
    padding: 0 45px 0 25px;
    color: #333;
    /* font-size: 16px; */
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
    transition-duration: 0.3s;
    font-size: 20px;
    font-weight: bold;
}
/* a.btn_03:before */
a.btn_03:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -6px;
}
/* a.btn_03:hover */
a.btn_03:hover {
  background: #fff;
  color: #333;
  border: 2px solid #ff0046;
}
/* a.btn_03:hover:before */
a.btn_03:hover:before {
  border-top: 2px solid #ff0046;
  border-right: 2px solid #ff0046;
}


}/*------FOR smartphone----------*/