@charset "UTF-8";
/*----------------------------------------------------------
更新日：2025年2月11日

=共通スタイル
=ヘッダーエリア(#header)
=メインエリア基本セッティング(#main)
=フッターエリア(#footer)
=スマホ (728px以下)

-------------------------------------------------------------*/
/* =共通スタイル
------------------------------------------------------------*/
@import url("reset.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
* {
  box-sizing: border-box;
}
*:before, *:after {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-width: 375px;
  min-height: 100vh;
  background-color: #F4F4F4;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #252121;
}
body.stop {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.pc {
  display: inherit;
}

.sp {
  display: none;
}

.base-width {
  position: relative;
  max-width: 728px;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.bullet-move:hover img {
  animation: bullet-move 0.6s linear infinite;
}

@keyframes bullet-move {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translateX(0.5em);
  }
  100% {
    transform: translateX(0);
  }
}
.no-link {
  pointer-events: none;
  color: #AAA !important;
}

/* ピンポイントレイアウト調整用 */
.nowrap {
  white-space: nowrap;
}

.min-w0 {
  min-width: 0 !important;
}

.mt0, .mv0, .ma0 {
  margin-top: 0 !important;
}

.mr0, .mh0, .ma0 {
  margin-right: 0 !important;
}

.mb0, .mv0, .ma0 {
  margin-bottom: 0 !important;
}

.ml0, .mh0, .ma0 {
  margin-left: 0 !important;
}

.pt0, .pv0, .pa0 {
  padding-top: 0 !important;
}

.pr0, .ph0, .pa0 {
  padding-right: 0 !important;
}

.pb0, .pv0, .pa0 {
  padding-bottom: 0 !important;
}

.pl0, .ph0, .pa0 {
  padding-left: 0 !important;
}

.mr1em, .mh1em, .ma1em {
  margin-right: 1em !important;
}

.mb1em, .mv1em, .ma1em {
  margin-bottom: 1em !important;
}

.ml1em, .mh1em, .ma1em {
  margin-left: 1em !important;
}

.pt1em, .pv1em, .pa1em {
  padding-top: 1em !important;
}

.pr1em, .ph1em, .pa1em {
  padding-right: 1em !important;
}

.pb1em, .pv1em, .pa1em {
  padding-bottom: 1em !important;
}

.pl1em, .ph1em, .pa1em {
  padding-left: 1em !important;
}

.mt2em, .mv2em, .ma2em {
  margin-top: 2em !important;
}

.mr2em, .mh2em, .ma2em {
  margin-right: 2em !important;
}

.mb2em, .mv2em, .ma2em {
  margin-bottom: 2em !important;
}

.ml2em, .mh2em, .ma2em {
  margin-left: 2em !important;
}

.pt2em, .pv2em, .pa2em {
  padding-top: 2em !important;
}

.pr2em, .ph2em, .pa2em {
  padding-right: 2em !important;
}

.pb2em, .pv2em, .pa2em {
  padding-bottom: 2em !important;
}

.pl2em, .ph2em, .pa2em {
  padding-left: 2em !important;
}

.mt3em, .mv3em, .ma3em {
  margin-top: 3em !important;
}

.mr3em, .mh3em, .ma3em {
  margin-right: 3em !important;
}

.mb3em, .mv3em, .ma3em {
  margin-bottom: 3em !important;
}

.ml3em, .mh3em, .ma3em {
  margin-left: 3em !important;
}

.pt3em, .pv3em, .pa3em {
  padding-top: 3em !important;
}

.pr3em, .ph3em, .pa3em {
  padding-right: 3em !important;
}

.pb3em, .pv3em, .pa3em {
  padding-bottom: 3em !important;
}

.pl3em, .ph3em, .pa3em {
  padding-left: 3em !important;
}

/* =ヘッダーエリア(#header)
------------------------------------------------------------*/
#header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 0 40px;
  background: rgba(19, 29, 73, 0.85);
  min-width: 375px;
  z-index: 9999;
}
#header .h-logo {
  position: relative;
  z-index: 3;
}
#header .h-logo img {
  display: block;
  width: 210px;
}
#header .sp-menu {
  display: none;
}
#header nav ul {
  display: flex;
}
#header nav ul li:not(:first-of-type) {
  margin-left: 1.85em;
}
#header nav ul li a {
  font-size: 1.125em;
  font-weight: 600;
  color: #FFF;
}
#header .overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  transform: translateX(-100%);
}
#header .overlay.active {
  transform: translateX(0%);
}

/* =メインエリア基本セッティング(#main)
------------------------------------------------------------*/
main {
  flex-grow: 1;
}

/* =フッターエリア(#footer)
------------------------------------------------------------*/
#footer {
  padding: 40px 0;
  background-color: #101218;
  color: #FFF;
}
#footer .inner {
  width: 100%;
  max-width: 728px;
  margin: 0 auto;
}
#footer .inner .f-logo {
  width: 224px;
  margin-bottom: 30px;
}
#footer .inner nav {
  margin-bottom: 30px;
}
#footer .inner nav ul {
  display: flex;
  font-size: 0.875em;
}
#footer .inner nav ul li {
  margin-right: 1em;
  padding-right: 1em;
  border-right: 1px solid;
  line-height: 1.4;
  letter-spacing: normal;
  white-space: nowrap;
}
#footer .inner nav ul li a:hover {
  opacity: 0.6;
}
#footer .inner #copyright {
  letter-spacing: normal;
  font-size: 0.625em;
}

#contact {
  position: fixed;
  top: 50%;
  right: 0;
  box-shadow: 0 0 0.8em 0 rgba(0, 0, 0, 0.2);
  transform: translate(100%, -50%);
  z-index: 999;
  transition: 0.2s;
}
#contact img {
  width: 70px;
}
#contact.active {
  transform: translate(0%, -50%);
}

#page-top {
  position: fixed;
  right: 40px;
  bottom: 0;
  width: max-content;
  border-radius: 100%;
  box-shadow: 0 0 0.8em 0 rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: 0.2s;
  transform: translateY(100%);
}
#page-top.active {
  bottom: 40px;
  transform: translateY(0);
}

/* ------------------------------------------------------------------
	PC (960px以下)
-------------------------------------------------------------------*/
@media screen and (max-width: 960px) {
  /* =ヘッダーエリア(#header)
  ------------------------------------------------------------*/
  #header .sp-menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 3;
  }
  #header .sp-menu span, #header .sp-menu:before, #header .sp-menu:after {
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    height: 1px;
    background: #FFF;
    transition: 0.2s;
  }
  #header .sp-menu:before {
    transform: translateY(-10px);
  }
  #header .sp-menu:after {
    transform: translateY(10px);
  }
  #header .sp-menu.open span {
    display: none;
  }
  #header .sp-menu.open:before {
    transform: rotate(45deg);
  }
  #header .sp-menu.open:after {
    transform: rotate(-45deg);
  }
  #header .sp-menu.open + nav {
    transform: translateY(0%);
  }
  #header nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 1em 0;
    background: rgba(19, 29, 73, 0.85);
    transform: translateY(-150%);
    transition: 0.2s;
  }
  #header nav ul {
    display: block;
    text-align: center;
  }
  #header nav ul li {
    margin: 0 !important;
  }
  #header nav ul li a {
    display: block;
    padding: 1em 0;
  }
}
/* ------------------------------------------------------------------
	スマホ (728px以下)
-------------------------------------------------------------------*/
@media screen and (max-width: 728px) {
  /* =共通スタイル
  ------------------------------------------------------------*/
  body {
    font-size: 3.87vw;
  }

  a {
    transition: 0s;
  }

  .sp {
    display: inherit;
  }

  .pc {
    display: none;
  }

  .base-width {
    padding: 0 1.8em;
  }

  /* =ヘッダーエリア(#header)
  ------------------------------------------------------------*/
  #header {
    height: 19.4vw;
    padding: 0 1.25em 0 1.85em;
  }
  #header .h-logo img {
    width: 39.1vw;
  }
  #header .sp-menu {
    width: 2.5em;
    height: 2.5em;
  }
  #header .sp-menu span, #header .sp-menu:before, #header .sp-menu:after {
    width: 75%;
  }
  #header .sp-menu:before {
    transform: translateY(-2.5vw);
  }
  #header .sp-menu:after {
    transform: translateY(2.5vw);
  }
  #header nav {
    top: 19.4vw;
  }

  /* =フッターエリア(#footer)
  ------------------------------------------------------------*/
  #footer {
    padding: 1.8em 1.8em 22vw;
  }
  #footer .inner .f-logo {
    width: 54.4vw;
    margin-bottom: 1.8em;
  }
  #footer .inner nav {
    margin-bottom: 1.8em;
  }
  #footer .inner nav ul {
    flex-wrap: wrap;
  }
  #footer .inner nav ul li {
    margin-right: 0.8em;
    padding-right: 0.8em;
    white-space: normal;
  }
  #footer .inner nav ul li:not(:last-of-type) {
    margin-bottom: 1em;
  }

  #contact img {
    width: 4.4em;
  }

  #page-top {
    right: 1em;
  }
  #page-top.active {
    bottom: 1em;
  }
  #page-top a img {
    width: 3.75em;
  }
}
/* ------------------------------------------------------------------
	ここまで
-------------------------------------------------------------------*/
