@charset "utf-8";
/* ****************************************************************************

 CSS base設定
 - fonts
 - base
 - footer 
 - syoukai footer 

 - Media Query
   - SPのみ　max-width: 767px
   - PCのみ　min-width: 768px, print

****************************************************************************** */


/* -----------------------------------------------------
 fonts
-------------------------------------------------------- */
@font-face {
  font-family: Noto Sans JP;
  font-weight: 100;
  src: url("../font/NotoSansJP-Thin.woff") format('woff'), url("../font/NotoSansJP-Thin.otf") format('opentype');
  font-display: swap;
}
@font-face {
  font-family: Noto Sans JP;
  font-weight: 300;
  src: url("../font/NotoSansJP-Light.woff") format('woff'), url("../font/NotoSansJP-Light.otf") format('opentype');
  font-display: swap;
}
@font-face {
  font-family: Noto Sans JP;
  src: url("../font/NotoSansJP-Regular.woff") format('woff'), url("../font/NotoSansJP-Regular.otf") format('opentype');
  font-display: swap;
}
@font-face {
  font-family: Noto Sans JP;
  font-weight: 500;
  src: url("../font/NotoSansJP-Medium.woff") format('woff'), url("../font/NotoSansJP-Medium.otf") format('opentype');
  font-display: swap;
}
@font-face {
  font-family: Noto Sans JP;
  font-weight: 700;
  src: url("../font/NotoSansJP-Bold.woff") format('woff'), url("../font/NotoSansJP-Bold.otf") format('opentype');
  font-display: swap;
}
@font-face {
  font-family: Noto Sans JP;
  font-weight: 900;
  src: url("../font/NotoSansJP-Black.woff") format('woff'), url("../font/NotoSansJP-Black.otf") format('opentype');
  font-display: swap;
}


/* -----------------------------------------------------
 base
-------------------------------------------------------- */
html {
  font-size: 62.5%; 
}
body {
  line-height: 1.6;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN","HiraKakuProN-W3", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.2rem;
  font-size: 3.733vw;/* 14px(375px BreakPoint) */
  color: #000;
}
html, body, h1, h2, h3, h4, h5, h6, p, figure, dl, dt, dd, ul, ol, li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul, ol, li {
  list-style: none;
}
em {
  font-style: normal;
}
header, footer, main, nav, article, aside, section {
  display: block;
  box-sizing: border-box;
}
a {
  outline: none;
  text-decoration: none;
  transition: opacity .3s ease;
  color: #005FAE;
}
img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  border: none;
}
select, input {
  padding: .1em;
  font-size: 100%;
  color: #000;
}
input[type="checkbox"] {
  margin: 0;
  padding: 0;
  background: none;
  border-radius: 0;
  outline: none;
  border: solid 1px #eee;
  width: 1em;
  height: 1em;
  margin-right: .5em;
  vertical-align: middle;
}
select {
  outline: none;
  border: solid 1px #eee;
}
input[type="date"],
textarea, button {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN","HiraKakuProN-W3", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="date"],
textarea {
  box-sizing: border-box;
  -webkit-appearance: none;
  background-color: #fff;
  border-radius: .3em;
  border: solid 1px #C4C4C4;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
textarea {
  width: 100%;
}
button,
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  padding: 1em;
  box-sizing: border-box;
  background-color: #002B8E;
  border-radius: .3em;
  text-align: center;
  line-height: 1;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN","HiraKakuProN-W3", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 100%;
  font-weight: bold;
  color: #fff;
  transition: all .3s ease;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}
::placeholder {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN","HiraKakuProN-W3", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  color: #6E6E6E;
}
@media screen and (max-width: 767px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="tel"],
  input[type="url"],
  input[type="date"],
  textarea {
    padding: .846em 1em;
  }
  button,
  input[type="submit"],
  input[type="button"] {
    padding: 1.072em 1em;
  }
}
@media screen and (min-width: 768px), print {
  body {
    min-width: 1000px;
    font-size: 1.4rem;
  }
  a {
    transition: all .3s ease;
  }
  a:hover {
    opacity: .6;
  }
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="tel"],
  input[type="url"],
  input[type="date"],
  textarea,
  button,
  input[type="submit"],
  input[type="button"] {
    padding: .539em 1em;
  }
}

/* -----------------------------------------------------
 footer 
-------------------------------------------------------- */
.n4946-footer {
  border-top: solid 1px #ddd;
  line-height: 1.6;
  text-align: left;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN","HiraKakuProN-W3", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.n4946-footer-inner {
  margin: auto;
}
.n4946-footer-nav-01 a {
  display: block;
  box-sizing: border-box;
  text-align: center;
  color: #005FAE;
}
.n4946-footer-ttl-02 {
  display: block;
  color: #333;
}
.n4946-footer-nav-02 a {
  color: #6E6E6E;
}
.n4946-footer-grid {
  display: flex;
  align-items: flex-start;
}
.n4946-footer-logo img {
  display: inline-block;
  margin: auto;
  vertical-align:middle;
}
.n4946-footer-copyright {
  text-align: center;
  color: #333;
  vertical-align:middle;
  margin-left: 15px;
  
}
@media screen and (max-width: 767px) {
  .n4946-footer {
    padding-bottom: 4em;
    font-size: 3.733vw;
  }
  .n4946-footer-inner {
    width: 86.67%;
  }
  .n4946-footer-nav-01 li {
    border-bottom: solid 1px #ddd;
  }
  .n4946-footer-nav-01 li a {
    padding: 1.393em 0;
  }
  .n4946-footer-nav-02 {
    padding: 2.5em 0;
  }
  .n4946-footer-grid + .n4946-footer-ttl-02 {
    margin-top: 1em;
  }
  .n4946-footer-ttl-02 {
    margin-bottom: 1.5em;
  }
  .n4946-footer-grid {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .n4946-footer-item {
    width: 50%;
    margin-bottom: 1.5em;
  }
  .n4946-footer-item::before {
    content: "|";
    display: inline-block;
    margin-right: .5em;
    color: #ddd;
  }
  .n4946-footer-item a {
    font-size: 92.9%;
  }
  .n4946-footer-logo {
    margin-bottom: 1.75em;
    text-align: center;
  }
  .n4946-footer-logo img {
    width: 14.45vw;
    height: 3.04vw;
  }
  .n4946-footer-copyright {
    font-size: 76.6%;
  }
}
@media screen and (min-width: 768px), print {
  .n4946-footer {
    padding: 60px 0 70px;
    font-size: 14px;
  }
  .n4946-footer-inner {
    max-width: 1150px;
    width: 90%;
  }
  .n4946-footer-pc-inner {
    max-width: 1150px;
    width: 90%;
    margin: 0 auto 90px;
  }
  .n4946-footer-pc-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .n4946-footer-nav-01 li {
    width: calc(100%/5 - 1px);
    border-right: solid 1px #ddd;
  }
  .n4946-footer-nav-01 li:first-child {
    border-left: solid 1px #ddd;
  }
  .n4946-footer-nav-01 li a {
    padding: 18px 5px;
    font-size: 15px;
  }
  .n4946-footer-nav-02 {
    padding: 0 0 82px;
  }
  .n4946-footer-grid + .n4946-footer-ttl-02 {
    margin-top: 60px;
  }
  .n4946-footer-ttl-02 {
    margin-bottom: 10px;
  }
  .n4946-footer-grid {
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .n4946-footer-item {
    padding: 0 14px;
  }
  .n4946-footer-item:first-child {
    padding-left: 0;
  }
  .n4946-footer-item:not(:first-child)::before {
    content: "|";
    display: inline-block;
    margin-right: 21px;
    color: #ddd;
  }
  .n4946-footer-item a {
    font-size: 13px;
  }
  .n4946-footer-logo {
    margin-bottom: 15px;
    text-align: center;
  }
  .n4946-footer-logo img {
    width: 74px;
    height: auto;
  }
  .n4946-footer-copyright {
    font-size: 14px;
  }
}




/* -----------------------------------------------------
 syoukai footer 
-------------------------------------------------------- */
.n4946-syoukai-menu {
  background-color: #E9EFF4;
}
.n4946-syoukai-menu-inner {
  margin: auto;
}
.n4946-syoukai-menu-ttl,
.n4946-syoukai-menu-col-ttl {
  display: block;
  margin-bottom: 1.25em;
  text-align: center;
}
.n4946-syoukai-menu-ttl {
  margin-bottom: 2em;
}
.n4946-syoukai-menu-col {
  box-sizing: border-box;
  background-color: #fff;
  border: solid 1px #ddd;
}
.n4946-syoukai-menu-col p {
  line-height: 1.4;
}
.n4946-syoukai-menu-btn a {
  display: block;
  padding: 1em;
  margin: auto;
  background-color: #002B8E;
  box-sizing: border-box;
  border-radius: .3em;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.n4946-syoukai-menu-btn.is-disabled a {
  background-color: #C4C4C4;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .n4946-syoukai-menu {
    padding: 12vw 0;
  }
  .n4946-syoukai-menu-inner {
    width: 86.67%;
  }
  .n4946-syoukai-menu-ttl {
    font-size: 4.8vw;
  }
  .n4946-syoukai-menu-col {
    padding: 6vw 12vw 8vw;
  }
  .n4946-syoukai-menu-col:not(:last-of-type) {
    margin-bottom: 8vw;
  }
  .n4946-syoukai-menu-col-ttl {
    font-size: 4.8vw;
  }
  .n4946-syoukai-menu-col p {
    margin-bottom: 1.5em;
    font-size: 4.27vw;
  }
  .n4946-syoukai-menu-btn a {
    font-size: 3.73vw;
  }
}
@media screen and (min-width: 768px), print {
  .n4946-syoukai-menu {
    padding: 60px 0;
  }
  .n4946-syoukai-menu-inner {
    max-width: 520px;
    width: 90%;
  }
  .n4946-syoukai-menu-ttl {
    font-size: 22px;
  }
  .n4946-syoukai-menu-flx {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
  .n4946-syoukai-menu-col {
    width: 48.9%;
    max-width: 250px;
    padding: 30px;

  }
  .n4946-syoukai-menu-col-ttl {
    font-size: 18px;
  }
  .n4946-syoukai-menu-col p {
    min-height: 88px;
    margin-bottom: 1em;
    font-size: 16px;
  }
  .n4946-syoukai-menu-btn a {
    font-size: 14px;
  }
}



