@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap&subset=japanese");

/*==========================================
 Reset
===========================================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*==========================================
 Foundation
===========================================*/
/* Body
----------------------------------- */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}
html,
body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html {
  font-size: 62.5%;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100%;
  color: #000;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  text-align: left;
  line-height: 1.8;
  overflow-x: hidden;
}
/* Link
----------------------------------- */
a {
  /*color: #231815;
  text-decoration: none;
  outline: none;*/
}
a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  button:hover,
  a:hover,
  a:hover img {
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
  }
  body {
    min-width: 100rem;
  }
}
/* Img
-----------------------------------*/
img {
  max-width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  img {
    max-width: 100%;
  }
}

a img {
  border: none;
  padding: 0;
  margin: 0;
  outline: none !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  img[src$=".svg"] {
    width: 100%;
  }
}

/* Pc/Sp Only
----------------------------------- */
.only-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .only-pc {
    display: inline-block;
  }
  .only-sp {
    display: none;
  }
}

/*==========================================
 Layout
===========================================*/
/* Header
----------------------------------- */
.header {
  background-color:#add5f9;
}
.header > div {
  width: 100%;
  max-width: 100rem;
  padding: 0 2.1rem;
}
.header__logo{
  position: absolute;
  top: 0;
  max-width: 6rem;
}
.header__col {
  width: 100%;
  height: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}
.header__txt{
  margin: 8.5rem 0 auto;
  display:-webkit-flex;
  display:-ms-flex;
  display:-ms-flexbox;
  display: flex;
  -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
  align-items: center;         /* 縦方向中央揃え */
  -webkit-justify-content: left; /* 横方向左揃え（Safari用） */
  justify-content: left;     /* 横方向左揃え */
}
.header__h1 {
  font-size: 4.6rem;
  line-height: 1.1;
  margin-bottom: .8rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}
.header__h2 {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: -.1rem;
}
.header__h1,
.header__h2 {
  display: block;
}
.header__kv {
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
  align-items: center;         /* 縦方向中央揃え */
  -webkit-justify-content: right; /* 横方向右揃え（Safari用） */
  justify-content: right;     /* 横方向右揃え */
}
.header__kv > img {
  width: 100%;
  max-width: 64rem;
}
@media screen and (min-width: 768px) {
  .header > div {
    /*margin: 0 10.8%;*/
    padding: 0;
    height: 60rem;
  }
  .header__logo{
    max-width: 10rem;
  }
  .header__txt {
    margin: 16.5rem 0 auto;
    width: 36%;
  }
  .header__h1 {
    font-size: 5.4rem;
    margin-bottom: 4rem;
    line-height: 1.2;
  }
  .header__h2 {
    font-size: 1.8rem;
  }
  .header__kv {
    width: 64%;
    padding: 0;
  }
}
/* Main
----------------------------------- */
.section {
  /*padding: 0 3rem;*/
}
.pageTitle {
  text-align: center;
}
.pageTitle > h2 {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: .5rem;
  margin-bottom: 2rem;
}
.pageTitle > p {
  font-size: 1.6rem;
  font-weight: normal;
  text-align: center;
}
.pageSubTitle {
  text-align: center;
  margin-bottom: 2rem;
}
.pageSubTitle > h2 {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: .5rem;

  padding: 5rem 0 0rem;
}
.pageSubTitle > p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  padding: 0 0 1rem;
  display: inline-block;
  position: relative;
}
.pageSubTitle > p:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -.5rem; /*下線の上下位置調整*/
  display: inline-block;
  width: 3rem; /*下線の幅*/
  height: .2rem; /*下線の太さ*/
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%); /*位置調整*/
  background-color: #e52140; /*下線の色*/
}

@media screen and (min-width: 768px) {
  .section {
    margin: 0 auto;
  }
  .pageTitle > h2 {
    font-size: 2.8rem;
  }
  .pageTitle > p {
    font-size: 2.8rem;
    letter-spacing: .3rem;
    line-height: 1.5;
  }
  .pageSubTitle {
    margin-bottom: 3.4rem;
  }
  .pageSubTitle > h2 {
    font-size: 2.8rem;
  }
}
/* Footer
----------------------------------- */
.footer {
  width: 100%;
  max-width: 100%;
  background-color: #333;
}
.footer__inner {
  color: #fff;
  padding: 3rem 1.5rem;
}
.footer__copyright {
  font-size: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding: 4rem 2rem 4.5rem;
  }
  .footer__copyright {
    font-size: 1.2rem;
  }
}

/*==========================================
 Top
===========================================*/
/* TopPhilosophy
----------------------------------- */
.topPhilosophy {
  text-align: center;
  padding: 4rem 2rem;
}
@media screen and (min-width: 768px) {
  .topPhilosophy {
    padding: 5.5rem 2rem;
  }
}
/* TopPhilosophy
----------------------------------- */
.topThought {

}
.topThought__inner {
  padding: 0 1.5rem;
}
.topThought__inner h3 {
  text-align: left;
}
.topThought__inner > dl > dt {
  font-size: 1.6rem;
  font-weight: bold;
  padding-bottom: .5rem;
}
.topThought__inner > dl > dd {
  padding-bottom: 2rem;
}

.listwrapper {
  margin-top: 4rem;
}
.listwrapper:after {
  content: '・';
  display: block;
  height: 0rem;
  clear: both;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
}
ul.list {
    display: table;
    width:100%;
}
ul.list > li:nth-child(2n+1) {
    clear: both;
}
ul.list > li {
  display: table-cell;
  float: left;
  width: 50%;
  text-align: center;
}
ul.list li > img {
  margin: auto;
  max-width: 8rem;
}
ul.list li > p {
  font-size: 1.8rem;
  font-weight: bold;
  padding: .8rem 0 .5rem;
}
ul.list li > ul {
  padding-bottom: 5rem;
  font-size: 1.2rem;
}


/*.listwrapper:after {
  content: '・';
  display: block;
  height: 0rem;
  clear: both;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
}
ul.list {
    float: left;
    width:48%;
}
.list + .list{
  margin-left: 4%;
}
ul.list li > p {
  font-size: 1.6rem;
  font-weight: bold;
  padding-bottom: .5rem;
}
ul.list li > ul {
  padding-bottom: 2rem;
}*/

@media screen and (min-width: 768px) {
  .topThought {
    /*margin-top: 5.6rem;*/
  }
  .topThought__inner {
    max-width: 80rem;
    margin: 0 auto;
  }
  .topThought__inner > dl {
    text-align: left;
  }
}


/* TopProfile
----------------------------------- */
.topProfile{
  padding: 0 1.5rem;
}
.topProfile > table {
  width: 100%;
  line-height: 1.5;
}
.topProfile > table th,
.topProfile > table td {
  display: block;
  float: left;
  width: 100%;
}
.topProfile > table th {
  font-weight: bold;
  padding: 1rem 0 .5rem;
}
.topProfile > table td {
  padding-bottom: 1rem;
  border-bottom: .1rem solid #ddd;
}
.topProfile > table td > a {
  padding-left: .7rem;
}

@media screen and (min-width: 768px) {
  .topProfile {
    margin-top: 2rem;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0;
  }
  .topProfile > table th,
  .topProfile > table td {
    display: table-cell;
    float: none;
    vertical-align: top;
  }
  .topProfile > table th {
    width: 13%;
    padding: 1.65rem 0;
    border-bottom: .1rem solid #ddd;
    text-align: right;
  }
  .topProfile > table td {
    width: 87%;
    padding: 1.65rem 0 1.65rem 1rem;
  }
  .topProfile > table td > a:hover {
    text-decoration: underline;
  }
}
/* companyAccess
----------------------------------- */
.topLocation {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 0 1.5rem;
}
.topLocation__detail .icon{
  position: relative;
  top: .2rem;
  display: inline;
}
.topLocation__gmap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 36rem;
  overflow: hidden;
}
.topLocation__gmap > iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .topLocation {
    max-width: 80rem;
    margin: 4.5rem auto 6.5rem;
  }
}
/* TopLink
----------------------------------- */
.topLink {
  margin-top: 4rem;
}
.topLink > a {
  display: block;
  position: relative;
  width: 100%;
  max-width: 30rem;
  text-align: center;
  line-height: 4rem;
  padding-left: 1.5rem;
  margin: 0 auto;
  border: .1rem solid #ccc;

}
.topLink > a::before,
.topLink > a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.topLink > a::before {
  top: .1rem;
  left: 1rem;
  width: 6px;
  height: 6px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*==========================================
 Utility
===========================================*/
/* Clearfix
----------------------------------- */
.u-clearFix {
  content: ".";
  display: block;
  height: 0rem;
  clear: both;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
}
/* Background
----------------------------------- */
.u-bgcolor-gray {
  background-color: #f8f7f7;
}
