@charset "UTF-8";
/* CSS Document */


/*******************************
* ResetCSS
*******************************/

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, font, img, ins, kbd, q, s, samp,
small, strike, strong, 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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}

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, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, caption {
  vertical-align: baseline;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

/* remember to define focus styles! */
:focus {
  outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing=&quot;0&quot;' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/***********************
root設定
***********************/

body {
  font-size: 14px;
  line-height: 1;
  font-family:'source-han-sans-japanese', sans-serif;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
  font-weight: 400;
}

/***********************
表示設定
***********************/


.pc_hide {
  display: none;
}


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

/***********************
フォント設定
***********************/
.el_font_en {
  font-family:'athelas', serif;
  font-weight: 400;
  font-style: normal;
}

.el_font_rg {
  font-weight: 300;
}

.el_font_md {
  font-weight: 500;
}

.el_font_bold {
  font-weight: 700;
}

.el_txtAC {text-align: center;}
.el_txtAL {text-align: left;}
.el_txtAR {text-align: right;}

/***********************
画像設定
***********************/
img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

img.ofi_contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* ofi.min.js用の記述 */
  font-family: 'object-fit: contain;'
}

img.ofi_cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ofi.min.js用の記述 */
  font-family: 'object-fit: cover;'
}

/***********************
リンク設定
***********************/

a {
  text-decoration: none;
  color: #000;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

a:hover { opacity: 0.7;}

/***********************
レイアウト
***********************/

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: block;
  min-height: 1%;
  clear: both;
}

.flex_conts {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}

.flex_conts.start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

#wrapper {
  position: relative;
  width: 100%;
}

@media screen and (max-width: 480px) {
  #wrapper {
  }
}

/***********************
Utils
***********************/


.hp_fl { float: left;}
.hp_fr { float: right;}

.ly_inner {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}

.el_imgTxt {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}

.el_gradient {
  background: linear-gradient(90deg, rgba(255,0,0,.5) 0%, rgba(0,0,0,1) 100%);
}

@media screen and (max-width: 1000px) {
  .ly_inner {
    width: 90%;
  }
}

@media screen and (max-width: 480px) {
  .fl,.fr { float: none;}
  .ly_inner {
    width: 100%;
  }

}

/***********************
Header
***********************/

#ly_header {
  width: 900px;
  border-radius: 4px;
  background: rgba(255,255,255,.9);
  position: fixed;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  padding: 14px 18px;
  z-index: 1000;
  z-index: 50;
}

#ly_header .el_logo {
  width: 251px;
}

#ly_header .ly_inner {
  width: 100%;
}

.un_menuTrigger {
  display: none;
}

.bl_hNav {
  width: 475px;
}

.bl_hNav li {
  margin-left: 24px;
}

.bl_hNav li a {
  display: block;
  text-align: center;
  text-decoration: none;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
}

@media screen and (max-width: 1000px) {
  #ly_header {
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    box-sizing: border-box;
    padding: 11px 8px;
    transform: translateX(0);
  }

  #ly_header .el_logo {
    width: 188px;
  }

  .un_menuTrigger {
    position: fixed;
    width: 50px;
    height: 50px;
    display: block;
    top: 0;
    right: 0;
    z-index: 1000;
  }

  .un_menuTrigger span {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    background-color: #003264;
    transform: translateX(-50%);
  }

  .un_menuTrigger span:nth-of-type(1) {top: 19px;}
  .un_menuTrigger span:nth-of-type(2) {bottom: 20px;}

  .un_menuTrigger.active span:nth-of-type(1) {transform: translateX(-5px) translateY(5px) rotate(-45deg);background: #fff;}
  .un_menuTrigger.active span:nth-of-type(2) {transform: translateX(-5px) translateY(-5px) rotate(45deg);background: #fff;}

  #ly_header .bl_menu {
    width: 100%;
    position: fixed;
    top: 0;
    right: -200%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    background: #003264;
    height: 100vh;
    padding-top: 55px;
  }

  #ly_header.active .bl_menu {
    right: 0;
  }

  .bl_hNav {
    width: 90%;
    margin: 0 auto;
  }

  .bl_hNav li {
    width: 100%;
    margin-left: 0;
    border-bottom: solid 1px #fff;
  }
  .bl_hNav li a {
    color: #fff;
    height: auto;
    line-height: 1;
    font-size: 24px;
    padding: 25px 0;
  }
}

/***********************
Footer
***********************/

#ly_footer {
  padding: 25px 0;
  background: #fff;
  text-align: center;
}

#ly_footer .c_name {
  font-size: 16px;
  margin-bottom: 15px;
}

.un_Copyright {
  font-size: 12px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 480px) {
  #ly_footer {
  }

  .un_Copyright {
    font-size: 10px;
  }
}

