body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #f6f6f8;
  color: #2d333c;
  font-size: 16px;
}

a {
  color: #da4666;
}
a .material-symbols-outlined {
  font-size: 16px;
}

a:hover,
button:hover {
  opacity: 0.65;
  transition: all 0.25s ease-in-out;
}

p {
  line-height: 2;
}

@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}
header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
  border-bottom: 1px dotted #2d333c;
  margin: 0;
  padding: 8px;
}

@media screen and (max-width: 768px) {
  header {
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 8px 16px;
  }
}
.headerLogo {
  gap: 24px;
  font-size: 32px;
  font-weight: 900;
  border-right: 1px dotted #2d333c;
  padding-right: 40px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.headerLogo img {
  width: 120px;
}
.headerLogo a {
  color: #2d333c;
}

@media screen and (max-width: 768px) {
  .headerLogo {
    font-size: 20px;
    border-right: none;
    padding-right: 0;
  }
}
nav ul {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: bold;
}
nav ul a {
  position: relative;
  color: #2d333c;
}
nav ul a.active {
  border-bottom: 2px solid #ffffff;
}

@media screen and (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
  }
}
a .material-symbols-outlined.contactIcon {
  font-size: 18px;
  padding: 0 8px;
}

main {
  width: calc(100% - 32px);
  max-width: 1000px;
  margin: 16px auto 0;
}

footer {
  width: 100%;
  background-color: #d81b60;
  color: #ffffff;
  margin-top: 80px;
  padding: 16px 16px 24px;
}

.footerText {
  max-width: 1000px;
  text-align: center;
  font-size: 12px;
  margin: 0 auto;
}

.mainImage {
  text-align: center;
}
.mainImage img {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .mainImage img {
    width: 100%;
  }
}
.leadTitle01 {
  width: 100%;
  position: relative;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #2d333c;
  margin: 80px auto 24px;
  padding-bottom: 8px;
}

.leadTitle02 {
  border-left: 4px solid #2d333c;
  font-size: 18px;
  font-weight: 500;
  margin-top: 24px;
  margin-bottom: 16px;
  padding: 8px 0 8px 16px;
}

.leadTitle03 {
  position: relative;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 24px;
  padding-bottom: 16px;
}
.leadTitle03::after {
  content: "";
  display: block;
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: #2d333c;
  border-radius: 2px;
  bottom: 0;
  left: calc(50% - 40px);
}

.leadTitle04 {
  font-weight: bold;
  margin-bottom: 8px;
}

.textBox01 {
  line-height: 2;
  margin-bottom: 24px;
}

.textBox02 {
  line-height: 2;
  font-size: 14px;
  margin-bottom: 24px;
}

.textBox03 {
  text-align: center;
  line-height: 2;
  margin-bottom: 24px;
}

.iconImg img {
  width: 100%;
}

.aboutList {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.aboutList .list01 {
  flex: 1;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .aboutList {
    flex-direction: column;
    gap: 24px;
  }
}
.textSub01 {
  line-height: 1.6;
  font-size: 12px;
  margin-bottom: 4px;
}

input {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  border: 1px solid #2d333c;
  background: #ffffff;
  border-radius: 4px;
  font-size: 16px;
  padding: 8px;
}
input::-moz-placeholder {
  color: #b6b6b6;
}
input::placeholder {
  color: #b6b6b6;
}

input[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

input[type=checkbox]:disabled + label[for] {
  color: #b6b6b6;
  cursor: text;
}

input:disabled {
  background: #f6f6f8;
  color: #b6b6b6;
  border-color: #f6f6f8;
}

textarea {
  border: 1px solid #2d333c;
  background: #ffffff;
  border-radius: 4px;
  font-size: 12px;
  padding: 8px;
}

select {
  background: #ffffff;
  border: 1px solid #2d333c;
  border-radius: 4px;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  font-size: 14px;
  cursor: pointer;
  margin: 2px 0;
  padding: 4px;
}

.list01 {
  list-style-type: disc;
  line-height: 1.8;
  margin-left: 2em;
  margin-bottom: 40px;
}
.list01 li {
  margin-bottom: 8px;
}

.list02 {
  list-style-type: disc;
  line-height: 1.8;
  font-size: 14px;
  margin-left: 2em;
}
.list02 li {
  margin-bottom: 8px;
}

.list03 {
  display: flex;
  font-weight: bold;
  gap: 16px;
  background-color: #ffffff;
  font-size: 20px;
  margin-bottom: 20px;
  padding: 8px 16px;
}
.list03 span {
  font-size: 26px;
}

.dlList01 {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 4px;
  margin-bottom: 32px;
}
.dlList01 dt {
  background-color: #ffffff;
  line-height: 1.6;
  font-size: 14px;
  padding: 8px;
}
.dlList01 dd {
  background-color: #ffffff;
  padding: 8px 16px;
  line-height: 1.6;
  font-size: 14px;
}

.dlList02 {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4px;
  margin-bottom: 32px;
}
.dlList02 dt {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  font-size: 14px;
  padding: 8px;
}
.dlList02 dd {
  background-color: #ffffff;
  padding: 8px 16px;
  line-height: 1.6;
  font-size: 14px;
}
.dlList02 dd span {
  font-weight: bold;
  font-size: 18px;
}

.inputMenu {
  display: inline-block;
  width: 100px;
  text-align: center;
  background-color: #2d333c;
  color: #ffffff;
  font-size: 14px;
  padding: 8px 4px;
}

.mainButton01 {
  width: 300px;
  height: 56px;
  margin: 0 auto;
}

.mainButton02 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0 auto 40px;
}
.mainButton02 li {
  width: 250px;
}
.mainButton02 li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 25px;
  background-color: #da4666;
  color: #ffffff;
  font-size: 18px;
  padding-right: 12px;
}
.mainButton02 li a::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 4px);
  right: 16px;
  background: #ffffff;
  width: 12px;
  height: 10.3923048454px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.mainButton02 li span {
  margin-left: 8px;
}

@media screen and (max-width: 768px) {
  .mainButton02 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .mainButton02 li {
    max-width: 500px;
    width: 100%;
  }
  .mainButton02 li a {
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
  }
}
.buttonType01 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #2d333c;
  border-radius: 8px;
  color: #ffffff;
}

.buttonType02 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 2px solid #2d333c;
  border-radius: 8px;
  color: #2d333c;
}

.buttonType03 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  color: rgba(0, 0, 0, 0.3);
  cursor: none;
  pointer-events: none;
}

.topToolList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.topToolList li {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.35);
}
.topToolList img {
  width: 100%;
  border-bottom: 1px solid #2d333c;
}
.topToolList .toolListLink {
  line-height: 1.4;
  padding: 12px 12px 8px;
}
.topToolList .toolListDiscription {
  color: #2d333c;
  font-size: 14px;
  line-height: 1.4;
  padding: 0 12px 24px;
}

@media screen and (max-width: 768px) {
  .topToolList {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 8px;
  }
  .topToolList .toolListDiscription {
    font-size: 12px;
  }
}
.toolList {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;
  line-height: 1.6;
  margin-top: 24px;
  margin-bottom: 32px;
}
.toolList.top li {
  flex: 1;
  background-color: #ffffff;
  border-radius: 4px;
  padding: 12px 16px;
}
.toolList.top .toolListLink {
  font-size: 20px;
}
.toolList.top .toolListDiscription {
  font-size: 14px;
}
.toolList .toolListLink {
  position: relative;
  padding-left: 18px;
}
.toolList .toolListLink::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.6em;
  left: 0;
  height: 12px;
  aspect-ratio: 0.8660254038;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #da4666;
}
.toolList .toolListLink a .material-symbols-outlined {
  margin-left: 2px;
  font-size: 16px;
}
.toolList .toolListDiscription {
  font-size: 12px;
  padding-left: 16px;
}

.contentWrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 40px auto;
}

.contentBlock {
  background-color: #ffffff;
  line-height: 1.6;
  border-radius: 8px;
  padding: 24px 16px;
}

.smallText {
  font-size: 12px;
  margin-top: 8px;
}

.redText {
  color: #e30606;
}

.fukidashiArea {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}

.fukidashiBlock {
  display: flex;
}

.fukidashiIcon {
  text-align: center;
  font-size: 14px;
}
.fukidashiIcon .material-symbols-outlined {
  font-size: 80px;
  opacity: 0.65;
}

.fukidashiText {
  position: relative;
  background-color: #ffffff;
  line-height: 1.6;
  font-size: 14px;
  border-radius: 4px;
  flex-grow: 1;
  margin-left: 12px;
  padding: 12px;
}
.fukidashiText::after {
  content: "";
  display: block;
  position: absolute;
  top: 32px;
  left: -20px;
  border: 10px solid transparent;
  border-right: 10px solid #ffffff;
}

.inputTableWrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.inputTableWrapper .inputMenu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  border-bottom: 1px solid #f6f6f8;
}
.inputTableWrapper input[type=number] {
  width: 80px;
}

.inputTableBox {
  display: flex;
}
.inputTableBox p {
  line-height: 1.6;
}
.inputTableBox + .inputTableBox {
  border-top: 1px solid #2d333c;
}

.inputTable {
  flex: 1;
  background-color: #ffffff;
  padding: 8px;
}

@media screen and (max-width: 768px) {
  .leadTitle01 {
    font-size: 18px;
    margin-top: 40px;
  }
  .contentWrapper {
    display: flex;
    flex-wrap: wrap;
  }
  .mainButton01 {
    width: 100%;
  }
  .dlList01,
  .dlList02 {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .dlList01 dd,
  .dlList02 dd {
    margin-bottom: 8px;
    padding: 8px;
  }
  .dlList02 dd {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .fukidashiIcon {
    width: 40px;
    font-size: 10px;
    flex-shrink: 0;
  }
  .fukidashiIcon .material-symbols-outlined {
    font-size: 40px;
  }
  .fukidashiText {
    padding: 12px 8px;
  }
  .fukidashiText::after {
    top: 10px;
  }
  .toolList.top .toolListLink {
    font-size: 16px;
  }
  .toolList.top .toolListDiscription {
    font-size: 12px;
  }
  .inputTableWrapper {
    gap: 16px;
  }
  .inputTableWrapper .inputMenu {
    width: 100%;
    border-bottom: none;
  }
  .inputTableBox {
    width: 100%;
    flex-direction: column;
  }
  .inputTable {
    border: 1px solid #2d333c;
    padding: 8px 16px;
  }
}
.leadContentsWrap {
  background-color: #ffffff;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 24px;
}

.drList {
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1.6;
}

.inputItemList {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.inputItemList input[type=number] {
  width: 80px;
}

.serviceList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.serviceList li {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.35);
}
.serviceList li img {
  width: 100%;
}
.serviceList li .title {
  line-height: 1.4;
  font-size: 24px;
  font-weight: 600;
  padding: 16px;
}
.serviceList li .text {
  line-height: 1.4;
  padding: 0 16px 16px;
}

@media screen and (max-width: 768px) {
  .serviceList {
    grid-template-columns: 1fr;
  }
  .serviceList li .title {
    font-size: 20px;
    padding: 16px 16px 8px;
  }
}
.sponsorList01 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}
.sponsorList01 li {
  width: calc(50% - 24px);
}
.sponsorList01 img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sponsorList01 {
    flex-direction: column;
  }
  .sponsorList01 li {
    width: 100%;
  }
}
.sponsorList02 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}
.sponsorList02 li {
  width: calc(33% - 24px);
}
.sponsorList02 img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sponsorList02 {
    gap: 16px;
  }
  .sponsorList02 li {
    width: calc(50% - 8px);
  }
}
.imgContents {
  margin-bottom: 24px;
}
.imgContents img {
  width: 100%;
}

.linkList {
  display: flex;
  gap: 24px;
  margin: 24px 0 48px;
}

.linkList a {
  display: block;
  position: relative;
  background-color: #d81b60;
  color: #ffffff;
  font-weight: bold;
  padding: 10px 16px 10px 32px;
}

.linkList a::after {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #ffffff;
  width: 8px;
  height: 13.8564064606px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

@media screen and (max-width: 768px) {
  .linkList {
    flex-direction: column;
    gap: 16px;
  }
}/*# sourceMappingURL=style.css.map */