@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

html, body {
	margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
p {
  margin: 0;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}

.align-right{
  text-align: right;
  color: #70411c;
  font-size: 12px;
  font-weight: 400;
  margin-top: 20px;
}

/*------------
  index
------------*/
.sp-only{
  display:none;
}
.main-wrapper {
  position: relative;
  background: linear-gradient(#e6211a,#bb121a);
}
.main-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg.png");
  background-position: center center;
  background-repeat: repeat;
  background-size: 100%;
}
.main-header{
  position: relative;
  width: 100%;
  padding: 120px 0;
  text-align: center;
}
.main-header .main-header-ico{
  width: 300px;
}
.main-header:before{
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: 0;
  left: 0;
  background-image: url("../img/main_left.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-header:after{
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: 0;
  right: 0;
  background-image: url("../img/main_right.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main_title {
  text-align: center;
  font-size: 32px;
  color: #fff;
  margin-top: 40px;
  line-height: 1.4;
}

.main_title img{
  width: calc(100% - 40px);
  max-width: 800px;
  margin-top: 20px;
}
.main-inner {
  position: relative;
  width: auto;
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px;
  background: #FFFFFF;
  border-radius: 40px;
}
.main-term {
  text-align: center;
  width: 100%;
  background: linear-gradient(#e6211a,#bb121a);
  border-radius: 10px;
}
.main-term span {
  font-size: 32px;
  font-weight: 400;
  color: #FFFFFF;
}
.term-label{
    display: inline-block;
    padding: 20px 10px;
}
.term-date{
  display: inline-block;
  margin-left: 1.5rem;
}
.term-text {
  margin-top: 60px;
  font-size: 22px;
  line-height: 2.18;
}

.main-detail{
  position: relative;
  margin-top: 80px;
}
.main-detail-header{
  display: flex;
  align-items: center;
  padding: 40px 0;
}
.main-detail-header img{
  flex: 0 0 80px;
  width: 80px;
}
.main-detail-header span{
  position: relative;
  flex: 0 0 calc(100% - 80px);
  padding-left: 30px;
  font-size: 24px;
  font-weight: 400;
  color: #70411c;
}
.main-detail-header span::before{
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: calc(100% - 150px);
  height: 1px;
  border-top: 1px dotted #70411c;
}
.main-detail-inner{
  display: flex;
  flex-wrap: wrap;
  margin: -20px;
}
.col-3 .main-detail-item{
  flex: 0 0 33.32%;
}
.col-4 .main-detail-item{
  flex: 0 0 25%;
}
.main-detail-item{
  padding: 20px;
}
.main-detail-item img{
  border: 1px solid #70411c;
}
.main-detail-item-title{
  font-size: 16px;
  font-weight: 400;
  color: #70411c;
  margin-top: 10px;
}
.main-chance{
  text-align: center;
  margin: 0 auto;
  margin-top: 120px;
  line-height: 1.6;
}
.main-chance h2{
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  background: #70411c;
  display: inline-block;
  padding: 16px 32px;
  border-radius: 10px;
}
.main-chance strong{
  font-size: 24px;
  font-weight: 400;
  display: inline-block;
  margin-top: 10px;
}
.entry-btn {
  margin-top: 80px;
  width: 100%;
}
.entry-btn a {
  display: block;
  padding: 30px 0;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  background: #bb121a;
  border-radius: 60px;
}
.copyright{
  position: relative;
  z-index: 10;
  font-size: 12px;
  padding: 60px 0;
  color: #fff;
  text-align: center;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
.sp-only{
  display:block;
}
.main-header{
  position: relative;
  width: 100%;
  padding: 50px 20px;
}
.main-header .main-header-ico{
  width: 120px;
}
.main-header:before{
  width: 150px;
  height: 150px;
}
.main-header:after{
  width: 150px;
  height: 150px;
}
.main_title {
  font-size: 18px;
  margin-top: 20px;
}

.main_title img{
  width: calc(100% - 40px);
  max-width: 800px;
  margin-top: 10px;
}
.main-inner {
  width: auto;
  margin: 0 20px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 20px;
}
.main-term span {
  font-size: 24px;
}
.term-text {
  margin-top: 20px;
  font-size: 16px;
}
.main-detail{
  margin-top: 40px;
}
.main-detail-header{
  padding: 20px 0;
}
.main-detail-header img{
  flex: 0 0 50px;
  width: 50px;
}
.main-detail-header span{
  flex: 0 0 calc(100% - 50px);
  padding-left: 20px;
  font-size: 18px;
}
.main-detail-header span::before{
  width: calc(100% - 100px);
}
.main-detail-inner{
  margin: -10px;
}
.col-3 .main-detail-item{
  flex: 0 0 50%;
}
.col-4 .main-detail-item{
  flex: 0 0 50%;
}
.main-detail-item{
  padding: 10px;
}
.main-detail-item img{
  border: 1px solid #70411c;
}
.main-detail-item-title{
  font-size: 16px;
  font-weight: 400;
  color: #70411c;
  margin-top: 10px;
}
.main-chance{
  margin-top: 60px;
}
.main-chance h2{
  font-size: 18px;
  padding: 12px 24px;
}
.main-chance strong{
  font-size: 18px;
}
.entry-btn {
  margin-top: 40px;
  margin-bottom: 40px;
}
.entry-btn a {
  display: block;
  padding: 30px 0;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  background: #bb121a;
  border-radius: 60px;
}
.copyright{
  font-size: 12px;
  padding: 60px 0;
  color: #fff;
  text-align: center;
  font-weight: 300;
}
/*251114*/
.term-label{
  display: block;
  padding: 10px 0 0;
}
.term-date{
  display: block;
  margin-left: 0;
  padding: 0 0 10px;
}

}

/*251114*/
.main-detail-item img {
    border: 1px solid #70411c7a;
    border-radius: 8px;
}