@charset "UTF-8";
/*----------------------------------------------------------
更新日：2025年12月12日
-------------------------------------------------------------*/
/* =共通スタイル
------------------------------------------------------------*/
@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=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
}
*:before, *:after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

/* ------------------------------------------------------------------
	ペース
-------------------------------------------------------------------*/
/* =共通スタイル
------------------------------------------------------------*/
.pc {
  display: inherit;
}

.sp {
  display: none;
}

.bold {
  font-weight: 700;
}

.base-width {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.base-width-s {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.content {
  padding: 5em 1em;
}

.bgpale {
  background-color: #f2f8fe;
}

a.txtLink:not(:hover) {
  border-bottom: 1px solid;
  color: #0e68cd;
  overflow-wrap: break-word;
  transition: 0.2s;
}

.cUnderLine {
  background: -webkit-linear-gradient(transparent 65%, #fdff53 0%);
  background: -o-linear-gradient(transparent 65%, #fdff53 0%);
  background: linear-gradient(transparent 65%, #fdff53 0%);
}

/* =フッターエリア(#footer)
------------------------------------------------------------*/
#footer {
  background-color: #F9F9F9;
  padding: 3.5em 0 0;
}
#footer .f-inner {
  padding: 0 1em;
}
#footer .footer-nav {
  font-size: 0.875em;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#footer .footer-nav .footer-column {
  flex: 1;
  min-width: 150px;
  margin-right: 1em;
  margin-bottom: 1em;
}
#footer .footer-nav .footer-column p {
  font-weight: 700;
  padding-left: 1.5em;
  position: relative;
  transition: 0.2s;
}
#footer .footer-nav .footer-column p::before {
  content: "";
  position: absolute;
  top: 46%;
  left: 0%;
  transform: translateY(-50%);
  display: block;
  width: 14px;
  height: 14px;
  background-image: url("/asset/img/common/arrow_circle_right.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#footer .footer-nav .footer-column p:hover {
  color: #0e68cd;
}
#footer .footer-nav .footer-column p + p {
  margin-top: 0.6em;
}
#footer .footer-nav .footer-column ul {
  margin-top: 1.2em;
}
#footer .footer-nav .footer-column ul li {
  margin-bottom: 0.5em;
}
#footer .footer-nav .footer-column ul li a {
  color: #07112e;
}
#footer .footer-nav .footer-column ul li a:hover {
  color: #0e68cd;
}
#footer .follow-us {
  text-align: center;
  padding: 3em 0 3.5em;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer .follow-us a:hover {
  opacity: 0.7;
}
#footer .follow-us p {
  font-size: 1.125em;
  font-weight: bold;
  font-family: 'Oswald', sans-serif;
  margin-right: 2em;
}
#footer .follow-us ul {
  display: flex;
  justify-content: center;
  gap: 1.25em;
}
#footer .follow-us ul img {
  height: 30px;
}
#footer .footer-bottom {
  font-size: 0.75em;
  color: #111111;
  padding: 3.5em 1em 4em;
  background-color: #FFF;
}
#footer .footer-bottom .logo img {
  height: 32px;
}
#footer .footer-bottom .address {
  margin: 1.5em 0 1em;
}
#footer .footer-bottom .copy {
  margin: 1.5em 0 1em;
  transition: 0.2s;
}
#footer .footer-bottom .copy a {
  border-bottom: 1px solid #DDD;
}
#footer .footer-bottom .copy a:hover {
  border-bottom: none;
}
#footer .footer-bottom .copy p + p {
  margin-top: 1em;
}
#footer #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%);
}
#footer #page-top.active {
  bottom: 40px;
  transform: translateY(0);
}

/* ------------------------------------------------------------------
	PC 
-------------------------------------------------------------------*/
@media screen and (max-width: 1000px) {
  /* =共通スタイル
  ------------------------------------------------------------*/
  .sp {
    display: inherit;
  }

  .pc {
    display: none;
  }

  .base-width {
    padding: 0 1.8em;
  }

  .base-width-s {
    padding: 0 1.8em;
  }

  .content {
    padding: 3em 0 4em;
  }

  /* =フッターエリア(#footer)
  ------------------------------------------------------------*/
  #footer {
    padding: 2.5em 0 0;
  }
  #footer .f-inner {
    padding: 0;
  }
  #footer .footer-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  #footer .footer-nav .footer-column {
    min-width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }
  #footer .footer-nav .footer-column p {
    margin: 0 0 1em;
  }
  #footer .footer-nav .footer-column p::before {
    width: 1em;
    height: 1em;
  }
  #footer .footer-nav .footer-column ul {
    display: none;
  }
  #footer .follow-us {
    padding: 1.5em 0 2.5em;
    flex-direction: column;
  }
  #footer .follow-us p {
    margin: 0 0 0.5em;
  }
  #footer .follow-us ul {
    gap: 1.5em;
  }
  #footer .follow-us ul img {
    height: 2em;
  }
  #footer .footer-bottom {
    padding: 3.5em 0 4em;
  }
  #footer .footer-bottom .logo img {
    height: 2.5em;
  }
  #footer #page-top {
    right: 1em;
  }
  #footer #page-top.active {
    bottom: 1em;
  }
  #footer #page-top a img {
    width: 3.75em;
  }
}
/* ------------------------------------------------------------------
	スマホ
-------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  /* =共通スタイル
  ------------------------------------------------------------*/
  body {
    font-size: 3.87vw;
  }

  a {
    transition: 0s;
  }

  .sp {
    display: inherit;
  }

  .pc {
    display: none;
  }
}
