@charset "UTF-8";

.btn,
.drawer-content a,
.footer__text,
.footer__link,
.footer__copy {
  font-family: "Noto Sans JP", noto-sans-cjk-jp, sans-serif;
}

/* reset */

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  color: #444;
  line-height: 1.9;
  font-weight: 400;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "YuGothic", "游ゴシック", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
  /* safari hover対策 */
  -webkit-font-smoothing: antialiased;
  transition-duration: 0.5s;
}

/* reset end */

/* common setting */

img {
  max-width: 100%;
}

a {
  transition-duration: 0.8s;
}

:root {
  --site_width: 1280px;
  --site_color: #fc8038;
}

/* common setting end */

/* common design */

.btn_wrap {
  width: 100%;
  text-align: center;
  margin: 30px 0;
}

.btn {
  display: flex;
  align-items: center;
  max-width: 270px;
  padding: 15px 15px;
  border: 3px solid #e2680d;
  color: #e2680d;
  text-decoration: none;
  border-radius: 20px;
  position: relative;
  justify-content: center;
  font-weight: 500;
  font-size: 1.125rem;
}

.btn:hover::after {
  transform: translate(0.5rem, 0);
}

.btn::after {
  content: "";
  width: 13px;
  height: 22px;
  background: url("../svg/arrow-right.svg") no-repeat center/cover;
  transition: 350ms ease;
  position: absolute;
  right: 1rem;
}

/* common design end */

/* header */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.header__inner {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
}

header #logo {
  width: 150px;
  z-index: 10;
}

.drawer-hidden {
  display: none;
}

.drawer-open {
  position: relative;
  display: grid;
  place-items: center;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  z-index: 100;
  cursor: pointer;
  border: 1px solid var(--site_color);
}

.drawer {
  margin: 0 0 0 auto;
}

.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: var(--site_color);
  transition: 0.5s;
  position: absolute;
}

.drawer-open span:before {
  bottom: 8px;
}

.drawer-open span:after {
  top: 8px;
}

#drawer-check:checked ~ .drawer-open {
  background: var(--site_color);
  border: 1px;
}

#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
  background: #fff;
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
  background: #fff;
}

.drawer-content {
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 99;
  background: var(--site_color);
  transition: 0.5s;
  transform: scale(0, 1);
  transform-origin: top right;
}

.drawer-content li {
  list-style: none;
  padding: 10px 20px;
  border-bottom: 1px solid white;
}

.drawer-content a {
  color: #fff;
  text-decoration: none;
  display: block;
}

#drawer-check:checked ~ .drawer-content {
  transform: scale(1);
}

/* header end */

.footer {
  padding: 50px 0 0;
  position: relative;
}

.footer::before {
  content: "";
  width: 100%;
  height: 50px;
  position: absolute;
  top: 0;
  background: #e2680d;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(2rem, 1fr) minmax(auto, 1280px) minmax(2rem, 1fr);
}

.footer__inner > * {
  grid-column: 2;
}

.footer__head {
  display: flex;
  margin: 1rem 0 0;
}

.footer__heading {
  margin: 0;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: #444;
  text-align: left;
}

.footer__logo {
  width: 90px;
}

.footer__group {
  margin: 0 0 0 1rem;
}

.footer__text {
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.footer__text:nth-of-type(1) {
  margin: 1rem 0 0;
}

.footer__body {
  margin: 1rem 0 0;
}

.footer__link {
  text-decoration: none;
  color: #242424;
  font-size: 0.875rem;
  font-weight: 500;
}

/* btt */

#btt_wrap {
  width: 100vw;
  max-width: 1280px;
  position: fixed;
  transform: translate(-50%, 0);
  bottom: 0;
  left: 50%;
  z-index: 10;
}

#btt {
  position: absolute;
  right: 2rem;
}

#btt a {
  position: relative;
  display: block;
  width: 60px;
  height: 80px;
  text-decoration: none;
}

/* btt end */

@media screen and (min-width: 768px) {
  .header__inner {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
  }

  .footer__inner {
    grid-template-columns: minmax(2rem, 1fr) minmax(45%, auto) minmax(45%, auto) minmax(2rem, 1fr);
    padding: 2.5rem 0 0;
  }

  .footer__head {
    margin: 0 1rem 0 0;
  }

  .footer__body {
    grid-column: 3;
  }

  .footer__foot {
    grid-column: 3;
  }
}

@media (min-width: 769px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}

@media screen and (min-width: 1280px) {
  .drawer-open {
    display: none;
  }

  .drawer-content {
    position: static;
    transform: scale(1);
    background: transparent;
    height: auto;
  }

  .drawer-content ul {
    display: flex;
  }

  .drawer-content li {
    border: none;
  }

  .drawer-content a {
    font-weight: 600;
    text-shadow: 0 0 2px #444;
  }

  .drawer-content a:hover {
    color: var(--site_color);
    text-shadow: none;
  }

  .footer__inner {
    grid-template-columns: minmax(2rem, 1fr) minmax(auto, 640px) minmax(auto, 640px) minmax(2rem, 1fr);
  }

  .footer__logo {
    margin: 0 3rem 0 0;
  }

  .footer__list {
    display: flex;
  }

  .footer__item + .footer__item {
    margin: 0 0 0 2rem;
  }

  .footer__link {
    display: block;
    transition: 350ms ease;
  }

  .footer__link:hover {
    color: #e2680d;
  }
}

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

  .sp {
    display: block;
  }
}