:root {
  --ff_main: "Noto Sans JP", "Helvetica Neue", "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, sans-serif;
  --ff_sub: "Noto Serif JP", serif;
  --c_black: #000000;
  --c_white: #ffffff;
  --c_gray: #f2f2f2;
  --c_red: #e60012;
  --fz_xs: 12px;
  --fz_sm: 14px;
  --fz_md: 16px;
  --fz_lg: 18px;
  --fz_xl: 20px;
  --lh_xs: 1.25;
  --lh_sm: 1.5;
  --lh_md: 1.75;
  --lh_lg: 2;
  --fw_r: 400;
  --fw_b: 900;
}
@media screen and (max-width: 768px) {
  :root {
    --fz_xs: 10px;
    --fz_sm: 12px;
    --fz_md: 14px;
    --fz_lg: 16px;
    --fz_xl: 18px;
    --lh_xs: 1.2;
    --lh_sm: 1.4;
    --lh_md: 1.6;
    --lh_lg: 1.8;
  }
}

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  font-family: var(--ff_main);
  font-feature-settings: "palt";
}

header {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  background: var(--c_white);
}
header .inner {
  width: 90%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding: 50px 0;
}
@media screen and (max-width: 1024px) {
  header .inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5% 10px;
    position: relative;
    z-index: 2;
    background: var(--c_white);
  }
}
header .inner .logo_box {
  width: 200px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50px;
  z-index: 2;
  translate: 0 -50%;
}
@media screen and (max-width: 1024px) {
  header .inner .logo_box {
    width: 150px;
    position: static;
    translate: 0 0;
  }
}
header .inner .logo_box img {
  width: 100%;
  height: auto;
}
header .inner nav {
  width: 100%;
  height: auto;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 1024px) {
  header .inner nav {
    position: fixed;
    z-index: 1;
    top: 0px;
    left: 0;
    translate: 0 -100%;
    padding: 0 0 20px;
    transition: all 0.3s ease-in-out;
    background: var(--c_white);
    opacity: 0;
    visibility: hidden;
  }
  header .inner nav.is_active {
    top: 78px;
    translate: 0 0;
    opacity: 1;
    visibility: visible;
  }
}
header .inner nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 1024px) {
  header .inner nav ul {
    width: 100%;
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
@media screen and (max-width: 1024px) {
  header .inner nav ul li {
    width: 100%;
    text-align: center;
  }
}
header .inner nav ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  header .inner nav ul li a {
    padding: 20px 0;
    width: 100%;
  }
}
header .inner nav ul li a.current {
  color: var(--c_red);
}
header .inner nav ul li a p {
  font-size: var(--fz_md);
  font-weight: 700;
}
header .inner .hamburger {
  display: none;
}
@media screen and (max-width: 1024px) {
  header .inner .hamburger {
    display: flex;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 1024px) and (hover) {
  header .inner .hamburger:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 1024px) {
  header .inner .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--c_black);
    transition: all 0.3s ease-in-out;
  }
  header .inner .hamburger span:nth-child(1) {
    top: 0;
  }
  header .inner .hamburger span:nth-child(2) {
    top: 50%;
    translate: 0 -50%;
  }
  header .inner .hamburger span:nth-child(3) {
    bottom: 0;
  }
  header .inner .hamburger.is_active span:nth-child(1) {
    top: 50%;
    translate: 0 -50%;
    rotate: 45deg;
  }
  header .inner .hamburger.is_active span:nth-child(2) {
    opacity: 0;
  }
  header .inner .hamburger.is_active span:nth-child(3) {
    bottom: 50%;
    translate: 0 50%;
    rotate: -45deg;
  }
}
header .sp_nav_bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  header .sp_nav_bg.is_active {
    opacity: 1;
    visibility: visible;
  }
}

main {
  width: 100%;
  height: auto;
  margin: 180px auto 0;
}
@media screen and (max-width: 1024px) {
  main {
    margin: 80px auto 0;
  }
}

footer {
  width: 100%;
  height: auto;
  border-top: 1px solid var(--c_red);
  padding: 30px 0 15px;
  position: relative;
}
footer .to_top {
  width: 60px;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  right: 5%;
  z-index: 2;
  translate: 0 -50%;
  transition: opacity 0.4s;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  footer .to_top {
    right: 3%;
    width: 40px;
  }
}
footer .to_top a {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: var(--c_red);
  border-radius: 50%;
}
footer .to_top a::before {
  content: "";
  width: 15px;
  height: auto;
  aspect-ratio: 1/1;
  border-top: 2px solid var(--c_white);
  border-right: 2px solid var(--c_white);
  position: absolute;
  top: 55%;
  left: 50%;
  translate: -50% -50%;
  rotate: -45deg;
}
@media screen and (max-width: 768px) {
  footer .to_top a::before {
    width: 10px;
    border-top: 1px solid var(--c_white);
    border-right: 1px solid var(--c_white);
  }
}
footer .inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}
footer .inner .address_box {
  width: 100%;
  height: auto;
}
footer .inner .address_box dl {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  footer .inner .address_box dl {
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  footer .inner .address_box dl {
    flex-direction: column;
    align-items: center;
  }
}
footer .inner .address_box dl dt {
  width: 14.5%;
  height: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-right: 2px solid var(--c_red);
  padding-right: 20px;
}
@media screen and (max-width: 1200px) {
  footer .inner .address_box dl dt {
    width: auto;
  }
}
@media screen and (max-width: 600px) {
  footer .inner .address_box dl dt {
    width: 100%;
    justify-content: center;
    border-right: none;
    padding-right: 0;
  }
}
footer .inner .address_box dl dt h3 {
  color: var(--c_red);
  font-size: var(--fz_xl);
  font-weight: 500;
}
footer .inner .address_box dl dd {
  width: 85.5%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 20px;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 1200px) {
  footer .inner .address_box dl dd {
    width: auto;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 15px;
  }
}
@media screen and (max-width: 600px) {
  footer .inner .address_box dl dd {
    width: 100%;
    align-items: center;
    margin: 20px auto 0;
    padding-left: 0;
  }
}
footer .inner .address_box dl dd .company p {
  font-size: var(--fz_md);
}
footer .inner .address_box dl dd .contact {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
footer .inner .address_box dl dd .contact .tel,
footer .inner .address_box dl dd .contact .mail {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
footer .inner .address_box dl dd .contact .tel h4,
footer .inner .address_box dl dd .contact .mail h4 {
  font-size: var(--fz_sm);
  color: var(--c_red);
  font-weight: 500;
  border: 1px solid var(--c_red);
  padding: 2px 5px;
}
footer .inner .address_box dl dd .contact .tel a,
footer .inner .address_box dl dd .contact .mail a {
  transition: all 0.3s;
}
@media (hover) {
  footer .inner .address_box dl dd .contact .tel a:hover,
  footer .inner .address_box dl dd .contact .mail a:hover {
    opacity: 0.6;
  }
}
footer .inner .address_box dl dd .contact .tel a p,
footer .inner .address_box dl dd .contact .mail a p {
  font-size: var(--fz_md);
}
footer .inner .address_box dl dd .top a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s;
}
@media (hover) {
  footer .inner .address_box dl dd .top a:hover {
    opacity: 0.6;
  }
}
footer .inner .address_box dl dd .top a::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--c_red);
}
footer .inner .address_box dl dd .top a p {
  font-size: var(--fz_md);
  color: var(--c_red);
  font-weight: 500;
}
footer .inner .copy_box {
  width: 100%;
  height: auto;
  margin: 30px auto 0;
  display: grid;
  place-items: center;
}
footer .inner .copy_box small {
  font-size: var(--fz_sm);
  color: var(--c_red);
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.tab {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tab {
    display: block;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}
/*# sourceMappingURL=common.css.map */
