@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: #032e83;
}
body {
  color: #333;
  font-size: 1.5rem;
  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: 80px;
  padding-bottom: 80px;
}
.column ~ .column {
  margin-top: 80px;
}
.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: 60px;
  }
}
@media (max-width:540px) {
  .column ~ .column {
    margin-top: 50px;
  }
}
@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 img {
  opacity: .8;
}

@media (max-width:1180px) {
  #wrapper {
    position: relative;
    left: 0;
    transition: .2s;
  }
  .nav-active #wrapper {
    left: -290px;
  }
}

.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;
  }
}

#wrapper {
  background: #f2f2f2;
}

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

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

#header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  color: #fff;
  padding-bottom: 10px;
  transition: .2s;
}
.js-scroll #header {
  color: #000;
  background: #fff;
  box-shadow: 0 0 3px rgba(0,0,0,.2);
}
@media (max-width:1180px) {
  #header {
    color: #000;
    background: #fff;
  }
}
#header > div {
  max-width: 1615px;
  width: 100%;
  align-items: flex-start;
  padding-left: 15px;
  margin: 0 auto;
}
#header .contents {
  width: calc(100% - 150px);
  padding-right: 40px;
}
#header .btn {
  width: 150px;
}
#header .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  color: #fff;
  background: #000;
  border-radius: 0 0 40px 40px;
}
@media (max-width:1600px) {
  #header .btn a {
    border-radius: 0 0 0 40px;
  }
}
#header .text {
  font-size: 1.2rem;
  line-height: 1.3;
  padding: .5em 0;
}
#header .logo {
  font-size: 2rem;
  font-weight: 700;
}
#header .logo a {
  display: flex;
  align-items: center;
}
#header .logo a > div {
  margin-right: 1em;
}
#header .logo img {
  max-height: 86px;
}
#header .tel {
  width: fit-content;
  font-size: 1.6rem;
  font-family: Helvetica, 'sans-serif';
  font-weight: 700;
  margin-left: auto;
}
#header .tel .number {
  font-size: 1.5em;
}
@media (max-width:1300px) {
  #header .logo img {
    max-height: 70px;
  }
  #header .logo {
    font-size: 1.8rem;
  }
}
@media (max-width:1180px) {
  #header .tel {
    width: 100%;
    text-align: center;
    margin: 1em 0;
  }
  #header .contents {
    width: 100%;
  }
}
@media (max-width:768px) {
  #header .logo a > div {
    margin-right: .5em;
  }
}

#global-nav {
  display: flex;
  flex-wrap: wrap;
  width: 750px;
  margin-top: -10px;
}
#global-nav .tel {
  order: -1;
}
#global-nav .sf-menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#global-nav .sf-menu a {
  display: block;
}
#global-nav .sf-menu > li {
  position: relative;
  white-space: nowrap;
}
#global-nav .sf-menu > li > a:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: 0;
  height: 1px;
  background: #fff;
  transition: .2s;
}
.js-scroll #global-nav .sf-menu > li > a:after {
  background: #000;
}
#global-nav .sf-menu > li.current > a:after,
#global-nav .sf-menu > li:hover > a:after {
  left: 0;
  width: 100%;
}
@media (max-width:1180px) {
  #global-nav .sf-menu > li > a:after {
    width: 0 !important;
    height: 100%;
    left: 0 !important;
    background: var(--c-blue);
  }
  #global-nav .sf-menu > li.current > a,
  #global-nav .sf-menu > li:hover > a {
    color: var(--c-blue);
  }
  #global-nav .sf-menu > li.current > a:after,
  #global-nav .sf-menu > li:hover > a:after {
    width: 5px !important;
  }
}
#global-nav .sf-menu > li > a {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
}
#global-nav .sf-menu > li > ul {
  position: absolute;
  left: 0;
  min-width: 100%;
  color: #333;
  border: 1px solid #ccc;
}
#global-nav .sf-menu > li > ul li ~ li {
  border-top: 1px solid #ccc;
}
#global-nav .sf-menu > li > ul li a {
  padding: .5em;
  background: #fff;
}
#global-nav .sf-menu > li > ul li a:hover {
  background: #f2f2f2;
}

@media (max-width:1400px) {
  #global-nav {
    max-width: 750px;
    width: calc(100% - 380px - 20px);
  }
  #header .contents {
    padding-right: 20px;
  }
}
@media (max-width:1280px) {
  #header .logo {
    width: 355px;
    font-size: 1.8rem;
  }
  #header .logo img {
  }
  #header .contents {
    padding-right: 15px;
  }
  #global-nav {
    width: calc(100% - 355px - 15px);
  }
}
@media (max-width:1180px) {
  #header {
    height: 50px;
    padding-bottom: 0;
  }
  #header > div {
    padding-left: 5px;
  }
  #header .logo img {
    height: 45px;
    margin-top: 2px;
  }
  #global-nav {
    max-width: initial;
    display: block;
    margin-top: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    right: -290px;
    width: 290px !important;
    overflow-y: auto;
    transition: .2s right;
  }
  .nav-active #global-nav {
    right: 0;
  }
  #global-nav .sf-menu {
    width: 100%;
    display: block;
  }
  #global-nav .sf-menu > li {
    border-bottom: 1px solid #ccc;
  }
  #global-nav .sf-menu > li:has(ul):after {
    content: '＋';
    display: block;
    position: absolute;
    top: 1em;
    right: .5em;
  }
  #global-nav .sf-menu > li.active:has(ul):after {
    content: '―';
  }
  #global-nav .sf-menu > li > a {
    padding: 1em;
  }
  #global-nav .sf-menu > li.parent > a {
    width: calc(100% - 50px);
  }
  #global-nav .sf-menu > li ul {
    position: static;
    border: none;
  }
  #global-nav .sf-menu > li ul li a {
    padding: 1em;
  }
  #global-nav .sf-menu > li ul li {
    border-top: 1px dotted #ccc !important;
  }
}

@media (min-width:1181px) {
  .page-lower #header {
    position: fixed;
  }
}
.page-lower #visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  background-color: var(--c-blue) !important;
}
.page-lower #visual .body {
  width: 1360px;
}
.page-lower #visual .title-1 {
  color: #fff;
  padding-left: 1em;
  border-left: 1px solid;
  margin-bottom: 0;
}
.page-lower #visual .title-1:before {
  font-size: 3em;
  color: inherit;
}
@media (max-width:1180px) {
  .page-lower #visual {
    height: 300px;
  }
  .page-lower #visual .title-1 {
    font-size: 2rem;
  }
}
@media (max-width:768px) {
  .page-lower #visual {
    height: 200px;
  }
  .page-lower #visual .title-1 {
    font-size: 1.6rem;
  }
  .page-lower #visual .title-1:before {
    font-size: 2.5em;
  }
}

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

#main {
  font-size: 1.6rem;
  background: #f2f2f2;
}

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

#footer {
  background: #f2f2f2;
}
#footer .contact {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 30px);
  width: 1360px;
  color: #fff;
  padding: 80px 0;
  background: var(--c-blue);
  border-radius: 0 160px 0 0;
  margin: 0 auto -200px;
}
#footer .contact .title-1,
#footer .contact .title-1:before {
  color: #fff;
}
#footer .contact .tel-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}
#footer .contact .tel-mail .tel {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Helvetica',sans-serif;
  line-height: 1;
}
#footer .contact .tel-mail .tel .js-tel {
  font-size: 1.5em;
}
#footer .contact .tel-mail .mail {
}
@media (max-width:860px) {
  #footer .contact {
    border-radius: 0 80px 0 0;
  }
  #footer .contact .tel-mail {
    width: fit-content;
    display: block;
    text-align: center;
    margin: 2em auto 0;
  }
  #footer .contact .tel-mail .mail {
    margin-top: 1.5em;
  }
}
@media (max-width:768px) {
  #footer .contact {
    margin-bottom: 0;
  }
  #footer .contact .tel-mail {
    width: 100%;
  }
  #footer .contact .tel-mail .tel {
    font-size: 2.5rem;
  }
}

#footer .nav {
  padding-top: 260px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, rgba(196,196,196,1) 0%, rgba(255,255,255,1) 100%); 
}
#footer .nav a:hover {
  color: var(--c-blue);
}
#footer .nav > .body > ul > li ~ li {
  margin-top: 1em;
}
#footer .nav > .body > ul > li > a {
  position: relative;
  display: block;
  padding-left: 1.4em;
}
#footer .nav > .body > ul > li > a:before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--c-blue);
  border-right: 2px solid var(--c-blue);
  transform: rotate(45deg);
  position: absolute;
  top: .85em;
  left: 0;
}
#footer .nav > .body > ul > li > ul li a {
  position: relative;
  display: block;
  padding: .25em 0;
  padding-left: 2.4em;
}
#footer .nav > .body > ul > li > ul li a:before {
  content: '';
  position: absolute;
  top: 1.1em;
  left: 1.5em;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #333;
}
@media (max-width:1180px) {
  #footer .nav {
    padding: 250px 0 50px;
  }
}
@media (max-width:768px) {
  #sitemap-trigger {
    position: relative;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 1em;
    background: var(--c-blue);
    margin-top: 2em;
  }
  #sitemap-trigger:after {
    content: '＋';
    display: block;
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
  }
  #sitemap-trigger.active:after {
    content: '―';
  }
  #footer .nav {
    display: none;
    background: #eee;
    padding: .5em 0;
  }
  #footer .nav > .body {
    display: block;
  }
  #footer .nav > .body > ul > li > a {
    padding-top: 1em;
    padding-bottom: 1em;
  }
  #footer .nav > .body > ul > li > a:before {
    top: 1.7em;
  }
  #footer .nav > .body > ul > li ~ li {
    margin-top: 0;
  }
}

#footer .footer {
  color: #fff;
  padding-top: 45px;
  background: #000;
}
#footer .footer .flex {
  align-items: center;
  justify-content: center;
  gap: 3em;
}
#footer .footer .logo {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
}
#footer .footer .logo img {
  height: 86px;
  margin-right: 1em;
}
@media (max-width:768px) {
  #footer .footer .flex {
    gap: 2em;
  }
  #footer .footer .logo a {
    display: block;
    font-size: 1.8rem;
    text-align: center;
  }
  #footer .footer .logo img {
    display: block;
    height: 86px;
    margin: 0 auto 10px;
  }
  #footer .footer address {
    text-align: center;
  }
}

#footer .copyright {
  font-size: 1.4rem;
  color: #999;
  text-align: center;
  padding: 1em 0;
  margin-top: 1em;
}

@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;
  }
}
