@charset "utf-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  line-break: strict;
  font-family: "Yu Gothic";
  margin: 0;
  overflow-x: hidden;
}

main {
  position: relative;
  z-index: 0;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  padding: 0;
  margin: 0;
  color: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

fieldset {
  min-inline-size: inherit;
  border: none;
  padding: 0;
  margin: 0;
}

label,
input {
  cursor: pointer;
}

input {
  padding: 0;
  margin: 0;
}

figure,
dl,
dt {
  margin: 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

ul,
ol,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
    table-layout: auto;
    height: auto;
    border-spacing: 0;
}

tr, th, td {
    font-weight: normal;
    height: auto;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

summary {
  display: block;
}

summary::marker {
  display: none;
}

summary::-webkit-details-marker {
  display: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

.pc2 {
  display: block;
}

.sp2 {
  display: none;
}

@media screen and (max-width: 1024px) {
  .pc2 {
    display: none;
  }

  .sp2 {
    display: block;
  }
}