@charset "UTF-8";
/*=============================================================
 newweblp
=============================================================*/
/*! ==============================================

base

================================================ */
/*! clearfix
================================================ */
.cf:after {
  content: '';
  display: block;
  clear: both;
}

html {
  overflow: auto;
  -webkit-font-smoothing: antialiased;
  font-size: calc(100vw / 32);
}

@media screen and (min-width: 600px) {
  html {
    font-size: 62.5%;
  }
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  overflow: hidden;
  min-width: 320px;
  color: #323232;
  font-family: メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .05em;
  -webkit-font-smoothing: antialiased;
  text-align: justify;
  text-justify: inter-ideograph;
  background: #fff;
}

@media screen and (min-width: 600px) {
  body {
    min-width: 980px;
    background-size: auto;
    background-position: center center;
    background-repeat: repeat;
    height: 100%;
    background-image: url("../img/funfes/img_funfes_bace.png");
  }
}

table {
  table-layout: fixed;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 600px) {
  img {
    width: 100%;
    height: auto;
  }
}

a {
  color: #323232;
  text-decoration: none;
  outline: none;
}

@media screen and (max-width: 600px) {
  .viewPc {
    display: none !important;
  }
}

@media screen and (min-width: 600px) {
  .viewSp {
    display: none !important;
  }
  .viewPc {
    display: inline-block;
  }
}

@media screen and (min-width: 600px) {
  .innerPc {
    width: 980px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 600px) {
  .innerSp {
    padding-right: 15px;
    padding-left: 15px;
  }
  .innerSp10 {
    padding-right: 10px;
    padding-left: 10px;
  }
  .innerSp20 {
    padding-right: 10px;
    padding-left: 10px;
  }
}

#contents {
  max-width: 1920px;
  margin: 0 auto;
}

.mod_btn03 {
  display: block;
  padding: 15px;
  color: #fff;
  font-weight: 400;
  text-align: left;
  border: 1px solid #3b3b3b;
  -webkit-transition: .3s;
  transition: .3s;
}

.mod_btn03 span {
  position: relative;
  display: block;
}

.mod_btn03 span:before, .mod_btn03 span:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transition: .2s;
  transition: .2s;
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}

.mod_btn03 span:before {
  width: 30px;
  height: 1px;
  background: #fff;
}

.mod_btn03 span:after {
  width: 4px;
  height: 4px;
  margin-top: -1px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (min-width: 600px) {
  .mod_btn03 {
    box-sizing: border-box;
    z-index: 1;
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    padding: 14px 30px;
    font-size: 1.5rem;
    background: transparent;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  .mod_btn03:before {
    z-index: -1;
    box-sizing: border-box;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #24140c;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  .mod_btn03 span:before, .mod_btn03 span:after {
    right: 0;
  }
  .mod_btn03 span:before {
    width: 30px;
    height: 1px;
    background: #fff;
  }
  .mod_btn03 span:after {
    width: 4px;
    height: 4px;
    margin-top: -1px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  .mod_btn03:hover {
    color: #3b3b3b;
  }
  .mod_btn03:hover:before {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  .mod_btn03:hover span:before {
    background: #3b3b3b;
  }
  .mod_btn03:hover span:after {
    border-top: 1px solid #3b3b3b;
    border-right: 1px solid #3b3b3b;
  }
}

.fadeUp {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}

.fadeUp.is-show {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* .mainScroll スクロールアイコン
-------------------------------------- */
.mainScroll {
  z-index: 102;
  overflow: hidden;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  -webkit-transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.mainScroll a {
  display: block;
}

.mainScrollTxt {
  margin-bottom: 8px;
  color: #fff;
  font-size: 17.6px;
  font-size: 1.1rem;
  text-align: center;
}

.mainScrollLine {
  margin-left: auto;
  margin-right: auto;
  width: 1px;
  height: 25px;
  background-color: #fff;
  -webkit-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
  -webkit-animation-name: scroll-icon;
  animation-name: scroll-icon;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-timing-function: cubic-bezier(0.37, 0.16, 0.12, 1);
  animation-timing-function: cubic-bezier(0.37, 0.16, 0.12, 1);
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.mainScroll:hoverLine {
  background-color: #d4b079;
}

@media screen and (min-width: 600px) {
  .mainScrollTxt {
    font-size: 1.4rem;
  }
  .mainScrollLine {
    height: 35px;
  }
}

@-webkit-keyframes scroll-icon {
  0% {
    height: 0%;
    top: 100%;
  }
  50% {
    height: 100%;
    top: 0;
  }
  100% {
    height: 0%;
    top: 0;
  }
}

@keyframes scroll-icon {
  0% {
    height: 0%;
    top: 100%;
  }
  50% {
    height: 100%;
    top: 0;
  }
  100% {
    height: 0%;
    top: 0;
  }
}

.btn a {
  transition: .3s;
}
.btn a:hover {
  opacity: .6;
}



/*! mainArea
============================================ */
@media screen and (min-width: 600px) {
  .mainArea {
    position: relative;
    min-height: 889px;
    background: url(../img/newweblp/bg_main01_pc.png) no-repeat top center;
    background-size: cover;
  }
}

/*! header
============================================ */
.header .logo {
  width: 50%;
  margin: 20px auto 10px;
}

.header .font_2 {
  width: 64%;
  margin: 0 auto 15px;
  font-size: 17.6px;
  font-size: 1.1rem;
  font-family: basic,sans-serif;
  text-align: center;
}

.header .font_2 .en {
  text-align: center;
  font-size:11px;
}

@media screen and (min-width: 600px) {
  .header {
    padding: 5px 50px;
    z-index: 1;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header .logo, .header .font_2 {
    display: inline-block;
    vertical-align: bottom;
  }
  .header .logo {
    width: 240px;
    margin-right: 10px;
  }
  .header .font_2 {
    margin: 0 auto 21px;
    font-weight: bold;
    font-family: basic,sans-serif;
  }
  .header .font_2 .ja {
    margin-bottom: 6px;
    font-size: 10px;
    letter-spacing: 0.2em;
  }
  .header .font_2 .en {
    display: block;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-align: left;
    line-height: 20px;
  }
}

/*! mainImg
============================================ */
.mainImg {
  position: relative;
  padding-bottom: 105%;
  background: url(../img/newweblp/bg_main01_sp.png) no-repeat center top;
  -webkit-background-size: cover;
  background-size: cover;
}
.mainImg .mainCopyArea {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 100%;
  transform: translate(-50%,-50%);
  color: #fff;
  text-align: center;
}
.mainImg .mainCopyArea:before {
  content:"NEW";
  position: absolute;
  top: -85px;
  left: 10px;
  width: 79px;
  height: 75px;
  background: rgba(246, 250, 20, 1);
  border-radius: 50px;
  letter-spacing: 0.1em;
  color: #000000;
  font-family: futura-lt-w01-book,sans-serif;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  line-height: normal;
  letter-spacing: normal;
  padding: 24px 0;
}
.mainImg .mainCopyArea .mainCopy01 {
  margin-top: 10px;
  word-wrap: break-word;
  letter-spacing: 0.15em;
  font-size: 13px;
  font-family: avenir-lt-w01_35-light1475496,sans-serif;
}
.mainImg .mainCopyArea .mainCopy02 {
  font-size: 36px;
  font-family: ｍｓ 明朝,ms mincho,ヒラギノ明朝 pro w3,hiragino mincho pro,serif;
  letter-spacing: 0.15em;
  margin-bottom: 25px;
  margin-top: 5px;
  line-height: 1.2;
}
.mainImg .mainCopyArea .mainCopy03 {
  letter-spacing: 0.15em;
  font-family: ｍｓ ｐゴシック,ms pgothic,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,osaka,sans-serif;
  font-size: 15px;
  font-weight: bold;
}
@media screen and (min-width: 600px) {
  .mainImg {
    position: absolute;
    width: 100%;
    min-height: 889px;
    padding-bottom: 0;
    background: url(../img/newweblp/bg_main01_pc.png) no-repeat center top;
  }
  .mainImg .mainCopyArea {
    top: 45%;
    color: #000;
    width: 750px;
    text-align: left;
  }
  .mainImg .mainCopyArea:before {
    top: -137px;
    left: -30px;
    font-size:38px;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    padding: 42px 0;
  }
  .mainImg .mainCopyArea .mainCopy01 {
    margin-top: 30px;
    top: 30px;
    font-size:18px;
  }
  .mainImg .mainCopyArea .mainCopy02 {
    font-size:74px;
    margin: 0;
  }
  .mainImg .mainCopyArea .mainCopy03 {
    font-size:25px;
  }
}

.pswp__caption__center {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  text-align: center !important;
  color: #fff !important;
  font: normal normal 100 14px/1.5 Helvetica !important;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow: hidden;
  overflow-wrap: break-word;
}
.pswp__caption__center span {
  display: block;
  margin-bottom: 10px;
}

@media screen and (min-width: 600px) {
  .pswp__caption__center span {
    font-size: 16px;
  }
  .pswp__button--arrow--left:before,
  .pswp__button--arrow--right:before {
    content: "";
    display: block;
    width: 20px !important;
    height: 20px !important;
    border-top: 2px solid #fff !important;
    border-right: 2px solid #fff !important;
    background: none !important;
  }
  .pswp__button--arrow--left:before {
    left: 50px !important;
    transform: rotate(-135deg);
  }
  .pswp__button--arrow--right:before {
    right: 50px !important;
    transform: rotate(45deg);
  }
}


/*! sec01
============================================ */
.sec01 {
  padding-top: 10px;
  padding-bottom: 14px;
}

.sec01 .tit {
  position: relative;
  margin-bottom: 5px;
  padding-left: 4px;
  font-family: droid-serif-w01-regular,droid-serif-w02-regular,droid-serif-w10-regular,serif;
  font-size: 25.6px;
  font-size: 1.6rem;
  line-height: 1.6em;
  letter-spacing: 0.15em;
}

.sec01 .tit:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
}

.sec01 .box .txt {
  float: left;
  width: 49%;
}

.sec01 .box .img {
  float: right;
  width: 42.6%;
}

@media screen and (min-width: 600px) {
  .sec01 {
    height: 182px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
  }
  .sec01 .tit {
    margin-top: 50px;
    margin-left: 50px;
    width: 452px;
    font-size: 22px;
    line-height: 1.6em;
    font-family: droid-serif-w01-regular,droid-serif-w02-regular,droid-serif-w10-regular,serif;
    color: black;
    letter-spacing: 0.15em;
  }
  .sec01 .box .txt {
    margin-left: 50px;
    width: 452px;
  }
  .sec01 .box .img {
    width: auto;
  }
  .sec01 .box .img img {
    margin-top: -105px;
    width: 262px;
  }
}

.sec02 {
  margin-bottom: 64px;
}
.sec02 .titWrap {
  padding: 20px 0 18px;
  text-align: center;
  background-color: #D2BE19;
}

.sec02 .titWrap .tit {
  margin-bottom: 8px;
  color: #000000;
  font-size: 4px;
  font-family:  ｍｓ ｐゴシック,ms pgothic,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,osaka,sans-serif;
  letter-spacing: 0.35em;
}

.sec02 .titWrap .en {
  text-align: center;
  color: #ffff;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0.45em;
  font-family:  ｍｓ ｐゴシック,ms pgothic,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,osaka,sans-serif;
}
.sec02 .list .item {
  position: relative;
  margin-bottom: 5px;
}

.sec02 .list .item a {
  position: relative;
  display: block;
  -webkit-transition: .4s;
  transition: .4s;
}

.sec02 .list .item a:before {
  -webkit-transition: .4s;
  transition: .4s;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
}

.sec02 .list .item:hover a:before {
  opacity: .7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  visibility: visible;
}

.sec02 .list .item figcaption {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  -webkit-transition: .4s;
  transition: .4s;
  text-align: center;
  color: #2F2E2E;
  font: normal normal normal 12px/1.4em raleway,sans-serif;
  line-height: 1.3em;
  max-height: 3.9em;
  text-overflow: ellipsis;
  white-space: pre-line;
}

.sec02 .list .item figcaption span {
  display: block;
  margin-bottom: 5px;
  font: normal normal 700 16px/1.4em raleway,sans-serif;
}

.sec02 .list .item:hover figcaption {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
}

.sec02 .galleryNext {
  text-align: center;
  cursor: pointer;
  display: block;
  line-height: 2.3em !important;
  padding: 0 10px;
  text-decoration: underline;
  color: #2A2A2A;
  font: normal normal normal 16px/1.4em raleway,sans-serif;
}
.sec02 .galleryNext:hover {
  text-decoration: none;
}
@media screen and (min-width: 600px) {
  .sec02 {
    margin-bottom: 0;
  }
    .sec02 .titWrap {
    padding-top: 30px;
  }
  .sec02 .titWrap .tit {
    font-size: 13px;
    letter-spacing: 0.35em;
    text-align: center;
  }
  .sec02 .titWrap .en {
    font-size: 30px;
    letter-spacing: 0.35em;
    font-weight: bold;
    text-align: center;
  }
  .sec02 .list .item {
    float: left;
    width: 326px;
    margin: 0;
  }

}

.sec03 .txtImg {
  width: 49.35%;
}

.sec03 .img {
  float: left;
  width: 63.4%;
  margin-left: -35px;
  margin-bottom: -5px;
}

.sec03 .txt {
  float: left;
  width: 43.8%;
  line-height: 2.1em;
  text-align: justify;
  font-size: 8px;
  text-align: justify;
  letter-spacing: .15em;
}

.sec03 .btn {
  float: left;
  width: 41%;
  margin: 0 2%;
}

.sec03 .btn a {
  display: block;
}

.sec03 .note {
  clear: both;
  text-align: justify;
  color: #585858;
  font-size: 8px;
  line-height: normal;
}

@media screen and (min-width: 600px) {
  .sec03 {
    margin-top: -27px;
  }
  .sec03 .box {
    display: table;
    margin-bottom: 40px;
    background: #fff;
  }
  .sec03 .boxImg, .sec03 .boxTxt {
    display: table-cell;
    vertical-align: middle;
  }
  .sec03 .boxImg {
    width: 50%;
  }
  .sec03 .boxImg .txtImg {
    width: 346px;
    margin: 36px 75px 0 66px;
  }
  .sec03 .boxImg .txtImg img {
    width: 100%;
  }
  .sec03 .boxImg .img {
    width: 483px;
    margin-top: -15px;
    margin-left: -10px;
    margin-bottom: 0;
  }
  .sec03 .boxImg .img {
    position: relative;
  }
  .sec03 .boxImg .img:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 40px;
    left: 60px;
    width: 89px;
    height: 93px;
    background: url(../img/newweblp/ico_catalog01.png) no-repeat center center;
    background-size: contain;
    -webkit-transform: rotate(350deg) translateZ(0px);
    transform: rotate(350deg) translateZ(0px);
  }
  .sec03 .boxImg .img img {
    width: 100%;
  }
  .sec03 .boxTxt {
    width: 50%;
    padding: 140px 46px 82px;
    background-color: rgba(222, 220, 220, 0.27);
  }
  .sec03 .boxTxt .titWrap {
    text-align: center;
  }
  .sec03 .boxTxt .titWrap .en {
    position: relative;
    font-size: 11px;
    line-height: 1.6em;
    text-align: center;
    font-family: ｍｓ ｐゴシック,ms pgothic,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,osaka,sans-serif;
    font-weight: bold;
    color: black;
    letter-spacing: 0.15em;
  }
  .sec03 .boxTxt .titWrap .en:before, .sec03 .boxTxt .titWrap .en:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
  }
  .sec03 .boxTxt .titWrap .en:before {
    top: -4px;
  }
  .sec03 .boxTxt .titWrap .en:after {
    bottom: -4px;
  }
  .sec03 .boxTxt .titWrap .tit {
    margin: 10px 0;
    font-size: 20px;
    line-height: 1.6em;
    text-align: center;
    font-family: ｍｓ 明朝,ms mincho,ヒラギノ明朝 pro w3,hiragino mincho pro,serif;
    font-size: 20px;
    font-weight: bold;
    color: black;
    letter-spacing: 0.15em;
  }
  .sec03 .boxTxt .txt {
    float: none;
    width: auto;
    margin: 0 0 50px;
    font-size: 13px;
    line-height: 2.1em;
    text-align: justify;
    font-size: 13px;
    color: black;
    letter-spacing: 0.15em;
  }
  .sec03 .boxTxt .btn {
    float: none;
    width: 331px;
    margin: 0 auto 50px;
  }
  .sec03 .boxTxt .btn img {
    width: 100%;
  }
}

.sec04 {
  margin-top: 36px;
  background-color: #c1c1c1;
}

.sec04 .titWrap {
  position: relative;
  padding: 20px 15% 152px;
  background: url(../img/newweblp/bg_sec04_sp.png) no-repeat center top;
  background-size: cover;
}

.sec04 .titWrap .txt {
  margin-bottom: 20px;
  text-align: center;
  font-size: 11px;
  color: #FFFFFF;
  letter-spacing: 0.2em;
  font-family: basic,sans-serif;
  font-weight: normal;
}

.sec04 .titWrap .catch {
  line-height: 1.4em;
  color: #000000;
  font-size: 18px;
  font-family: ｍｓ ｐ明朝,ms pmincho,ヒラギノ明朝 pro w3,hiragino mincho pro,serif;
  letter-spacing: 0.05em;
  color: #000000;
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 13px 0;
}

.sec04 .list {
  position: relative;
  padding: 33px 0 21px;
  font-size: 0;
  text-align: center;
}

.sec04 .list .item {
  display: inline-block;
  width: 41%;
  margin: 5px;
  background: #fff;
  border: 2px solid #2a2a2a;
}

.sec04 .list .item span {
  display: block;
  text-align: center;
}

.sec04 .list .item .top {
  position: relative;
  color: #fff;
  padding: 10px 0;
  background: #2a2a2a;
  line-height: 1.7em;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.15em;
  font-weight: bold;
}

.sec04 .list .item .top:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
  border: solid transparent;
  border-width: 10px 10px 0;
  border-top-color: #2a2a2a;
}

.sec04 .list .item .bottom {
  padding: 25px 0 20px;
  line-height: 1.7em;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0em;
}

@media screen and (min-width: 600px) {
  .sec04 {
    margin: 0;
    background: none;
  }
  .sec04 .titWrap {
    padding: 50px 27px 522px;
    background: url(../img/newweblp/bg_sec04_pc.png) no-repeat center top;
    background-size: 100% auto;
  }
  .sec04 .titWrap .txt {
    width: 433px;
    font-size: 14px;
  }
  .sec04 .titWrap .tit {
    width: 433px;
  }
  .sec04 .titWrap .catch {
    position: relative;
    padding: 33px 0;
    padding-left: 161px;
    position: absolute;
    font-size: 25px;
    line-height: 1.4em;
    text-align: left;
  }
  .sec04 .titWrap .catch:before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 82px;
    width: 66px;
    height: 1px;
    background: #000;
  }
  .sec04 .list {
    overflow: hidden;
    padding: 0;
    background-color: #c1c1c1;
  }
  .sec04 .list .item {
    float: left;
    width: 33.3%;
    margin: 0;
    border: none;
    background: none;
    padding: 72px 43px 55px 44px;
    border-left: 3px solid #fff;
  }
  .sec04 .list .item:first-child {
    border-left: 0;
  }
  .sec04 .list .itemIn {
    width: 240px;
    margin: auto;
    background: #fff;
    border: 3px solid #2a2a2a;
  }
  .sec04 .list .item .top {
    font-size: 17px;
    line-height: 1.7em;
    text-align: center;
    padding: 20px 0;
  }
  .sec04 .list .item .bottom {
    font-size: 20px;
    line-height: 1.7em;
    text-align: center;
    padding: 26px 0 28px;
  }
}

.sec05 {
  padding: 45px 10px 40px;
}

.sec05 .titWrap {
  text-align: center;
}

.sec05 .tit {
  display: inline-block;
  position: relative;
  margin-bottom: 28px;
  line-height: 1.4em;
  text-align: center;
  font-size: 25px;
  font-family: ｍｓ ｐ明朝,ms pmincho,ヒラギノ明朝 pro w3,hiragino mincho pro,serif;
}

.sec05 .tit:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -10px;
  left: 0px;
  background: #000;
}

.sec05 .tit .en, .sec05 .tit .ja {
  display: inline-block;
  vertical-align: bottom;
}

.sec05 .tit .en {
  margin-right: 10px;
  font-size: 33px;
  letter-spacing: 0.05em;
  color: #000000;
}

.sec05 .tit .ja {
  line-height: normal;
  font-size: 14px;
  letter-spacing: 0em;
  color: #000000;
  font-weight: normal;
}

.sec05 ul {
  overflow: hidden;
  margin: 0 0 10px;
}

.sec05 ul li {
  float: left;
  width: 24%;
  margin-left: 1%;
  padding: 25px 11px;
  border-radius: 10px;
  background: #585858;
  color: #fff;
  line-height: 1.7em;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0em;
  font-weight: bold;
}

.sec05 ul li:first-child {
  margin-left: 0;
}

.sec05 .aboutCatalog {
  margin-bottom: 35px;
  padding: 0 5px;
}

.sec05 .aboutCatalog .box {
  padding: 5px 0;
  border: 1px solid black;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.35);
}

.sec05 .aboutCatalog .box .ico, .sec05 .aboutCatalog .box .txt, .sec05 .aboutCatalog .box .img {
  display: inline-block;
  vertical-align: middle;
}

.sec05 .aboutCatalog .box .ico {
  width: 17%;
  margin: 0 2% 0 1%;
}

.sec05 .aboutCatalog .box .txt {
  width: 36%;
  line-height: 1.7em;
  font-size: 11px;
  font-family: arial,ｍｓ ｐゴシック,ms pgothic,돋움,dotum,helvetica,sans-serif;
  color: #000000;
}

.sec05 .aboutCatalog .box .img {
  width: 40%;
}

.sec05 .btn {
  width: 180px;
  margin: 0 auto;
}

.sec05 .btn a {
  display: block;
}

@media screen and (min-width: 600px) {
  .sec05 {
    padding: 120px 0 60px;
    background: #fff;
  }
  .sec05 .titWrap {
    text-align: center;
  }
  .sec05 .tit {
    display: inline-block;
    line-height: 1.4em;
    text-align: center;
    padding: 0 10px;
  }
  .sec05 .tit:after {
    bottom: 0;
  }
  .sec05 .tit .en {
    font-size: 74px;
    font-weight: normal;
    vertical-align: baseline;
  }
  .sec05 .tit .ja {
    font-size: 18px;
    letter-spacing: 0em;
    vertical-align: baseline;
    margin-left: 20px;
  }
  .sec05 ul {
    margin: 15px 64px 35px;
  }
  .sec05 ul li {
    width: 160px;
    padding: 55px 11px;
    margin-left: 65px;
    font-size: 17px;
    line-height: 1.7em;
    text-align: center;
    font-family: メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;
    letter-spacing: 0em;
  }
  .sec05 ul li:first-child {
    margin-left: 0;
  }
  .sec05 .aboutCatalog .box {
    width: 624px;
    margin: 0 auto;
    padding: 0;
  }
  .sec05 .aboutCatalog .box .ico {
    width: 70px;
    margin: 0 8px 0 27px;
  }
  .sec05 .aboutCatalog .box .txt {
    width: 300px;
    font-size: 13px;
    line-height: 1.7em;
    font-size: 13px;
  }
  .sec05 .aboutCatalog .box .img {
    width: 187px;
    margin-bottom: -12px;
  }
  .sec05 .btn {
    width: 242px;
    margin: 65px auto 0;
  }
}

.sec06 .titWrap {
  padding: 20px 0 18px;
  text-align: center;
  background-color: #e8e8e8;
}

.sec06 .titWrap .tit {
  margin-bottom: 8px;
  color: #000000;
  font-size: 4px;
  font-family: ｍｓ 明朝,ms mincho,ヒラギノ明朝 pro w3,hiragino mincho pro,serif;
  letter-spacing: 0.35em;
}

.sec06 .titWrap .en {
  text-align: center;
  color: #000000;
  font-size: 23px;
  font-weight: bold;
  font-family: ｍｓ 明朝,ms mincho,ヒラギノ明朝 pro w3,hiragino mincho pro,serif;
}

.sec06 .aboutImg {
  position: relative;
}

.sec06 .aboutImg:before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  width: 102px;
  height: 102px;
  background: url(../img/newweblp/ico_newspaper01.png) no-repeat center center;
  background-size: contain;
}

.sec06 .txt {
  padding: 30px 0;
  line-height: 1.4em;
  text-align: center;
  color: #000000;
  font-size: 15px;
  color: #000000;
  font-family: ｍｓ 明朝,ms mincho,ヒラギノ明朝 pro w3,hiragino mincho pro,serif;
  letter-spacing: 0.35em;
}

.sec06 .txt span {
  display: block;
}

.sec06 .imgWrap {
  overflow: hidden;
}

.sec06 .imgWrap .img {
  float: left;
  width: 50%;
}

.sec06 .houseGallery {
  padding: 30px 11.5% 44px;
  background: url(../img/newweblp/img_about02.png) no-repeat center top;
  background-size: cover;
}

.sec06 .houseGallery .subTit {
  color: #fff;
}

.sec06 .houseGallery .subTit .en {
  position: relative;
  margin-bottom: 15px;
  line-height: 1.1em;
  text-align: center;
  font-size: 14px;
  font-family: ｍｓ 明朝,ms mincho,ヒラギノ明朝 pro w3,hiragino mincho pro,serif;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.sec06 .houseGallery .subTit .en:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -2px;
  margin-left: -40px;
  width: 80px;
  height: 1px;
  background: #fff;
}

.sec06 .houseGallery .subTit .tit01, .sec06 .houseGallery .subTit .tit02 {
  margin-bottom: 5px;
  line-height: 1.1em;
  text-align: center;
  font-size: 15px;
  font-family: ｍｓ 明朝,ms mincho,ヒラギノ明朝 pro w3,hiragino mincho pro,serif;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.sec06 .houseGallery .catch {
  padding: 13px 0;
  line-height: 1.4em;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
}

.sec06 .houseGallery .more {
  width: 203px;
  margin: 26px auto 0;
  font-family: 'Libre Baskerville', serif;
}

.sec06 .houseGallery .more a {
  color: #fff;
  border: 1px solid #fff;
}

.sec06 .houseGallery .more span:before {
  background: #fff;
}

.sec06 .houseGallery .more span:after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

@media screen and (min-width: 600px) {
  .sec06 {
    background-color: #e8e8e8;
  }
  .sec06 .titWrap {
    padding-top: 55px;
  }
  .sec06 .titWrap .tit {
    margin-left: 92px;
    font-size: 13px;
    letter-spacing: 0.35em;
    text-align: left;
  }
  .sec06 .titWrap .en {
    font-size: 55px;
    font-weight: bold;
    text-align: center;
  }
  .sec06 .aboutImg:before {
    top: 34px;
    left: 57px;
    width: 185px;
    height: 185px;
  }
  .sec06 .txt {
    font-size: 29px;
    line-height: 1.4em;
    letter-spacing: 0.35em;
    text-align: center;
    background: #fff;
  }
  .sec06 .col3 {
    position: relative;
  }
  .sec06 .imgWrap {
    position: relative;
    height: 325px;
  }
  .sec06 .imgWrap .img {
    width: 33.3%;
  }
  .sec06 .imgWrap .img:first-child, .sec06 .imgWrap .img:last-child {
    position: absolute;
    top: 0;
  }
  .sec06 .imgWrap .img:first-child {
    left: 0;
  }
  .sec06 .imgWrap .img:last-child {
    right: 0;
  }
  .sec06 .houseGallery {
    position: absolute;
    top: 0;
    left: 33.4%;
    width: 33.3%;
    padding: 26px 40px 40px;
  }
  .sec06 .houseGallery .subTit .en {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.1em;
    text-align: center;
    letter-spacing: 0.1em;
  }
  .sec06 .houseGallery .subTit .en:after {
    bottom: -4px;
    height: 2px;
  }
  .sec06 .houseGallery .subTit .tit01 {
    margin-bottom: 10px;
    font-size: 15px;
  }
  .sec06 .houseGallery .subTit .tit02 {
    margin-bottom: 10px;
    font-size: 13px;
  }
  .sec06 .houseGallery .catch {
    padding: 20px 0;
    margin-bottom: 40px;
    font-size: 15px;
  }
  .sec06 .houseGallery .more a:before {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    background-color: rgba(255, 255, 255, 0.6);
  }
  .sec06 .houseGallery .more a:hover {
    color: #000;
    border: 1px solid #000;
  }
  .sec06 .houseGallery .more a:hover:before {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  .sec06 .houseGallery .more a:hover span:before {
    background: #000;
  }
  .sec06 .houseGallery .more a:hover span:after {
    border-top: 1px solid #000;
    border-right: 1px solid #000;
  }
}
.sec07 {
  }
  .sec07 .btn {
  text-align: center;
  }
   .sec07 .btnimg {
   display: inline-block;
   width: 80%;
  }
 .sec07 .btnimg:hover{
  opacity:0.6;
  } 
  
.sec07 .top {
  padding: 30px 11.5% 44px;
}

.sec07 .top .titWrap {
  text-align: center;
}

.sec07 .top .titWrap .en {
  margin-bottom: 5px;
  line-height: 1.9em;
  text-align: center;
  font-size: 12px;
  font-family: ｍｓ 明朝,ms mincho,ヒラギノ明朝 pro w3,hiragino mincho pro,serif;
  color: #585858;
  font-weight: normal;
  letter-spacing: 0.1em;
}

.sec07 .top .titWrap .sub {
  display: inline-block;
  width: 150px;
  margin-bottom: 8px;
  line-height: 1.9em;
  text-align: center;
  font-size: 15px;
  color: #FFFFFF;
  font-weight: normal;
  letter-spacing: 0.1em;
  background-color: #2a2a2a;
  border-radius: 10px;
}

.sec07 .top .titWrap .tit {
  line-height: 1.9em;
  text-align: center;
  color: #2f2e2e;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-family: arial,ｍｓ ｐゴシック,ms pgothic,돋움,dotum,helvetica,sans-serif;
}

.sec07 .top .titWrap .tit span {
  margin-right: 15px;
  font-size: 46px;
  font-weight: bold;
  vertical-align: baseline;
}
.sec07 .top .tit {
  padding: 20px;
  line-height: 1.5em;
  text-align: center;
  color: #000000;
  font-size: 27px;
  letter-spacing: 0.1em;
  font-family: arial,ｍｓ ｐゴシック,ms pgothic,돋움,dotum,helvetica,sans-serif;
}
.sec07 .top .en {
  padding-bottom: 40px;
  line-height: 1.5em;
  text-align: center;
  color: #000000;
  font-size: 17px;
  letter-spacing: 0.2em;
  font-family: arial,ｍｓ ｐゴシック,ms pgothic,돋움,dotum,helvetica,sans-serif;
}
.sec07 .top .txt {
  padding: 20px;
  line-height: 2.5em;
  text-align: left;
  color: #000000;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.2em;
  font-family: arial,ｍｓ ｐゴシック,ms pgothic,돋움,dotum,helvetica,sans-serif;
  background: #fff;
}
.sec07 .top .img {
  margin-top: 3px;
}

.sec07 .catalog .catch {
  margin-bottom: 20px;
  text-align: center;
}

.sec07 .catalog .catch span {
  padding: 2px 0 10px;
  position: relative;
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: #000000;
}

.sec07 .catalog .catch span:before, .sec07 .catalog .catch span:after {
  content: "";
  display: block;
  border-bottom: 1px solid black;
  height: 0 !important;
  min-height: 0 !important;
  width: 30px;
  position: absolute;
  top: 12.5px;
  height: 5px;
}

.sec07 .catalog .catch span:before {
  -webkit-transform: rotate(110deg) translateZ(0px);
          transform: rotate(110deg) translateZ(0px);
  right: -50px;
}

.sec07 .catalog .catch span:after {
  width: 30px;
  position: absolute;
  -webkit-transform: rotate(70deg) translateZ(0px);
          transform: rotate(70deg) translateZ(0px);
  left: -26px;
}

.sec07 .catalog .box {
  padding: 0 20px 10px;
  background-color: rgba(222, 220, 220, 0.27);
}

.sec07 .catalog .box .txtImg {
  width: 280px;
  height: 67px;
  margin-bottom: 6px;
}

.sec07 .catalog .box .img {
  position: relative;
  width: 280px;
  height: 153px;
  margin-bottom: 11px;
}

.sec07 .catalog .box .img:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 24px;
  left: 18px;
  width: 60px;
  height: 60px;
  background: url() no-repeat center center;
  background-size: contain;
  -webkit-transform: rotate(350deg) translateZ(0px);
          transform: rotate(350deg) translateZ(0px);
}

.sec07 .catalog .box .btn {
  width: 280px;
  margin: 0 auto;
}

.sec07 .catalog .box .note {
  margin-top: 15px;
  line-height: 1.3em;
  font-size: 8px;
  font-family: arial,ｍｓ ｐゴシック,ms pgothic,돋움,dotum,helvetica,sans-serif;
  letter-spacing: 0.15em;
}

@media screen and (min-width: 600px) {
  .sec07 {
    background: #fff;
  }
  .sec07 .top {
    text-align: center;
    padding: 85px 0 90px;
  }
  .sec07 .top .titWrap {
    display: inline-block;
    position: relative;
    margin-bottom: 25px;
  }
  .sec07 .top .titWrap:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
  }
  .sec07 .top .titWrap .titLeft,
  .sec07 .top .titWrap .tit {
    display: inline-block;
    vertical-align: middle;
  }
  .sec07 .top .titWrap .titLeft .en {
    font-size: 14px;
    line-height: 1.9em;
    text-align: center;
  }
  .sec07 .top .titWrap .titLeft .sub {
    font-size: 15px;
    line-height: 1.3em;
    text-align: center;
  }
  .sec07 .top .titWrap .tit {
    font-size: 24px;
    line-height: 1.5em;
    text-align: center;
    color: #2f2e2e;
    letter-spacing: 0.1em;
  }
  .sec07 .top .titWrap .tit span {
    font-size: 87px;
  }
  .sec07 .catalog .catch span {
    font-size: 13px;
    text-align: center;
    letter-spacing: 0.25em;
    line-height: normal;
  }
  .sec07 .catalog .catch span:before {
    right: -125px;
  }
  .sec07 .catalog .catch span:after {
    left: -35px;
  }
  .sec07 .catalog .box {
    display: table;
    margin-bottom: 0;
    padding: 0;
    background: #fff;
  }
  .sec07 .catalog .boxImg, .sec07 .catalog .boxTxt {
    display: table-cell;
    vertical-align: middle;
  }
  .sec07 .catalog .boxImg {
    width: 50%;
  }
  .sec07 .catalog .boxImg .txtImg {
    width: 346px;
    margin: -120px 75px 0 66px;
  }
  .sec07 .catalog .boxImg .txtImg img {
    width: 100%;
  }
  .sec07 .catalog .boxImg .img {
    width: 483px;
    margin-top: 20px;
    margin-left: 0;
    margin-bottom: 0;
  }
  .sec07 .catalog .boxImg .img:before {
    content: "";
    display: block;
    position: absolute;
    bottom: -111px;
    left: 60px;
    width: 89px;
    height: 93px;
    background: url() no-repeat center center;
    background-size: contain;
    -webkit-transform: rotate(350deg) translateZ(0px);
    transform: rotate(350deg) translateZ(0px);
  }
  .sec07 .catalog .boxImg .img img {
    width: 100%;
  }
  .sec07 .catalog .boxTxt {
    width: 50%;
    padding: 40px 49px 107px;
    background-color: rgba(222, 220, 220, 0.27);
  }
  .sec07 .catalog .boxTxt .titWrap {
    text-align: center;
  }
  .sec07 .catalog .boxTxt .titWrap .en {
    position: relative;
    font-size: 11px;
    line-height: 1.6em;
    text-align: center;
    font-family: ｍｓ ｐゴシック,ms pgothic,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,osaka,sans-serif;
    font-weight: bold;
    color: black;
    letter-spacing: 0.15em;
  }
  .sec07 .catalog .boxTxt .titWrap .en:before, .sec07 .catalog .boxTxt .titWrap .en:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
  }
  .sec07 .catalog .boxTxt .titWrap .en:before {
    top: -4px;
  }
  .sec07 .catalog .boxTxt .titWrap .en:after {
    bottom: -4px;
  }
  .sec07 .catalog .boxTxt .titWrap .tit {
    margin: 30px 0 15px;
    font-size: 20px;
    line-height: 1.6em;
    text-align: center;
    font-family: ｍｓ 明朝,ms mincho,ヒラギノ明朝 pro w3,hiragino mincho pro,serif;
    font-weight: bold;
    color: black;
    letter-spacing: 0.15em;
  }
  .sec07 .catalog .boxTxt .txt {
    float: none;
    width: auto;
    margin: 0 0 45px;
    font-size: 13px;
    line-height: 2.1em;
    text-align: justify;
    font-size: 13px;
    color: black;
    letter-spacing: 0.15em;
  }
  .sec07 .catalog .boxTxt .btn {
    float: none;
    width: 331px;
    margin: 0 auto 50px;
  }
  .sec07 .catalog .boxTxt .btn img {
    width: 100%;
  }
}

.sec08 {
  padding: 40px 0;
}
.sec08 .titWrap .tit {
  text-align:center;
  color: #ffffff;
  font-size: 11px;
  font-weight: bold;
  line-height: 60px;
  font-family:  ｍｓ ｐゴシック,ms pgothic,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,osaka,sans-serif;
  letter-spacing: 0.1em;
}
 #wrap{
  width:100%;
  display:flex;
  justify-content: center;
  padding:0;
  list-style: none;
  }
  .box1{
  width:calc(50% / 1);
  height: 130px;
  }
  .box2{
  width:calc(100% / 4);
  margin-bottom: -17px;
  height: 60px;
  }
  .box1:hover, .box2:hover{
  opacity:0.8;
  }
  p{
  text-align:center;
  color:#fffff;
  font-size: 10px;
  font-weight:bold;
  line-height: 60px;
  letter-spacing: 0.1em;
  }
  .a{
  background-color:#fffff;
  }
  .b{
  background-color:#fffff;
  }
  .c{
  background-color:#fffff;
  }
  .d{
  background-color:#D2BE19;
  }
  .e{
  background-color:#6E7C3F;
  }
  .f{
  background-color:#D2BE19;
  }
  .g{
  background-color:#6E7C3F;
  }
.sec08 .sliderWrap01 {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}

.sec08 .sliderWrap01 .ico {
  z-index: 2;
  display: table;
  position: absolute;
  top: 2px;
  right: 15px;
  width: 60px;
  height: 60px;
  background-color:rgba(33, 39, 98, 0.5);
}

.sec08 .sliderWrap01 .ico > .icoIn {
  display: table-cell;
  vertical-align: middle;
}

.sec08 .sliderWrap01 .ico .en {
  margin-bottom: 3px;
  text-align: center;
  font-size: 7px;
  font-weight: bold;
  color: #000000;
  font-family: : ｍｓ ｐゴシック,ms pgothic,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,osaka,sans-serif;
}

.sec08 .sliderWrap01 .ico .ja {
  text-align: center;
  font-size: 8px;
  letter-spacing: 0.1em;
  font-family: ｍｓ ｐゴシック,ms pgothic,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,osaka,sans-serif;
  color: #000000;
}

.sec08 .sliderWrap01 .sliderCopy {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  color: #fff;
  font-weight: bold;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.sec08 .sliderWrap01 .sliderCopy .copy01 {
  text-align: center;
  font-size: 13px;
  font-family:  ｍｓ ｐゴシック,ms pgothic,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,osaka,sans-serif;
  font-weight: bold;
  letter-spacing: 0.3em;
}

.sec08 .sliderWrap01 .sliderCopy .copy02 {
  margin: 10px 0;
  text-align: center;
  font-size: 70px;
  letter-spacing: 0.12em;
  font-family: ｍｓ ｐゴシック,ms pgothic,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,osaka,sans-serif;
  font-weight: bold;
}

.sec08 .sliderWrap01 .sliderCopy .copy03 {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.4em;
  font-family: ｍｓ ｐゴシック,ms pgothic,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,osaka,sans-serif;
  font-weight: bold;
}

.sec08 .sliderWrap01 .mainScrollTxt {
  letter-spacing: 0.25em;
  font-weight: bold;
  font-family: ｍｓ 明朝,ms mincho,ヒラギノ明朝 pro w3,hiragino mincho pro,serif;
}

.sec08 .sliderWrap01 .slider {
  z-index: 1;
  position: absolute;
  width: 100%;
}

.sec08 .catalog .titWrap {
  position: relative;
  padding-left: 8px;
}

.sec08 .catalog .titWrap:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #000;
}

.sec08 .catalog .titWrap .ja {
  margin-bottom: 5px;
  font-size: 9px;
  color: #000000;
  letter-spacing: 0.25em;
  font-weight: bold;
  font-family: ｍｓ ｐゴシック,ms pgothic,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,osaka,sans-serif;
}

.sec08 .catalog .titWrap .en {
  line-height: 1.4em;
  font-size: 24px;
  letter-spacing: 0.15em;
  font-weight: bold;
  font-family: ｍｓ ｐゴシック,ms pgothic,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,osaka,sans-serif;
}

.sec08 .catalog .txt {
  margin: 10px 0 25px;
  font-size: 10px;
  letter-spacing: 0.20em;
  color: #000000;
  font-family: ｍｓ ｐゴシック,ms pgothic,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,osaka,sans-serif;
}

.sec08 .catalog .imgWrap {
  position: relative;
  width: 254px;
  height: 184px;
  margin: -10px auto 20px;
  -webkit-transform: rotate(5deg) translateZ(0px);
          transform: rotate(5deg) translateZ(0px);
}

.sec08 .catalog .imgWrap .ico {
  z-index: 2;
  position: absolute;
  bottom: 30px;
  right: -14px;
  width: 68px;
  height: 68px;
}

.sec08 .catalog .imgWrap .img {
  position: absolute;
  top: 0;
  left: 0;
}

.sec08 .sliderWrap02 {
  position: relative;
  width: 100%;
  margin: 0 auto 40px;
  padding-bottom: 94.8%;
}

.sec08 .sliderWrap02 .slick-prev,
.sec08 .sliderWrap02 .slick-next {
  z-index: 1;
  width: 30px;
  height: 30px;
  background: rgba(35, 35, 35, 1);
}

.sec08 .sliderWrap02 .slick-prev {
  left: 0;
}

.sec08 .sliderWrap02 .slick-next {
  right: 0;
}

.sec08 .sliderWrap02 .slick-prev:after,
.sec08 .sliderWrap02 .slick-next:after {
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.sec08 .sliderWrap02 .slick-prev:after {
  margin-top: -2px;
  margin-left: -2px;
  transform: rotate(-135deg);
}

.sec08 .sliderWrap02 .slick-next:after {
  margin-top: -2px;
  margin-left: -2px;
  transform: rotate(45deg);
}

.sec08 .sliderWrap02 .sliderCopy {
  z-index: 2;
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  color: #fff;
  font-weight: bold;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.sec08 .sliderWrap02 .sliderCopy .copy01 {
  line-height: 3em;
  text-align: center;
  font-size: 12px;
  font-family: ｍｓ ｐゴシック,ms pgothic,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,osaka,sans-serif;
  letter-spacing: 0.15em;
}

.sec08 .sliderWrap02 .sliderCopy .copy02 {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  font-family: ｍｓ ｐゴシック,ms pgothic,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,osaka,sans-serif;
  letter-spacing: 0.15em;
}

.sec08 .sliderWrap02 .sliderCopy .copy02 span {
  font-size: 22px;
  letter-spacing: 0.2em;
  font-family: ｍｓ 明朝,ms mincho,ヒラギノ明朝 pro w3,hiragino mincho pro,serif;
}

.sec08 .sliderWrap02 .slider {
  z-index: 1;
  position: absolute;
  width: 100%;
}

.sec08 .sliderWrap02 .slider .item .caption {
  padding: 18px 20px 16px;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 76%;
  text-align: center;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background: rgba(255, 255, 255, 0.9);
}

.sec08 .sliderWrap02 .slider .item .captionTit {
  line-height: 1.2em;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0em;
  font-family: ｍｓ 明朝,ms mincho,ヒラギノ明朝 pro w3,hiragino mincho pro,serif;
  color: #2F2E2E;
}

.sec08 .sliderWrap02 .slider .item .captionTxt {
  line-height: 1.4em;
  text-align: center;
  font-size: 10px;
  color: #2F2E2E;
  font-family: futura-lt-w01-book,sans-serif;
}

.sec08 .btn {
  margin: 40px 30px 15px;
}

.sec08 .note {
  margin-bottom: 55px;
  line-height: 1.3em;
  text-align: left;
  font-size: 8px;
  font-family: arial,ｍｓ ｐゴシック,ms pgothic,돋움,dotum,helvetica,sans-serif;
  letter-spacing: 0.15em;
}

@media screen and (min-width: 600px) {
  .sec08 {
    padding: 200px 0 2px;
    background: #fff;
  }
  .sec08 .titWrap .tit {
  font-size: 13px;
}
  .box2{
  margin-bottom: -10px;
  }
    p{
  text-align:center;
  color:#fff;
  font-size: 20px;
  font-weight:bold;
  line-height:60px;
  letter-spacing: 0.1em;
  } 
  .sec08 .sliderWrap01 {
    margin-bottom: 0px;
  }
  .sec08 .sliderWrap01 .ico {
    top: -70px;
    right: 44px;
    width: 139px;
    height: 138px;
  }
  .sec08 .sliderWrap01 .ico .en {
    margin-bottom: 10px;
    font-size: 11px;
  }
  .sec08 .sliderWrap01 .ico .ja {
    font-size: 7px;
  }
  .sec08 .sliderWrap01 .sliderCopy .copy01 {
    font-size: 30px;
  }
  .sec08 .sliderWrap01 .sliderCopy .copy02 {
    margin: 30px 0;
    font-size: 150px;
  }
  .sec08 .sliderWrap01 .sliderCopy .copy03 {
    font-size: 21px;
  }
  .sec08 .catalog {
    width: 800px;
    margin: 0 auto;
  }
  .sec08 .catalog .titWrap {
    padding-left: 13px;
  }
  .sec08 .catalog .titWrap .ja {
    font-size: 13px;
  }
  .sec08 .catalog .titWrap .en {
    font-size: 51px;
  }
  .sec08 .catalog .txt {
    font-size: 20px;
  }
  .sec08 .catalog .imgWrap {
    width: 598px;
    height: 490px;
    margin: 0 auto;
    text-align: center;
  }
  .sec08 .catalog .imgWrap .ico {
    width: 135px;
    height: 135px;
    bottom: 133px;
  }
  .sec08 .catalog .imgWrap .ico img {
    width: 100%;
  }
  .sec08 .catalog .imgWrap .img {
    width: 598px;
    margin: 0 auto;
  }
  .sec08 .catalog .imgWrap .img img {
    width: 100%;
  }
  .sec08 .sliderWrap02 {
    width: 755px;
    margin: 0 auto 70px;
    padding-bottom: 74.8%;
  }
  .sec08 .sliderWrap02 .slider .item img {
    width: 100%;
  }
  .sec08 .sliderWrap02 .slider .item .caption {
    width: 490px;
    padding: 47px 0;
    bottom: 0;
  }
  .sec08 .sliderWrap02 .slider .item .captionTit {
    margin-bottom: 30px;
    font-size: 35px;
  }
  .sec08 .sliderWrap02 .slider .item .captionTxt {
    font-size: 13px;
  }
  .sec08 .sliderWrap02 .sliderCopy {
    top: 70px;
  }
  .sec08 .sliderWrap02 .sliderCopy .copy01 {
    font-size: 24px;
  }
  .sec08 .sliderWrap02 .sliderCopy .copy02 {
    margin-top: -10px;
    font-size: 51px;
  }
  .sec08 .sliderWrap02 .sliderCopy .copy02 span {
    font-size: 77px;
  }
  .sec08 .sliderWrap02 .slick-prev,
  .sec08 .sliderWrap02 .slick-next {
    z-index: 1;
    width: 56px;
    height: 56px;
    background: rgba(35, 35, 35, 1);
  }
  .sec08 .sliderWrap02 .slick-prev {
    left: 0;
  }
  .sec08 .sliderWrap02 .slick-next {
    right: 0;
  }
  .sec08 .sliderWrap02 .slick-prev:after,
  .sec08 .sliderWrap02 .slick-next:after {
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  .sec08 .sliderWrap02 .slick-prev:after {
    margin-top: -6px;
    margin-left: -6px;
    transform: rotate(-135deg);
  }
  .sec08 .sliderWrap02 .slick-next:after {
    margin-top: -6px;
    margin-left: -6px;
    transform: rotate(45deg);
  }
  .sec08 .btn {
    text-align: center;
    width: 489px;
    margin: 0 auto 50px;
  }
  .sec08 .note {
    margin-bottom: 0;
    text-align: center;
  }
}
 .sec10 {
  padding: 10px 0;
  height: 100%;
}
 .sec10 .titWrap {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
  background-color: #ffff;
}
 .sec10 .titWrap .tit {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 17px;
  font-weight:bold;
  line-height: 60px;
  font-family:  ｍｓ ｐゴシック,ms pgothic,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,osaka,sans-serif;
  letter-spacing: 0.35em;
}

 .sec10 .titWrap .en {
  text-align: center;
  color: #000000;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.5em;
  font-family: arial,ｍｓ ｐゴシック,ms pgothic,돋움,dotum,helvetica,sans-serif;
}
 .sec10 .titWrap .img {
  padding-bottom: 50px;
}
  #wrap2{
  width:100%;
  display:flex;
  justify-content: center;
  padding:0;
  list-style: none;
  }
  .box3{
  width:calc(100% / 2);
  margin: 10px;
  box-sizing: border-box;
  }
  .box4{
  width:calc(70% / 1);
  margin-top:50px;
  margin-bottom:120px;
  height: 60px;
  }
  .box5{
  width:calc(100% / 2);
  margin-top: -50px;
  box-sizing: border-box;
  }
  .box3:hover, .box4:hover, .box5:hover{
  opacity:0.8;
  }
  p{
  text-align:center;
  color:#fff;
  font-size: 10px;
  font-weight:bold;
  letter-spacing: 0.1em;
  }
  .a{
  background-color:#fffff;
  }
  .b{
  background-color:#fffff;
  }  
  .c{
  background-color:#2D2B2A;
  }
  .sec10 .img2 {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .sec10 {
  padding: 3px 0;
  }
  .sec10 .titWrap {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .box3{
  width:calc(100% / 2);
  margin:20px;
  }
  .box4{
  width:calc(60% / 1);
   }
  .box5{
  width:calc(100% / 2);
  margin-top: -50px;
  }
  .sec10 .img2 {
  width: 100%;
 }
}
.sec11 {
  padding: 10px 0;
}
.sec11 .titWrap {
  padding-top: 50px;
  padding-bottom: 10px;
  text-align: center;
  background-color: #ffff;
}

.sec11 .titWrap .tit {
  margin: 10px;
  color: #000000;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  font-family: arial,ｍｓ ｐゴシック,ms pgothic,돋움,dotum,helvetica,sans-serif;
  letter-spacing: 0.1em;
}
.sec11 .titWrap .en {
  padding: 30px;
  text-align: center;
  line-height: 40px;
  color: #000000;
  font-size: 27px;
  font-weight: bold;
  letter-spacing: 0.5em;
  background-color: #ffff;
  font-family: arial,ｍｓ ｐゴシック,ms pgothic,돋움,dotum,helvetica,sans-serif;
}
  #wrapnews{
  display:flex;
  flex-wrap: wrap;
  width: 100%;
  padding:0;
  list-style: none;
  }
  .boxnews01{
  width: 50%;
  border: 10px solid white;
  }
  .boxnews01:hover{
  opacity:0.8;
  }
  p{
  text-align:center;
  color:#000000;
  font-size: 11px;
  font-weight:bold;
  letter-spacing: 0.1em;
  }
  .a{
  background-color:#fffff;
  }
@media screen and (min-width: 600px) {
  .sec11 {
  padding: 3px 0;
  }
  .sec11 .titWrap {
    padding-top: 50px;
    padding-bottom: 10px;
  }
  .sec11 .titWrap .tit {
    font-size: 11px;
    letter-spacing: 0.35em;
    text-align: center;
  }
  .sec11 .titWrap .en {
    font-size: 27px;
    letter-spacing: 0.5em;
    font-weight: bold;
    text-align: center;
  }
  .boxnews01{
  width: 25%;
  border: 15px solid white;
 }
}

.footer {
  padding: 22px 0 10px;
  color: #fff;
  background: #242323;
  text-align: center;
}

.footer .logo {
  width: 92px;
  margin: 100px auto 10px;
}
.footer .titWrap {
  padding-top: 50px;
  padding-bottom: 10px;
}
.footer .txtWrap .txt2 {
  margin: 0;
  font-size: 14px;
  color: #fff;
  line-height: 40px;
  letter-spacing: 0.2em;
  font-family: basic,sans-serif;
  font-weight: bold;
}
.footer .txtWrap .txt3 {
  margin: 0;
  font-size: 10px;
  color: #fff;
  line-height: 30px;
  letter-spacing: 0.2em;
  font-family: basic,sans-serif;
  font-weight: bold;
}
.footer .txtWrap .txt {
  margin: 0;
  font-size: 10px;
  color: #fff;
  line-height: 10px;
  letter-spacing: 0.2em;
  font-family: basic,sans-serif;
  font-weight: bold;
}

.footer .tel {
  margin-bottom: 10px;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.1em;
  font-family: basic,sans-serif;
  font-weight: bold;
}

.footer .tel a {
  color: #fff;
}

.footer .copy {
  color: #A0A09F;
  font-size: 9px;
}

@media screen and (min-width: 600px) {
  .footer {
    padding: 60px 0 30px;
    text-align: left;
  }
  .footer .logo {
    width: 120px;
    margin: 0 25px 0 40px;
  }
  .footer .logo,
  .footer .txtWrap {
    display: inline-block;
    vertical-align: bottom;
  }
  .footer .txtWrap {
    margin-bottom: 6px;
  }
   .footer .txt2 {
   text-align: left;
  }
   .footer .txt3 {
    text-align: left;
  }
  .footer .txt {
    margin: 0;
    font-size: 10px;
    line-height: normal;
  }
  .footer .tel {
    margin: 0;
    font-size: 18px;
    line-height: normal;
  }
  .footer .copy {
    margin: 20px 20px 0;
    text-align: right;
    font-size: 11px;
  }
}