@charset "UTF-8";
body {
  /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

/* Project */
.content_wrap {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  font-feature-settings: "palt";
  font-smoothing: antialiased;
  font-size: 12px;
  letter-spacing: 0.15em;
  line-height: 1.8;
  position: relative;
  margin: 0 auto;
}

@media screen and (min-width: 690px) {
  .content_wrap {
    font-size: 15px;
  }
}

.content_wrap * {
  box-sizing: border-box;
}

.content_wrap a {
  text-decoration: none;
  color: #000;
  transition: all  0.3s ease;
}

.content_wrap a:hover, .content_wrap a:focus {
  text-decoration: none;
  opacity: 0.7;
}

.content_wrap .fadeInUp-target {
  opacity: 0;
}


.content_wrap .header {
  background-color: #dae3f3;
  text-align: center;
  color: #333333;
  letter-spacing: 0.15em;
  font-size: 1.28em;
  margin-bottom: 20px;
}


.content_wrap .header_txt {
  text-align: center;
  color: #333333;
  letter-spacing: 0.1em;
  font-size: 110%;
  margin-bottom: 20px;
}

@media screen and (min-width: 690px) {
  .content_wrap .header {
    padding: 40px 0px 37px 0px;
    margin-bottom: 37px;
  }
}


.content_wrap .header p{
  margin: 40px 0 0 0;
}

@media screen and (min-width: 980px) {
  .content_wrap .header {
    padding: 70px 0px 50px 0px;
    font-size: 120%;
    margin-bottom: 37px;
  }
}

.content_wrap .header img {
  opacity: 0;
}

.content_wrap .header .header-img {
  max-width: 1170px;
  margin-bottom: 5px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

@media screen and (min-width: 980px) {
  .content_wrap .header .header-img {
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.content_wrap .header .header-img > * {
  -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
/*  -webkit-flex: 0 0 calc(50% - 20px);
      -ms-flex: 0 0 calc(50% - 20px);
          flex: 0 0 calc(50% - 20px);*/
}

@media screen and (min-width: 980px) {
  .content_wrap .header .header-img > * {
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
/*    -webkit-flex: 0 0 calc(50% - 40px);
        -ms-flex: 0 0 calc(50% - 40px);
            flex: 0 0 calc(50% - 40px);*/
  }
}

.content_wrap .header .header__logo {
  margin-bottom: 10px;
}

@media screen and (min-width: 980px) {
  .content_wrap .header .header__logo {
    margin-bottom: 35px;
  }
}

.content_wrap .recommend {
  margin-top: 7.8%;
}
@media screen and (min-width: 980px) {
  .content_wrap .recommend {
  }
}

.recommend-block {
  margin-bottom: 20%;
}
@media screen and (min-width: 980px) {
  .recommend-block {
    margin-bottom: 10%;
  }
}

.recommend-block h3 {
  margin-bottom: 4%;
  color: #436cb3;
  font-family: adobe-garamond-pro, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.6em;
}
@media screen and (min-width: 980px) {
  .recommend-block h3 {
    margin-bottom: 1.8%;
  }
}
.recommend-block .recommend-lead {
  margin-bottom: 4%;
  font-weight: bold;
  line-height: 21px;
}

.content_wrap .item-block {
  margin-bottom: 3.5%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.content_wrap .item-block .item-block__inner {
  -webkit-flex: 0 0 49%;
      -ms-flex: 0 0 49%;
          flex: 0 0 49%;
  -webkit-flex: 0 0 calc(50% - 5px);
      -ms-flex: 0 0 calc(50% - 5px);
          flex: 0 0 calc(50% - 5px);
  text-align: center;
}
@media screen and (min-width: 690px) {
  .content_wrap .item-block .item-block__inner {
    -webkit-flex: 0 0 24%;
        -ms-flex: 0 0 24%;
            flex: 0 0 24%;
    -webkit-flex: 0 0 calc(25% - 10px);
        -ms-flex: 0 0 calc(25% - 10px);
            flex: 0 0 calc(25% - 10px);
  }
}
@media screen and (min-width: 980px) {
  .content_wrap .item-block .item-block__inner {
    -webkit-flex: 0 0 calc(25% - 12px);
        -ms-flex: 0 0 calc(25% - 12px);
            flex: 0 0 calc(25% - 12px);
    max-width: 280px;
  }
}
.content_wrap .item-block .item-block__inner dl {
  margin: 0 0;
}
.content_wrap .item-block .item-block__inner dt {
  margin-bottom: 7%;
}
.content_wrap .item-block .item-block__inner dd {
  margin: 0 0 2%;
}
.content_wrap .item-block .item-block__inner dd.item-block__brand {
  font-weight: bold;
}

.recommend-block .btn_all {
  width: 90%;
  max-width: 856px;
  margin: 0 auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.recommend-block .btn_all a {
  display: block;
  width: 100%;
  margin: 1% 0;
  padding: 5% 0;
  background-color: #fff;
  border: solid 1px #436cb3;
  color: #436cb3;
  font-weight: bold;
}
.recommend-block .btn_all a:hover {
  background-color: #436cb3;
  color: #fff;
}
.recommend-block .btn_all a::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: solid 1px #436cb3;
  border-right: solid 1px #436cb3;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 10px;
  margin-right: -10px;
}
.recommend-block .btn_all a:hover::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 10px;
  margin-right: -10px;
}
@media screen and (min-width: 980px) {
  .recommend-block .btn_all a {
    width: 49.5%;
    max-width: 420px;
    padding: 2.2% 0;
  }
}

.content_wrap .bnr_area {
  width: 90%;
  max-width: 1023px;
  margin: 5% auto;
}
.content_wrap .bnr_area ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.content_wrap .bnr_area ul li {
  width: 100%;
  margin-bottom: 5%;
}
@media screen and (min-width: 980px) {
  .content_wrap .bnr_area ul li {
    width: 49%;
    max-width: 496px;
  }
}

@-moz-document url-prefix() {
  .content_wrap .header-img img {
    width: 100%;
    max-width: 100%;
  }
}

/* Utility */
.hide_text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clear {
  clear: both;
}

.fluid_img {
  max-width: 100%;
  height: auto;
}

.none {
  display: none;
}

.flo-left {
  float: left;
}

.flo-right {
  float: right;
}

.text_left {
  text-align: left;
}

.text_right {
  text-align: right;
}

.text_center {
  text-align: center;
}

.font_small {
  font-size: 80%;
}

.opa-0,
.ani-fadeIn,
.ani-fadeInLeft {
  opacity: 0;
}

.flex-wrapper,
.flex-outer,
.flex-parent {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-child {
  width: 50%;
}

.u-none {
  display: none;
}

@media screen and (min-width: 980px) {
  .u-md-block {
    display: block;
  }
}

@media screen and (min-width: 690px) {
  .u-sm-block {
    display: block;
  }
}

@media screen and (min-width: 690px) {
  .u-sm-inline {
    display: inline;
  }
}

@media screen and (min-width: 980px) {
  .u-md-inline {
    display: inline;
  }
}

.u-table {
  display: table;
}

@media screen and (min-width: 980px) {
  .u-md-table {
    display: table;
  }
}

@media screen and (min-width: 480px) {
  .u-xs-none {
    display: none;
  }
}

@media screen and (min-width: 690px) {
  .u-sm-none {
    display: none;
  }
  .u-none {
    display: block;
  }
}

@media screen and (min-width: 980px) {
  .u-md-none {
    display: none;
  }
}

.u-font-sml {
  font-size: 80%;
}

.u-pos-relative {
  position: relative;
}

.content_wrap .bnr_footer {
  display: block;
  text-align: center;
  margin: 0 auto;
  max-width: 560px;
}

.content_wrap nav {
  margin-bottom: 58px;
}

.content_wrap .border_line{
  max-width: 100%;
  border-top: 1px solid #ccc;
  margin-bottom: 70px;
  margin-top: 70px;
}


.content_wrap nav ul {
  width: 100%;
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
}

.content_wrap nav ul li {
  width: calc((100%/2) - 5px);/*←画像を横に4つ並べる場合*/
  position: relative;
  margin-bottom: 3%;
  padding: 3% 0 3.5%;
  border-top: solid 2px #d7d7d7;
  box-sizing:border-box;
  color: #333333;
  text-align: center;
  font-family: adobe-garamond-pro, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2em;
}
.content_wrap .fixed nav ul li {
  font-size: 1.8em;
}
.content_wrap nav ul li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 7px solid #dae3f3;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.content_wrap nav ul li a {
  display: block;
  width: 100%;
  color: #333333;
}
.content_wrap nav ul li a:hover {
  color: #abb8d5;
  opacity: 1;
}

.content_wrap nav ul li img {
  max-width:100%; /*画像のはみだしを防ぐ*/
  height: auto; /*画像の縦横比を維持 */
}
@media screen and (min-width: 690px) {
  .content_wrap nav ul li {
    width: calc((100%/4) - 15px);/*←画像を横に4つ並べる場合*/
    max-width: 280px;
    padding: 2% 0 2.5%;
    font-size: 2.8em;
  }
  .content_wrap nav ul li::after {
    border-top: 10px solid #dae3f3;
  }
  .content_wrap .border_line{
    max-width: 100%;
    border-top: 1px solid #ccc;
    margin-bottom: 120px;
    margin-top: 50px;
  }
}
/*================================================================================

state

================================================================================*/
.is-fade-in {
  transition: opacity 0.2s linear;
  opacity: 1 !important;
}

.is-fade-out {
  transition: opacity 0.6s ease-in-out;
  opacity: 0 !important;
}

.is-fade-out--long {
  transition: opacity 1s ease-in-out;
  opacity: 0 !important;
}

.is-nav-on {
  display: table-cell !important;
  vertical-align: middle;
  height: 100vh;
  padding: 20vh 0;
}




#lsize_nav {
    width: 100%;
    list-style: none;
    margin: 0 auto 0;
    overflow: hidden;
}
.dummy {
  display: none;
}
@media (max-width: 768px){
  #lsize_nav {
  }
}
.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
#lsize_nav.fixed{
  background: #ffffff;
}

.fixed #fixedbox{
  max-width: 890px;
}
#fixedbox {
    max-width: 1170px;
    margin: auto;
    transition: 0.7s;
}
#fixedbox .p-header__navigation {
  width: 100%;
  max-width: 1170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-between;
}
@media (max-width: 768px){
  #fixedbox .p-header__navigation {
    background: #ffffff;
    padding-bottom: 0%;
  }
}
#fixedbox .p-header__navigation li {
  -webkit-flex: 0 1 16%;
      -ms-flex: 0 1 16%;
          flex: 0 1 16%;
  -webkit-flex: 0 1 calc(100% / 6);
      -ms-flex: 0 1 calc(100% / 6);
          flex: 0 1 calc(150% / 6);
}


@media (max-width: 768px){
  #fixedbox .p-header__navigation li {
    margin-bottom: 2%;;
    -webkit-flex: 0 1 30%;
        -ms-flex: 0 1 30%;
            flex: 0 1 30%;
    -webkit-flex: 0 1 calc(98% / 3);
        -ms-flex: 0 1 calc(98% / 3);
            flex: 0 1 calc(120% / 2.5);
  }
}
