@charset "utf-8";
/* 挨拶状ドットコムの料金システム */
#box_price_system ul {
  display: flex;
  width: 710px;
  justify-content: space-between;
  margin: 0 auto 40px;
  position: relative;
}

#box_price_system li {
  width: 155px;
  height: 175px;
  border-radius: 10px;
  position: relative;
}
#box_price_system #btn_print {
  background-color: #FFE6EB;
}
#box_price_system #btn_print:hover  {
  background-color: #FFC8D2;
}
#box_price_system #btn_card {
  background-color: #FFF5EB;
}
#box_price_system #btn_card:hover  {
  background-color: #FAF5CD;
}
#box_price_system #btn_option {
  background-color: #E6F4F5;
}
#box_price_system #btn_option:hover  {
  background-color: #D2EBEB;
}
#box_price_system #btn_delivery {
  background-color: #F4F6EC;
}
#box_price_system #btn_delivery:hover  {
  background-color: #E0F0E2;
}

#box_price_system li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
#box_price_system li a p:nth-child(3) {
  font-size: 14px;
  font-weight: bold;
  color: #F30;
  line-height: 120%;
  margin-top: 10px;
}

#box_price_system li a:hover {
  color: #000;
}
#box_price_system p:nth-child(2){
  padding: 10px 0 5px;
  line-height: 1;
}

#box_price_system li::after {
  content: url("https://nenga.aisatsujo.jp/group_common/images/icon/ico_plus.webp");
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  right: -35px;
  z-index: 4;
  transform: translateY(-50%);
}

#box_price_system li:last-child::after {
  content: none;
}


/* 追加印刷料金 */
.print{
  width: 80%;
  margin: auto;
}
.print p{
  text-align: right;
}
#main table {
  margin-bottom: 20px;
  border: 1px #CCC solid;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
#main .print table .headline th {
  font-weight: bold;
  background: var(--color-base);
}
#main table th{
  background: #eee;
}
#main table th,
#main table td{
  padding: 5px 10px;
  border: 1px #CCC solid;
  text-align: center;
}

/*　ミツモリマスター　ボタン　*/
#btn_mitsumori_area {
  text-align: center;
  margin: 45px 0 40px;
}
#btn_mitsumori_area p:first-child{
  font-weight: bold;
  margin-bottom: 15px;
}
#btn_mitsumori_area img{
transition: .3s;
}
#btn_mitsumori_area img:hover{
  opacity: 0.7;
}
/* お申し込み方法 ----------------------------*/
#howto .howto_add_wrap{
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 2%;
}
#howto .howto_add_wrap::before{
  content: "";
  width: 30px;
  height: 80px;
  background-color:var(--color-sub-base);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
#howto .howto_add_wrap .add_ttl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
#howto .howto_add_wrap dd img{
  width: auto;
  height: 450px;
  overflow: hidden;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
/* 吹き出し */
#howto .howto_add_wrap .add_img span{
  background:#8f8f8f;
  font-weight: 600;
  padding:15px 3% 10px;
  border-radius: 5px;
  position: absolute;
  z-index: 1;
  filter:drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.3));
  color: #fff;
}
#howto .howto_add_wrap .add_img span::after {
  content: "";
  width: 30px;
  height: 30px;
  background-color:#8f8f8f;
  clip-path: polygon(30% 100%, 30% 0, 100% 0);
  position: absolute;
}
#howto .howto_add_wrap dl:nth-child(1) .add_img span::after{
  top: 40px;
  left: 60px;
}
#howto .howto_add_wrap dl:nth-child(2) .add_img span::after{
  top: 40px;
  left: 35px;
}

#howto .howto_add_wrap dl:nth-child(1) .add_img span {
  top: 150px;
  right: 20px;
}
#howto .howto_add_wrap dl:nth-child(2) .add_img span {
	top: 184px;
	left: 140px;
}

/*画像内枠*/
#howto .howto_add_wrap .add_img{
  position: relative;
}
#howto .howto_add_wrap .add_img::before{
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  border: 3px solid var(--color-sub);
  border-radius: 5px;
  position: absolute;
}
#howto .howto_add_wrap dl:nth-child(1) .add_img::before{
  top: 226px;
  left: -6px;
  width: 383px
}
#howto .howto_add_wrap dl:nth-child(2) .add_img::before{
	top: 259px;
	left: 50%;
	width: 163px;
	height: 35px;
	transform: translateX(-50%);
}

