@charset "UTF-8";
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-in--6 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.6;
  }
}
@keyframes fade-out--6 {
  0% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
  }
}
@keyframes toTop {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
html {
  width: 100%;
  font-family: "Helvetica Neue", "Helvetica", "Arial", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  html {
    font-size: 3vw;
  }
}

html, body, div, p, ul, li, ol, h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

ul, li {
  list-style: none;
}

a {
  text-decoration: none;
}

header, nav, main, footer, section {
  display: block;
}

img {
  width: 100%;
}
img.obs {
  width: 1px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.sp-dispB {
  display: none !important;
}

.sp-dispIB {
  display: none !important;
}

.sp-dispI {
  display: none !important;
}

.pc-dispB {
  display: block !important;
}

.pc-dispIB {
  display: inline-block !important;
}

.pc-dispI {
  display: inline !important;
}

.pc-dispF {
  display: flex !important;
}

@media screen and (max-width: 767px) {
  .sp-dispB {
    display: block !important;
  }
  .sp-dispIB {
    display: inline-block !important;
  }
  .sp-dispI {
    display: inline !important;
  }
  .pc-dispB {
    display: none !important;
  }
  .pc-dispIB {
    display: none !important;
  }
  .pc-dispI {
    display: none !important;
  }
  .pc-dispF {
    display: none !important;
  }
}
.text-bold {
  font-weight: bold;
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-size--14 {
  font-size: 0.875rem !important;
}
.text-size--20 {
  font-size: 1.25rem !important;
}
.text-size--24 {
  font-size: 1.5rem !important;
}
.text-size--28 {
  font-size: 1.75rem !important;
}
.text-size--30 {
  font-size: 1.875rem !important;
}
.text-color--orange {
  color: #fea500;
}
.text-color--green {
  color: #4acd03;
}
.text-color--red {
  color: #dc0000;
}

.bg-gray {
  background: #f4f4f4;
}

.relative {
  position: relative;
}

.g-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 0.3em 1.5em;
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 1000;
  height: 105px;
}
.g-header-logo {
  max-width: 200px;
  width: 20%;
  height: auto;
  z-index: 999;
}
@media screen and (max-width: 1100px) {
  .g-header {
    flex-direction: column;
    align-items: center;
    height: 132px;
  }
  .g-header-logo {
    margin-bottom: 0.5rem;
    max-width: 15%;
  }
}
@media screen and (max-width: 767px) {
  .g-header {
    flex-direction: row;
    align-items: center;
    height: 67px;
  }
  .g-header-logo {
    margin-bottom: 0;
    max-width: 45%;
  }
}
.g-header-nav {
  display: flex;
  align-items: start;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .g-header-nav {
    display: none;
    overflow-y: auto;
    position: fixed;
    transform: translate(100%, 0);
    top: 0;
    left: 0;
    background: #fff;
    bottom: 0;
    width: 100%;
    transition: all 0.5s;
    padding: 2em;
    z-index: 99999;
    box-sizing: border-box;
  }
  .g-header-nav.show {
    transform: translate(0, 0);
  }
}
.g-header-nav__def-link {
  position: relative;
}
@media screen and (max-width: 767px) {
  .g-header-nav__def-link {
    border-bottom: 1px solid #bbbaba;
    text-align: left;
    padding: 0.5em 0;
  }
}
.g-header-nav__def-link > a, .g-header-nav__contact-link > a, .g-header-nav__def-link > p {
  display: block;
  color: #323232;
  padding: 1em;
  font-weight: bold;
  line-height: 1em;
  text-align: center;
  font-size: clamp(10px, 1.1428571429vw, 1rem);
}
@media screen and (max-width: 1100px) {
  .g-header-nav__def-link > a, .g-header-nav__contact-link > a, .g-header-nav__def-link > p {
    font-size: clamp(10px, 1.3333333333vw, 1rem);
  }
}
@media screen and (max-width: 767px) {
  .g-header-nav__def-link > a, .g-header-nav__contact-link > a, .g-header-nav__def-link > p {
    font-size: 1.3rem;
    text-align: left;
    padding: 0.8em 1em;
  }
}
.g-header-nav .has-sub-name {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .g-header-nav .has-sub-name {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row-reverse;
  }
}
.g-header-nav .has-sub-name > span {
  display: block;
}
.g-header-nav__contact-link > a {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .g-header-nav__contact-link > a {
    text-align: center;
  }
}
.g-header-nav__contact-link {
  background: #fea500;
  border-radius: 50px;
  min-width: 8em;
}
@media screen and (max-width: 767px) {
  .g-header-nav__contact-link {
    margin-top: 1rem;
  }
}
.g-header-nav--has-child {
  position: relative;
}
@media screen and (max-width: 767px) {
  .g-header-nav--has-child::before, .g-header-nav--has-child::after {
    content: "";
    position: absolute;
    right: 1.5em;
    top: calc(0.8em + 7px);
    width: 1px;
    height: 18px;
    background: #000;
  }
  .g-header-nav--has-child::after {
    transform: rotate(90deg);
  }
}
.g-header-nav__child-nav {
  position: absolute;
  white-space: nowrap;
  left: 1em;
  top: 3em;
  display: none;
}
.g-header-nav__child-nav > li {
  position: relative;
  border-bottom: 1px solid #fff;
  background: #000;
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .g-header-nav__child-nav > li {
    background: none;
    opacity: 1;
    border-bottom: 1px solid #bbbaba;
  }
}
.g-header-nav__child-nav > li::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  margin-top: -5px;
}
.g-header-nav__child-nav > li.noline {
  border-bottom: 0;
}
.g-header-nav__child-nav > li:hover {
  opacity: 1;
}
.g-header-nav__child-nav.show {
  display: block;
  animation: fade-in 0.4s ease-in 0s forwards;
}
.g-header-nav__child-nav.hide {
  animation: fade-out 0.4s ease-in 0s forwards;
}
.g-header-nav__child-nav a {
  color: #fff;
  padding: 1em 2em 1em;
  display: block;
  box-sizing: border-box;
  font-size: clamp(10px, 1.1428571429vw, 1rem);
}
@media screen and (max-width: 1100px) {
  .g-header-nav__child-nav a {
    font-size: clamp(10px, 1.3333333333vw, 1rem);
  }
}
@media screen and (max-width: 767px) {
  .g-header-nav__child-nav a {
    font-size: 1rem;
    color: #323232;
  }
}
@media screen and (max-width: 767px) {
  .g-header-nav__child-nav {
    position: relative;
    left: 0;
    top: auto;
  }
}
.g-header-nav-link-sub-name {
  position: absolute;
  top: -1em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.875em;
}
@media screen and (max-width: 767px) {
  .g-header-nav-link-sub-name {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-left: 2em;
  }
}

.g-header-hmg-btn {
  content: "";
  position: fixed;
  top: 13.5px;
  bottom: auto;
  left: auto;
  right: 0.7rem;
  width: 40px;
  height: 40px;
  margin: auto;
  background: #fea500;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  text-decoration: none;
  z-index: 999999;
  display: none;
}
@media screen and (max-width: 767px) {
  .g-header-hmg-btn {
    display: block;
  }
}
.g-header-hmg-btn__hans {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 24px;
  height: 3px;
  background-color: #fff;
  animation: fadeIn 0.3s;
  border-radius: 2px;
}
.g-header-hmg-btn__hans--sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.g-header-hmg-btn__hans:before, .g-header-hmg-btn__hans:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  content: "";
}
.g-header-hmg-btn__hans:before {
  top: -8px;
  border-radius: 2px;
  animation: position-up 0.3s, fadeIn 0.3s;
}
.g-header-hmg-btn__hans:after {
  top: 8px;
  border-radius: 2px;
  animation: position-down 0.3s, fadeIn 0.3s;
}
.g-header-hmg-btn[aria-expanded=true] .g-header-hmg-btn__hans {
  background-color: transparent;
}
.g-header-hmg-btn[aria-expanded=true] .g-header-hmg-btn__hans:before,
.g-header-hmg-btn[aria-expanded=true] .g-header-hmg-btn__hans:after {
  top: 0;
  background-color: #fff;
  animation: fadeIn 0.3s;
}
.g-header-hmg-btn[aria-expanded=true] .g-header-hmg-btn__hans:after {
  transform: rotate(-45deg);
  animation: rotate-right 0.3s, fadeIn 0.3s;
}
.g-header-hmg-btn[aria-expanded=true] .g-header-hmg-btn__hans:before {
  transform: rotate(45deg);
  animation: rotate-left 0.3s, fadeIn 0.3s;
}
@keyframes position-up {
  0% {
    top: 0;
  }
  100% {
    top: -8px;
  }
}
@keyframes position-down {
  0% {
    top: 0;
  }
  100% {
    top: 8px;
  }
}
@keyframes rotate-right {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
@keyframes rotate-left {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-45deg);
  }
}

.max-wrap {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1099px) {
  .max-wrap--has-padding {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.title-main {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}
.title-main > span {
  font-size: 2.25rem;
  display: block;
}
.title-main > span::first-letter {
  color: #fea500;
}
.title-main::after {
  content: "";
  height: 2px;
  width: 30px;
  background: #fea500;
  position: absolute;
  bottom: -1em;
  left: 50%;
  transform: translateX(-50%);
}
.title-left-line {
  font-size: 1.5rem;
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 1.5em;
}
.title-left-line::before {
  content: "";
  height: 3px;
  width: 1em;
  background: #fea500;
  position: absolute;
  top: 50%;
  left: 0;
}

.page-header {
  background: #999;
  color: #fff;
  text-align: center;
  min-height: 5rem;
  animation: fade-in 1s ease-in;
}
.page-header__title {
  font-size: 1rem;
  font-weight: normal;
  padding: 10em 0;
  animation: toTop 0.5s ease-in forwards;
  animation-delay: 0.8s;
  opacity: 0;
}
.page-header__title > span {
  font-size: 2.25rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .page-header__title {
    padding: 7.5em 0;
  }
}

.btn {
  padding: 0.5em 1em;
  border: 1px solid #c0c0c0;
  background: #f5f5f5;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.btn--margin-1 {
  margin-top: 1em;
  margin-bottom: 1em;
}

.btn--blue {
  background: #314086;
  border: 1px solid #344f87;
  color: #fff;
}
.btn--blue:hover {
  background: #5b85e2;
}

.btn--orange {
  background: #fea500;
  border: 1px solid #fea500;
  color: #fff;
}
.btn--orange:hover {
  background: #e39f0d;
}

#content {
  padding-top: 105px;
}
@media screen and (max-width: 1100px) {
  #content {
    padding-top: 132px;
  }
}
@media screen and (max-width: 767px) {
  #content {
    padding-top: 67px;
  }
}

.footer-wrap {
  background: #fea500;
  padding: 2rem 1rem;
}
.footer-copy {
  color: #fff;
  text-align: center;
}

#page-top {
  background: #fea500;
  width: 60px;
  height: 60px;
  color: #fff;
  border-radius: 100px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.7rem;
  position: fixed;
  right: 10px;
  bottom: 100px;
  border: none;
  z-index: 999;
  opacity: 0;
}
#page-top.hide {
  pointer-events: none;
  animation: pageTopBtnHide 1s forwards;
}
#page-top.show {
  animation: pageTopBtnShow 1s forwards;
}

@keyframes pageTopBtnHide {
  0% {
    bottom: 100px;
    opacity: 1;
  }
  100% {
    bottom: -200px;
  }
}
@keyframes pageTopBtnShow {
  0% {
    bottom: -200px;
  }
  100% {
    bottom: 100px;
    opacity: 1;
  }
}

/*# sourceMappingURL=common.css.map */
