body {
  font-family: "Noto Sans JP", serif;
}

#checkContainer {
  width: 90%;
  max-width: 740px;
  margin: 70px auto 0;
}

.check1 {
  width: 100%;
  position: relative;
}

.check1 p:first-of-type {
  font-size: 40px;
  color: var(--primaryColor);
  text-align: center;
  font-weight: 600;
  letter-spacing: 2px;
}

.check1 p:nth-of-type(2) {
  margin-top: 20px;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
}

.checkContents {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px 0;
}

.checkContents li {
  padding-bottom: 5px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--fontColor);
  /* cursor: pointer; */
}

.checkContents li label {
  display: flex;
  align-items: center;
  gap: 0 6px;
  cursor: pointer;
}

.checkContents input[type="checkbox"] {
  width: 25px;
  height: 25px;
  border-radius: 3px;
}

.check1 > img {
  width: 143px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.check2 {
  text-align: center;
}

.check2 p:first-of-type {
  display: inline-block;
  margin: 60px auto 0;
  padding: 8px 40px;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 1px;
  background: var(--secondaryColor);
  border-radius: 20px;
}

.check2 > img:first-of-type {
  display: block;
  width: 33.5px;
  margin: 15px auto 0;
}

.check2 p:nth-of-type(2) {
  margin-top: 30px;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.7;
}

.check2 > img:nth-of-type(2) {
  display: block;
  width: 217px;
  margin: 30px auto 0;
}

.btn {
  width: 90%;
  max-width: 676px;
  height: 127px;
  margin: 40px auto 0;
  background: var(--secondaryColor);
  border-radius: 6px;
}

.btn a {
  height: 100%;
  color: var(--primaryColor);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-indent: -0.9em;
}

.btn a::before {
  content: "";
  width: 39px;
  height: 39px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: calc(50% + 202px);
  transform: translateY(-50%);
}

.btn a::after {
  content: "";
  width: 10px;
  height: 20px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: var(--secondaryColor);
  position: absolute;
  top: 50%;
  left: calc(50% + 218px);
  transform: translateY(-50%);
}







#featureContainer {
  width: 100%;
  margin-top: 100px;
  padding: 70px 0 600px;
  background: var(--secondaryColor);
}

#featureContainer h2 {
  width: 90%;
  margin: 0 auto;
  position: relative;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--primaryColor);
  text-align: center;
}

#featureContainer h2::after {
  content: "";
  width: 100%;
  max-width: 550px;
  height: 14.5px;
  background: url(../img/featureTitleBack.png) center center / cover no-repeat;
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
}

.featureContents {
  width: 90%;
  max-width: 1055px;
  margin: 60px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 25px 4%;
}

.feature {
  flex: 0 1 48%;
  padding: 50px 40px;
  box-sizing: border-box;
  text-align: center;
  background: #fff;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}
.feature::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: url(../img/featureBack.png) center center / cover no-repeat;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: -1;
}

.feature > p {
  width: 203px;
  height: 46px;
  margin: 0 auto;
  background: url(../img/featurePointBack.png) center center / cover no-repeat;
  font-size: 19px;
  font-weight: 600;
  color: var(--primaryColor);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature dl {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px 0;
}

.feature dt {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--primaryColor);
}

.feature:first-of-type dd img {
  width: 193px;
}
.feature:nth-of-type(2) dd img {
  width: 137px;
}
.feature:nth-of-type(3) dd img {
  width: 238px;
}
.feature:nth-of-type(4) dd img {
  width: 356px;
}

.feature dd:nth-of-type(2) {
  font-size: 21px;
  font-weight: 500;
  color: var(--fontColor2);
}







#stepContainer {
  width: 100%;
  margin-top: -520px;
  text-align: center;
  overflow: hidden;
}

.stepTitle {
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}
.stepTitle::after {
  content: "";
  width: 120%;
  min-width: 1200px;
  height: 630px;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
  background: #fff;
}

.stepTitle img:first-of-type {
  width: 186px;
}

h2 {
  margin-top: 40px;
  font-size: 58px;
  font-weight: 600;
  color: var(--primaryColor);
  line-height: 1.3;
  letter-spacing: 6px;
}

.stepTitle p {
  margin-top: 30px;
  font-size: 24.5px;
  font-weight: 500;
  line-height: 1.7;
}

.stepTitle img:nth-of-type(2) {
  width: 160px;
  position: absolute;
  top: 110px;
  right: calc(50% + 330px);
}

.stepTitle img:nth-of-type(3) {
  width: 200px;
  position: absolute;
  top: 100px;
  left: calc(50% + 280px);
}

.flowContainer {
  background: var(--secondaryColor);
  position: relative;
  z-index: 1;
}

h3 {
  padding: 10px 0;
  background: #FFF116;
  font-size: 28px;
  font-weight: 700;
  color: var(--primaryColor);
}

.flowContents {
  width: 90%;
  max-width: 1055px;
  margin: 0 auto;
  padding: 100px 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.flow {
  padding: 0 5%;
  box-sizing: border-box;
}

.flow dt {
  width: 128px;
  margin: 0 auto;
}

.flow dd:first-of-type {
  margin-top: 10px;
  font-size: 31px;
  font-weight: 600;
  letter-spacing: 3px;
}

.flow dd:last-of-type {
  margin: 30px auto 0;
}

.flow:first-of-type dd:last-of-type {
  width: 737px;
}
.flow:nth-of-type(2) dd:last-of-type {
  width: 622px;
}
.flow:nth-of-type(3) dd:last-of-type {
  width: 586px;
}
.flow:nth-of-type(4) dd:last-of-type {
  width: 306px;
}
.flow:nth-of-type(5) dd:last-of-type {
  width: 120px;
}
.flow:nth-of-type(6) dd:last-of-type {
  width: 116px;
}
.flow:nth-of-type(7) dd:last-of-type {
  width: 237px;
}

.flowContainer .btn {
  width: 100%;
  max-width: initial;
  height: auto;
  margin: 0;
  padding: 10px 0;
  background: #FFF116;
  font-size: 28px;
  font-weight: 700;
  color: var(--primaryColor);
  border-radius: 0;
}

.flowContainer .btn a {
  font-size: 28px;
}

.flowContainer .btn a::before {
  left: calc(50% + 140px);
  right: auto;
}

.flowContainer .btn a::after {
  background: var(--primaryColor);
  left: calc(50% + 156px);
  right: auto;
}







#meetingContainer {
  width: 100%;
  padding: 80px 0 70px;
  background: var(--secondaryColor);
  overflow: hidden;
}

.meetingTitle {
  width: 90%;
  max-width: 1055px;
  margin: 0 auto;
  position: relative;
}

.meetingTitle h2 {
  text-align: center;
}

.meetingTitle img:first-of-type {
  width: 133px;
  position: absolute;
  top: -10px;
  right: calc(50% + 340px);
}
.meetingTitle img:nth-of-type(2) {
  width: 138px;
  position: absolute;
  top: -10px;
  left: calc(50% + 340px);
}

.meetingContents {
  width: 90%;
  max-width: 910px;
  margin: 50px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 0 2%;
}

.meetingContents dl {
  flex: 0 1 23.5%;
  padding: 60px 10px 25px;
  border: 4px solid var(--primaryColor);
  box-sizing: border-box;
  background: #fff;
  text-align: center;
  border-radius: 50px;
  font-weight: 600;
  color: var(--primaryColor);
}

.meetingContents dt {
  font-size: 38px;
  line-height: 1.2;
}

.meetingContents dd {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.5;
}

#meetingContainer .btn {
  margin-top: 50px;
  background: #FFF116;
}

#meetingContainer .btn a::before {
  background: var(--secondaryColor);
}

#meetingContainer .btn a::after {
  background: #fff;
}









/* アクセス */
#accessContainer {
  width: 90%;
  max-width: 1055px;
  margin: 80px auto 0;
}

#accessContainer h2 {
  text-align: center;
  /* font-size: 40px; */
  font-weight: bolder;
  letter-spacing: 2px;
  color: var(--fontColor3);
}

#accessContainer iframe {
  width: 100%;
  height: 530px;
  margin-top: 30px;
}

.accessText {
  font-size: 17px;
}

.accessText dt {
  margin-top: 20px;
}








@media (max-width: 1024px) {
#checkContainer {
  width: 84%;
  /* max-width: 740px; */
  margin: 60px auto 0;
}

/* .check1 {
  width: 100%;
  position: relative;
} */

.check1 p:first-of-type {
  font-size: 32px;
  /* color: var(--primaryColor);
  text-align: center;
  font-weight: 600; */
  letter-spacing: 1.5px;
}

.check1 p:nth-of-type(2) {
  margin-top: 20px;
  font-size: 14.5px;
  /* font-weight: 600;
  text-align: center; */
}

.checkContents {
  margin-top: 30px;
  /* display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px 0; */
}

.checkContents li {
  /* padding-bottom: 5px; */
  font-size: 17px;
  /* font-weight: 500; */
  letter-spacing: 0.3px;
  /* border-bottom: 1px solid var(--fontColor); */
  /* cursor: pointer; */
}

/* .checkContents li label {
  display: flex;
  align-items: center;
  gap: 0 6px;
  cursor: pointer;
}

.checkContents input[type="checkbox"] {
  width: 25px;
  height: 25px;
  border-radius: 3px;
} */

.check1 > img {
  width: 143px;
  /* position: absolute;
  bottom: 0;
  right: 0; */
}

/* .check2 {
  text-align: center;
} */

.check2 p:first-of-type {
  /* display: inline-block;
  margin: 60px auto 0; */
  padding: 8px 40px 10px;
  font-size: 18px;
  /* font-weight: 500;
  letter-spacing: 1px;
  background: var(--secondaryColor);
  border-radius: 20px; */
}

.check2 > img:first-of-type {
  /* display: block; */
  width: 28.5px;
  margin: 20px auto 0;
}

.check2 p:nth-of-type(2) {
  margin-top: 24px;
  font-size: 34px;
  /* font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.7; */
}

.check2 > img:nth-of-type(2) {
  /* display: block; */
  width: 185px;
  /* margin: 30px auto 0; */
}

.btn {
  /* width: 90%; */
  max-width: 465px;
  height: 88px;
  margin: 40px auto 0;
  /* background: var(--secondaryColor);
  border-radius: 6px; */
}

.btn a {
  /* height: 100%;
  color: var(--primaryColor); */
  font-size: 28px;
  /* font-weight: 600; */
  letter-spacing: 1px;
  /* display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-indent: -0.9em; */
}

.btn a::before {
  /* content: ""; */
  width: 30px;
  height: 30px;
  /* background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%; */
  left: calc(50% + 140px);
  /* transform: translateY(-50%); */
}

.btn a::after {
  /* content: ""; */
  width: 7.5px;
  height: 15px;
  /* clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: var(--secondaryColor);
  position: absolute;
  top: 50%; */
  left: calc(50% + 152px);
  /* transform: translateY(-50%); */
}







#featureContainer {
  /* width: 100%; */
  margin-top: 80px;
  padding: 60px 0 600px;
  /* background: var(--secondaryColor); */
}

#featureContainer h2 {
  /* width: 90%;
  margin: 0 auto;
  position: relative; */
  font-size: 30px;
  /* font-weight: 600; */
  letter-spacing: 1.5px;
  /* color: var(--primaryColor);
  text-align: center; */
}

#featureContainer h2::after {
  /* content: "";
  width: 100%; */
  max-width: 406px;
  height: 10.5px;
  /* background: url(../img/featureTitleBack.png) center center / cover no-repeat;
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%); */
}

.featureContents {
  width: 84%;
  max-width: 446px;
  /* max-width: 1055px;
  margin: 60px auto 0;
  display: flex;
  flex-wrap: wrap; */
  gap: 25px 4%;
}

.feature {
  flex: 0 1 100%;
  padding: 40px 30px;
  /* box-sizing: border-box;
  text-align: center;
  background: #fff;
  border-radius: 30px;
  position: relative;
  z-index: 1; */
}
/* .feature::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: url(../img/featureBack.png) center center / cover no-repeat;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: -1;
} */

.feature > p {
  width: 184px;
  height: 42px;
  /* margin: 0 auto;
  background: url(../img/featurePointBack.png) center center / cover no-repeat; */
  font-size: 17px;
  font-weight: 600;
  /* color: var(--primaryColor);
  display: flex;
  align-items: center;
  justify-content: center; */
}

.feature dl {
  margin-top: 30px;
  /* display: flex;
  flex-direction: column; */
  gap: 20px 0;
}

.feature dt {
  font-size: 34px;
  /* font-weight: 600;
  line-height: 1.4;
  color: var(--primaryColor); */
}

.feature:first-of-type dd img {
  width: 174px;
}
.feature:nth-of-type(2) dd img {
  width: 124px;
}
.feature:nth-of-type(3) dd img {
  width: 215px;
}
.feature:nth-of-type(4) dd img {
  width: 321px;
}

.feature dd:nth-of-type(2) {
  font-size: 19px;
  /* font-weight: 500;
  color: var(--fontColor2); */
}







/* #stepContainer {
  width: 100%;
  margin-top: -520px;
  text-align: center;
  overflow: hidden;
} */

.stepTitle {
  padding-bottom: 30px;
  /* position: relative;
  z-index: 1; */
}
/* .stepTitle::after {
  content: "";
  width: 120%;
  min-width: 1200px;
  height: 630px;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
  background: #fff;
} */

.stepTitle img:first-of-type {
  width: 160px;
}

h2 {
  margin-top: 36px;
  font-size: 42px;
  /* font-weight: 600; */
  /* color: var(--primaryColor);
  line-height: 1.3; */
  letter-spacing: 4px;
}

.stepTitle p {
  margin-top: 24px;
  font-size: 20px;
  /* font-weight: 500;
  line-height: 1.7; */
}

.stepTitle img:nth-of-type(2) {
  width: 124px;
  /* position: absolute; */
  /* top: 110px; */
  right: calc(50% + 220px);
}

.stepTitle img:nth-of-type(3) {
  width: 158px;
  /* position: absolute; */
  top: 104px;
  left: calc(50% + 190px);
}

/* .flowContainer {
  background: var(--secondaryColor);
  position: relative;
  z-index: 1;
} */

h3 {
  /* padding: 10px 0;
  background: #FFF116; */
  font-size: 22px;
  /* font-weight: 700;
  color: var(--primaryColor); */
}

.flowContents {
  width: 84%;
  /* max-width: 1055px;
  margin: 0 auto; */
  padding: 50px 0;
  /* background: #fff;
  display: flex;
  flex-direction: column; */
  gap: 70px;
}

.flow {
  padding: 0 5%;
  /* box-sizing: border-box; */
}

.flow dt {
  width: 93px;
  /* margin: 0 auto; */
}

.flow dd:first-of-type {
  margin-top: 10px;
  font-size: 23px;
  /* font-weight: 600; */
  letter-spacing: 2px;
}

.flow dd:last-of-type {
  margin: 30px auto 0;
}

.flow:first-of-type dd:last-of-type {
  width: 546px;
  transform: translateX(70px);
}
.flow:nth-of-type(2) dd:last-of-type {
  width: 450px;
}
.flow:nth-of-type(3) dd:last-of-type {
  width: 424px;
}
.flow:nth-of-type(4) dd:last-of-type {
  width: 222px;
}
.flow:nth-of-type(5) dd:last-of-type {
  width: 80px;
}
.flow:nth-of-type(6) dd:last-of-type {
  width: 86px;
}
.flow:nth-of-type(7) dd:last-of-type {
  width: 172px;
}

/* .flowContainer .btn {
  width: 100%;
  max-width: initial;
  height: auto;
  margin: 0;
  padding: 10px 0;
  background: #FFF116;
  font-size: 28px;
  font-weight: 700;
  color: var(--primaryColor);
  border-radius: 0;
}

.flowContainer .btn a {
  font-size: 28px;
}

.flowContainer .btn a::before {
  left: calc(50% + 140px);
  right: auto;
} */

.flowContainer .btn a::after {
  /* background: var(--primaryColor); */
  left: calc(50% + 152px);
  /* right: auto; */
}







#meetingContainer {
  /* width: 100%; */
  padding: 40px 0 50px;
  /* background: var(--secondaryColor);
  overflow: hidden; */
}

.meetingTitle {
  width: 84%;
  /* max-width: 1055px; */
  /* margin: 0 auto;
  position: relative; */
}

/* .meetingTitle h2 {
  text-align: center;
} */

.meetingTitle img:first-of-type {
  width: 97px;
  /* position: absolute;
  top: -10px; */
  right: calc(50% + 240px);
}
.meetingTitle img:nth-of-type(2) {
  width: 100px;
  /* position: absolute;
  top: -10px; */
  left: calc(50% + 240px);
}

.meetingContents {
  width: 84%;
  max-width: 443px;
  margin: 50px auto 0;
  /* display: flex;
  justify-content: space-between; */
  gap: 15px 2%;
  flex-wrap: wrap;
}

.meetingContents dl {
  flex: 0 1 48%;
  /* padding: 60px 10px 25px;
  border: 4px solid var(--primaryColor);
  box-sizing: border-box;
  background: #fff;
  text-align: center;
  border-radius: 50px;
  font-weight: 600;
  color: var(--primaryColor); */
}

/* .meetingContents dt {
  font-size: 38px;
  line-height: 1.2;
}

.meetingContents dd {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.5;
}

#meetingContainer .btn {
  margin-top: 50px;
  background: #FFF116;
}

#meetingContainer .btn a::before {
  background: var(--secondaryColor);
}

#meetingContainer .btn a::after {
  background: #fff;
} */









/* アクセス */
#accessContainer {
  width: 84%;
  /* max-width: 1055px; */
  margin: 60px auto 0;
}

/* #accessContainer h2 {
  text-align: center;
  font-weight: bolder;
  letter-spacing: 2px;
  color: var(--fontColor2);
} */

#accessContainer iframe {
  /* width: 100%; */
  height: 400px;
  margin-top: 20px;
}

/* .accessText {
  font-size: 17px;
}

.accessText dt {
  margin-top: 20px;
} */
}









@media (max-width: 560px) {
#checkContainer {
  /* width: 84%; */
  /* max-width: 740px; */
  margin: 40px auto 0;
}

/* .check1 {
  width: 100%;
  position: relative;
} */

.check1 p:first-of-type {
  font-size: 26px;
  /* color: var(--primaryColor);
  text-align: center;
  font-weight: 600; */
  letter-spacing: 1px;
}

.check1 p:nth-of-type(2) {
  margin-top: 6px;
  font-size: 15px;
  /* font-weight: 600;
  text-align: center; */
}

.checkContents {
  margin-top: 20px;
  /* display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px 0; */
}

.checkContents li {
  /* padding-bottom: 5px; */
  font-size: 15px;
  /* font-weight: 500; */
  letter-spacing: 0.3px;
  line-height: 1.4;
  border-bottom: none;
  /* cursor: pointer; */
}

/* .checkContents li label {
  display: flex;
  align-items: center;
  gap: 0 6px;
  cursor: pointer;
} */

.checkContents input[type="checkbox"] {
  width: 20px;
  height: 20px;
  /* border-radius: 3px; */
}

.check1 > img {
  width: 58px;
  /* position: absolute; */
  bottom: -188px;
  right: 50px;
}

/* .check2 {
  text-align: center;
} */

.check2 p:first-of-type {
  /* display: inline-block; */
  margin: 30px auto 0;
  padding: 8px 20px 10px;
  font-size: 17px;
  /* font-weight: 500; */
  letter-spacing: 0.5px;
  /* background: var(--secondaryColor); */
  border-radius: 18px;
}

.check2 > img:first-of-type {
  /* display: block; */
  width: 33.5px;
  margin: 40px auto 0;
}

.check2 p:nth-of-type(2) {
  margin-top: 40px;
  font-size: 22px;
  /* font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.7; */
}

.check2 > img:nth-of-type(2) {
  /* display: block; */
  width: 116px;
  /* margin: 30px auto 0; */
}

.btn {
  /* width: 90%; */
  max-width: 291px;
  height: 55px;
  margin: 40px auto 0;
  /* background: var(--secondaryColor);
  border-radius: 6px; */
}

.btn a {
  /* height: 100%;
  color: var(--primaryColor); */
  font-size: 17.5px;
  /* font-weight: 600; */
  letter-spacing: 0.5px;
  /* display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-indent: -0.9em; */
}

.btn a::before {
  /* content: ""; */
  width: 20px;
  height: 20px;
  /* background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%; */
  left: calc(50% + 90px);
  /* transform: translateY(-50%); */
}

.btn a::after {
  /* content: ""; */
  width: 6px;
  height: 12px;
  /* clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: var(--secondaryColor);
  position: absolute;
  top: 50%; */
  left: calc(50% + 98px);
  /* transform: translateY(-50%); */
}







#featureContainer {
  /* width: 100%; */
  margin-top: 80px;
  padding: 40px 0 600px;
  /* background: var(--secondaryColor); */
}

#featureContainer h2 {
  /* width: 90%;
  margin: 0 auto;
  position: relative; */
  font-size: 27px;
  /* font-weight: 600; */
  letter-spacing: 1px;
  /* color: var(--primaryColor);
  text-align: center; */
}

#featureContainer h2::after {
  /* content: "";
  width: 100%; */
  max-width: 224px;
  height: 10px;
  /* background: url(../img/featureTitleBack.png) center center / cover no-repeat;
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%); */
}

.featureContents {
  /* width: 84%;
  max-width: 446px; */
  /* max-width: 1055px; */
  margin: 40px auto 0;
  /* display: flex;
  flex-wrap: wrap; */
  /* gap: 25px 4%; */
}

.feature {
  flex: 0 1 100%;
  padding: 30px 22px;
  /* box-sizing: border-box;
  text-align: center;
  background: #fff;
  border-radius: 30px;
  position: relative;
  z-index: 1; */
}
.feature::after {
  /* content: "";
  width: 100%;
  height: 100%; */
  border-radius: 25px;
  /* background: url(../img/featureBack.png) center center / cover no-repeat;
  position: absolute; */
  top: 8px;
  left: 8px;
  /* z-index: -1; */
}

.feature > p {
  width: 124px;
  height: 28px;
  /* margin: 0 auto;
  background: url(../img/featurePointBack.png) center center / cover no-repeat; */
  font-size: 14px;
  /* font-weight: 600; */
  /* color: var(--primaryColor);
  display: flex;
  align-items: center;
  justify-content: center; */
}

.feature dl {
  margin-top: 20px;
  /* display: flex;
  flex-direction: column; */
  gap: 20px 0;
}

.feature dt {
  font-size: 23px;
  /* font-weight: 600;
  line-height: 1.4;
  color: var(--primaryColor); */
}

.feature:first-of-type dd img {
  width: 117px;
}
.feature:nth-of-type(2) dd img {
  width: 96px;
}
.feature:nth-of-type(3) dd img {
  width: 167px;
}
.feature:nth-of-type(4) dd img {
  width: 224px;
}

.feature dd:nth-of-type(2) {
  font-size: 14px;
  /* font-weight: 500;
  color: var(--fontColor2); */
}







#stepContainer {
  /* width: 100%; */
  margin-top: -570px;
  padding-top: 50px;
  /* text-align: center;
  overflow: hidden; */
}

.stepTitle {
  padding-bottom: 20px;
  /* position: relative;
  z-index: 1; */
}
.stepTitle::after {
  /* content: "";
  width: 120%; */
  min-width: 630px;
  /* height: 630px;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
  background: #fff; */
}

.stepTitle img:first-of-type {
  width: 125px;
  margin-top: 5px;
}

h2 {
  margin-top: 11px;
  font-size: 40px;
  /* font-weight: 600; */
  /* color: var(--primaryColor);
  line-height: 1.3; */
  letter-spacing: 4px;
}

.stepTitle p {
  margin-top: 15px;
  font-size: 20px;
  /* font-weight: 500;
  line-height: 1.7; */
}

.stepTitle img:nth-of-type(2) {
  width: 77px;
  /* position: absolute; */
  top: -20px;
  right: calc(50% + 80px);
}

.stepTitle img:nth-of-type(3) {
  width: 100px;
  /* position: absolute; */
  top: -24px;
  left: calc(50% + 70px);
}

/* .flowContainer {
  background: var(--secondaryColor);
  position: relative;
  z-index: 1;
} */

h3 {
  /* padding: 10px 0;
  background: #FFF116; */
  font-size: 20px;
  /* font-weight: 700;
  color: var(--primaryColor); */
}

.flowContents {
  width: 84%;
  /* max-width: 1055px;
  margin: 0 auto; */
  padding: 30px 0;
  /* background: #fff;
  display: flex;
  flex-direction: column; */
  gap: 50px;
}

/* .flow {
  padding: 0 5%; */
  /* box-sizing: border-box; */
/* } */

.flow dt {
  width: 90px;
  /* margin: 0 auto; */
}

.flow dd:first-of-type {
  margin-top: 8px;
  font-size: 19px;
  /* font-weight: 600; */
  letter-spacing: 1px;
}

.flow dd:last-of-type {
  margin: 20px auto 0;
}

.flow:first-of-type dd:last-of-type {
  width: 312px;
  transform: translateX(0px);
}
.flow:nth-of-type(2) dd:last-of-type {
  width: 274px;
}
.flow:nth-of-type(3) dd:last-of-type {
  width: 100%;
}
.flow:nth-of-type(4) dd:last-of-type {
  width: 156px;
}
.flow:nth-of-type(5) dd:last-of-type {
  width: 70px;
}
.flow:nth-of-type(6) dd:last-of-type {
  width: 74px;
}
.flow:nth-of-type(7) dd:last-of-type {
  width: 150px;
}

.flowContainer .btn {
  /* width: 100%;
  max-width: initial;
  height: auto;
  margin: 0;
  padding: 10px 0;
  background: #FFF116; */
  font-size: 20px;
  /* font-weight: 700;
  color: var(--primaryColor);
  border-radius: 0; */
}

.flowContainer .btn a {
  font-size: 20px;
}

.flowContainer .btn a::before {
  left: calc(50% + 100px);
  right: auto;
}

.flowContainer .btn a::after {
  /* background: var(--primaryColor); */
  left: calc(50% + 109px);
  /* right: auto; */
}







#meetingContainer {
  /* width: 100%; */
  padding: 30px 0 50px;
  /* background: var(--secondaryColor);
  overflow: hidden; */
  text-align: center;
}

.meetingTitle {
  width: 84%;
  /* max-width: 1055px; */
  /* margin: 0 auto;
  position: relative; */
}

/* .meetingTitle h2 {
  text-align: center;
} */

.meetingTitle img:first-of-type {
  width: 98px;
  position: static;
  /* top: -10px;
  right: calc(50% + 240px); */
  margin: 30px 5px 0 0;
}
.meetingTitle img:nth-of-type(2) {
  width: 96px;
  position: static;
  /* top: -10px;
  left: calc(50% + 240px); */
  margin: 0 0 0 5px;
}

.meetingContents {
  /* width: 84%;
  max-width: 443px; */
  margin: 20px auto 0;
  /* display: flex;
  justify-content: space-between; */
  /* gap: 15px 2%;
  flex-wrap: wrap; */
}

.meetingContents dl {
  /* flex: 0 1 48%; */
  padding: 40px 10px 20px;
  border: 3px solid var(--primaryColor);
  /* box-sizing: border-box;
  background: #fff;
  text-align: center; */
  border-radius: 40px;
  /* font-weight: 600;
  color: var(--primaryColor); */
}

.meetingContents dt {
  font-size: 26px;
  /* line-height: 1.2; */
}

.meetingContents dd {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.5;
}

#meetingContainer .btn {
  margin-top: 50px;
  background: #FFF116;
}

#meetingContainer .btn a::before {
  background: var(--secondaryColor);
}

#meetingContainer .btn a::after {
  background: #fff;
}









/* アクセス */
#accessContainer {
  /* width: 84%; */
  /* max-width: 1055px; */
  margin: 40px auto 0;
}

/* #accessContainer h2 {
  text-align: center;
  font-weight: bolder;
  letter-spacing: 2px;
  color: var(--fontColor2);
} */

#accessContainer iframe {
  /* width: 100%; */
  height: 380px;
  margin-top: 16px;
}

.accessText {
  font-size: 14px;
}

/* .accessText dt {
  margin-top: 20px;
} */


}