@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@300;400;500;600&display=swap");
/*
min-font-size ($font_size, $min_font_size)
$font_size (vw):     可変フォントサイズ
$min_font_size (px): 最小フォントサイズ
*/
/*
max-font-size ($font_size, $max_font_size)
$font_size (vw):     可変フォントサイズ
$max_font_size (px): 最大フォントサイズ
*/
/* ----------------------------------------------------------------------- 

	common layout 共通レイアウト

----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- 
	settings
----------------------------------------------------------------------- */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
}

*, *:before, *:after {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25vw;
}
@media screen and (min-width: 1200px) {
  body {
    font-size: 15px;
  }
}
body {
  font-weight: 400;
  color: #000000;
  text-align: left;
  text-justify: inter-ideograph;
  -webkit-text-size-adjust: 100%;
  line-height: 1.8;
  background-color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  body {
    font-size: 3.73vw;
  }
}

.wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

div ul p {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

/*-------------------------------------------------------------------
  Header
-------------------------------------------------------------------*/
#header {
  position: fixed;
  width: 100vw;
  height: 80px;
  z-index: 9999;
  background-color: rgba(0, 70, 143, 0.9);
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  #header {
    height: 60px;
  }
}
#header.open {
  height: 100%;
}
#header .headerIn {
  width: 100%;
  margin: auto;
  padding: 15px 5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
@media screen and (max-width: 800px) {
  #header .headerIn {
    width: 100%;
    padding: 0;
    display: block;
  }
}
@media screen and (max-width: 800px) {
  #header .headerIn .hBlock {
    width: 94%;
    height: 60px;
    margin: 0 3%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-justify-content: space-between;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}
#header .headerIn .hBlock .hLogo {
  height: 50px;
}
@media screen and (max-width: 800px) {
  #header .headerIn .hBlock .hLogo {
    height: 30px;
  }
}
#header .headerIn .hBlock .hLogo a {
  width: 100%;
  height: 100%;
  display: block;
}
#header .headerIn .hBlock .hLogo img {
  height: 100%;
}
#header .headerIn .hBlock .spNavBtn {
  display: none;
}
@media screen and (max-width: 800px) {
  #header .headerIn .hBlock .spNavBtn {
    display: block;
    cursor: pointer;
    width: 28px;
    height: 100%;
    padding: 24px 0 0;
    margin: auto 0;
    overflow: hidden;
    font-size: 14px;
  }
  #header .headerIn .hBlock .spNavBtn .bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #000000;
    border-radius: 3px;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  #header .headerIn .hBlock .spNavBtn .bar + .bar {
    margin-top: 8px;
  }
  #header .headerIn .hBlock .spNavBtn.active .bar:first-child {
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
    margin-top: 4px;
  }
  #header .headerIn .hBlock .spNavBtn.active .bar:nth-child(2) {
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    margin-top: -3px;
  }
  #header .headerIn .hBlock .spNavBtn.active p {
    display: none;
  }
}
#header .headerIn #gNavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
@media screen and (max-width: 800px) {
  #header .headerIn #gNavi {
    display: none;
    width: 100%;
    height: 100%;
  }
}
#header .headerIn #gNavi #mainContentMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  font-size: 1.25vw;
}
@media screen and (min-width: 1200px) {
  #header .headerIn #gNavi #mainContentMenu {
    font-size: 15px;
  }
}
@media screen and (max-width: 800px) {
  #header .headerIn #gNavi #mainContentMenu {
    display: block;
    width: 100%;
    font-size: 4vw;
    font-weight: 500;
    border-top: 1px solid #000000;
  }
}
#header .headerIn #gNavi #mainContentMenu > li {
  padding: 15px;
}
@media screen and (max-width: 800px) {
  #header .headerIn #gNavi #mainContentMenu > li {
    border-bottom: 1px solid #EEE;
  }
}
#header .headerIn #gNavi #menuSnsList {
  display: none;
}
@media screen and (max-width: 800px) {
  #header .headerIn #gNavi #menuSnsList {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-justify-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}
#header .headerIn #gNavi #menuSnsList li {
  text-align: center;
  margin: 0 10px;
}
#header .headerIn #gNavi #menuSnsList li a {
  display: block;
}
#header .headerIn #gNavi #menuSnsList li img {
  width: 30px;
  height: auto;
}

#sideSNSListBlock {
  position: fixed;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 9999;
}
@media screen and (max-width: 800px) {
  #sideSNSListBlock {
    display: none;
  }
}
#sideSNSListBlock #sideSNSList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  width: 40px;
}
#sideSNSListBlock #sideSNSList li {
  width: 24px;
  margin: 6px 4px;
}

/*-------------------------------------------------------------------
  footer
-------------------------------------------------------------------*/
#footer {
  width: 100%;
  margin: auto;
  text-align: left;
  background-color: #074e91;
  color: #FFFFFF;
}
#footer .footerIn {
  width: 100%;
  margin: auto;
  padding: 15px 5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  font-size: 1.08vw;
}
@media screen and (max-width: 800px) {
  #footer .footerIn {
    width: 100%;
    padding: 0;
    display: block;
  }
}
#footer .footerIn .footerInfo {
  width: 50%;
  padding: 6vw 2vw 4vw;
  line-height: 1.6;
}
@media screen and (max-width: 800px) {
  #footer .footerIn .footerInfo {
    width: 100%;
    font-size: 2.8vw;
  }
}
#footer .footerIn .footerInfo .fTxtCompany {
  font-size: 1.16vw;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 800px) {
  #footer .footerIn .footerInfo .fTxtCompany {
    font-size: 3.4vw;
  }
}
#footer .footerIn #footerMenuBlock {
  width: 50%;
}
@media screen and (max-width: 800px) {
  #footer .footerIn #footerMenuBlock {
    width: 100%;
    margin-top: 7vw;
    font-size: 2.8vw;
  }
}
#footer .footerIn #footerMenuBlock #footerMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-justify-content: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
@media screen and (max-width: 800px) {
  #footer .footerIn #footerMenuBlock #footerMenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-align-items: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-justify-content: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    font-size: 2.8vw;
  }
}
#footer .footerIn #footerMenuBlock #footerMenu li {
  padding: 3px 10px;
}
#footer .fCopy {
  height: 20px;
  text-align: center;
  font-size: 0.8vw;
}
@media screen and (max-width: 800px) {
  #footer .fCopy {
    height: auto;
    font-size: 8px;
    line-height: 1.4em;
    letter-spacing: -0.005em;
    padding: 3px 0 8px;
    margin: 0 5%;
  }
}

.pageTop {
  position: fixed;
  right: 30px;
  bottom: 25px;
}
@media screen and (max-width: 800px) {
  .pageTop {
    width: 15px;
    right: 10px;
    bottom: 15px;
  }
}
.pageTop a {
  display: inline-block;
}

/* ----------------------------------------------------------------------- 
	common layout
----------------------------------------------------------------------- */
#contentWrap {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.content:after {
  content: "";
  display: table;
  clear: both;
}
.content {
  position: relative;
  padding-top: 80px;
}
@media screen and (max-width: 800px) {
  .content {
    padding-top: 60px;
  }
}

.contentIn {
  max-width: 1200px;
  margin: 0 auto;
}
.contentIn:after {
  content: "";
  display: table;
  clear: both;
}
.contentIn {
  padding: 0 5vw;
}
@media screen and (max-width: 800px) {
  .contentIn {
    padding: 0 4vw;
  }
}

/* ----------------------------------------------------------------------- 
	Blocks
----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- 
	Not Found
----------------------------------------------------------------------- */
#notFound {
  padding: 10vw;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
@media screen and (max-width: 800px) {
  #notFound {
    padding: 36vw 5vw;
  }
}
#notFound .notFoundTtl {
  font-size: 15vw;
}
@media screen and (min-width: 1333.3333333333px) {
  #notFound .notFoundTtl {
    font-size: 200px;
  }
}
#notFound .notFoundTtl {
  font-weight: 900;
  color: #999;
}
@media screen and (max-width: 800px) {
  #notFound .notFoundTtl {
    font-size: 24vw;
  }
}
#notFound .notFoundTxt {
  font-size: 1.3vw;
  font-size: 1.3vw;
}
@media screen and (min-width: 1461.5384615385px) {
  #notFound .notFoundTxt {
    font-size: 19px;
  }
}
@media screen and (max-width: 800px) {
  #notFound .notFoundTxt {
    font-size: 3.3vw;
  }
}
#notFound .notFoundLinkTxt {
  display: block;
  margin-top: 2vw;
  font-size: 1.8vw;
}
@media screen and (min-width: 1111.1111111111px) {
  #notFound .notFoundLinkTxt {
    font-size: 20px;
  }
}
#notFound .notFoundLinkTxt {
  font-weight: 600;
}
@media screen and (max-width: 800px) {
  #notFound .notFoundLinkTxt {
    margin-top: 5vw;
    font-size: 3.8vw;
  }
}