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

body a {
  color: #1a0dab;
  -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: "";
  -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;
}

/* 横幅指定 */
@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: 0.8em;
  left: 6em;
  z-index: -1;
  font-size: 11px;
  font-size: 1.1rem;
  color: #999;
  white-space: nowrap;
  overflow: hidden;
  -ms-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: 0.05em;
  line-height: 1;
  border-left: 1px solid #1b59b5;
}
body > header .logo .header-search-btn:before {
  content: "\eb4f0";
  font-family: "icomoon";
  font-weight: normal;
  font-style: normal;
  display: block;
  margin-bottom: 0.3em;
  font-size: 23px;
  font-size: 2.3rem;
}
body > header .txt {
  padding: 0.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 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: 0.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;
  -webkit-box-shadow: 0 0 6px rgba(255, 246, 204, 0.9);
          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: 0.67em 1em;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #1b59b5;
  border: none;
  border-radius: 0 3px 3px 0;
  -webkit-box-shadow: 0 1px 6px rgba(27, 89, 181, 0.08), 0 1px 4px rgba(27, 89, 181, 0.16);
          box-shadow: 0 1px 6px rgba(27, 89, 181, 0.08), 0 1px 4px rgba(27, 89, 181, 0.16);
}
body > header .header-search ::-webkit-input-placeholder {
  color: #1b59b5;
  font-size: 14px;
  font-size: 1.4rem;
}
body > header .header-search ::-moz-placeholder {
  color: #1b59b5;
  font-size: 14px;
  font-size: 1.4rem;
}
body > header .header-search :-ms-input-placeholder {
  color: #1b59b5;
  font-size: 14px;
  font-size: 1.4rem;
}
body > header .header-search ::-ms-input-placeholder {
  color: #1b59b5;
  font-size: 14px;
  font-size: 1.4rem;
}
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;
    text-overflow: ellipsis;
    text-align: left;
  }
  body > header .header-inner {
    position: relative;
  }
  body > header .logo {
    padding: 2.3em 0.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: "\eb4f0";
    font-family: "icomoon";
    font-weight: normal;
    font-style: normal;
    display: block;
    position: absolute;
    top: 0.3em;
    left: 0.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;
    -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: 0.05em;
  }
  body > header .pr {
    position: absolute;
    top: 50%;
    left: auto;
    right: 0;
    -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;
    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: 0.4em;
  padding-left: 1.2em;
  position: relative;
  line-height: 1.6;
}
.footer .footer-list li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.6em;
  height: 0.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: 0.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);
  }
}

.promotion-note {
  position: fixed;
  padding: 1.5em 1.5em;
  font-size: 10px;
  font-size: 1rem;
  border-radius: 0.3em;
  opacity: 0.9;
  width: 4.1em;
  overflow: hidden;
  -webkit-transition: width 1s;
  transition: width 1s;
  /*---customize---*/
  bottom: 1em;
  left: 1em;
  background: #002E72;
  color: #FFF;
  /*---customize---*/
}
.promotion-note.is-open {
  width: 26.5em;
  -webkit-transition: width 1s;
  transition: width 1s;
}
.promotion-note.is-open p span {
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.promotion-note.is-close {
  width: 4.1em;
  -webkit-transition: width 1s;
  transition: width 1s;
}
.promotion-note.is-close p span {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.promotion-note p {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1;
  position: relative;
}
.promotion-note p span {
  display: block;
  position: absolute;
  top: 0;
  left: 1.54545em;
  width: 21em;
  opacity: 0;
}
.promotion-note p::before {
  content: "";
  display: inline-block;
  vertical-align: -0.2em;
  margin-right: 0.5em;
  height: 1em;
  width: 1em;
  background: url("data:image/svg+xml;utf8,<svg id='a' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50'><path d='M17.003,13.636c-.351-.232-.775-.348-1.271-.348h-2.997v9.925h2.997c.48,0,.895-.112,1.247-.335,.351-.224,.623-.552,.816-.983,.192-.432,.287-.943,.287-1.534v-4.1c0-.623-.092-1.159-.276-1.606-.184-.447-.452-.787-.803-1.019Z' style='fill:%23fff;'/><path d='M37.555,13.564c-.375-.2-.819-.3-1.331-.3h-3.116v8.727h3.116c.512,0,.956-.092,1.331-.276,.376-.184,.66-.448,.851-.792,.192-.344,.288-.755,.288-1.234v-3.884c0-.528-.096-.983-.288-1.367-.191-.384-.475-.675-.851-.875Z' style='fill:%23fff;'/><path d='M45,0H5C2.25,0,0,2.25,0,5V45c0,2.75,2.25,5,5,5H45c2.75,0,5-2.25,5-5V5c0-2.75-2.25-5-5-5ZM24.1,21.272c0,1.615-.324,2.993-.971,4.135-.647,1.143-1.586,2.015-2.817,2.614-1.231,.599-2.701,.899-4.411,.899h-3.165v13.521H6.791V7.583H15.901c1.726,0,3.204,.304,4.435,.911,1.231,.608,2.166,1.498,2.805,2.673,.639,1.175,.959,2.585,.959,4.231v5.873Zm15.313,21.169l-4.311-14.744h-1.994v14.744h-5.826V7.559h8.583c1.886,0,3.496,.308,4.83,.923,1.334,.615,2.353,1.518,3.057,2.709,.703,1.191,1.055,2.618,1.055,4.279v4.076c0,1.71-.352,3.176-1.055,4.4-.704,1.222-1.726,2.153-3.069,2.792-.015,.007-.032,.012-.047,.019l5.155,15.685h-6.377Z' style='fill:%23fff;'/></svg>") center/cover no-repeat;
}

@media only screen and (min-width: 1024px) {
  .promotion-note {
    /*---customize---*/
    top: 0.5em;
    left: 0.5em;
    bottom: auto;
    /*---customize---*/
  }
}