@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url(./_settings.css);

/* ================================================================================

  "Web Business" PC Common Style

================================================================================ */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}
.l-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.inner {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}
section { position: relative; }

.link-btn {
  border: none;
  outline: none;
  width: 320px;
  height: 60px;
  text-align: center;
  background: linear-gradient(to bottom,  rgba(238,119,0,0.25) 0%,rgba(238,119,0,1) 100%);
  border-radius: 15px;
  border: solid 1px var(--orange);
  margin: auto;
  display: block;
  transition: all .3s;
  cursor: pointer;
}
.link-btn a {
  font-size: 20px;
  font-size: 2.0rem;
  letter-spacing: .05em;
  color: var(--wht);
  text-decoration: none;
}
.link-btn:hover { background: linear-gradient(to bottom,  rgba(238,119,0,1) 0%,rgba(238,119,0,0.5) 100%);}

.sp { display: none; }

@media screen and (max-width:640px) {
  .link-btn { height: 55px; }
  .link-btn a {
    font-size: 18px;
    font-size: 1.8rem;
    border-radius: 5px;
  }
  .pc { display: none; }
  .sp { display: inherit; }
}

@media screen and (max-width:480px) {
  .link-btn { height: 50px; }
  .link-btn a {
    font-size: 16px;
    font-size: 1.6rem;
    border-radius: 2.5px;
  }
}

/*
  Header
================================================================================ */
.l-header {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 80px;
  background: rgba(var(--blk-rgb), 0);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header h1 {
  font-size: 20px;
  font-size: 2.0rem;
  color: var(--wht);
}
.l-header h1 img { width: 180px; }

@media screen and (max-width:640px) {
  .l-header {
    height: 60px;
    padding: 0 15px;
  }
  .l-header h1 img { width: 140px; }
}

@media screen and (max-width:480px) {
  .l-header h1 img { width: calc(140 / 480 * 100vw); }
}

/* Menu Toggle Button
-------------------------------------------------------------------------------- */
.toggle-btn {
  position: relative;
  padding: 10px;
}
.toggle-btn.is-scrolled { background: rgba(var(--d-blue-rgb), 1); }
.toggle-btn button {
  position: relative;
  background: none;
  border: none;
  outline: none;
  width: 36px;
  height: 22px;
  display: flex;
  transition: all .3s;
  cursor: pointer;
}
.toggle-btn button span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--wht);
  display: inline-block;
  transition: all .3s;
}
.toggle-btn button span:first-of-type { top: 0; }
.toggle-btn button span:nth-of-type(2) { top: 10px; }
.toggle-btn button span:last-of-type { bottom: 0; }
.toggle-btn.is-opened button span:first-of-type { transform: translateY(10px) rotate(-45deg); }
.toggle-btn.is-opened button span:nth-of-type(2) {
  visibility: hidden;
  opacity: 0;
}
.toggle-btn.is-opened button span:last-of-type { transform: translateY(-10px) rotate(45deg); }

@media screen and (max-width:640px) {
  .toggle-btn {
    transform: scale(.85);
    transform-origin: 100% 50%;
  }
}

/* Menu Toggle
-------------------------------------------------------------------------------- */
.toggle-menu {
  position: fixed;
  z-index: 9;
  top: 0;
  right: 0;
  transform: translateX(300px);
  width: 300px;
  height: 100vh;
  background-color: var(--d-blue);
  transition: all .3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.toggle-menu.is-visible { transform: translateX(0); }
.toggle-menu ul { width: 100%; }
.toggle-menu ul li {
  font-size: 20px;
  font-size: 2.0rem;
  color: var(--wht);
  margin: 0 0 1.5em;
  padding: 0 2em;
}
.toggle-menu ul li a {
  position: relative;
  width: 100%;
  display: inline-block;
  text-decoration: none;
  color: var(--wht);
  transition: all .3s;
}
.toggle-menu ul li a:hover { opacity: .7; }
.toggle-menu ul li a:hover::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
}

/*
  Page Common
================================================================================ */
.contents-area {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  grid-area: 1 / 1;
}
.page-catch {
  font-size: 48px;
  font-size: 4.8rem;
  letter-spacing: .05em;
  color: var(--wht);
  line-height: 1.4;
}

@media screen and (max-width:840px) {
  .page-catch {
    font-size: 38px;
    font-size: 3.8rem;
  }
}

@media screen and (max-width:640px) {
  .page-catch { font-size: calc(38 / 640 * 100vw); }
}

/*
  Footer
================================================================================ */
.l-footer {
  position: relative;
  z-index: 1;
  background-color: var(--d-blue);
  height: 20vh;
  padding: 15px 0 0;
  display: grid;
  place-content: center;
  text-align: center;
}
.l-footer h2 {
  width: 160px;
  margin: 0 auto 30px;
}
.l-footer ul {
  display: flex;
  align-items: center;
}
.l-footer ul li {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .05em;
  color: var(--wht);
}
.l-footer ul li:not(:last-of-type)::after {
  content: '/';
  padding: 0 .75em;
}
.l-footer ul li a {
  color: var(--wht);
  text-decoration: none;
  transition: all .3s;
}
.l-footer ul li a:hover { opacity: .7; }
.copy {
  font-size: 13px;
  font-size: 1.3rem;
  color: var(--wht);
  margin: 30px 0 0;
}

@media screen and (max-width:640px) {
  .l-footer { padding: 0; }
  .l-footer h2 {
    width: calc(120 / 640 * 100vw);
    margin: 0 auto 20px;
  }
  .l-footer ul li {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .copy {
    font-size: 11px;
    font-size: 1.1rem;
    margin: 20px 0 0;
  }
}

/*
  Main
================================================================================ */
.l-main { position: relative; }