@charset "UTF-8";
/*レスポンシブ*/
/*レイアウト*/
/*限定br指定*/
/*スマホだけbr*/
/*タブレットだけbr*/
/*パソコンだけbr*/
/*背景画像*/
/*文字サイズ*/
/*三角作る*/
/*マージン下レスポンシブ一括*/
/*パディング下レスポンシブ一括*/
/*アニメーション*/
/*カラーセット*/
/*グラデーション*/
/*書体*/
/*エフェクト・ぼかし*/
/*エフェクト・スクリーン*/
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://use.fontawesome.com/releases/v5.6.3/css/all.css");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400&display=swap&subset=japanese");
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
}

/****************************************************************************************************/
/*
/*　ブラウザスタイルをリセットする（※基本的に編集しない）
/*
/****************************************************************************************************/
/*body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,tdタグのマージン、パディングを0pxにする*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, figure, button {
  margin: 0px;
  padding: 0px;
  background: none;
  border: 0;
}

/*tableタグのcellspacingとcellpaddingを0pxにする*/
table {
  border-collapse: collapse;
  border-spacing: 0px;
}

/*javascriptのfieldsetタグとimg(aタグ内のimg)、abbr,acronymタグに表示されるボーダーを0pxにする*/
fieldset, img, abbr, acronym {
  border: 0px;
}

/*address,caption,cite,code,dfn,em,strong,th,varタグのfontスタイルを通常にする*/
address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

/*ol,ulタグのリストスタイル（アローやマージンなど）を無くす*/
ol, ul, li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

/*caption,thタグを左に寄せる*/
caption, th {
  text-align: left;
}

/*hタグの表示を通常のテキストと同じにする*/
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

img {
  display: inline-block;
  vertical-align: middle;
}

/*qタグの前後にキーワードを配置しない*/
q:before, q:after {
  content: '';
}

main {
  display: block;
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  overflow: auto;
}

body {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  letter-spacing: .1rem;
  overflow: hidden;
}

.pc {
  display: block;
}

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

.tab {
  display: none;
}

@media screen and (max-width: 896px) {
  .tab {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .tab {
    display: none;
  }
}

.sp {
  display: none;
}

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

.sp_only {
  display: none;
}

@media screen and (max-width: 896px) {
  .sp_only {
    display: block;
  }
}

.pc_tab {
  display: block;
}

@media screen and (max-width: 896px) {
  .pc_tab {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .pc_tab {
    display: none;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

h2 {
  font-size: 2rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  margin-bottom: 50px;
  text-align: center;
  line-height: 1em;
}

@media screen and (max-width: 896px) {
  h2 {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 480px) {
  h2 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.4;
  }
}

h2 span {
  display: inline-block;
  position: relative;
  line-height: 1em;
  font-size: 1rem;
  line-height: 1em;
  color: #1758a0;
  margin-bottom: 13px;
  font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 480px) {
  h2 span {
    font-size: .9rem;
    margin-bottom: 8px;
  }
}

h2 span::before, h2 span::after {
  content: " ";
  display: block;
  width: 40px;
  height: 1px;
  background: #1758a0;
  position: absolute;
}

h2 span::before {
  top: 50%;
  left: -50px;
}

h2 span::after {
  top: 50%;
  right: -50px;
}

h3 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1758a0;
}

@media screen and (max-width: 480px) {
  h3 {
    font-size: 1.1rem;
  }
}

h4 {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}

@media screen and (max-width: 480px) {
  h4 {
    font-size: 1rem;
  }
}

.company,
.price,
.service {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto 100px;
}

@media screen and (max-width: 480px) {
  .company,
  .price,
  .service {
    margin: 0 auto 60px;
  }
}

p.call_btn {
  text-align: left;
  width: 428px;
  margin: 0 auto;
  font-weight: 300;
}

@media screen and (max-width: 480px) {
  p.call_btn {
    width: 90%;
  }
}

p.call_btn a {
  display: block;
  border: solid 2px #1758a0;
  padding: 10px;
  width: 100%;
  margin: 0 auto;
  font-size: 2rem;
  color: #1758a0;
  background: #fff;
  text-align: center;
  -webkit-transition: linear .2s all;
  transition: linear .2s all;
  margin-bottom: 5px;
}

@media screen and (max-width: 480px) {
  p.call_btn a {
    font-size: 1.4rem;
  }
}

p.call_btn a i {
  font-size: 1.7rem;
  margin-right: 5px;
  margin-bottom: 2px;
  position: relative;
  top: -2px;
}

@media screen and (max-width: 480px) {
  p.call_btn a i {
    font-size: 1.4rem;
    top: 0px;
  }
}

p.call_btn a:hover {
  color: #fff;
  background: #1758a0;
}

p.call_btn a:hover i {
  color: #fff;
}

p.call_btn span {
  display: block;
  margin-top: 5px;
  font-size: .9rem;
}

@media screen and (max-width: 480px) {
  p.call_btn span {
    font-size: .8rem;
  }
}

header.flex {
  -webkit-box-align: revert;
      -ms-flex-align: revert;
          align-items: revert;
}

header.flex div.header_info {
  margin-left: 150px;
}

@media screen and (max-width: 896px) {
  header.flex div.header_info {
    margin-left: 10px;
  }
}

header.flex div.header_info > p {
  font-size: .75rem;
  margin: 3px 0 20px 2px;
  font-weight: 100;
}

@media screen and (max-width: 896px) {
  header.flex div.header_info > p {
    display: none;
  }
}

header.flex div.header_info > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 896px) {
  header.flex div.header_info > div {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

header.flex div.header_info > div h1 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #1758a0;
  line-height: 1em;
  padding-bottom: 19px;
}

@media screen and (max-width: 896px) {
  header.flex div.header_info > div h1 {
    font-size: 1.4rem;
    padding: 10px 0;
  }
}

@media screen and (max-width: 480px) {
  header.flex div.header_info > div h1 {
    font-size: 1rem;
  }
}

header.flex div.header_info > div h1 span {
  font-size: .75rem;
  display: block;
  margin-bottom: 5px;
  line-height: 1em;
  margin-left: 2px;
  letter-spacing: .18em;
}

@media screen and (max-width: 896px) {
  header.flex div.header_info > div h1 span {
    font-size: .6rem;
    letter-spacing: .1em;
  }
}

header.flex div.header_info > div > p {
  font-size: .9rem;
  line-height: 1.8;
  margin-left: 20px;
  font-weight: 300;
}

@media screen and (max-width: 896px) {
  header.flex div.header_info > div > p {
    font-size: .8rem;
    line-height: 1.7;
  }
}

@media screen and (max-width: 480px) {
  header.flex div.header_info > div > p {
    font-size: .6rem;
    line-height: 1.7;
    display: none;
  }
}

header.flex div.call_btn01 {
  background: #1758a0;
  padding: 14px 0;
  -webkit-transition: linear .2s all;
  transition: linear .2s all;
}

@media screen and (max-width: 896px) {
  header.flex div.call_btn01 {
    padding: 0;
  }
}

header.flex div.call_btn01 p a {
  display: block;
  color: #fff;
  font-size: 1.7rem;
  padding: 0 30px;
  -webkit-transition: linear .2s all;
  transition: linear .2s all;
}

@media screen and (max-width: 896px) {
  header.flex div.call_btn01 p a {
    font-size: 1.4rem;
    padding: 0 20px 7px 20px;
  }
}

@media screen and (max-width: 480px) {
  header.flex div.call_btn01 p a {
    font-size: .8rem;
    padding: 15px;
  }
}

header.flex div.call_btn01 p a i {
  font-size: 2.4rem;
  font-weight: 900;
  position: relative;
  top: 15px;
  margin-right: 10px;
}

@media screen and (max-width: 896px) {
  header.flex div.call_btn01 p a i {
    font-size: 2rem;
    top: 13px;
  }
}

@media screen and (max-width: 480px) {
  header.flex div.call_btn01 p a i {
    font-size: 1.2rem;
    top: 1px;
    margin-right: 1px;
  }
}

header.flex div.call_btn01 p a span {
  font-size: .7rem;
  display: block;
  margin-left: 40px;
}

@media screen and (max-width: 896px) {
  header.flex div.call_btn01 p a span {
    font-size: .6rem;
    margin-left: 36px;
  }
}

@media screen and (max-width: 480px) {
  header.flex div.call_btn01 p a span {
    font-size: .6rem;
    margin-left: 0px;
  }
}

header.flex div.call_btn01:hover {
  background: #247bdc;
}

div.main_visual {
  position: relative;
}

div.main_visual > img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 896px) {
  div.main_visual > img {
    height: 450px;
  }
}

@media screen and (max-width: 480px) {
  div.main_visual > img {
    height: 360px;
  }
}

div.main_visual > p {
  position: absolute;
  top: 39%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

div.main_visual > p img {
  max-width: 555px;
  width: 100%;
}

@media screen and (max-width: 896px) {
  div.main_visual > p img {
    width: 420px;
  }
}

@media screen and (max-width: 480px) {
  div.main_visual > p img {
    width: 80vw;
  }
}

section.about {
  position: relative;
  padding: 100px 0;
  margin-bottom: 100px;
}

@media screen and (max-width: 896px) {
  section.about {
    padding: 80px 0;
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 896px) {
  section.about {
    padding: 60px 0;
    margin-bottom: 60px;
  }
}

section.about::before {
  content: " ";
  display: block;
  background: url(../../images/top/bg.jpg) no-repeat 0 0;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 480px) {
  section.about::before {
    background: url(../../images/top/sp_bg.jpg) no-repeat 0 0;
    background-size: cover;
  }
}

section.about h2 {
  margin-bottom: 40px;
}

@media screen and (max-width: 480px) {
  section.about h2 {
    margin-bottom: 20px;
  }
}

section.about .about_txt {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 45px 40px;
  border: solid 2px #dcecf9;
  font-weight: 300;
}

@media screen and (max-width: 896px) {
  section.about .about_txt {
    padding: 35px;
  }
}

@media screen and (max-width: 480px) {
  section.about .about_txt {
    padding: 30px 15px;
  }
}

section.about .about_txt .note {
  padding: 0 1em;
  background: linear-gradient(#f2f2f2 1px, transparent 1px) transparent;
  background-size: auto 2.5em;
  line-height: 2.5em;
  border-bottom: solid 1px #f2f2f2;
}

@media screen and (max-width: 480px) {
  section.about .about_txt .note {
    padding: 0 .5em;
    background-size: auto 2em;
    line-height: 2em;
  }
}

section.about .about_txt p {
  font-size: 1.05rem;
}

@media screen and (max-width: 480px) {
  section.about .about_txt p {
    font-size: .9rem;
  }
}

section.service > div.flex {
  margin-bottom: 60px;
}

@media screen and (max-width: 480px) {
  section.service > div.flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

section.service > div.flex p {
  width: 48%;
  font-weight: 300;
  line-height: 1.7;
}

@media screen and (max-width: 896px) {
  section.service > div.flex p {
    width: 54%;
    text-align: justify;
  }
}

@media screen and (max-width: 480px) {
  section.service > div.flex p {
    width: 100%;
    margin-bottom: 15px;
  }
}

section.service > div.flex img {
  width: 48%;
  height: auto;
}

@media screen and (max-width: 896px) {
  section.service > div.flex img {
    width: 43%;
    height: auto;
  }
}

@media screen and (max-width: 480px) {
  section.service > div.flex img {
    width: 100%;
  }
}

section.service > div.online {
  max-width: 750px;
  margin: 0 auto 80px;
  width: 100%;
  padding: 30px;
  border: solid 1px #1758a0;
}

@media screen and (max-width: 480px) {
  section.service > div.online {
    padding: 20px 16px;
    margin: 0 auto 50px;
  }
}

section.service > div.online h3 {
  padding-bottom: 16px;
  border-bottom: solid 1px #000;
  margin-bottom: 24px;
}

section.service > div.online > p {
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
}

@media screen and (max-width: 480px) {
  section.service > div.online > p {
    font-size: .9rem;
  }
}

section.service > div.online ul li {
  padding-left: 1rem;
  line-height: 2em;
  font-weight: 300;
  position: relative;
}

section.service > div.online ul li::before {
  content: " ";
  display: block;
  width: 8px;
  height: 8px;
  background: #e6e6e6;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 0;
}

section.service div.work_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 60px;
}

section.service div.work_menu:after {
  content: "";
  display: block;
  width: 31.33%;
  height: 0;
}

section.service div.work_menu p {
  width: 31.33%;
  text-align: center;
  border: solid 1px #dcecf9;
  height: 74px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 7px 7px 0px -1px #f5f3f3;
          box-shadow: 7px 7px 0px -1px #f5f3f3;
}

@media screen and (max-width: 896px) {
  section.service div.work_menu p {
    width: 47%;
  }
}

@media screen and (max-width: 480px) {
  section.service div.work_menu p {
    width: 100%;
    height: auto;
    padding: 16px 0;
    font-size: .9rem;
  }
}

section.service div.work_menu p:nth-of-type(2), section.service div.work_menu p:nth-of-type(1) {
  margin-bottom: 30px;
}

@media screen and (max-width: 896px) {
  section.service div.work_menu p:nth-of-type(3) {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 480px) {
  section.service div.work_menu p:nth-of-type(4) {
    margin-bottom: 30px;
  }
}

section.service div.contact h3 {
  margin-bottom: 40px;
}

section.service div.contact ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 480px) {
  section.service div.contact ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

section.service div.contact ul li {
  width: 37%;
  padding: 10px;
  border: solid 1px #1758a0;
  background: #fff;
  color: #1758a0;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 896px) {
  section.service div.contact ul li {
    width: 47%;
  }
}

@media screen and (max-width: 480px) {
  section.service div.contact ul li {
    width: 100%;
    font-size: .9rem;
  }
}

section.service div.contact ul li::before {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../../images/top/btn_bg.png) no-repeat 0 0;
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: -1;
}

section.service div.contact ul li:first-child {
  margin-right: 60px;
}

@media screen and (max-width: 480px) {
  section.service div.contact ul li:first-child {
    margin-right: 0px;
    margin-bottom: 40px;
  }
}

section.price {
  position: relative;
  padding: 90px 0;
}

@media screen and (max-width: 480px) {
  section.price {
    padding: 60px 0;
  }
}

section.price::before {
  content: " ";
  display: block;
  background: #ecf5fd;
  width: 900%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -300%;
  z-index: -1;
}

section.price div.flex {
  margin-bottom: 20px;
}

@media screen and (max-width: 480px) {
  section.price div.flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

section.price div.flex > div {
  width: 48%;
}

@media screen and (max-width: 480px) {
  section.price div.flex > div {
    width: 100%;
  }
}

section.price div.flex > div:nth-of-type(1) {
  margin-bottom: 30px;
}

section.price div.flex h4 {
  margin-bottom: 24px;
}

@media screen and (max-width: 480px) {
  section.price div.flex h4 {
    margin-bottom: 16px;
  }
}

section.price div.flex table {
  width: 100%;
}

section.price div.flex table td {
  padding: 15px 10px;
  background: #fff;
  text-align: left;
  border: solid 1px #e4e4e4;
}

@media screen and (max-width: 480px) {
  section.price div.flex table td {
    font-size: .9rem;
  }
}

section.price div.flex table td:nth-of-type(1) {
  width: 25%;
  min-width: 110px;
  vertical-align: top;
}

section.price div.flex table td:nth-of-type(2) {
  width: 62%;
}

section.price > table {
  width: 100%;
}

section.price > table td {
  padding: 15px 10px;
  background: #fff;
  text-align: left;
  border: solid 1px #e4e4e4;
}

@media screen and (max-width: 480px) {
  section.price > table td {
    font-size: .9rem;
  }
}

section.price > table td:nth-of-type(1) {
  width: 15%;
  min-width: 130px;
  vertical-align: top;
}

section.price p.price_txt {
  font-weight: 300;
  margin-bottom: 50px;
}

@media screen and (max-width: 480px) {
  section.price p.price_txt {
    margin-bottom: 30px;
    font-size: .8rem;
    line-height: 1.7;
  }
}

section.price > h4 {
  width: 100%;
  margin-bottom: 30px;
}

.company div.flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
}

@media screen and (max-width: 480px) {
  .company div.flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
  }
}

.company div.flex dl {
  width: 48%;
  border-bottom: solid 1px #efefef;
  padding-bottom: 20px;
  padding-left: 2px;
  margin-bottom: 30px;
}

@media screen and (max-width: 480px) {
  .company div.flex dl {
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.company div.flex dl dt {
  margin-bottom: 10px;
  padding-left: 1px;
}

@media screen and (max-width: 480px) {
  .company div.flex dl dt {
    margin-bottom: 5px;
    font-size: .9rem;
  }
}

.company div.flex dl dd {
  font-weight: 300;
}

@media screen and (max-width: 480px) {
  .company div.flex dl dd {
    font-size: .9rem;
  }
}

.company div.google_map {
  margin-bottom: 50px;
}

.company div.google_map > div {
  margin-bottom: 50px;
}

@media screen and (max-width: 480px) {
  .company div.google_map > div {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 480px) {
  .company div.google_map > div iframe {
    height: 300px;
  }
}

.company div.google_map > a {
  display: block;
  width: 280px;
  margin: 0 auto;
  padding: 12px;
  border: solid 1px #1758a0;
  color: #1758a0;
  text-align: center;
  background: url(../../images/top/arrow.svg) no-repeat 95% 53%;
  -webkit-transition: linear .2s all;
  transition: linear .2s all;
  margin-bottom: 80px;
}

@media screen and (max-width: 480px) {
  .company div.google_map > a {
    margin-bottom: 40px;
  }
}

.company div.google_map > a:hover {
  background: url(../../images/top/arrow_after.svg) no-repeat 95% 50% #1758a0;
  color: #fff;
}

.company div.google_map div.flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 480px) {
  .company div.google_map div.flex {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
        -ms-flex-direction: inherit;
            flex-direction: inherit;
  }
}

@media screen and (max-width: 896px) {
  .company div.google_map div.flex img {
    width: 48%;
  }
}

.company div.google_map div.flex img:first-child {
  margin-right: 24px;
}

.history {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.history .flex {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 480px) {
  .history .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.history .history_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 896px) {
  .history .history_item {
    width: 48%;
  }
}

@media screen and (max-width: 480px) {
  .history .history_item {
    width: 100%;
  }
}

.history .history_item > img {
  margin-bottom: 30px;
  width: 100%;
  max-width: 655px;
}

@media screen and (max-width: 896px) {
  .history .history_item > img {
    width: 410px;
  }
}

@media screen and (max-width: 480px) {
  .history .history_item > img {
    width: 100%;
    margin-bottom: 15px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.history .history_item div dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.history .history_item div dl dt,
.history .history_item div dl dd {
  line-height: 1.8;
  font-size: .9rem;
  font-weight: 300;
}

@media screen and (max-width: 896px) {
  .history .history_item div dl dt,
  .history .history_item div dl dd {
    font-size: .7rem;
  }
}

@media screen and (max-width: 480px) {
  .history .history_item div dl dt,
  .history .history_item div dl dd {
    font-size: .72rem;
  }
}

.history .history_item div dl dt {
  width: 130px;
}

@media screen and (max-width: 896px) {
  .history .history_item div dl dt {
    width: 90px;
  }
}

@media screen and (max-width: 480px) {
  .history .history_item div dl dt {
    width: 100px;
  }
}

.history .history_item div dl dd {
  width: 70%;
}

@media screen and (max-width: 896px) {
  .history .history_item div dl dd {
    width: 220px;
  }
}

.history .history_item div dl:last-of-type {
  margin-bottom: 14px;
}

.history .history_item div > p {
  font-size: .9rem;
  font-weight: 300;
  padding-bottom: 60px;
}

@media screen and (max-width: 896px) {
  .history .history_item div > p {
    padding-bottom: 40px;
    font-size: .7rem;
  }
}

.history .history_item div > p span {
  font-weight: 500;
}

.history .history_img {
  max-width: 360px;
  width: 100%;
  height: auto;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  position: relative;
  z-index: -1;
}

@media screen and (max-width: 896px) {
  .history .history_img {
    max-width: 320px;
  }
}

@media screen and (max-width: 480px) {
  .history .history_img {
    max-width: 260px;
    margin: 0 auto;
  }
}

footer {
  background: #f8f8f8;
  padding: 60px 0 20px 0;
}

@media screen and (max-width: 480px) {
  footer {
    padding: 50px 0 20px 0;
  }
}

footer > div.contact {
  margin-bottom: 60px;
}

@media screen and (max-width: 896px) {
  footer > div.contact {
    margin-bottom: 40px;
  }
}

footer > div.contact h3 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 50px;
}

@media screen and (max-width: 480px) {
  footer > div.contact h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }
}

footer .flex {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 90px;
  position: relative;
}

@media screen and (max-width: 896px) {
  footer .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

footer .flex dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 48%;
  border-right: solid 1px #dddddd;
}

@media screen and (max-width: 896px) {
  footer .flex dl {
    margin-bottom: 20px;
    border-right: none;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 480px) {
  footer .flex dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

footer .flex dl dt {
  font-size: 1.5rem;
  font-weight: 500;
  color: #1758a0;
  line-height: 1em;
}

@media screen and (max-width: 896px) {
  footer .flex dl dt {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 480px) {
  footer .flex dl dt {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}

footer .flex dl dt span {
  font-size: .7rem;
  display: block;
  margin-bottom: 5px;
  line-height: 1em;
  margin-left: 2px;
  letter-spacing: .7px;
}

@media screen and (max-width: 896px) {
  footer .flex dl dt span {
    font-size: .9rem;
    letter-spacing: .9px;
  }
}

@media screen and (max-width: 480px) {
  footer .flex dl dt span {
    font-size: .8rem;
    letter-spacing: .3px;
  }
}

footer .flex dl dd {
  font-size: .8rem;
  line-height: 1.8;
  margin-left: 15px;
  font-weight: 300;
}

@media screen and (max-width: 480px) {
  footer .flex dl dd {
    font-size: .9rem;
    margin-left: 0px;
  }
}

@media screen and (max-width: 480px) {
  footer .flex dl dd {
    font-size: .9rem;
    margin-left: 0px;
  }
}

footer .flex div > p {
  font-size: .8rem;
  margin-bottom: 5px;
}

@media screen and (max-width: 480px) {
  footer .flex div > p {
    font-size: .7rem;
    letter-spacing: .2px;
  }
}

footer .flex div > a {
  display: block;
  border: solid 1px #1758a0;
  color: #1758a0;
  font-size: .85rem;
  background: url(../../images/top/arrow.svg) no-repeat 97% 53% #fff;
  padding: 12px 40px;
  text-align: center;
}

footer .copy {
  font-size: .8rem;
  font-weight: 300;
  text-align: center;
}
/*# sourceMappingURL=site.css.map */