@charset "UTF-8";
/*--------------------------------------------------------*/
/*　枠組み　*/
/*--------------------------------------------------------*/
/* 全体指定 */
body {
  font-family: 'Roboto',"メイリオ","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",sans-serif;
  color: #454545;
}

body a {
  color: #1a0dab;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
body a:link {
  color: #1a0dab;
  text-decoration: underline;
}
body a:visited {
  color: #609;
  text-decoration: underline;
}
body a:hover, body a:active {
  color: #b5522e;
  text-decoration: none;
}

input[type="text"],
input[type="password"],
textarea,
select,
*:focus {
  outline: none;
}

p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
}

li,
dt,
dd {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
}

button, input, select, textarea {
  font-family: 'Roboto',"メイリオ","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",sans-serif;
}

body:after {
  content: "";
  -moz-transition: background 0.5s;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
  background: transparent;
}

.is-search:after {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: rgba(0, 5, 30, 0.35);
  opacity: 1.0;
}

/* 横幅指定 */
@media only screen and (min-width: 1024px) {
  .row .orig_col {
    display: block;
    float: left;
    margin-left: 3%;
  }
  .row .orig_col:first-child {
    margin-left: 0;
  }
  .row .orig_col_r {
    display: block;
    float: right;
    margin-right: 3%;
  }
  .row .orig_col_r:first-child {
    margin-right: 0;
  }
  .row .orig_col_nomargin {
    display: block;
    float: left;
  }
  .row .span_32 {
    width: 28%;
    max-width: 300px;
    margin-bottom: 5em;
    float: right;
  }
  .row .span_32_left {
    width: 28%;
    max-width: 300px;
    margin-bottom: 5em;
  }
  .row .span_64 {
    width: 69%;
    max-width: 750px;
    margin-bottom: 5em;
  }
  .row .span_64_right {
    width: 69%;
    max-width: 750px;
    margin-bottom: 5em;
    float: right;
  }
}
@media only screen and (min-width: 1024px) {
  .wrap {
    display: block;
    margin: 0 auto;
    max-width: 1126px;
    padding: 0 0.995%;
  }
}
/* 2018年春リニューアルのため追記 */
/*--------------------------------------------------------*/
/*　ページヘッダー（グローバルナビ）　*/
/*--------------------------------------------------------*/
body > header h1 {
  display: none;
}
body > header .logo {
  position: relative;
  z-index: 1000;
  padding: 1.2em 1.5em 1em 1.1em;
  background-color: #fff;
}
body > header .logo img {
  height: 3em;
  vertical-align: top;
}
body > header .logo .logo-txt {
  position: absolute;
  top: .8em;
  left: 6em;
  z-index: -1;
  font-size: 11px;
  font-size: 1.1rem;
  color: #999;
  white-space: nowrap;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  width: 60%;
}
body > header .logo .header-search-btn {
  position: absolute;
  top: 1.3em;
  right: 0;
  padding: 0 1.3em;
  color: #1b59b5;
  cursor: pointer;
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: .05em;
  line-height: 1;
  border-left: 1px solid #1b59b5;
}
body > header .logo .header-search-btn:before {
  content: "󫓰";
  font-family: 'icomoon';
  font-weight: normal;
  font-style: normal;
  display: block;
  margin-bottom: .3em;
  font-size: 23px;
  font-size: 2.3rem;
}
body > header .txt {
  padding: .2em 1.2em;
  background-color: #fcdb45;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.4;
}
body > header .txt .num {
  display: inline-block;
  padding: 0 .2em;
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fd3837;
}
body > header .pr {
  padding: 1em 1em;
  text-align: center;
  background-color: #fcdb45;
}
body > header .pr a {
  display: block;
}
body > header .pr img {
  width: 100%;
  max-width: 468px;
  vertical-align: middle;
}
body > header .header-search {
  display: none;
  position: absolute;
  top: 6.7em;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 1.5em;
  background-color: #fcdb45;
}
body > header .header-search form {
  position: relative;
  background-color: #fff;
  border-radius: 3px;
}
body > header .header-search form:focus {
  background-color: #fcfcfc;
}
body > header .header-search input[type="text"] {
  width: 100%;
  padding: .66em;
  font-size: 16px;
  font-size: 1.6rem;
  background-color: transparent;
  border: none;
  border-radius: 3px;
  border: 1px solid #1b59b5;
}
body > header .header-search input[type="text"]:focus {
  outline: none;
  box-shadow: 0 0 6px rgba(255, 246, 204, 0.9);
  background-color: rgba(255, 246, 204, 0.1);
}
body > header .header-search input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  padding: .67em 1em;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: .05em;
  color: #fff;
  background-color: #1b59b5;
  border: none;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 1px 6px rgba(27, 89, 181, 0.08), 0 1px 4px rgba(27, 89, 181, 0.16);
}
body > header .header-search ::placeholder {
  color: #1b59b5;
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  body > header {
    background-color: rgba(255, 246, 204, 0.5);
  }
  body > header h1 {
    display: block;
    padding: 1.5em 21em 1.5em 1em;
    font-size: 12px;
    font-size: 1.2rem;
    background-color: #fcdb45;
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    text-align: left;
  }
  body > header .header-inner {
    position: relative;
  }
  body > header .logo {
    padding: 2.3em .9em 1.5em;
    background-color: transparent;
  }
  body > header .logo .logo-txt {
    left: 0;
    width: 100%;
    padding: 0 44em 0 6.5em;
  }
  body > header .logo img {
    height: 3.6em;
  }
  body > header .logo .header-search-btn {
    display: none;
  }
  body > header .header-search {
    display: block;
    width: 26em;
    top: -5.3em;
    right: 0;
    left: auto;
    padding: 1em;
    background-color: transparent;
  }
  body > header .header-search form {
    position: relative;
    border-radius: 300px;
  }
  body > header .header-search form:before {
    content: "󫓰";
    font-family: 'icomoon';
    font-weight: normal;
    font-style: normal;
    display: block;
    position: absolute;
    top: .3em;
    left: .7em;
    font-size: 21px;
    font-size: 2.1rem;
    color: #1b59b5;
  }
  body > header .header-search input[type="text"] {
    padding-left: 3.2em;
    font-size: 14px;
    font-size: 1.4rem;
    border: none;
    border-radius: 300px;
  }
  body > header .header-search input[type="submit"] {
    display: none;
  }
  body > header .txt {
    position: absolute;
    top: 50%;
    left: 0;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    text-align: right;
    font-size: 15px;
    font-size: 1.5rem;
    background-color: transparent;
  }
  body > header .txt .num {
    font-size: 32px;
    font-size: 3.2rem;
    letter-spacing: .05em;
  }
  body > header .pr {
    position: absolute;
    top: 50%;
    left: auto;
    right: 0;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10000;
    text-align: right;
    background-color: transparent;
  }
  body > header .pr img {
    width: 90%;
  }
}
@media only screen and (min-width: 1024px) {
  body > header h1 {
    padding: 1.5em 0;
  }
  body > header h1 .wrap {
    padding: 0 23em 0 0.995%;
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
  }
  body > header .logo {
    padding: 2.3em 0 1.5em;
  }
  body > header .logo .logo-txt {
    padding: 0 44em 0 5.8em;
  }
  body > header .header-search {
    padding-right: 0;
  }
  body > header .pr img {
    width: 100%;
  }
}

/*--------------------------------------------------------*/
/*　ページフッター*/
/*--------------------------------------------------------*/
.footer {
  background-color: rgba(252, 219, 69, 0.5);
}
.footer a {
  text-decoration: none;
}
.footer .footer-inner {
  padding: 2em 1.5em;
  background-color: rgba(255, 255, 255, 0.5);
}
.footer .logo {
  margin-bottom: 1em;
}
.footer .logo img {
  height: 3em;
}
.footer .footer-list li {
  margin-bottom: .4em;
  padding-left: 1.2em;
  position: relative;
  line-height: 1.6;
}
.footer .footer-list li:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: .6em;
  height: .6em;
  background-color: #6f8abb;
}
.footer .footer-c {
  padding: 2em 1.5em;
}
.footer .footer-copyright {
  margin-bottom: 1em;
  font-size: 13px;
  font-size: 1.3rem;
}
.footer .footer-note {
  font-size: 12px;
  font-size: 1.2rem;
  color: rgba(69, 69, 69, 0.5);
}
@media only screen and (min-width: 1024px) {
  .footer .footer-inner {
    padding: 4em 0;
  }
  .footer .logo {
    display: none;
  }
  .footer .footer-list {
    text-align: center;
  }
  .footer .footer-list li {
    display: inline-block;
    padding: .8em;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .footer .footer-list li:before {
    width: 1px;
    height: 1.5em;
    background-color: #1b59b5;
  }
  .footer .footer-list li:first-child:before {
    content: none;
  }
  .footer .footer-c {
    padding: 4em 1.5em;
    text-align: center;
  }
  .footer .footer-note {
    font-size: 12px;
    font-size: 1.2rem;
    color: rgba(69, 69, 69, 0.7);
  }
}
