@charset "UTF-8";
/*reset*/
.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0px;
  clear: both;
  visibility: hidden;
}

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: top;
  background: transparent;
}

h1, h2, h3, h4, h5, h6, strong {
  margin: 0;
  font-size: 100%;
  font-weight: normal;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* @media setting */
/*
SP向けサイズには非表示&SP用画像切り替え
*/
@media only screen and (min-width: 1px) and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }

  .sp_only {
    display: block !important;
  }

  .imgSwitch {
    opacity: 0;
    filter: alpha(opacity=0);
  }

  .imgSwitch.loaded {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
/* PC向けサイズには非表示 */
@media only screen and (min-width: 769px), print {
  .sp_only {
    display: none !important;
  }

  .pc_only {
    display: block !important;
  }
}
/*
@mixin fz($size: 14){
	font-size: $size +px;
}*/
/* placeholder */
/* 角丸 */
.scrollAnim.scrollUp {
  -moz-transform: matrix(1, 0, 0, 1, 0, 50);
  -webkit-transform: matrix(1, 0, 0, 1, 0, 50);
  -ms-transform: matrix(1, 0, 0, 1, 0, 50);
  transform: matrix(1, 0, 0, 1, 0, 50);
}

.scrollAnim.scrollDown {
  -moz-transform: matrix(1, 0, 0, 1, 0, -50);
  -webkit-transform: matrix(1, 0, 0, 1, 0, -50);
  -ms-transform: matrix(1, 0, 0, 1, 0, -50);
  transform: matrix(1, 0, 0, 1, 0, -50);
}

.scrollAnim.scrollLeft {
  -moz-transform: matrix(1, 0, 0, 1, 50, 0);
  -webkit-transform: matrix(1, 0, 0, 1, 50, 0);
  -ms-transform: matrix(1, 0, 0, 1, 50, 0);
  transform: matrix(1, 0, 0, 1, 50, 0);
}

.scrollAnim.scrollRight {
  -moz-transform: matrix(1, 0, 0, 1, -50, 0);
  -webkit-transform: matrix(1, 0, 0, 1, -50, 0);
  -ms-transform: matrix(1, 0, 0, 1, -50, 0);
  transform: matrix(1, 0, 0, 1, -50, 0);
}

.scrollAnim.fadeIn, .scrollAnim.scrollUp, .scrollAnim.scrollDown, .scrollAnim.scrollLeft, .scrollAnim.scrollRight {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  -ms-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  -o-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  -ms-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}

.scrollAnim.fadeIn.bounce.active, .scrollAnim.scrollUp.bounce.active, .scrollAnim.scrollDown.bounce.active, .scrollAnim.scrollLeft.bounce.active, .scrollAnim.scrollRight.bounce.active {
  -webkit-transition: all 0.8s cubic-bezier(0.18, 0.89, 0.21, 1.77) 0s;
  -ms-transition: all 0.8s cubic-bezier(0.18, 0.89, 0.21, 1.77) 0s;
  -o-transition: all 0.8s cubic-bezier(0.18, 0.89, 0.21, 1.77) 0s;
  -ms-transition: all 0.8s cubic-bezier(0.18, 0.89, 0.21, 1.77) 0s;
  transition: all 0.8s cubic-bezier(0.18, 0.89, 0.21, 1.77) 0s;
}

.scrollAnim.fadeIn.active, .scrollAnim.scrollUp.active, .scrollAnim.scrollDown.active, .scrollAnim.scrollLeft.active, .scrollAnim.scrollRight.active {
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  -ms-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  -o-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  -ms-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-transform: none;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a:active, a:focus, input:active, input:focus {
  outline: 0;
}

/* hr style*/
/*
hr.style11 {
	height: 6px;
	background: url(http://ibrahimjabbari.com/english/images/hr-11.png) repeat-x 0 0;
    border: 0;
}


hr.style12 {
	height: 6px;
	background: url(http://ibrahimjabbari.com/english/images/hr-12.png) repeat-x 0 0;
    border: 0;
}
*/
.posR {
  position: relative;
}

.posA {
  position: absolute;
}

/* 改行調整 */
.kki {
  font-size: 0;
}
.kki span {
  display: inline-block;
}

/* ふわっと表示 */
.fuwan {
  opacity: 0;
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -ms-transition: -ms-transform 0.5s linear;
  transition: transform 0.5s linear;
}

.img-blur {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: .8s;
}

@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
body {
  min-width: auto;
  font-family: "NotoSerifCJKjp", "游明朝", YuMincho, "ヒラギノ明朝 Pr6 W6", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", "ＭＳ Ｐ明朝", "MS PMincho", "Times New Roman", Meiryo, serif;
  color: #0E0D15;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

sup {
  font-size: 0.5rem !important;
}

#layoutWrap {
  width: 100%;
  overflow: hidden;
  font-family: "NotoSerifCJKjp", "游明朝", YuMincho, "ヒラギノ明朝 Pr6 W6", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", "ＭＳ Ｐ明朝", "MS PMincho", "Times New Roman", Meiryo, serif;
}

@media only screen and (min-width: 769px), print {
  body {
    font-size: 16px;
    font-size: 1rem;
  }

  .contentInner {
    max-width: 1024px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .clickToCall {
    pointer-events: none;
  }

  .supSet {
    top: -1.5em;
  }
}
@media only screen and (min-width: 1px) and (max-width: 768px) {
  body {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .contentInner90 {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }

  .pinch {
    margin-right: auto;
    margin-left: auto;
    margin-top: 10px;
    max-width: 184px;
  }
  .pinch img {
    width: 100%;
  }

  .supSet {
    top: -1.0em;
  }
}
/* 注釈用テキスト影 */
.txtShdw {
  text-shadow: #e5e5e5 1px 0px 1px, #e5e5e5 -1px 0px 1px, #e5e5e5 0px -1px 1px, #e5e5e5 -1px 0px 1px, #e5e5e5 1px 1px 1px, #e5e5e5 -1px 1px 1px, #e5e5e5 1px -1px 1px, #e5e5e5 -1px -1px 1px, #e5e5e5 0px 1px 1px, #e5e5e5 -1px 1px 1px, #e5e5e5 0px -1px 1px, #e5e5e5 -1px -1px 1px, #e5e5e5 1px 0px 1px, #e5e5e5 -1px 0px 1px, #e5e5e5 1px -2px 1px, #e5e5e5 -1px -2px 1px, #e5e5e5 0px 0px 1px, #e5e5e5 -2px 0px 1px, #e5e5e5 0px -2px 1px, #e5e5e5 -2px -2px 1px;
}

@media screen and (max-width: 1020px) {
  .txtShdw {
    text-align: left !important;
    padding-left: 200px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 1020px) and (max-width: 768px) {
  .txtShdw {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
    letter-spacing: normal;
  }
}

.txtShdwRight {
  text-shadow: #F3F2EA 1px 0px 1px, #F3F2EA -1px 0px 1px, #F3F2EA 0px -1px 1px, #F3F2EA -1px 0px 1px, #F3F2EA 1px 1px 1px, #F3F2EA -1px 1px 1px, #F3F2EA 1px -1px 1px, #F3F2EA -1px -1px 1px, #F3F2EA 0px 1px 1px, #F3F2EA -1px 1px 1px, #F3F2EA 0px -1px 1px, #F3F2EA -1px -1px 1px, #F3F2EA 1px 0px 1px, #F3F2EA -1px 0px 1px, #F3F2EA 1px -2px 1px, #F3F2EA -1px -2px 1px, #F3F2EA 0px 0px 1px, #F3F2EA -2px 0px 1px, #F3F2EA 0px -2px 1px, #F3F2EA -2px -2px 1px;
}

@media screen and (max-width: 1020px) {
  .txtShdwRight {
    text-align: left !important;
    padding-left: 0px;
    padding-right: 150px;
  }
}
@media screen and (max-width: 1020px) and (max-width: 768px) {
  .txtShdwRight {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
    letter-spacing: normal;
  }
}

@media only screen and (min-width: 769px), print {
  .fsizY {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 769px) and (min-width: 769px) and (max-width: 1020px) {
  .fsizY {
    padding-left: 5px;
  }
}

@media only screen and (min-width: 1px) and (max-width: 768px) {
  .fsizY {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
/* 
.xxx, .yyy {
    opacity: 0;
    -moz-transform: matrix(1, 0, 0, 1, 0, 50);
    -webkit-transform: matrix(1, 0, 0, 1, 0, 50);
    -ms-transform: matrix(1, 0, 0, 1, 0, 50);
    transform: matrix(1, 0, 0, 1, 0, 50);
    -webkit-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    -ms-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    -o-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    -ms-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}

.xxx.active {
	transition-delay: 1.0s;
	opacity: 1;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}
.yyy.active {
	transition-delay: 1.3s;
	opacity: 1;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}
*/
/* 大枠 large */
@media only screen and (min-width: 769px), print {
  #main {
    width: 100%;
    position: relative;
    z-index: 10;
    box-sizing: content-box;
    /* margin-bottom		: 500px; */
    /* test */
    /*height				: 2000px;*/
    background: #fff;
    /* test */
  }
  #main .contentsWrap {
    max-width: 1366px;
    margin-right: auto;
    margin-left: auto;
  }

  #footer {
    /*position			: fixed;*/
    bottom: 0;
    z-index: 5;
    width: 100%;
    background: #fff;
    padding-top: 55px;
  }
  #footer #att {
    padding-bottom: 55px;
  }
  #footer #att p {
    width: 96%;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
    font-size: 10px;
    font-size: 0.625rem;
  }
  #footer #att p a {
    text-decoration: underline;
  }
  #footer #att p a:hover {
    text-decoration: none;
  }
  #footer #att .meLogo {
    display: none;
  }
  #footer #infoBox {
    padding-top: 55px;
    padding-bottom: 65px;
    background: #313131;
    text-align: center;
    color: #fff;
  }
  #footer #infoBox .t02 {
    margin-top: 30px;
    width: 474px;
  }
  #footer #infoBox .t03 {
    margin-top: 35px;
  }
}
/* 大枠 small */
@media only screen and (min-width: 1px) and (max-width: 768px) {
  #main {
    width: 100%;
    position: relative;
    z-index: 10;
    box-sizing: content-box;
    background: #fff;
  }
  #main .contentsWrap {
    width: 96%;
    margin-right: auto;
    margin-left: auto;
  }
  #main .contentsWrap.sp_w100P {
    width: 100% !important;
  }

  #footer {
    /*position			: fixed;*/
    bottom: 0;
    z-index: 5;
    width: 100%;
    background: #fff;
    padding-top: 20px;
  }
  #footer #att {
    padding-bottom: 30px;
    margin-right: auto;
    margin-left: auto;
    max-width: 96%;
  }
  #footer #att p {
    text-align: left;
    font-size: 10px;
    font-size: 0.625rem;
    letter-spacing: normal;
  }
  #footer #att p a {
    text-decoration: underline;
  }
  #footer #att p a:hover {
    text-decoration: none;
  }
  #footer #att .meLogo {
    margin-top: 30px;
    width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
  #footer #att .meLogo img {
    width: 100%;
  }
  #footer #infoBox {
    padding-top: 30px;
    padding-bottom: 35px;
    background: #313131;
    text-align: center;
    color: #fff;
  }
  #footer #infoBox .contentInner {
    margin-right: auto;
    margin-left: auto;
    max-width: 96%;
  }
  #footer #infoBox .t01, #footer #infoBox .t03 {
    font-size: 0px;
    font-size: 0rem;
  }
  #footer #infoBox .t01 span, #footer #infoBox .t03 span {
    display: inline-block;
    font-size: 14px;
    font-size: 0.875rem;
  }
  #footer #infoBox .t02 {
    margin-top: 30px;
    width: 474px;
  }
  #footer #infoBox .t03 {
    margin-top: 35px;
    letter-spacing: -0.1px;
  }
}
/* header */
#mainImgBox {
  width: 100%;
  position: relative;
}
#mainImgBox img {
  width: 100%;
}
#mainImgBox .photoCap {
  position: absolute;
  font-size: 10px;
  font-size: 0.625rem;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 3px 5px;
  bottom: 0;
  right: 0;
  letter-spacing: 1px;
}

@media only screen and (min-width: 769px), print {
  .contentW95 {
    width: 95%;
    margin-right: auto;
    margin-left: auto;
  }

  #header {
    padding-top: 25px;
    overflow: hidden;
    *zoom: 1;
  }
  #header h2 {
    float: left;
    max-width: 629px;
    width: 60%;
    /*margin-bottom	: 10px;*/
    margin-bottom: 25px;
  }
  #header h2 img {
    width: 60%;
  }
  #header .mecLogo {
    float: right;
    width: 35%;
    max-width: 427px;
  }
  #header .mecLogo img {
    width: 100%;
  }
}
@media only screen and (min-width: 1px) and (max-width: 768px) {
  .contentW95 {
    width: 95%;
    margin-right: auto;
    margin-left: auto;
  }

  #header h2 {
    float: none;
    margin: auto;
    width: 80vw;
    /*padding: 4vw 0*/
    padding-top: 25px;
    padding-bottom: 25px;
    max-width: none;
    text-align: center;
  }
  #header h2 img {
    width: 70%;
  }
  #header .mecLogo {
    display: none;
  }
}
/* #meritBox メリットボックスlarge */
@media only screen and (min-width: 769px), print {
  #meritBoxSP {
    display: none;
  }

  #meritBoxPC {
    position: relative;
    background: url(../images/bg_tri.png) no-repeat center center;
    background-size: cover;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  #meritBoxPC .txt01 {
    margin-right: auto;
    margin-left: auto;
    width: 90%;
  }
  #meritBoxPC .txt01 img {
    max-width: 830px;
    width: 100%;
  }
  #meritBoxPC .meritList {
    margin-top: 30px;
    overflow: hidden;
    *zoom: 1;
    margin-right: auto;
    margin-left: auto;
    max-width: 1024px;
  }
  #meritBoxPC .meritList li {
    float: left;
    width: 25%;
    text-align: center;
    padding-left: 14px;
    padding-right: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    color: #fff;
  }
  #meritBoxPC .meritList li:first-child {
    border-left: 0;
  }
  #meritBoxPC .meritList li p.kki {
    font-size: 0px;
    font-size: 0rem;
  }
  #meritBoxPC .meritList li p.kki span {
    font-size: 16px;
    font-size: 1rem;
    display: inline-block;
  }
}
/* #meritBox メリットボックスsmall */
@media only screen and (min-width: 1px) and (max-width: 768px) {
  #meritBoxPC {
    display: none;
  }

  #meritBoxSP {
    position: relative;
    background: #001700;
    background-size: cover;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 30px;
  }
  #meritBoxSP .txt01 {
    margin-right: auto;
    margin-left: auto;
    max-width: 90%;
  }
  #meritBoxSP .txt01 img {
    max-width: 100%;
  }
  #meritBoxSP .meritList {
    margin-top: 30px;
    overflow: hidden;
    *zoom: 1;
    margin-right: auto;
    margin-left: auto;
    max-width: 1024px;
  }
  #meritBoxSP .meritList li {
    float: left;
    width: 50%;
    text-align: center;
    padding-left: 14px;
    padding-right: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
  }
  #meritBoxSP .meritList li:first-child {
    border-left: 0;
  }
  #meritBoxSP .meritList li:nth-child(n+3) {
    margin-top: 15px;
  }
  #meritBoxSP .meritList li p.kki {
    font-size: 0px;
    font-size: 0rem;
  }
  #meritBoxSP .meritList li p.kki span {
    font-size: 16px;
    font-size: 1rem;
    display: inline-block;
  }
}
.cWhite {
  color: #fff;
}

.cBlack {
  color: #0E0D15;
}

/*
#content01 #content02 共通項
-----------------------------------------*/
@media only screen and (min-width: 769px), print {
  #content01 .contentWrap, #content02 .contentWrap, #content01a .contentWrap, #content02a .contentWrap {
    max-width: 1366px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
  }
  #content01 .contentInner, #content02 .contentInner, #content01a .contentInner, #content02a .contentInner {
    max-width: 1024px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    margin-right: auto;
    margin-left: auto;
  }
  #content01 .btnBox, #content02 .btnBox, #content01a .btnBox, #content02a .btnBox {
    position: absolute;
    display: block;
    content: "";
  }
  #content01 .btnBox:before, #content02 .btnBox:before, #content01a .btnBox:before, #content02a .btnBox:before {
    position: absolute;
    display: block;
    content: "";
  }
  #content01 .btnBox a, #content02 .btnBox a, #content01a .btnBox a, #content02a .btnBox a {
    display: block;
    width: 270px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  }
  #content01 .btnBox .sp_inlineBlock:nth-of-type(n+2), #content02 .btnBox .sp_inlineBlock:nth-of-type(n+2), #content01a .btnBox .sp_inlineBlock:nth-of-type(n+2), #content02a .btnBox .sp_inlineBlock:nth-of-type(n+2) {
    margin-top: 20px;
  }
  #content01 .titleBox, #content02 .titleBox, #content01a .titleBox, #content02a .titleBox {
    position: absolute;
    display: block;
    content: "";
    top: 50px;
  }
  #content01 .titleBox img, #content02 .titleBox img, #content01a .titleBox img, #content02a .titleBox img {
    width: 100%;
  }
  #content01 .att, #content02 .att, #content01a .att, #content02a .att {
    position: absolute;
    display: block;
    content: "";
    font-size: 14px;
    font-size: 0.875rem;
    color: #0E0D15;
    text-align: right;
    bottom: -377px;
    right: 3px;
  }
  #content01 .attLeft, #content02 .attLeft, #content01a .attLeft, #content02a .attLeft {
    position: absolute;
    display: block;
    content: "";
    font-size: 14px;
    font-size: 0.875rem;
    color: #0E0D15;
    text-align: left;
    bottom: -377px;
    left: 3px;
  }
}
/*
#content01
-----------------------------------------*/
@media only screen and (min-width: 769px), print {
  #content01 .contentBox, #content01a .contentBox {
    background: url(../images/bg_con01_pc.png) no-repeat center center;
    background-size: cover;
    min-height: 380px;
  }
  #content01 .btnBox, #content01a .btnBox {
    top: 160px;
    left: 50px;
  }
  #content01 .btnBox:before, #content01a .btnBox:before {
    background: url(../images/logo02.png) no-repeat center center;
    background-size: cover;
    width: 222px;
    height: 112px;
    top: -130px;
    left: 50%;
    margin-left: -111px;
  }
  #content01 .titleBox, #content01a .titleBox {
    position: absolute;
    display: block;
    content: "";
    right: 100px;
    top: 50px;
    width: 235px;
  }
  #content01 .titleBox img, #content01a .titleBox img {
    width: 100%;
  }
  #content01 .photoCap, #content01a .photoCap {
    position: absolute;
    font-size: 10px;
    font-size: 0.625rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 1px 3px;
    bottom: 0;
    right: 0;
    letter-spacing: 1px;
  }
}
@media only screen and (min-width: 1px) and (max-width: 768px) {
  #content01 .contentBox, #content01a .contentBox {
    background: #F2F2EA;
  }
  #content01 .contentBox .btnBox, #content01a .contentBox .btnBox {
    margin-top: 15px;
    padding-bottom: 15px;
    font-size: 0px;
    font-size: 0rem;
    margin-right: auto;
    margin-left: auto;
    width: 96%;
  }
  #content01 .contentBox .btnBox .sp_inlineBlock, #content01a .contentBox .btnBox .sp_inlineBlock {
    display: inline-block;
    width: 50%;
    padding-left: 3px;
    padding-right: 3px;
  }
  #content01 .contentBox .btnBox .sp_inlineBlock img, #content01a .contentBox .btnBox .sp_inlineBlock img {
    width: 100%;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  }
  #content01 .photoCap, #content01a .photoCap {
    position: absolute;
    font-size: 10px;
    font-size: 0.625rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 1px 3px;
    bottom: 0;
    right: 0;
    letter-spacing: 1px;
  }
}
/*
#content02 
-----------------------------------------*/
@media only screen and (min-width: 769px), print {
  #content02 .contentBox, #content02a .contentBox {
    background: url(../images/bg_con02_pc.png) no-repeat center center;
    background-size: cover;
    min-height: 380px;
  }
  #content02 .btnBox, #content02a .btnBox {
    top: 160px;
    right: 100px;
  }
  #content02 .btnBox:before, #content02a .btnBox:before {
    background: url(../images/logo03.png) no-repeat center center;
    background-size: cover;
    width: 222px;
    height: 112px;
    top: -130px;
    left: 50%;
    margin-left: -111px;
  }
  #content02 .titleBox, #content02a .titleBox {
    position: absolute;
    display: block;
    content: "";
    left: 50px;
    top: 30px;
    width: 235px;
  }
  #content02 .titleBox img, #content02a .titleBox img {
    width: 100%;
  }
  #content02 .photoCap, #content02a .photoCap {
    position: absolute;
    font-size: 10px;
    font-size: 0.625rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 1px 3px;
    bottom: 0;
    left: 0;
    letter-spacing: 1px;
  }
}
@media only screen and (min-width: 1px) and (max-width: 768px) {
  #content02 .contentBox, #content02a .contentBox {
    background: #e5e5e5;
    padding-bottom: 15px;
  }
  #content02 .contentBox .btnBox, #content02a .contentBox .btnBox {
    margin-top: 15px;
    padding-bottom: 15px;
    font-size: 0px;
    font-size: 0rem;
    margin-right: auto;
    margin-left: auto;
    width: 96%;
  }
  #content02 .contentBox .btnBox .sp_inlineBlock, #content02a .contentBox .btnBox .sp_inlineBlock {
    display: inline-block;
    width: 50%;
    padding-left: 3px;
    padding-right: 3px;
  }
  #content02 .contentBox .btnBox .sp_inlineBlock img, #content02a .contentBox .btnBox .sp_inlineBlock img {
    width: 100%;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  }
  #content02 .contentBox .att, #content02a .contentBox .att {
    width: 96%;
    margin-right: auto;
    margin-left: auto;
    font-size: 10px;
    font-size: 0.625rem;
  }
  #content02 .photoCap, #content02a .photoCap {
    position: absolute;
    font-size: 10px;
    font-size: 0.625rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 1px 3px;
    bottom: 0;
    left: 0;
    letter-spacing: 1px;
  }
}
/*
#content03 LOCATION　共通項
-----------------------------------------*/
@media only screen and (min-width: 769px), print {
  #content03 .contentWrap, #content05 .contentWrap, #content06 .contentWrap, #content07 .contentWrap, #content04 .contentWrap, #content04add .contentWrap, #content08 .contentWrap, #footer .contentWrap {
    max-width: 1366px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
  }
  #content03 .contentInner, #content05 .contentInner, #content06 .contentInner, #content07 .contentInner, #content04 .contentInner, #content04add .contentInner, #content08 .contentInner, #footer .contentInner {
    max-width: 1024px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    margin-right: auto;
    margin-left: auto;
  }
  #content03 .titleBox, #content05 .titleBox, #content06 .titleBox, #content07 .titleBox, #content04 .titleBox, #content04add .titleBox, #content08 .titleBox, #footer .titleBox {
    position: absolute;
    display: block;
    content: "";
    top: 40px;
    left: 0px;
  }
  #content03 .titleBox span, #content05 .titleBox span, #content06 .titleBox span, #content07 .titleBox span, #content04 .titleBox span, #content04add .titleBox span, #content08 .titleBox span, #footer .titleBox span {
    display: block;
    letter-spacing: 2px;
  }
  #content03 .titleBox span:nth-of-type(2), #content05 .titleBox span:nth-of-type(2), #content06 .titleBox span:nth-of-type(2), #content07 .titleBox span:nth-of-type(2), #content04 .titleBox span:nth-of-type(2), #content04add .titleBox span:nth-of-type(2), #content08 .titleBox span:nth-of-type(2), #footer .titleBox span:nth-of-type(2) {
    margin-top: 20px;
  }
  #content03 .titleBox .tl, #content05 .titleBox .tl, #content06 .titleBox .tl, #content07 .titleBox .tl, #content04 .titleBox .tl, #content04add .titleBox .tl, #content08 .titleBox .tl, #footer .titleBox .tl {
    width: 207px;
  }
  #content03 .introBox, #content05 .introBox, #content06 .introBox, #content07 .introBox, #content04 .introBox, #content04add .introBox, #content08 .introBox, #footer .introBox {
    position: absolute;
    display: block;
    content: "";
    left: 0px;
    top: 145px;
    max-width: 40%;
  }
}
@media only screen and (min-width: 769px) and (min-width: 769px) and (max-width: 1100px), print {
  #content03 .titleBox, #content03 .introBox, #content05 .titleBox, #content05 .introBox, #content06 .titleBox, #content06 .introBox, #content07 .titleBox, #content07 .introBox, #content04 .titleBox, #content04 .introBox, #content04add .titleBox, #content04add .introBox, #content08 .titleBox, #content08 .introBox, #footer .titleBox, #footer .introBox {
    left: 10%;
    max-width: 50%;
  }
}

/*
#content03 LOCATION
-----------------------------------------*/
@media only screen and (min-width: 769px), print {
  #content03 .contentBox {
    background: url(../images/bg_dark01.png) no-repeat center center;
    background-size: cover;
    min-height: 350px;
    color: #fff;
    position: relative;
  }
  #content03 .contentBox .photoCap {
    position: absolute;
    font-size: 10px;
    font-size: 0.625rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 1px 3px;
    bottom: 0;
    right: 0;
    letter-spacing: 1px;
  }
  #content03 .titleBox .tl {
    width: 207px;
  }
  #content03 .introBox p.kki span {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1px) and (max-width: 768px) {
  #content03 .contentBox {
    background: url(../images/bg_dark01_sp.png) no-repeat center center;
    background-size: cover;
    min-height: 350px;
    color: #fff;
    position: relative;
  }
  #content03 .contentBox .photoCap {
    position: absolute;
    font-size: 10px;
    font-size: 0.625rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 1px 3px;
    bottom: 0;
    right: 0;
    letter-spacing: 1px;
  }
  #content03 .contentInner {
    width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
  #content03 .titleBox {
    padding-top: 30px;
  }
  #content03 .titleBox span {
    display: block;
  }
  #content03 .titleBox .tl {
    margin-top: 15px;
    width: 207px;
  }
  #content03 .introBox {
    margin-top: 25px;
  }
  #content03 .introBox p.kki span {
    font-size: 14px;
    font-size: 0.875rem;
  }
  #content03 .btnMore {
    margin-top: 30px;
    width: 150px;
  }
  #content03 .btnMore a {
    display: block;
    color: #fff;
    border: 1px solid #fff;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
/*
#content04 東戸塚西口駅
-----------------------------------------*/
@media only screen and (min-width: 769px), print {
  #content04 .contentBox {
    padding-top: 30px;
    /* 写真・テキスト2連 */
  }
  #content04 .contentBox .meritList {
    overflow: hidden;
    *zoom: 1;
    margin-right: auto;
    margin-left: auto;
    max-width: 1024px;
  }
  #content04 .contentBox .meritList li {
    float: left;
    width: 25%;
    text-align: center;
    padding-left: 14px;
    padding-right: 14px;
    border-left: 1px solid rgba(0, 0, 0, 0.8);
    color: #0E0D15;
  }
  #content04 .contentBox .meritList li:first-child {
    border-left: 0;
  }
  #content04 .contentBox .meritList li p.kki {
    font-size: 0px;
    font-size: 0rem;
  }
  #content04 .contentBox .meritList li p.kki span {
    font-size: 16px;
    font-size: 1rem;
    display: inline-block;
  }
  #content04 .contentBox h4 {
    margin-top: 70px;
    position: relative;
    /*
    &:after {
    	@include			content;
    	background			: $cBlack;
    	height				: 1px;
    	width				: 56%;
    	top					: 90px;
    	left				: 0;
    }
    */
  }
  #content04 .contentBox h4 p {
    max-width: 1024px;
    margin-right: auto;
    margin-left: auto;
    font-size: 28px;
    font-size: 1.75rem;
    letter-spacing: 2px;
    text-align: center;
  }
  #content04 .contentBox .imgPhotoWrap {
    margin-top: 50px;
    display: table;
    table-layout: fixed;
    width: 100%;
  }
  #content04 .contentBox .imgPhotoWrap:first-of-type {
    margin-top: 60px;
  }
  #content04 .contentBox .imgPhotoWrap .imgPhotoBox {
    display: table-cell;
    width: 55%;
    padding-right: 20px;
  }
  #content04 .contentBox .imgPhotoWrap .imgPhotoBox .cap {
    position: relative;
  }
  #content04 .contentBox .imgPhotoWrap .imgPhotoBox .cap span {
    position: absolute;
    font-size: 10px;
    font-size: 0.625rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 1px 3px;
    bottom: 0;
    right: 0;
    letter-spacing: 1px;
  }
  #content04 .contentBox .imgPhotoWrap .imgTxtBox {
    display: table-cell;
    vertical-align: middle;
    width: 45%;
    padding-left: 28px;
  }
  #content04 .contentBox .imgPhotoWrap .imgTxtBox p {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 769px) and (min-width: 769px) and (max-width: 1020px), print {
  #content04 .contentBox .imgPhotoWrap .imgTxtBox p {
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1px) and (max-width: 768px) {
  #content04 .contentBox {
    padding-top: 30px;
    /* 写真・テキスト2連 */
  }
  #content04 .contentBox h4 {
    position: relative;
  }
  #content04 .contentBox h4:after {
    /*
    @include			content;
    background			: $cBlack;
    height				: 1px;
    width				: 86%;
    top					: 55px;
    left				: 0;
    */
  }
  #content04 .contentBox h4 p {
    margin-top: 35px;
    width: 96%;
    margin-right: auto;
    margin-left: auto;
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 2px;
    text-align: left;
  }
  #content04 .contentBox .meritList {
    overflow: hidden;
    *zoom: 1;
    margin-right: auto;
    margin-left: auto;
    max-width: 1024px;
  }
  #content04 .contentBox .meritList li {
    float: left;
    width: 50%;
    text-align: center;
    padding-left: 7px;
    padding-right: 7px;
    border-left: 1px solid rgba(0, 0, 0, 0.8);
    color: #0E0D15;
  }
  #content04 .contentBox .meritList li:nth-child(odd) {
    border-left: 0;
  }
  #content04 .contentBox .meritList li:nth-child(n+2) {
    margin-top: 10px;
  }
  #content04 .contentBox .meritList li p.kki {
    letter-spacing: normal;
    font-size: 0px;
    font-size: 0rem;
  }
  #content04 .contentBox .meritList li p.kki span {
    font-size: 16px;
    font-size: 1rem;
    display: inline-block;
  }
  #content04 .contentBox .imgPhotoWrap {
    margin-top: 40px;
    width: 100%;
  }
  #content04 .contentBox .imgPhotoWrap:first-of-type {
    margin-top: 20px;
  }
  #content04 .contentBox .imgPhotoWrap .imgPhotoBox {
    width: 96%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px;
  }
  #content04 .contentBox .imgPhotoWrap .imgPhotoBox .cap {
    position: relative;
  }
  #content04 .contentBox .imgPhotoWrap .imgPhotoBox .cap span {
    position: absolute;
    font-size: 10px;
    font-size: 0.625rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 1px 3px;
    bottom: 0;
    right: 0;
    letter-spacing: 1px;
  }
  #content04 .contentBox .imgPhotoWrap .imgTxtBox {
    width: 96%;
    margin-top: 0px;
    margin-right: auto;
    margin-left: auto;
  }
  #content04 .contentBox .imgPhotoWrap .imgTxtBox p {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 20px;
  }
}
/*
#content04add 地図
-----------------------------------------*/
@media only screen and (min-width: 769px), print {
  #content04add .contentBox {
    padding-top: 70px;
  }
  #content04add .contentBox h4 {
    position: relative;
  }
  #content04add .contentBox h4:after {
    position: absolute;
    display: block;
    content: "";
    background: #0E0D15;
    height: 1px;
    width: 56%;
    top: 90px;
    left: 0;
  }
  #content04add .contentBox h4 p {
    max-width: 1024px;
    margin-right: auto;
    margin-left: auto;
    font-size: 32px;
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
@media only screen and (min-width: 769px) and (min-width: 769px) and (max-width: 1020px), print {
  #content04add .contentBox h4 p {
    padding-right: 5px;
  }
}
@media only screen and (min-width: 769px), print {
  #content04add .contentBox .mapInfoTxt {
    margin-top: 30px;
  }
  #content04add .contentBox .mapInfoTxt p {
    max-width: 1024px;
    margin-right: auto;
    margin-left: auto;
    font-size: 16px;
    font-size: 1rem;
  }
  #content04add .contentBox .imgMapWrap {
    margin-top: 30px;
    padding-bottom: 90px;
  }
  #content04add .contentBox .imgMapWrap img {
    width: 100%;
  }
}
@media only screen and (min-width: 1px) and (max-width: 768px) {
  #content04add .contentBox {
    padding-top: 30px;
  }
  #content04add .contentBox h4 {
    position: relative;
  }
  #content04add .contentBox h4:after {
    position: absolute;
    display: block;
    content: "";
    background: #0E0D15;
    height: 1px;
    width: 86%;
    top: 55px;
    left: 0;
  }
  #content04add .contentBox h4 p {
    width: 96%;
    margin-right: auto;
    margin-left: auto;
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 2px;
    text-align: left;
  }
  #content04add .contentBox .mapInfoTxt {
    width: 96%;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
  }
  #content04add .contentBox .mapInfoTxt p {
    font-size: 16px;
    font-size: 1rem;
  }
  #content04add .contentBox .mapInfoTxt p span {
    font-size: 16px;
    font-size: 1rem;
  }
  #content04add .contentBox .imgMapWrap {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 30px;
    padding-bottom: 50px;
  }
  #content04add .contentBox .imgMapWrap img {
    width: 100%;
  }
}
/*
#content05 ACCESS
-----------------------------------------*/
@media only screen and (min-width: 769px), print {
  #content05 .contentBox {
    background: url(../images/bg_dark02.png) no-repeat center center;
    background-size: cover;
    min-height: 350px;
    color: #fff;
    position: relative;
  }
  #content05 .contentBox .photoCap {
    position: absolute;
    font-size: 10px;
    font-size: 0.625rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 1px 3px;
    bottom: 0;
    right: 0;
    letter-spacing: 1px;
  }
  #content05 .titleBox .tl {
    width: 146px;
  }
  #content05 .introBox p.kki span {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1px) and (max-width: 768px) {
  #content05 .contentBox {
    background: url(../images/bg_dark02_sp.png) no-repeat center center;
    background-size: cover;
    min-height: 350px;
    color: #fff;
    position: relative;
  }
  #content05 .contentBox .photoCap {
    position: absolute;
    font-size: 10px;
    font-size: 0.625rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 1px 3px;
    bottom: 0;
    right: 0;
    letter-spacing: 1px;
  }
  #content05 .contentInner {
    width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
  #content05 .titleBox {
    padding-top: 30px;
  }
  #content05 .titleBox span {
    display: block;
  }
  #content05 .titleBox .tl {
    margin-top: 15px;
    width: 146px;
  }
  #content05 .introBox {
    margin-top: 25px;
  }
  #content05 .introBox p.kki span {
    font-size: 14px;
    font-size: 0.875rem;
  }
  #content05 .btnMore {
    margin-top: 30px;
    width: 150px;
  }
  #content05 .btnMore a {
    display: block;
    color: #fff;
    border: 1px solid #fff;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
/*
#content06 TRAIN ACCESS
-----------------------------------------*/
@media only screen and (min-width: 769px), print {
  #content06 {
    text-align: center;
    /* .meritListAcs */
    /* line付タイトル */
  }
  #content06 .contentBox {
    padding-bottom: 90px;
  }
  #content06 p.intro {
    margin-top: 50px;
  }
  #content06 p.intro span {
    font-size: 24px;
    font-size: 1.5rem;
  }
  #content06 p.titleCap {
    margin-top: 20px;
  }
  #content06 p.titleCap span {
    font-size: 24px;
    font-size: 1.5rem;
  }
  #content06 .meritListAcs {
    font-size: 0px;
    font-size: 0rem;
    margin-top: 50px;
  }
  #content06 .meritListAcs dt.txt_th01 img {
    max-width: 473px;
  }
  #content06 .meritListAcs dd {
    font-size: 16px;
    font-size: 1rem;
    display: inline-block;
    width: 50%;
    margin-top: 20px;
    text-aling: center;
  }
  #content06 .meritListAcs dd .txt_th02 {
    max-width: 495px;
    padding-right: 5px;
    padding-left: 5px;
  }
  #content06 .meritListAcs dd .txt_th03 {
    max-width: 458px;
    padding-right: 5px;
    padding-left: 5px;
  }
  #content06 .meritListAcs .txt_th01, #content06 .meritListAcs .txt_th02, #content06 .meritListAcs .txt_th03 {
    margin-right: auto;
    margin-left: auto;
  }
  #content06 .meritListAcs .txt_th01 img, #content06 .meritListAcs .txt_th02 img, #content06 .meritListAcs .txt_th03 img {
    width: 100%;
  }
  #content06 h5 {
    max-width: 1024px;
    margin-top: 60px;
    position: relative;
    text-align: center;
  }
  #content06 h5 img {
    width: 170px;
  }
  #content06 h5:before {
    right: 40%;
    margin-right: 204px;
  }
  #content06 h5:after {
    left: 40%;
    margin-left: 204px;
  }
  #content06 h5:before, #content06 h5:after {
    position: absolute;
    display: block;
    content: "";
    height: 1px;
    top: 13px;
    width: 0;
    background: rgba(0, 0, 0, 0.9);
    -moz-transform: skew(-45deg, 0);
    -ms-transform: skew(-45deg, 0);
    -webkit-transform: skew(-45deg, 0);
    transform: skew(-45deg, 0);
  }
  #content06 h5.active:before, #content06 h5.active:after {
    width: 40%;
    -webkit-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
    -ms-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
    -o-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
    -ms-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
    -webkit-transition-delay: 0.3s;
    -ms-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    -ms-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  #content06 .photoGal {
    margin-top: 10px;
    overflow: hidden;
    *zoom: 1;
  }
  #content06 .photoGal li {
    position: relative;
  }
  #content06 .photoGal li:nth-child(even) {
    float: right;
    width: 50%;
  }
  #content06 .photoGal li:nth-child(odd) {
    float: left;
    width: 50%;
  }
  #content06 .photoGal li img {
    max-width: 100%;
  }
  #content06 .photoGal li span {
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    right: 0;
    color: #fff;
    padding: 1px 3px;
    font-size: 10px;
    font-size: 0.625rem;
    background: rgba(0, 0, 0, 0.8);
  }
  #content06 .photoGalCap {
    font-size: 14px;
    font-size: 0.875rem;
    text-align: left;
  }
}
@media only screen and (min-width: 769px) and (min-width: 769px) and (max-width: 1020px), print {
  #content06 .photoGalCap {
    padding-right: 5px;
    padding-left: 5px;
  }
}

@media only screen and (min-width: 1px) and (max-width: 768px) {
  #content06 {
    text-align: center;
    /* .meritListAcs */
    /* line付タイトル */
  }
  #content06 .contentBox {
    padding-bottom: 50px;
  }
  #content06 p.intro {
    width: 96%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 40px;
    text-align: left;
  }
  #content06 p.intro span {
    font-size: 18px;
    font-size: 1.125rem;
  }
  #content06 p.titleCap {
    margin-top: 20px;
  }
  #content06 p.titleCap span {
    font-size: 18px;
    font-size: 1.125rem;
  }
  #content06 .meritListAcs {
    margin-top: 30px;
  }
  #content06 .meritListAcs dt.txt_th01 img {
    max-width: 473px;
  }
  #content06 .meritListAcs dd {
    width: 100%;
    margin-top: 20px;
    text-aling: center;
  }
  #content06 .meritListAcs dd .txt_th02 {
    max-width: 495px;
  }
  #content06 .meritListAcs dd .txt_th03 {
    max-width: 458px;
  }
  #content06 .meritListAcs .txt_th01, #content06 .meritListAcs .txt_th02, #content06 .meritListAcs .txt_th03 {
    margin-right: auto;
    margin-left: auto;
    padding-right: 10px;
    padding-left: 10px;
  }
  #content06 .meritListAcs .txt_th01 img, #content06 .meritListAcs .txt_th02 img, #content06 .meritListAcs .txt_th03 img {
    width: 100%;
  }
  #content06 h5 {
    margin-top: 20px;
    text-align: center;
  }
  #content06 h5 img {
    max-width: 100%;
  }
  #content06 .photoGal {
    margin-top: 10px;
  }
  #content06 .photoGal li {
    position: relative;
  }
  #content06 .photoGal li:nth-child(even) {
    float: none;
    width: 100%;
  }
  #content06 .photoGal li:nth-child(odd) {
    float: none;
    width: 100%;
  }
  #content06 .photoGal li img {
    max-width: 100%;
  }
  #content06 .photoGal li span {
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    right: 0;
    color: #fff;
    padding: 1px 3px;
    font-size: 10px;
    font-size: 0.625rem;
    background: rgba(0, 0, 0, 0.8);
  }
  #content06 .photoGalCap {
    width: 96%;
    margin-right: auto;
    margin-left: auto;
    font-size: 10px;
    font-size: 0.625rem;
    text-align: left;
    letter-spacing: normal;
  }
}
/*
#content07 BRAND
-----------------------------------------*/
@media only screen and (min-width: 769px), print {
  #content07 .contentBox {
    background: url(../images/bg_dark03.png) no-repeat center center;
    background-size: cover;
    min-height: 350px;
    color: #fff;
    position: relative;
  }
  #content07 .contentBox .photoCap {
    position: absolute;
    font-size: 10px;
    font-size: 0.625rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 1px 3px;
    bottom: 0;
    right: 0;
    letter-spacing: 1px;
  }
  #content07 .titleBox .tl {
    width: 134px;
  }
  #content07 p.kki span {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1px) and (max-width: 768px) {
  #content07 .contentBox {
    background: url(../images/bg_dark03_sp.png) no-repeat center center;
    background-size: cover;
    min-height: 350px;
    color: #fff;
    position: relative;
  }
  #content07 .contentBox .photoCap {
    position: absolute;
    font-size: 10px;
    font-size: 0.625rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 1px 3px;
    bottom: 0;
    right: 0;
    letter-spacing: 1px;
  }
  #content07 .contentInner {
    width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
  #content07 .titleBox {
    padding-top: 30px;
  }
  #content07 .titleBox span {
    display: block;
  }
  #content07 .titleBox .tl {
    margin-top: 15px;
    width: 134px;
  }
  #content07 .introBox {
    margin-top: 25px;
  }
  #content07 .introBox p.kki span {
    font-size: 14px;
    font-size: 0.875rem;
  }
  #content07 .btnMore {
    margin-top: 30px;
    width: 150px;
  }
  #content07 .btnMore a {
    display: block;
    color: #fff;
    border: 1px solid #fff;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
/*
#content08
-----------------------------------------*/
@media only screen and (min-width: 769px), print {
  #content08 .contentBox {
    padding-top: 70px;
    padding-bottom: 45px;
  }
  #content08 .contentBox h4 {
    position: relative;
  }
  #content08 .contentBox h4:after {
    position: absolute;
    display: block;
    content: "";
    background: #0E0D15;
    height: 1px;
    width: 56%;
    top: 90px;
    left: 0;
  }
  #content08 .contentBox h4 p {
    max-width: 1024px;
    margin-right: auto;
    margin-left: auto;
    font-size: 28px;
    font-size: 1.75rem;
    letter-spacing: 2px;
  }
}
@media only screen and (min-width: 769px) and (min-width: 769px) and (max-width: 1020px), print {
  #content08 .contentBox h4 p {
    padding-right: 5px;
    padding-left: 5px;
  }
}
@media only screen and (min-width: 769px), print {
  #content08 .contentBox .infoTxt {
    margin-top: 60px;
  }
  #content08 .contentBox .infoTxt p {
    max-width: 1024px;
    margin-right: auto;
    margin-left: auto;
  }
  #content08 .contentBox .infoTxt .mainTxt {
    line-height: 2;
  }
  #content08 .contentBox .infoTxt .mainTxt span {
    font-size: 16px;
    font-size: 1rem;
  }
  #content08 .contentBox .infoTxt .attTxt {
    margin-top: 20px;
    font-size: 10px;
    font-size: 0.625rem;
  }
}
@media only screen and (min-width: 769px) and (min-width: 769px) and (max-width: 1020px), print {
  #content08 .contentBox .infoTxt {
    padding-right: 5px;
    padding-left: 5px;
  }
}

@media only screen and (min-width: 1px) and (max-width: 768px) {
  #content08 .contentBox {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  #content08 .contentBox h4 {
    position: relative;
  }
  #content08 .contentBox h4:after {
    position: absolute;
    display: block;
    content: "";
    background: #0E0D15;
    height: 1px;
    width: 86%;
    top: 55px;
    left: 0;
  }
  #content08 .contentBox h4 p {
    width: 96%;
    margin-right: auto;
    margin-left: auto;
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 2px;
    text-align: left;
  }
  #content08 .contentBox .infoTxt {
    width: 96%;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
  }
  #content08 .contentBox .infoTxt p {
    font-size: 14px;
    font-size: 0.875rem;
  }
  #content08 .contentBox .infoTxt .attTxt {
    margin-top: 20px;
    font-size: 10px;
    font-size: 0.625rem;
  }
}
/*
#content09 history 
-----------------------------------------*/
@media only screen and (min-width: 769px), print {
  #content09 {
    background: #a4a4a4;
    padding-top: 40px;
  }
  #content09 .contentBox {
    padding-bottom: 40px;
  }
  #content09 .contentBox img {
    display: block;
    max-width: 96%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media only screen and (min-width: 1px) and (max-width: 768px) {
  #content09 {
    background: #a4a4a4;
    padding-top: 40px;
  }
  #content09 .contentBox {
    padding-bottom: 40px;
  }
  #content09 .contentBox img {
    display: block;
    max-width: 96%;
    margin-right: auto;
    margin-left: auto;
  }
}
/*
#content10 他物件 
-----------------------------------------*/
@media only screen and (min-width: 769px), print {
  #content10 {
    padding-top: 40px;
  }
  #content10 .contentBox {
    padding-bottom: 130px;
  }
  #content10 .contentBox .otherTable {
    display: table;
    table-layout: fixed;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  #content10 .contentBox .otherTable .other {
    display: table-cell;
    width: 33.3333%;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
  }
  #content10 .contentBox .otherTable .other img {
    max-width: 100%;
  }
  #content10 .contentBox .otherTable .other p {
    text-align: left;
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1px) and (max-width: 768px) {
  #content10 {
    /*padding-top					: 20px;*/
  }
  #content10 .contentBox {
    padding-bottom: 20px;
  }
  #content10 .contentBox .otherTable {
    width: 100%;
  }
  #content10 .contentBox .otherTable .other {
    margin-top: 30px;
    width: 100%;
    text-align: center;
  }
  #content10 .contentBox .otherTable .other:first-of-type {
    margin-top: 0px;
  }
  #content10 .contentBox .otherTable .other img {
    max-width: 100%;
  }
  #content10 .contentBox .otherTable .other p {
    text-align: center;
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 769px), print {
  .contentTtile {
    text-align: center;
    margin-top: 70px;
  }
  .contentTtile .ttl {
    font-size: 32px;
    font-size: 2rem;
    position: relative;
    letter-spacing: 5px;
  }
  .contentTtile .ttl span {
    font-size: 16px;
    font-size: 1rem;
    display: block;
    margin-top: 6px;
    letter-spacing: 1px;
  }
  .contentTtile .ttl:after {
    position: absolute;
    display: block;
    content: "";
    width: 1px;
    height: 30px;
    margin: 20px auto;
    background: #000;
    left: 50%;
  }
}
@media only screen and (min-width: 1px) and (max-width: 768px) {
  .contentTtile {
    text-align: left;
    margin-top: 30px;
  }
  .contentTtile .ttl {
    width: 96%;
    margin-right: auto;
    margin-left: auto;
    font-size: 32px;
    font-size: 2rem;
    position: relative;
    letter-spacing: 5px;
    line-height: 1.4;
  }
  .contentTtile .ttl span {
    font-size: 16px;
    font-size: 1rem;
    display: block;
    margin-top: 0px;
    letter-spacing: 1px;
  }
  .contentTtile .ttl:after {
    position: absolute;
    display: block;
    content: "";
    width: 30px;
    height: 1px;
    margin: 20px auto;
    background: #000;
    left: 0;
  }
}


/* コピーライト追加 */
.c_inner {
	max-width: 1024px;
	margin: 0 auto;
	padding-bottom:15px;
	padding-top:10px;
	text-align:right;
}
@media screen and (max-width: 768px) {
	.c_inner {
		width: 341px;
		text-align:center;
		display:block;
		margin-left:auto;
		margin-right: auto;
		padding-bottom: 10px;
		padding-top: 0px;
	}
}



/* 休暇案内*/
.holiday{
/*border: 1px solid #fff;
padding: 10px ;
line-height: 20px;
font-size: 12px;
color: #fff;
width: 75.75%;
margin: 25px auto 0;*/
	display: none;
}
@media only screen and (max-width: 767px), print {
	.holiday{
    width: 91.5%;
		padding: 10px ;
    text-align: left;
	}	
}
.holiday span{
	display: inline-block;
	font-size: 1rem;
}
.holiday span.f_large{
	font-size: 1.2rem;
}




/* 20180824追加 */
@media only screen and (min-width: 768px), print {
	.dTable {
		display: table;
		width:270px;
		table-layout:fixed;
		margin-top:20px;
	}
	.dTableCell {
		width: 135px;
		display:table-cell;
	}
	.dTableCell a{
		display:block;
		width: 130px !important;
	}
	.dTableCell .sp_inlineBlock a img{
		max-width: 100%;
	}
	.mrightAuto {
		margin-left: auto;
	}
	
}

@media only screen and (max-width: 767px), print {
	.dTable {
		display: table;
		width:100%;
		table-layout:fixed;
		margin-top:10px;
	}
	.dTableCell {
		width: 100%;
		display:table-cell;
	}
	.dTableCell a{
		display:block;
		max-width: 135px;
	}
	.dTableCell a img{
		max-width: 100%;
		box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
	}
	.mrightAuto {
		margin-left: auto;
	}

	#content01 .contentBox .btnBox .sp_inlineBlock, #content01a .contentBox .btnBox .sp_inlineBlock,
	.content02a .contentBox .btnBox .sp_inlineBlock,
	#content02 .contentBox .btnBox .sp_inlineBlock,
	#content02a .contentBox .btnBox .sp_inlineBlock {
		width: 100%;
	}

	
	#content01 .contentBox .btnBox, #content02 .contentBox .btnBox,
	#content01a .contentBox .btnBox,
	#content02a .contentBox .btnBox {
		max-width: 280px;
		width:100%;
	}
	
	#content01 .contentBox .btnBox .sp_inlineBlock, #content02 .contentBox .btnBox .sp_inlineBlock{
		width:100%;
	
	}
	
}



/*GW event*/
.gw_wrapper{
	max-width: 886px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
	margin-top: 30px;
	box-sizing: border-box;
}
.gw_wrapper img{
	display: block;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	height: auto;
}
.posR{position:relative; width:100%;}
.pc_btn_gw, .sp_btn_gw{
	position: absolute;
	display: block;
	left:50%;
	transform: translateX(-50%);
	transition: .4s;
}
.pc_btn_gw:hover, .sp_btn_gw:hover {
	opacity: .6;
	transition: .4s;
}
.pc_btn_gw {
	width: 27.5%;
	bottom: 7%;
}
.sp_btn_gw {
	width: 43.5%;
	bottom: 4.7%;
}
.gw_info {margin-top: 1rem;}
.gw_info li{
	color: #fff;
	font-size:12px;
	line-height:1.4;
	text-align: left;
}
.gw_info li:nth-child(n+2){ margin-top:3px;}
/* 2019GW告知用regBtn */
.w860{max-width: 650px; margin-left: auto; margin-right: auto; margin-top: 20px;margin-bottom: 20px;}

