
#nfd_2025christmas .div{
  margin: 0;
  padding: 0;
}
#nfd_2025christmas .img{
width: 100%;
height: auto;
object-fit: cover;
vertical-align: bottom;
}

/* メインビジュアル */
#nfd_2025christmas .mainvisual{
  background-image: url(../img/usr/freepage/nfd_2025christmas/MV_bg.png);
  background-size: 100%;
  background-position: 0 calc(100% + 3px);
  background-repeat: repeat-x;
  padding-bottom: 50px;
}
#nfd_2025christmas .mainvisual img{
  display: block;
  width: 100%;
  height: auto;
}
#nfd_2025christmas .mainvisual .mainvisual_text{
  padding: 20px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #000;
  margin-top: 20px;
}

/* クーポン */
#nfd_2025christmas .coupon{
  background-color: #f0f0f0;
  padding-top: 24px;
  padding-bottom: 100px;
  position: relative;
  background-image: url(../img/usr/freepage/nfd_2025christmas/coupon_bg.png);
  background-size: 100%;
  background-position: 0 calc(100% + 20px);
  background-repeat: repeat-x;
}
#nfd_2025christmas .coupon .coupon_inner{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
#nfd_2025christmas .coupon .coupon_title{
  text-align: center;
  margin-bottom: 40px;
}
#nfd_2025christmas .coupon ul{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
  margin-bottom: 70px;
}
#nfd_2025christmas .coupon .btn{
  margin-bottom: 18px;
}
#nfd_2025christmas .coupon .attention{
  text-align: center;
  font-size: 14px;
}
#nfd_2025christmas .coupon .attention a{
  text-decoration: underline;
}

/* 応募方法 */
#nfd_2025christmas .process{
  background-color: #045238;
  background-image: url(../img/usr/freepage/nfd_2025christmas/process_bg.png);
  background-size: 100%;
  background-position: 0 calc(100% + 20px);
  background-repeat: repeat-x;
  padding-top: 50px;
  padding-bottom: 80px;
}
#nfd_2025christmas .process .process_inner{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
#nfd_2025christmas .process .process_title{
  text-align: center;
  margin-bottom: 40px;
}
#nfd_2025christmas .process ul.process_list{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 30px;
  padding: 40px;
  background-color: #fff;
  border-radius: 20px;
}
#nfd_2025christmas .process ul.process_list li{
  width: calc((100% - 120px) / 5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#nfd_2025christmas .process .process_num{
  text-align: center;
  margin-bottom: 13px;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background-color: #af261a;
  display: flex;
  justify-content: center;
  align-items: center;
}
#nfd_2025christmas .process .process_num img{
  width: auto;
  height: 50%;
  object-fit: contain;
}
#nfd_2025christmas .process .process_num + img{
  margin-bottom: 18px;
}
#nfd_2025christmas .process .process_subtitle{
  width: 100%;
  text-align: center;
  margin-bottom: 17px;
  font-size: 16px;
  font-weight: bold;
  line-height: 35px;
  background-color: #ebebeb;
}
#nfd_2025christmas .process p{
  font-size: 16px;
  text-align: left;
}
#nfd_2025christmas .process_text{
  font-size: 16px;
  text-align: left;
  color: #fff;
  position: relative;
}
#nfd_2025christmas .process_text_wrapper{
  max-height: 200px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease-in-out;
  margin-bottom: 10px;
}
#nfd_2025christmas .process_text_wrapper::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, rgba(4, 82, 56, 0) 0%, rgba(4, 82, 56, 1) 100%);
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}
#nfd_2025christmas .process_text.is_open .process_text_wrapper{
  max-height: 5000px;
}
#nfd_2025christmas .process_text.is_open .process_text_wrapper::after{
  opacity: 0;
}
#nfd_2025christmas .process_text_title{
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 28px;
}
#nfd_2025christmas .process_text_subtitle{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 18px;
}
#nfd_2025christmas ul.process_text_content{
  margin-bottom: 30px;
  padding-left: 1em;
}
#nfd_2025christmas ul.process_text_content li{
  line-height: 1.8;
  list-style: disc;
}
#nfd_2025christmas .process_text_btn_wrapper{
  text-align: center;
  margin-top: 0;
}
#nfd_2025christmas .process_text_btn{
  background-color: #045238;
  color: #fff;
  border: 1px solid #fff;
  width: 300px;
  line-height: 50px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  position: relative;
}
#nfd_2025christmas .process_text_btn::after{
  position: absolute;
  display: block;
  content: '';
  top: calc(50% - 4px);
  right: 20px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
}
#nfd_2025christmas .process_text_btn.more_btn::after{
  border-top: 8px solid #fff;
}
#nfd_2025christmas .process_text_btn.close_btn::after{
  top: calc(50% - 8px);
  border-bottom: 8px solid #fff;
}
#nfd_2025christmas .process_text_btn:hover,
#nfd_2025christmas .process_text_btn:hover{
  background-color: #4f907a;
}
#nfd_2025christmas .process_text.is_open .process_text_btn.more_btn{
  display: none;
}
#nfd_2025christmas .process_text:not(.is_open) .process_text_btn.close_btn{
  display: none;
}
#nfd_2025christmas .process_text.is_open .process_text_close_btn{
  display: inline-block;
}

/* おススメ商品 */
#nfd_2025christmas .recommend{
  background-color: #fff;
  background-image: url(../img/usr/freepage/nfd_2025christmas/recommend_bg.png);
  background-size: 100%;
  background-position: 0 calc(100% + 5px);
  background-repeat: repeat-x;
  padding-top: 30px;
  padding-bottom: 80px;
}
#nfd_2025christmas .recommend .recommend_inner{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
#nfd_2025christmas .recommend .recommend_title{
  margin-bottom: 40px;
  text-align: center;
}
#nfd_2025christmas .recommend ul.recommend_list{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 50px;
}
#nfd_2025christmas .recommend ul.recommend_list li{
  width: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fbf2dd;
  border-radius: 10px;
  padding: 30px;
}


#nfd_2025christmas .recommend ul.recommend_list li a{
  display: block;
  width: 260px;
  margin-top: 24px;
}
