@font-face {
  font-family: 'NotoSansJP';
  font-weight: 400;
  font-display: swap;
  src: local('NotoSansJP'),
       url(../font/NotoSansJP-Regular.woff2) format('woff2'),
       url(../font/NotoSansJP-Regular.woff) format('woff');
}
@font-face {
  font-family: 'NotoSansJP';
  font-weight: 700;
  font-display: swap;
  src: local('NotoSansJP'),
       url(../font/NotoSansJP-Bold.woff2) format('woff2'),
       url(../font/NotoSansJP-Bold.woff) format('woff');
}
:root {
  --c-blue: #16329B;
  --c-blue2: #2baae2;
  --c-blue3: #d9ebf4;
  --gradient-blue: linear-gradient(-90deg,rgba(22, 50, 155, 1) 0%, rgba(43, 170, 226, 1) 100%);
}
body {
  color: #000;
  font-size: 1.6rem;
  font-family: 'NotoSansJP','Hiragino Kaku Gothic ProN','Hiragino Sans',Meiryo,sans-serif;
  font-weight: 400;
  line-height: 2;
  min-width: 320px;
  max-width: 1920px;
  overflow-x: hidden;
  margin: auto;
}
.section {
  padding-top: 95px;
  padding-bottom: 95px;
}
.column ~ .column {
  margin-top: 60px;
}
.body {
  max-width: calc(100% - 30px);
  width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width:768px) {
  html { font-size:9px }
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .column ~ .column {
    margin-top: 40px;
  }
}
@media (max-width:320px) {
  html { font-size:8.5px }
}
@media print {
  body { width:1200px }
}

a.link {
  color: var(--c-blue);
}
a.link img {
  transition: .2s;
}
a.link:hover {
  text-decoration: underline;
}
a.link:hover img {
  opacity: .8;
}

.scroll-sw {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: .2s;
}
.js-scroll .scroll-sw:not(.default),
body:not(.js-scroll) .scroll-sw.default {
  height: auto;
  opacity: 1;
}

@media (min-width:1181px) {
  .header-sp {
    display: none !important;
  }
}
@media (max-width:1180px) {
  .header-pc {
    display: none !important;
  }
}

.scroll-hint-icon-wrap {
  margin-top: 0 !important;
}

/* ****************************************************************************************************
   * header
**************************************************************************************************** */

.sp-text {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  line-height: 1.2;
  padding: 5px;
}

#header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  color: #fff;
  transition: .2s;
}
.js-scroll #header {
  color: #000;
  background: #fff;
  box-shadow: 0 0 3px rgba(0,0,0,.2);
}

#header .body {
  width: 1500px;
}

#header .header {
  display: flex;
  justify-content: space-between;
  padding: .75em 0;
}
#header .header .text {
  font-size: 1.4rem;
  line-height: 1.2;
}
#header .header .sub {
  display: flex;
  gap: 1em;
  justify-content: flex-end;
}
#header .header .sub .tel {
  width: 290px;
  font-size: 1.4rem;
  text-align: right;
}
#header .header .sub .tel dt {
  display: inline-block;
  vertical-align: middle;
  width: 6em;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  padding: .5em 0;
  border: 1px solid;
}
#header .header .sub .tel dd {
  display: inline-block;
  vertical-align: middle;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-top: -4px;
  padding-left: .4em;
}
#header .header .sub .tel dd img {
  vertical-align: middle;
  margin-top: -4px;
}
#header .header .sub .tel dd .js-tel {
  display: inline-block;
  vertical-align: top;
  padding-left: .4em;
}

#header .contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: .5em;
}
#header .contents .logo {
  width: 450px;
}

#global-nav {
  max-width: 920px;
  width: calc(100% - 450px);
}
#global-nav .sf-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2em;
}
#global-nav .sf-menu > li {
}
#global-nav .sf-menu > li > a {
  position: relative;
  display: block;
  font-weight: 700;
}
@media (min-width:1181px) {
  #global-nav .sf-menu > li > a:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    display: block;
    width: 0;
    height: 1px;
    background: #fff;
    transition: .2s;
  }
  #global-nav .sf-menu > li.current > a:after,
  #global-nav .sf-menu > li > a:hover:after {
    left: 0;
    width: 100%;
  }
  .js-scroll #global-nav .sf-menu > li > a:after {
    background: #000;
  }
}
#global-nav .sf-menu > li.contact {
  
}
#global-nav .sf-menu > li.contact .btn-1 {
  width: 200px;
  height: 50px;
  display: flex;
  background: var(--c-blue);
}
#global-nav .sf-menu > li.contact .btn-1:after {
  content: none;
}

@media (max-width:1380px) {
  #header .header .text {
    font-size: 1.3rem;
  }
}
@media (max-width:1420px) {
  #header .header .sub .tel {
    width: 270px;
  }
  #header .header .sub .tel dd {
    font-size: 2.2rem;
  }
  #header .contents .logo {
    width: 350px;
  }
  #global-nav {
    width: calc(100% - 350px);
  }
  #global-nav .sf-menu > li.contact .btn-1 {
    width: 150px;
  }
}

@media (min-width:1181px) {
  #header {
    position: fixed;
  }
}

@media (max-width:1180px) {
  #wrapper {
    position: relative;
    left: 0;
    transition: .2s;
  }
  .nav-active #wrapper {
    left: -290px;
  }
  #global-nav {
    position: fixed;
    top: 0;
    right: -290px;
    width: 290px;
    display: block;
    min-height: 100%;
    overflow-y: auto;
    color: #000;
    background: #fff;
    transition: .2s right;
  }
  .nav-active #global-nav {
    right: 0;
  }
  #global-nav .sf-menu {
    display: block;
  }
  #global-nav .sf-menu > li {
  }
  #global-nav .sf-menu > li > a {
    padding: 1em;
    border-bottom: 1px solid #f2f2f2;
  }
  #header {
    height: 50px;
    background: #fff;
  }
  #header .body {
    max-width: calc(100% - 15px);
  }
  #header .contents {
    padding-bottom: 0;
  }
  #header .contents .logo {
    width: calc(100% - 50px);
  }
  #header .contents .logo img {
    max-height: 30px;
    margin-top: 10px;
  }
  #header .contents .logo .scroll-sw {
    display: none;
    opacity: 1;
    height: auto;
  }
  #header .contents .logo .scroll-sw:not(.default) {
    display: block;
  }
  #global-nav .sf-menu > li.contact .btn-1 {
    width: 100%;
    height: auto;
  }
}

.page-lower #visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 430px;
  padding-top: 100px;
}
.page-lower #visual .title-1 {
  color: #fff;
  margin-bottom: 0;
}
.page-lower #visual .title-1:before {
  margin-bottom: .25em;
}
@media (max-width:1180px) {
  .page-lower #visual {
    padding-top: 0;
  }
}
@media (max-width:768px) {
  .page-lower #visual {
    height: 300px;
  }
}
@media (max-width:540px) {
  .page-lower #visual {
    height: 200px;
  }
}

/* ****************************************************************************************************
   * main
**************************************************************************************************** */

@media (max-width:768px) {
  #main .page-nav {
    padding-bottom: 0 !important;
  }
}
#main .page-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}
#main .page-nav ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  color: var(--c-blue);
  padding: 1em;
  border: 1px solid var(--c-blue);
  transition: .2s;
}
#main .page-nav ul li a:after {
  content: none;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--c-blue);
  border-right: 1px solid var(--c-blue);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 1em;
  margin-top: -5px;
  transition: .2s;
}
#main .page-nav ul li a.current:after,
#main .page-nav ul li a:hover:after {
  right: .8em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
#main .page-nav ul li a.current,
#main .page-nav ul li a:hover {
  color: #fff;
  background: var(--c-blue);
}
@media (max-width:540px) {
  #main .page-nav ul {
    gap: 0;
  }
  #main .page-nav ul li {
    width: 49%;
  }
  #main .page-nav ul li:nth-child(2n+2) {
    margin-left: 2%;
  }
  #main .page-nav ul li:nth-child(n+3) {
    margin-top: 2%;
  }
  #main .page-nav ul li a {
    width: 100%;
    height: auto;
    padding: .25em .5em;
  }
}

/* ****************************************************************************************************
   * footer
**************************************************************************************************** */

#footer .contact {
  color: #fff;
  background: url("../images/common/contact-bg.jpg") center center /cover no-repeat;
}
#footer .contact .title-1 {
  color: #fff;
  text-align: center;
}
#footer .contact .title-1:before {
  margin-bottom: .2em;
}
#footer .contact .flex-col-3 {
  
}
#footer .contact .tel {
  display: flex;
  align-items: center;
}
#footer .contact .tel dt {
  width: 6em;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  color: var(--c-blue);
  padding: .6em 0;
  background: #fff;
  margin-right: .5em;
}
#footer .contact .tel dd {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
}
#footer .contact .tel dd img {
  vertical-align: middle;
  margin-top: -4px;
  margin-right: .2em;
}
#footer .contact .btn-2 img {
  vertical-align: middle;
  margin-right: .4em;
}
@media (max-width:1180px) {
  #footer .contact .flex-col-3 {
    gap: 2em;
    justify-content: center;
  }
  #footer .contact .btn {
    width: 100%;
  }
  #footer .contact .btn .btn-2 {
    margin: 0 auto;
  }
}

#footer .footer {
  padding: 50px 0;
}
#footer .footer .company {
  
}
#footer .footer .company .logo {
  max-width: 100%;
  width: 400px;
  margin-bottom: 1em;
}
#footer .footer .company address ~ address {
  margin-top: 1em;
}
#footer .footer .nav {
  max-width: 520px;
  width: calc(100% - 449px);
}
#footer .footer .nav ul {
  
}
#footer .footer .nav ul > li {
  
}
#footer .footer .nav ul > li ~ li {
  margin-top: 1em;
}
#footer .footer .nav ul > li > a {
  position: relative;
  display: block;
  padding: .25em 0;
  padding-left: 1.4em;
}
#footer .footer .nav ul > li > a:hover {
  color: var(--c-blue);
}
#footer .footer .nav ul > li > a:before {
  content: '';
  position: absolute;
  top: .8em;
  left: 0;
  display: block;
  width: 1em;
  height: 1em;
  background: var(--c-blue);
}
@media (max-width:1024px) {
  #footer .footer .flex {
    display: block;
  }
  #footer .footer .company {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
  }
  #footer .footer .nav {
    max-width: 450px;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
  }
  #footer .footer .nav ul {
    width: 100%;
  }
  #footer .footer .nav ul > li ~ li {
    margin-top: 0;
  }
  #footer .footer .nav ul > li > a {
    padding-top: .75em;
    padding-bottom: .75em;
    border-bottom: 1px solid #ccc;
  }
  #footer .footer .nav ul > li > a:before {
    top: 1.3em;
  }
  #sitemap-trigger {
    position: relative;
    max-width: 450px;
    width: 100%;
    display: block !important;
    font-weight: 500;
    text-align: center;
    color: #fff;
    padding: .75em;
    background: var(--c-blue);
    margin: 1em auto 0;
  }
  #sitemap-trigger:after {
    content: '＋';
    display: block;
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
  }
  #sitemap-trigger.active:after {
    content: '―';
  }
  #sitemap-trigger + .nav {
    display: none;
  }
}
@media (max-width:768px) {
  #footer .footer .nav {
    padding-top: 0;
  }
}
#footer .copyright {
  text-align: center;
  line-height: 1.5;
  padding: .75em 0;
  background: #dbdbdb;
}

@media (max-width:768px) {
  #pagetop {
    transition: .2s;
  }
  .nav-active #pagetop {
    right: calc( 3.125% + 290px);
  }
  #sp-footer-nav {
    position: webkit-sticky;
    position: sticky;
    left: 0;
    bottom: 0;
    z-index: 9998;
    width: 100%;
  }
  #sp-footer-nav ul {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  #sp-footer-nav ul li {
  }
  #sp-footer-nav ul li a {
    display: block;
    text-align: center;
  }
  #sp-footer-nav ul li a img {
    max-height: 60px;
  }
}
