@charset "utf-8";
/* CSS Document */

/* Reset.css */
@import '/landing/css/reset.css';

html, body {
    font-size: 100%;
	margin:0;
	line-height:150%;
	padding:0;
	overflow-x: hidden;
    font-family: YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
}

a{text-decoration:none; color:#000000;}
a:link {text-decoration:none; color:#000000;}
a:visited {text-decoration:none; color:#000000;}
a:hover {text-decoration:none; color:#555555;}
a:active {text-decoration:none; color:#000000;}

a:hover img{opacity: 0.5 ;}

.button-orange a{text-decoration:none; color:#FFFFFF; display: block; padding:20px 5px; background-color:rgba(255,127,0,1.0);}
.button-orange a:link {text-decoration:none; color:#FFFFFF;}
.button-orange a:visited {text-decoration:none; color:#FFFFFF;}
.button-orange a:hover {text-decoration:none; color:#FFFFFF; background-color:rgba(255,127,0,0.7);}
.button-orange a:active {text-decoration:none; color:#FFFFFF;}

.button-blue a{text-decoration:none; color:#FFFFFF; display: block;	padding:20px 5px;background-color:rgba(9,146,227,1.0);}
.button-blue a:link {text-decoration:none; color:#FFFFFF;}
.button-blue a:visited {text-decoration:none; color:#FFFFFF;}
.button-blue a:hover {text-decoration:none; color:#FFFFFF; background-color: rgba(9,146,227,0.7);}
.button-blue a:active {text-decoration:none; color:#FFFFFF;}


.button-red a{text-decoration:none; color:#FFFFFF; display: block; padding:20px 5px; background-color: rgba(178,0,0,1.0);}
.button-red a:link {text-decoration:none; color:#FFFFFF;}
.button-red a:visited {text-decoration:none; color:#FFFFFF;}
.button-red a:hover {text-decoration:none; color:#FFFFFF; background-color: rgba(178,0,0,0.7);}
.button-red a:active {text-decoration:none; color:#FFFFFF;}

.button-yellow a{text-decoration:none; color:#000000; display: block; padding:20px 5px; background-color: rgba(255,225,26,1.0);}
.button-yellow a:link {text-decoration:none; color:#000000;}
.button-yellow a:visited {text-decoration:none; color:#000000;}
.button-yellow a:hover {text-decoration:none; color:#000000; background-color: rgba(249,189,32,1.0);}
.button-yellow a:active {text-decoration:none; color:#000000;}

#subhead a{text-decoration:none; color:#FFFFFF;}
#subhead a:link {text-decoration:none; color:#FFFFFF;}
#subhead a:visited {text-decoration:none; color:#FFFFFF;}
#subhead a:hover {text-decoration:none; color:#EEEEEE;}
#subhead a:active {text-decoration:none; color:#FFFFFF;}

#company-area a{text-decoration:underline; color:#FF7F00;}
#company-area a:link {text-decoration:underline; color:#FF7F00;}
#company-area a:visited {text-decoration:underline; color:#FF7F00;}
#company-area a:hover {text-decoration:none; color:#FF7F00;}
#company-area a:active {text-decoration:underline; color:#FF7F00;}



/*-------------------------------------------------------*
    Pintsize
    Url: http://www.pintsize.io
    Github: https://github.com/alistairtweedie/Pintsize/

/*-------------------------------------------------------*/
/*-------------------------------------------------------*    #grid config
\*-------------------------------------------------------*/
/*-------------------------------------------------------*    #grid calculations
\*-------------------------------------------------------*/
/*-------------------------------------------------------*    #clearfix mixin
\*-------------------------------------------------------*/
/*-------------------------------------------------------*    #box sizing mixin
\*-------------------------------------------------------*/
/*-------------------------------------------------------*    #media query mixin
\*-------------------------------------------------------*/
/*-------------------------------------------------------*    #older IE mixin
    - support for IE9 and IE8.
    - $old-ie in grid config must be true
\*-------------------------------------------------------*/
/*-------------------------------------------------------*    #gutter mixin
    - If $fixed-gutter-size is set to true this will output
    the $gutter-width as a fixed value and not percentage
\*-------------------------------------------------------*/
/*-------------------------------------------------------*    #The grid
\*-------------------------------------------------------*/
.container {
  max-width: 1180px;
	position: relative;
  margin: 0 auto;
  box-sizing: border-box; }

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap; }

/*-------------------------------------------------------*    #flexbox helper classes
    - docs for browser support to be provided
\*-------------------------------------------------------*/
.flex--auto .col {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }

.flex--start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start; }
  .flex--start .col {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0; }

.flex--center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .flex--center .col {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0; }

.flex--end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end; }
  .flex--end .col {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0; }

.flex--top {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start; }

.flex--middle {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.flex--baseline {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline; }

.flex--wrap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }

.flex--row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row; }

.flex--bottom {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end; }
  .flex--bottom .col {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }

.flex--around {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around; }
  .flex--around .col {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1; }

.flex--between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .flex--between .col {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1; }

.flex--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse; }

.col {
  -webkit-box-flex: 0;
	position: relative;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-flex-basis: auto;
      -ms-flex-preferred-size: auto;
          flex-basis: auto;
  max-width: 100%;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px; }

.col--first {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1; }

.col--last {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1; }

.col--1 {
  -webkit-flex-basis: 8.33333%;
      -ms-flex-preferred-size: 8.33333%;
          flex-basis: 8.33333%;
  max-width: 8.33333%; }

.col--2 {
  -webkit-flex-basis: 16.66667%;
      -ms-flex-preferred-size: 16.66667%;
          flex-basis: 16.66667%;
  max-width: 16.66667%; }

.col--20 {
  -webkit-flex-basis: 20%;
      -ms-flex-preferred-size: 20%;
          flex-basis: 20%;
  max-width: 20%; }

.col--3 {
  -webkit-flex-basis: 25%;
      -ms-flex-preferred-size: 25%;
          flex-basis: 25%;
  max-width: 25%; }

.col--4 {
  -webkit-flex-basis: 33.33333%;
      -ms-flex-preferred-size: 33.33333%;
          flex-basis: 33.33333%;
  max-width: 33.33333%; }

.col--5 {
  -webkit-flex-basis: 41.66667%;
      -ms-flex-preferred-size: 41.66667%;
          flex-basis: 41.66667%;
  max-width: 41.66667%; }

.col--6 {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  max-width: 50%; }

.col--7 {
  -webkit-flex-basis: 58.33333%;
      -ms-flex-preferred-size: 58.33333%;
          flex-basis: 58.33333%;
  max-width: 58.33333%; }

.col--8 {
  -webkit-flex-basis: 66.66667%;
      -ms-flex-preferred-size: 66.66667%;
          flex-basis: 66.66667%;
  max-width: 66.66667%; }

.col--9 {
  -webkit-flex-basis: 75%;
      -ms-flex-preferred-size: 75%;
          flex-basis: 75%;
  max-width: 75%; }

.col--10 {
  -webkit-flex-basis: 83.33333%;
      -ms-flex-preferred-size: 83.33333%;
          flex-basis: 83.33333%;
  max-width: 83.33333%; }

.col--11 {
  -webkit-flex-basis: 91.66667%;
      -ms-flex-preferred-size: 91.66667%;
          flex-basis: 91.66667%;
  max-width: 91.66667%; }

.col--12 {
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  max-width: 100%; }

.col__offset--1 {
  margin-left: 8.33333%; }

.col__offset--2 {
  margin-left: 16.66667%; }

.col__offset--20 {
  margin-left: 20%; }

.col__offset--3 {
  margin-left: 25%; }

.col__offset--4 {
  margin-left: 33.33333%; }

.col__offset--5 {
  margin-left: 41.66667%; }

.col__offset--6 {
  margin-left: 50%; }

.col__offset--7 {
  margin-left: 58.33333%; }

.col__offset--8 {
  margin-left: 66.66667%; }

.col__offset--9 {
  margin-left: 75%; }

.col__offset--10 {
  margin-left: 83.33333%; }

.col__offset--11 {
  margin-left: 91.66667%; }

.col__offset--12 {
  margin-left: 100%; }

@media (min-width: 40em) {
  .col__md--1 {
    -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col__md--2 {
    -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%; }
	
  .col__md--20 {
    -webkit-flex-basis: 20%;
        -ms-flex-preferred-size: 20%;
            flex-basis: 20%;
    max-width: 20%; }
	
  .col__md--3 {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%; }
  .col__md--4 {
    -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col__md--5 {
    -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
            flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col__md--6 {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%; }
  .col__md--7 {
    -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
            flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col__md--8 {
    -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
            flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col__md--9 {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%; }
  .col__md--10 {
    -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
            flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col__md--11 {
    -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
            flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col__md--12 {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%; } }

@media (min-width: 64em) {
  .col__lg--1 {
    -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col__lg--2 {
    -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col__lg--20 {
    -webkit-flex-basis: 20%;
        -ms-flex-preferred-size: 20%;
            flex-basis: 20%;
    max-width: 20%; }	
  .col__lg--3 {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%; }
  .col__lg--4 {
    -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col__lg--5 {
    -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
            flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col__lg--6 {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%; }
  .col__lg--7 {
    -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
            flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col__lg--8 {
    -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
            flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col__lg--9 {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%; }
  .col__lg--10 {
    -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
            flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col__lg--11 {
    -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
            flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col__lg--12 {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%; } }


.bx-pager a,.bx-pager2 a {  
	font-weight: 700;
	padding:15px 0;
	display: block;
	text-align: center;
	background-color: #FFE11A;
} 

.bx-pager .active,.bx-pager2 .active{
	background-color: #0992E3;
}

.bx-pager a::before,.bx-pager2 a::before {  
    content: "\f02b";
    font-family: FontAwesome;
    margin-right: 10px;
    position: relative;
    top: 0;
}

.bx-pager .col,.bx-pager2 .col {
	padding: 15px 20px;
}

.center {
	text-align: center;
}
.yellow {
background: linear-gradient(transparent 80%, #ffff66 80%);
}

.plr10 {
	padding:20px 10px;
}


#mainbnr .col {
	padding-left: 0;
	padding-right: 0;
}


.btxt {
	font-size:16px;
	line-height:180%;
	padding-bottom: 20px;
}

.caution {
	font-size:11px;
}

#subhead {
	background-color: #0992E3;
	position: relative;
	color:#FFFFFF;
}

#subhead strong {
	font-size:13px;	
	color:#FFFFFF;
	padding:5px 0;
	font-weight: 300;
	display: inline-block;
	text-align: left;
	
}

#section1 .col {
	padding-left: 0;
	padding-right: 0;
}


#section1 figure {
    width: 100%;
    height: 380px;
    overflow: hidden;
position: relative;
}

#section5 figure {
    width: 100%;
    max-height: 340px;
    overflow: hidden;
position: relative;
}

figure img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    width: 100%;
    height: auto;
}



.transparent {
    background-color: rgba(255,255,255,0.7);
    padding: 20px;
	font-size:14px;
    margin: auto;
    text-align: center;
    position: absolute;
    top: 50%;
	width:70%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 1250px) {
.transparent {
    top: 35%;	
	}
	
#section5 .transparent {
    top: 50%;
	width: 90%;
	}
	#section5 .transparent p {
    font-size:13px;
	}
}
#subhead ul {
	margin:0;
	padding: 3px 0 0 0;
	font-size:13px;
	float: right;
}

#subhead ul li {
	padding-left:35px;
	position: relative;
}

#head {
	background-color: #FFFFFF;	
}

#head {
	padding:20px 0;
}

#head h1{
	float:left;
	padding-right: 10px;
}

#btob {
	margin-top: 20px;
	display:inline-block;
}


#head .tel {
	margin-top:10px;
}
#g-navi {
	padding:10px 0;
}

#g-navi ul li {
	padding:0 15px;
	font-size: 15px;
	margin:10px 0;
	border-right: 1px solid #333333;
}

#g-navi ul li:last-child {
	border-right: initial;
	float:right;
}

#g-navi ul li:first-child {
	padding:0 15px 0 0;
}


h2 {
	font-size:40px;
	color:#0792E3;
	font-weight: 700;
}

strong {
	font-size:20px;
	color:#000000;
	display: block;
}



ul {
	list-style: none;
}

ul li {
	float:left;
	padding:0 5px;
}
.clearfix:after {
  content: ".";  
  display: block; 
  clear: both;
  height: 0;
  visibility: hidden;
}

.cv {
	margin:40px 0;
}

.cv .container {
	border: 10px solid #0992E3;
	padding:15px 8px;
}

.cv strong {
	font-size:18px;
	color:#008AE5;
	
}

.box-cv1 {
	border-right: 1px solid #008AE5;

}

.cv h2 {
	font-size:28px;
	color:#000000;
	padding:15px 0;
}

.box-blue {
	border:1px solid #0992E3;
	position: relative;
	margin-bottom: 20px;
}

.box-blue img {
	position: absolute;
	top:10px;
	left:8px;
}

.swiper-slide img {
	padding:15px 0;
}

#section1 {

}

#section1 h2 {
	font-size: 22px;
	font-weight: 700;
	padding: 10px;
	color:#000000;
}

#section1 h3 {
  font-size: 18px;
  font-weight: 500;
  color:#0992E3;
}

#section1 .bottomUnderMv h3 {
  font-weight: bold;
}

#section1 p {
	font-size: 16px;
	font-weight: 500;
}

#section2 {
	margin-top:30px;
}

#section2 .bx-wrapper {
	border-bottom: initial;
}

#section2 .bx-wrapper .bx-prev{
	left: -40px;
}

#section2 .bx-wrapper .bx-next{
	right: -40px;
}


#section2 h2 {
    font-size: 30px;
    color: #333333;
    margin: -16px;
    z-index: 100;
    position: relative;
}



#section2 h2 span {
	display: block;
	font-size:22px;
	color:#0792E3;
	padding-top:15px;
}

#section2 h3 {
	margin-top:10px;
}



#section2 h3 span,#section2 h4 span {
	display: inline-block;
	background-color:#0792E3;
	color:#FFFFFF;
	padding:2px 5px;
	margin-bottom: 5px;
	border-radius: 3px;
	margin-right:10px;
}

#section2 img {
	width:auto;
	height:180px;
	padding:0;
}

#section2 .swiper-slide {
}

#section3 h3 {
	font-size:45px;
	color:#0892E3;
	padding:15px 0 30px;
	font-weight: 700;
}



#section3 .col__lg--8 {
	padding-left:50px;
}

#section3 .button-orange,#section4 .button-orange {
	width:360px;
	margin-top:20px;
	text-align: center;
}



#section3 .button-blue,#section4 .button-blue {
	width:360px;
	text-align: center;
}

#other .button-orange,#silk .button-orange{
	width:100%;
	text-align: center;
}

#other .button-blue,#silk .button-blue{
	width:100%;
	text-align: center;
}

#other .button-orange,#silk2 .button-orange{
	width:100%;
	text-align: center;
}

#other .button-blue,#silk2 .button-blue{
	width:100%;
	text-align: center;
}



#silk img {
	width:100%;
	height:auto;
}



.price {
	font-size:26px;
	font-weight: 700;
	position: relative;
	padding: 30px 0 30px 50px;
}

.price::before {
    content: url(/landing/images/top/ico_price.png);
    position: absolute;
    top: 20px;
	left:0px;
}

.mainImage img{
 text-align:center;
	margin-bottom: 10px;
}
.thumbnails{
 width:100%;
 margin:0 auto;
}
.thumbnails img{
 width:20%;
	padding:5px;
	float:left;
}


#section4 .col__lg--7 {
	padding-left:50px;
}

#section4 h3 {
	font-size:45px;
	color:#0892E3;
	padding:15px 0 30px;
	font-weight: 700;
}

#section4 #other h3 {
	font-size:35px;
	color:#0892E3;
	padding:15px 0 15px;
	font-weight: 700;
}

#section4 #silk h3 {
	font-size:30px;
	color:#0892E3;
	padding:15px 0 15px;
	font-weight: 700;
}

#section4 #silk2 h3 {
	font-size:22px;
	color:#0892E3;
	padding:15px 0 15px;
	font-weight: 700;
}

.swiper-pagination3 {
	position: absolute;
	left:100px;
	top:-20px;
}

.swiper-pagination-bullet {
	margin:10px;
}

#section4 {
	padding-top: 40px;
	margin-bottom: 40px;
}

#section4 strong {
	font-weight: 900;
	margin-top:10px;
	margin-bottom: 10px;
	font-size:17px;
}


#navi-label {
	position: absolute;
	top:10px;
}

#section5 {
	padding: 40px 0;
}

#section5-2 {
	padding: 0 0 40px 0;
	border-bottom:1px solid #BBBBBB; 
}

#section5 .col {
	padding:20px;
}

#section5 strong {
	color:#0892E3;
	font-size:16px;
	font-weight: 900;
}

#section5 h3 {
	color:#000000;
	font-size:22px;
	font-weight: 700;
}

#section5-2 .col {
	padding: 20px 23px;
}

#section5 .scenebox {
	border: 3px solid #0792E3;
}

#section5-2 .scenebox {
	border: 3px solid #D90000;
}

#section5 .scenebox img,#section5-2 .scenebox img {
	width:100%;
	height:auto;
}

#section5-2 .scenebox h3 {
	background: linear-gradient(transparent 70%, #ffff66 70%);
	font-size:16px;
	font-weight: 700;
	color:#0992E3;
	display: inline-block;
	padding-top:15px;
}

#section5-2 .scenebox p {
	padding:10px;
	text-align: left;
}

#section6 h2,#section5 h2,#section4 h2,#section3 h2,#section5-2 h2 {
	padding:15px 0;
}

#section6 strong,#section3 strong,#section5-2 strong {
	font-weight: 900;
	margin-top:20px;
	margin-bottom: 20px;
}

#section5 strong {
	font-weight: 900;
	margin-top:10px;
	margin-bottom: 10px;
}

#section6 {
	padding:20px 0 60px;
}

#section6 .jireibox {
	padding:20px;
	background-color: #FFFFFF;
	max-width: 1140px;
}

#section6 h3 {
	font-size:28px;
	font-weight: 700;
	padding: 30px 0 20px;
}

#section6 .linkArea {
	background: #E2F3FE;
	text-align:center;
	padding-bottom:30px;
}
#section6 .linkArea .button-blue{
	width:320px;
	margin: 0 auto 0 auto;
}


#section3 .blue,#section4 .blue,#section6 .blue {
	margin-top:30px;
	border-bottom: 8px solid #0992E3;
	padding:40px 0;
}

    

#merit .col {
	padding-bottom:30px;
	padding-right: 50px;
	padding-left: 50px;
	
}

#merit {
	padding:60px 0;
}

.merit {
	padding:50px 0;
}


.merit img {
	float:left;
	padding-right: 10px;
}

#merit h3 {
	font-size: 22px;
	font-weight: 900;
	padding-bottom: 10px;
}

#merit em {
	font-size: 20px;
	font-weight: 700;
	color:#0792E3;
}


#merit h2 {
	padding:10px 0 20px 0;
}

#section7 {
	padding:30px 0;
}

#section7 h2 {
	padding:10px 0 20px 0;
}

#section7 strong {
	padding-bottom: 20px;
}

#section7 h2 span {
	color:#333333;
}

.houjin {
	background-color: #FFFFFF;
	padding:15px;
	margin:20px;
	height:90px;
	
}

.houjin h3 {
	font-size: 22px;
	padding-bottom: 10px;
	font-weight: 700;
}

#section8 {
	padding:60px 0;
}

#section8 .col__lg--7 {
	text-align: center;
	padding-top: 40px;
}


#section8 h3 {
	padding:20px 0 10px;
	font-size:22px;
	font-weight: 900;
}

#section8 h4 {
	padding:20px 0;
	font-size:22px;
		font-weight: 900;
}

#section8 h4 span {
	font-size:85px;
	color:#FF0000;
}


#section8 .icon img {
	float: left;
	padding-right: 10px;
}

#bnr-area {
	padding:10px 0;	
}

#bnr-area .container {
	width:1000px;
}

#bnr-area img {
	padding:10px 0;
}
#sectionblog {
	padding:50px 0;
}

#sectionblog h2 {
	padding-bottom: 20px;
	color: #000000;
}

#sectionblog img {
	width:100%;
	height:auto;
}

#sectionblog .col {
	padding:30px 0;
}

#sectionblog .time {
	display: block;
	text-align: right;
	color:#555555;
	padding-right: 10px;
}

#sectionblog h3 {
	padding:10px;
	font-size:16px;
}

#sectionblog .button-orange {
	width:320px;
	margin: auto;
}

#section5 .button-orange {
	width:320px;
	margin: auto;
}


#section9 {
	padding:30px 0;
}

#section9 h2 {
	font-size:16px;
	font-weight: 500;
}

#section9 h3 {
	font-size:27px;
	font-weight: 700;
	padding:20px 0;
}

#info-area {
	padding:40px 0;
}

#info-area h3 {
	font-size:22px;
	font-weight: 700;
	padding-bottom: 10px;
	border-bottom: 1px solid #333333;
	margin-bottom: 10px;
}


#info-area dl {
  overflow: hidden;
}
#info-area dl dt {
    float: left;
    width: 12%;
  position: relative;
  text-align: left;
  padding:8px 0;
  box-sizing: border-box;
}

#info-area dl dd {
	padding:8px 0;
  float: left;
  width: 88%;
  box-sizing: border-box;
}

#info-area dl dd a{
	text-decoration:underline;
}

#info-area dl dd a:hover{
	color:#3b94d9;
}


#company-area {
	font-size:13px;
	padding:40px 0;
}

#company-area strong {
	font-size:15px;
	font-weight: 700;
	color:#0792E3;
	padding:10px 0;
}

#company-area img,#section9 img {
	width: 100%;
	height: auto;
}

#company-area h5 {
	padding-left:10px;
}

#company-area p {
	line-height:220%;
}

#copyright {
	background-color: #0992E3;
	color:#FFFFFF;
	font-size:14px;
	padding:8px 0;
	font-weight: 500;
}

#sitemap {
	background-color: #F5F5F5;
	color:#555555;
	padding:30px 0;
	font-size:13px;
}

.blue {
	background-color: #E2F3FE;
}

.grey {
	background-color: #EEEEEE;
}

.grey2 {
	background-color: #F1EDE1;
}

.button-orange {
	font-size:15px;
	font-weight:500;
	position: relative;
	text-align: center;
}

#section8 .button-orange {
	text-align: center;
}

.button-orange em {
	font-style: normal;
	padding-left:22px;

}

.button-orange span {
	font-size: 12px;
	display: block;
	text-align: left;
}

.button-blue {
	font-size:15px;
	font-weight:500;
	position: relative;
	margin-top: 20px;
		text-align: center;

}

.button-blue em {
	font-style: normal;
	    padding-left: 30px;
}


.products {
	font-weight: 700;
	padding:20px 0;
}

.h100 {
	height:100px;
}

.h160 {
	height:200px;
}

.pb30 {
	padding-bottom: 30px;
}

.mitumori a:before {
    content: url(/landing/images/top/ico_mitumori.png);
    position: absolute;
    top: 17px;
	left:5px;
}

.case a:before {
    content: url(/landing/images/top/ico_case.png);
    position: absolute;
    top: 10px;
	left:15px;
}

.btob{margin:10px 300px;}



.btob a:before {
    content: url(/landing/images/top/ico_houjin.png);
    position: absolute;
    top: 10px;
	left:35px;
}

#sectionblog h2::before {
    position: absolute;
    content: url(/landing/images/top/ico_blog.png);
    left: 50%;
    top: -82px;
    width: 65px;
    height: 60px;
    margin-left: -17px;
}

.button-red {
	font-size:15px;
	font-weight:500;
		text-align: center;

	position: relative;
}

.button-red em {
	font-style: normal;
	padding-left:22px;
}


.button-yellow {

	font-size:14px;
	font-weight:500;
	position: relative;
	text-align: center;
}

.button-yellow em {
	font-style: normal;
padding-left:22px;
}



.contact a:before {
    content: url(/landing/images/top/ico_contact.png);
    position: absolute;
    top: 17px;
	left:10px;
}

.contact2 a:before {
    content: url(/landing/images/top/ico_contact2.png);
    position: absolute;
    top: 13px;
	left:5px;
}

#faq a:before {
    content: url(/landing/images/top/ico_faq.png);
    position: absolute;
    top: 3px;
	left:10px;
}

#cart a:before {
    content: url(/landing/images/top/ico_cart.png);
    position: absolute;
    top: 3px;
	left:10px;
}

#mypage a:before {
    content: url(/landing/images/top/ico_mypage.png);
    position: absolute;
    top: 3px;
	left:10px;
}

.tel {
	font-size:26px;
	font-weight: 700;
	display: block;
padding-left: 32px;
	position: relative;
}

.box-cv2 {
	padding-left:10px;
}

.box-cv1 img,.box-cv2 img {
	float:left;
	padding-right:5px;
}

.tel a:before {
    content: url(/landing/images/top/ico_tell.png);
    position: absolute;
    top: 5px;
	left:0px;
}

.btn .col {
	padding-left:0;
}


.btnarea {
	margin-top: 20px;
}

.btnarea .col {
	padding-left:0;
}


.calendarDtl table {
    width: 180px;
    border-top: solid 1px #ccc;
    border-left: solid 1px #ccc;
}

.calendarDtl table caption {
    margin-bottom: 5px;
    text-align: left;
}

.calendarDtl table thead th {
    background: #d6f1ff;
}

.calendarDtl table thead th,.calendarDtl table tbody td {
    padding: 2px;
    border-right: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    text-align: center;
    color: #666;
}

.calendarDtl table tbody td.off {
    background: #ffd5d6;
    color: #fe5e60;
}

.note span {color:#ffd5d6;}

.s-text {
	padding:10px;
}

#footlink {
	padding:10px 0;
	border-top:1px solid #CCCCCC;
}


#map {
	padding:10px;
	font-size:12px;
}

.map0 {
	padding-top:20px;
}

#map2 {
	padding:10px;
	background-color: #FFFFFF;
	font-size:12px;
	border-bottom: 1px solid #CCCCCC;
}

#arrow{
	padding-top: 20px;
	font-weight:bold;
}

#arrow img {
	width:100%;
	height:auto;
	margin:20px 0;
}

#arrow .col {
	padding-left: 0;
	padding-right: 0;
}

#map li,#map2 li {
	display: block;
	float:initial;
}

#footlink li {
float:left;
	}

#map dt {
	font-weight: 700;
}

#map a::before,#arrow li a::before {
    content: "\f105";
    font-family: FontAwesome;
    margin-right: 7px;
    position: relative;
    top: 0;
}

.arrow a:before {
    content: "\f054";
    font-family: FontAwesome;
    margin-right: 7px;
    position: relative;
    top: 0;
	color:#0992E3;
}

#insta a:before {
    content: "\f16d";
    font-family: FontAwesome;
    margin: 10px;
    position: relative;
    top: 0;
    color: #666666;
}

#fb a:before {
    content: "\f230";
    font-family: FontAwesome;
    margin: 10px;
    position: relative;
    top: 0;
    color: #666666;
}

#tw a:before {
    content: "\f099";
    font-family: FontAwesome;
    margin: 10px;
    position: relative;
    top: 0;
    color: #666666;
}
#sns li {
	font-size:16px;
}

dl.search1{
	position:relative;
	background-color:#fff;
	border:1px solid #aaa;
}
dl.search1 dt{
	margin-right:40px;
	padding:6px 0 6px 5px;
}
dl.search1 dt input{
	width:100%;
	height:14px;
	line-height:24px;
	background:none;
	border:none;
}
dl.search1 dd{
	position:absolute;
	top:0;
	right:0;
}
dl.search1 dd button{
	display:block;
	padding:6px;
	background:none;
	border:none;
}
dl.search1 dd button span{
	display:block;
	width:14px;
	height:14px;
	background:url('/landing/images/search.png') no-repeat scroll 0 0;
}

@media screen and (min-width: 800px) {

#slider4 .col__lg--6 {
	min-height: 430px;
}

#slider4 img {
position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
}

@media screen and (max-width: 1060px) {
#section5 .col {
	padding: 20px 5px;
}
	}
	

	
/* 追加要素 */
.pc{
	display:block;
}
.sp,
span.textized,
br.spOnly{
	display:none;
}

#calendar{
	width:33%;
	margin:0 auto;
}
@media only screen and
(max-width : 740px) {

#content {
    padding-top: 0;
}    
    
body .pc{
	display:none;
}
.sp{
	display:block;
}

#arrow {
    padding-top: 0;
}

#snslink{
    overflow: hidden;
}

#snslink li {
	width:50%;
	float:left;
	box-sizing: border-box;
}


#calendar{
	width:auto;
}

}