@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;700&display=swap");
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

body, div, span, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, address, big, cite, code,
em, img, q, s, small, strong,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section, summary,
time, mark, audio, video,
form, input, button, textarea, select {
  margin: 0;
  padding: 0;
  font-size: inherit;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

b, strong {
  font-weight: inherit;
  font-weight: bolder;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

button, input, select, textarea {
  font: inherit;
  margin: 0;
}

button, input, select {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

button, html [type=button],
[type=reset], [type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

body {
  font-family: "Times New Roman", Serif;
}

a, a img, button, [type=button], [type=reset], [type=submit] {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/*!
 *  Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.eot?v=4.5.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.5.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.5.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.5.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.5.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*===================================================================
  start up reset
===================================================================*/
body {
  background: transparent;
  color: inherit;
  font-weight: normal;
  line-height: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 500;
}

a:visited {
  color: #4D4948;
}

a:hover {
  color: #4D4948;
}

/*===================================================================
	サイト基礎
===================================================================*/
body {
  font-family: "Zen Maru Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  position: relative;
  font-size: 16px;
  color: #333;
}

a {
  color: #333;
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
}
a img {
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}
a img:hover {
  opacity: 0.5;
}

.pc-show {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-show {
    display: none;
  }
}

.sp-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-show {
    display: block;
  }
}

/*===================================================================
	ヘッダー
===================================================================*/
header {
  height: 110px;
}
@media screen and (max-width: 768px) {
  header {
    height: 70px;
  }
}
header .header-area {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  width: 100%;
  z-index: 999;
  height: 110px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  header .header-area {
    display: block;
    padding: 0.5em;
    height: 70px;
  }
}
header .header-area h1 {
  width: 26%;
  max-width: 300px;
  padding: 12px 0 0;
}
@media screen and (max-width: 768px) {
  header .header-area h1 {
    width: 100%;
    text-align: center;
    max-width: 168px;
    padding: 12px 0 0;
  }
}
header .header-area h1 img {
  width: 100%;
}
header .header-area .gnav {
  width: 100%;
  max-width: calc(100% - 300px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 20px 0 0;
}
@media screen and (max-width: 768px) {
  header .header-area .gnav {
    display: none;
  }
}
header .header-area .gnav li {
  padding: 0 1.25vw;
  font-weight: bold;
}
header .header-area .gnav li.btn {
  padding: 0 0 0 1.25vw;
}
header .header-area .gnav li.btn a {
  background-color: #1a1a7c;
  color: #fff;
  border-radius: 50px;
  padding: 0.5em 1em;
}
header .hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  header .hamburger {
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    background-color: #1a1a7c;
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
    cursor: pointer;
    right: 0;
    top: 0;
    border-radius: 0 0 0 10px;
  }
}
header .hamburger:hover {
  opacity: 0.8;
}
header .hamburger span {
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 46%;
}
header .hamburger span:first-of-type {
  top: 31%;
}
header .hamburger span:last-of-type {
  top: 61%;
}
@media screen and (max-width: 768px) {
  header h1 {
    width: 157px;
    margin: 0 0 0 10px;
  }
}
header .slide-menu {
  background-color: #1a1a7c;
  position: fixed;
  top: 75px;
  width: 100%;
  left: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 9999;
  /* 追記 */
}
@media screen and (max-width: 768px) {
  header .slide-menu {
    top: 69px;
  }
}
header .slide-menu li {
  line-height: 400%;
  text-align: center;
  border-bottom: #fff 1px solid;
}
header .slide-menu li a {
  display: block;
  color: #fff;
}
header .hamburger.active span {
  top: -10%;
}
header .hamburger.active span:first-of-type {
  top: 50%;
  -webkit-transform: rotate(405deg);
          transform: rotate(405deg);
}
header .hamburger.active span:last-of-type {
  top: 50%;
  -webkit-transform: rotate(-405deg);
          transform: rotate(-405deg);
}
header .slide-menu.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.top-mainVisual .top-mainVisual-cnt {
  position: relative;
}
.top-mainVisual .top-mainVisual-cnt .slider ul li h1 {
  position: absolute;
  top: 3em;
  left: 0.5vw;
  max-width: 16vw;
  width: 100%;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  .top-mainVisual .top-mainVisual-cnt .slider ul li h1 {
    max-width: 32vw;
  }
}
.top-mainVisual .top-mainVisual-cnt .slider ul li h1 img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-mainVisual .top-mainVisual-cnt .slider ul li h1 img {
    width: auto;
  }
}
.top-mainVisual .top-mainVisual-cnt .slider ul li h1.tit01 {
  left: auto;
  right: 0.5vw;
}
.top-mainVisual .top-mainVisual-cnt .slider ul li h1.tit04 {
  left: calc(50vw - 80px);
}
.top-mainVisual .top-mainVisual-cnt .slider ul li img {
  width: 100%;
}
.top-mainVisual .top-mainVisual-cnt .white {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.top-mainVisual .top-mainVisual-cnt .white img {
  width: 100%;
}
.top-mainVisual .top-mainVisual-cnt .slick-slide img.pc-show {
  display: block;
}
@media screen and (max-width: 768px) {
  .top-mainVisual .top-mainVisual-cnt .slick-slide img.pc-show {
    display: none;
  }
}
.top-mainVisual .top-mainVisual-cnt .slick-slide img.sp-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-mainVisual .top-mainVisual-cnt .slick-slide img.sp-show {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .sub-mainVisual {
    background-size: 100% auto;
  }
}
.sub-mainVisual .sub-mainVisual-cnt {
  text-align: center;
}
.sub-mainVisual .sub-mainVisual-cnt .image {
  position: relative;
}
.sub-mainVisual .sub-mainVisual-cnt .image > img {
  width: 100%;
  height: 40vw;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media screen and (max-width: 768px) {
  .sub-mainVisual .sub-mainVisual-cnt .image > img {
    height: auto;
    -o-object-fit: fill;
       object-fit: fill;
  }
}
.sub-mainVisual .sub-mainVisual-cnt .image .white {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100vw;
}
.sub-mainVisual .sub-mainVisual-cnt .image .white img {
  width: 100%;
  height: auto;
}
.sub-mainVisual .sub-mainVisual-cnt h1 {
  font-size: 3.2rem;
  color: #1a1a7c;
  font-weight: bold;
  text-align: center;
  background-image: url(../../images/first-img01.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 38.4px auto;
  padding: 0 0 1em;
  margin: 0 0 2em;
}
@media screen and (max-width: 768px) {
  .sub-mainVisual .sub-mainVisual-cnt h1 {
    font-size: 2.6rem;
  }
}
.sub-mainVisual.news h1 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .sub-mainVisual.news h1 {
    padding: 0 4vw 1em;
  }
}

.sub-mainVisual-bg {
  background-image: url(../../images/title-bg-sub01.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  height: 6.5vw;
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}
/*--------------------------------
  keyframes
--------------------------------*/
@-webkit-keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
            transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
            transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes menu-bar02 {
  0% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
            transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
}
@keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
            transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
}
@-webkit-keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}
/*===================================================================
	メイン
===================================================================*/
.wrapper {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 12px;
}
@media screen and (max-width: 768px) {
  .wrapper {
    max-width: 1000px;
    padding: 0;
  }
}

.main-contents {
  width: 100%;
  text-align: left;
}

/*===================================================================
	フッター
===================================================================*/
.scroll-top #scroll-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: transparent;
  display: block;
  width: 70px;
  height: 70px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../../images/ico-pagetop.svg);
  border: 0;
}
@media screen and (max-width: 768px) {
  .scroll-top #scroll-top {
    width: 40px;
    height: 40px;
  }
}
.scroll-top #scroll-top:hover {
  opacity: 0.8;
}

.site-footer {
  clear: both;
  border-top: #e6e6e6 1px solid;
}
.site-footer .site-footer-btm {
  background-color: #fff;
}
.site-footer .site-footer-btm .site-footer-btm-body .foot-bg01 {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
  padding: 2.75em 0;
}
.site-footer .site-footer-btm .site-footer-btm-body .foot-bg01 .txt {
  font-size: 1.3rem;
  padding: 1em 0 0.75em;
}
.site-footer .site-footer-btm .site-footer-btm-body .foot-bg01 .tel {
  font-size: 3rem;
  color: #1a1a7c;
  padding: 0 0 0.5em;
}
.site-footer .site-footer-btm .site-footer-btm-body .foot-bg01 .map {
  margin: 2em 0 1em;
}
.site-footer .site-footer-btm .site-footer-btm-body .foot-bg01 .map iframe {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 768px) {
  .site-footer .site-footer-btm .site-footer-btm-body .foot-bg01 .map iframe {
    height: 220px;
  }
}
.site-footer .site-footer-btm .site-footer-btm-body .foot-bg01 .btn1 a {
  display: inline-block;
  background-color: #1a1a7c;
  background-image: url(../../images/arrow02.svg);
  background-repeat: no-repeat;
  background-position: center right 1.25em;
  background-size: 10px auto;
  border: #1a1a7c 2px solid;
  color: #fff;
  border-radius: 50px;
  margin: 0 auto;
  padding: 0.5em 1em;
  text-align: center;
  font-weight: bold;
  width: 100%;
  max-width: 260px;
}
.site-footer .site-footer-btm .site-footer-btm-body .foot-bg01 .btn2 a {
  display: inline-block;
  background-color: #fff;
  background-image: url(../../images/arrow01.svg);
  background-repeat: no-repeat;
  background-position: center right 1.25em;
  background-size: 10px auto;
  border: #1a1a7c 2px solid;
  color: #1a1a7c;
  border-radius: 50px;
  margin: 0 auto;
  padding: 0.5em 1em;
  text-align: center;
  font-weight: bold;
  width: 100%;
  max-width: 260px;
}
.site-footer .site-footer-btm .site-footer-btm-body .foot-bg02 {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  overflow: hidden;
  background-color: rgba(0, 122, 255, 0.05);
}
@media screen and (max-width: 768px) {
  .site-footer .site-footer-btm .site-footer-btm-body .foot-bg02 {
    padding: 0 4vw;
  }
}
.site-footer .site-footer-btm .site-footer-btm-body .foot-cnt {
  max-width: 1366px;
  margin: 0 auto;
}
.site-footer .site-footer-btm .site-footer-btm-body .foot-cnt .fnavi ul li {
  font-size: 1.4rem;
  border-bottom: #e6e6e6 1px solid;
  text-align: center;
}
.site-footer .site-footer-btm .site-footer-btm-body .foot-cnt .fnavi ul li a {
  display: block;
  padding: 1.5em 1em;
}
.site-footer .site-footer-btm .site-footer-btm-body .copy {
  text-align: center;
  font-size: 1.2rem;
  padding: 3em 0;
}

/*===================================================================
  Blog Style
===================================================================*/
p img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img.alignright {
  margin: 1em;
  margin: 0 0 1em 1em;
  display: inline;
}

img.alignleft {
  padding: 1em;
  margin: 0 1em 1em 0;
  display: inline;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.aligncenter {
  text-align: center;
}/*# sourceMappingURL=base.css.map */