@charset "UTF-8";
/*
*  ナグスタジオ
*  ---------------------------------------------------
*  BaseFont
*  Optimization
*  BaseColor
*  Animation
*  ---------------------------------------------------
*  Z-Index
*  ---------------------------------------------------
*  layout[ALL]
*    html
*    Body
*    Wrapper
*    Header
*    Footer
*    Container/Content
*  汎用クラス
*  ---------------------------------------------------
*  works
*  ---------------------------------------------------

//PCファースト
*  --------------------------------------------------
*  /*  Media Queries for window size under 1023px
*  --------------------------------------------------
*  /*  Media Queries for window size under 767px
*  --------------------------------------------------
*  /*  Media Queries for window size under 639px
*  --------------------------------------------------
*  /*  Media Queries for window size under 479px
*  --------------------------------------------------
*/
/*==================================================

  BaseFont

====================================================*/
body, button, input, select, option, textarea {
  font-family: "ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","游ゴシック体","YuGothic","游ゴシック","Yu Gothic","メイリオ",'Meiryo',"ＭＳ Ｐゴシック",Helvetica,Arial,sans-serif;
}

/*body, button, input, select, option, textarea {
  font-family: "游ゴシック体","YuGothic","游ゴシック","Yu Gothic","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",'Meiryo',	"ＭＳ Ｐゴシック",Helvetica,Arial,sans-serif;
}

body, button, input, select, option, textarea {
  font-family: "メイリオ",'Meiryo',"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","游ゴシック体","YuGothic","游ゴシック","Yu Gothic","ＭＳ Ｐゴシック",Helvetica,Arial,sans-serif;
}*/



/*==================================================

  Optimization

====================================================*/
/*  html
--------------------------*/
html {
  font-size: 75%;
}

/*  Body
--------------------------*/
body,
body *,
body *:before,
body *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 100%;
}

body.lf_fontsize_L {
  font-size: 109%;
}

button, input, select, option, textarea {
  border: 0 none;
  letter-spacing: 0px;
  border-radius: 0px;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
button:disabled, input:disabled, select:disabled, option:disabled, textarea:disabled {
  background-color: transparent;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: none;
  vertical-align: bottom;
}

img {
 -webkit-touch-callout: none;
 width: auto;
 max-width: 100%;
 height: auto;
 max-height: 100%;
}

a:hover {
  text-decoration: none;
}

img, button, i, a {
  /*
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
         -o-user-select: none;
            user-select: none;
  */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

i {
  font-family: 'luft_ui_symbolsregular';
  /*  font-family: 'luft_ui_symbols_serifregular';  */
}

h1, h2, h3, h4 {
  font-size: 100%;
  font-weight: 400;
}

table {
  border-collapse: collapse;
}

/*==================================================

  BaseColor

====================================================*/
/* テキスト
--------------------------*/
body {
  color: #000;
  width: 100%;
}

button, input, select, option, textarea {
  color: #000;
}

input:-moz-placeholder {
  color: #bbbbbb;
}
input::-webkit-input-placeholder {
  color: #bbbbbb;
}

input:-ms-input-placeholder {
	color: #bbbbbb;
}

textarea:-moz-placeholder {
  color: #bbbbbb;
}
textarea::-webkit-input-placeholder {
  color: #bbbbbb;
}

textarea:-ms-input-placeholder {
	color: #bbbbbb;
}

/* テキスト選択
--------------------------*/
::selection {
  background: #ffe21d;
  color: #FFF;
}

::-moz-selection {
  background: #ffe21d;
  color: #FFF;
}

/* リンク
--------------------------*/
a:link,
a:visited {
  color: #000;
}

/*==================================================

  Z-Index

====================================================*/

.header_top_in {
	z-index: 99;
}

#g_nav {
	z-index: 98;
}






/*==================================================

  layout[ALL]

====================================================*/
/*  Body
--------------------------*/
body {
  min-width: 320px;
	background-color: #ffe21d;
}






/*  Wrapper
--------------------------*/
#wrapper {
  width: 100%;
  text-align: left;
  margin: 0 auto;
  overflow: hidden;
}

/*  Header
--------------------------*/

#header {
	width: 100%;
}

#header_in {
	width: 100%;
}

.header_top {
	width: 100%;
}

.header_top_in {
	padding-top: 34px;
	padding-bottom: 34px;
	width: 100%;
	position: fixed;
	top: 0;
	background-color: #ffe21d;
	background: linear-gradient(270deg, #ffcc00, #ffe21d);
	background-size: 400% 400%;

	-webkit-animation: AnimationName 20s ease infinite;
	-moz-animation: AnimationName 20s ease infinite;
	-o-animation: AnimationName 20s ease infinite;
	animation: AnimationName 20s ease infinite;
}

@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-o-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

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

#logo {
	float: left;
	padding-left: 20px;
}

/*#logo .pc_logo {
	display: inline;
}

#logo .sp_logo {
	display: none;
}*/

.h_cont {
	float: right;
}

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

.h_cont .subttl , .h_cont .g_nav_btn {
	float: left;
}

.subttl .pc_subttl {
	display: inline;
}

.subttl .sp_subttl {
	display: none;
}


.h_cont .g_nav_btn {
	padding-top: 6px;
	padding-left: 30px;
	padding-right: 20px;
}

.h_cont .g_nav_btn img {
	border: 2px solid #323232;
}

#gnav_btn{
	cursor: pointer;
}
#gnav_btn:hover{
	opacity: .8;
}
#gnav_btn .open{
	display: inline;
}
#gnav_btn .close{
	display: none;
}
#gnav_btn.on .open{
	display: none;
}
#gnav_btn.on .close{
	display: inline;
}

#g_nav {
	width: 100%;
	background-color: #f8f8f8;
	position: fixed;
	top: 47px;
	opacity: .95;
	-webkit-transition: all 200ms ease 0s;
  -o-transition: all 200ms ease 0s;
  transition: all 200ms ease 0s;
}
#g_nav.on {
	top: 140px;
}

#g_nav ul {
}

#g_nav ul:after {
	content: "";
	display: block;
	clear: both;
}

#g_nav ul li {
	float: left;
	padding-right: 55px;
}

#g_nav ul li:last-child {
	padding-right: 0px;
}

#g_nav ul li:first-child {
	padding-left: 20px;
}


#g_nav ul li a span {
	display: block;
	position: relative;
	padding-top: 32px;
	padding-bottom: 32px;
}

#g_nav ul li a span:after {
	content: "";
	width: 14px;
	height: 7px;
	background: url(../images/top/g_nav_arw.png);
	background-repeat: no-repeat;
	background-size: 14px 7px;
	display: block;
	position: absolute;
	right: -25px;
	top: 50%;
	margin-top: -2px;
	-webkit-transition: all 200ms ease 0s;
  -o-transition: all 200ms ease 0s;
  transition: all 200ms ease 0s;
}

#g_nav ul li a {
	display: block;
}

#g_nav ul li a:hover span:after {
	top: 60%;
}

.header_bottom {
	width: 100%;
	margin-top: 140px;
}

.header_bottom .head_img img {
	width: 100%;
}
.header_bottom .head_img img.lf_sp {
	display: none;
}


/*  Footer
--------------------------*/

#footer {
	width: 100%
}

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

#pagetop {
	position: fixed;
	right:20px;
	bottom: -100px;
	-webkit-transition: all 300ms ease 0s;
  -o-transition: all 300ms ease 0s;
  transition: all 300ms ease 0s;
}

#pagetop a:hover {
	opacity: .8;
}

#footer_btm {
	width: 100%;
	text-align: center;
	background-color: #ffe21d;
}

#copyright {
	color: #323232;
	line-height: 80px;
	font-size: 117%;
}


/*  Container/Content
--------------------------*/

#container {
	width: 100%;
}

.sec_wrap {
	width: 100%;
	border-top: 2px solid #e6e6e6;
	background-color: #fff;
  padding-bottom: 80px;
}

.sec_wrap:first-child {
	border-top: none;
}

.sec_wrap_in {
	width: 100%;
	max-width: 1320px;
	padding-left: 60px;
	padding-right: 60px;
	margin: 0 auto;
}

.sec_1 , .sec_3 , .sec_5 {
	background-color: #fafafa;
}

.sec_header {
	width: 100%;
	text-align: center;
}

.sec_header .sec_ttl {
	padding-top: 80px;
	padding-bottom: 80px;
}

.sec_header .sec_ttl .pc_sec_ttl {
  display: inline;
}

.sec_header .sec_ttl .sp_sec_ttl {
  display: none;
}

.sec_1 .sec_wrap_in {
	width: 100%;
	max-width: 1320px;
	padding-left: 30px;
	padding-right: 30px;
	margin: 0 auto;
}

.sec_1 .sec_body {
	width: 100%;
}

.sec_1 .insta_cont {
	width: 100%;
}

.sec_1 .insta_cont ul {
	width: 100%;
}

.sec_1 .insta_cont ul:after {
	content: "";
	display: block;
	clear: both;
}

.sec_1 .insta_cont ul li {
	width: 33.33%;
	display: inline-block;
	vertical-align: top;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 60px;
}

.sec_1 .insta_cont ul li a:hover {
	opacity: .7;
}

.pc_insta_img {
	display: inline;
}

.sp_insta_img {
	display: none;
}


.link_btn {
	width: 100%;
}

.link_btn .link_img {
	width: 100%;
	text-align: center;
}

.link_btn .link_img a {
	display: inline-block;
	overflow: hidden;
}

.link_btn .link_img a span {
	display: inline-block;
	position: relative;

	width: 480px;
	height: 100px;
	background-color: #ffe21d;
	transition: right 300ms ease;
}

.link_btn .link_img a span.lf_mtop {
	margin-top:60px;
}



.link_btn .link_img a span:after {
	content: "";
	width: 29px;
	height: 17px;
	background: url(../images/top/link_btn_arw.png);
	background-repeat: no-repeat;
	background-size: 29px 17px;
	display: block;
	position: absolute;
	right: 30px;
	top: 50%;
	margin-top: -8px;
	/*-webkit-transition: all 200ms ease 0s;
  -o-transition: all 200ms ease 0s;
  transition: all 200ms ease 0s;*/

	-webkit-transition: right 300ms ease;
  -o-transition: right 300ms ease;
  transition: right 300ms ease;
}

.link_btn .link_img a:hover span:after {
	width: 58px;
  height: 35px;
  background-size: 58px 35px;
  margin-top: -16px;
  right: 50%;
  margin-right: -28px;
}

.link_btn .link_img a img.pc_link_btn {
	position: relative;
	right: 0%;
	-webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.link_btn .link_img a:hover img.pc_link_btn {
	right: 100%;
}

.link_btn .link_img img {
	/*background-color: #ffe21d;*/
}

.pc_link_btn {
	display: inline;
}

.sp_link_btn {
	display: none;
}


.sec_2 .sec_body {
	width: 100%;
}

.sec_2 .works_main {
	width: 100%;
}

.sec_2 .works_main ul {
	width: 100%;
	padding-bottom: 60px;
}

.sec_2 .works_main ul:after {
	content: "";
	display: block;
	clear: both;
}

.sec_2 .works_main ul li {
	width: 25%;
	float: left;
}

.sec_2 .works_main ul li a:hover {
	opacity: .7;
}

.sec_3 .sec_wrap_in {
	width: 100%;
	max-width: 1320px;
	padding-left: 50px;
	padding-right: 50px;
	margin: 0 auto;
}

.sec_3 .item_contact {
	width: 100%;
}

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

.sec_3 .item_contact li {
	float: left;
	padding-left:10px;
	padding-right: 10px;
	width: 50%;
}

.sec_3 .item_contact li .list_dtl {
	border: 2px solid #f0f0f0;
}

.sec_3 .item_contact li .list_dtl a {
	display: block;
}

.sec_3 .item_contact li .list_dtl a dl {
	background-color: #fff;
	padding-left: 50px;
	padding-top: 30px;
	padding-bottom: 30px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

.sec_3 .item_contact li .list_dtl a:hover dl {
	background-color: #28b4dc;
}

.sec_3 .item_contact li .list_dtl a:hover dl dt .txt ,
.sec_3 .item_contact li .list_dtl a:hover dl dd .txt {
	color: #fff;
}

.sec_3 .item_contact li .list_dtl dl dt .txt {
	font-size: 217%;
	font-weight: bold;
	color: #28b4dc;
	line-height: 1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

.sec_3 .item_contact li .list_dtl dl dd .txt {
	font-size: 333%;
	font-weight: bold;
	color: #28b4dc;
	line-height: 1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

.sec_3 .item_contact li .list_dtl dl dd {
	padding-top: 12px;
}

.sec_3 .item_info {
	width: 100%;
	padding-top: 20px;
}

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

.sec_3 .item_info li {
	float: left;
	padding-left:10px;
	padding-right: 10px;
	width: 25%;
}

.sec_3 .item_info li .list_dtl {
	border: 2px solid #f0f0f0;
	background-color: #fff;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 1px;
	padding-bottom: 1px;
}

.sec_4 {
	width: 100%;
}

.sec_4 .sec_body {
	width: 100%;
}

.sec_4 .sec_body .txt_body {
	width: 100%;
}

.sec_4 .sec_body .txt_body .txt ,
.sec_4 .sec_body .txt_body .txt2 {
	font-size: 167%;
	text-align: center;
}

.sec_4 .sec_body .txt_body .txt {
	padding-bottom: 30px;
	border-bottom: 1px solid #f0f0f0;
}


.sec_4 .sec_body .txt_body .txt .maru {
	color: #ffe21d;
}

.sec_4 .sec_body .txt_body .txt2 {
	padding-top: 30px;
	text-align: left;
}

.sec_4 .sec_body .prof_pic {
	width: 100%;
	text-align: center;
	padding-top: 60px;
}

.sec_5 {
	width: 100%;
}

.sec_5 .sec_wrap_in {
	width: 100%;
	max-width: none;
	padding-left: 0px;
	padding-right: 0px;
}

.sec_5 .sec_body {
	width: 100%;
}

.sec_5 .sec_body .add_body ,
.sec_5 .sec_body .root_body  {
	width: 100%;
	max-width: 1320px;
	padding-left: 60px;
	padding-right: 60px;
	margin: 0 auto;
}

.sec_5 .sec_body .add_body {
	padding-bottom: 38px;
}

.sec_5 .sec_body .root_body {
	padding-top: 35px;
}

.sec_5 .sec_body .add_body dl ,
.sec_5 .sec_body .root_body li  {
	padding-left: 25px;
	padding-right: 25px;
}

.sec_5 .sec_body .root_body li  {
	padding-top: 27px;
}

.sec_5 .sec_body .root_body li:first-child  {
	padding-top: 0px;
}

.sec_5 .sec_body .add_body dl dt .txt {
	font-size: 200%;
	font-weight: bold;
}

.sec_5 .sec_body .add_body dl dt .sp_on {
	display: none;
}

.sec_5 .sec_body .add_body dl dd .txt {
	font-size: 117%;
}

.sec_5 .sec_body .add_body dl dt .sp_on {
	display: none;
}

.sec_5 .sec_body .add_body dl dt .gm_link {
	padding-left: 30px;
}

.sec_5 .sec_body .add_body dl dt a {
	color: #f05b33;
	text-decoration: underline;
}

.sec_5 .sec_body .add_body dl dt a:hover {
	text-decoration: none;
}

.sec_5 .sec_body .add_body dl dt .gm_link_txt {
	font-size: 150%;
	color: #f05b33;
	position: relative;
}

.sec_5 .sec_body .add_body dl dt .gm_link_txt:before {
	content: "";
	background-image: url(../images/common/map_pin.png);
	background-repeat: no-repeat;
	background-size: 13px 19px;
	width: 13px;
	height: 19px;
	position: absolute;
	left: -20px;
	top: 50%;
	margin-top: -9px;
}


.sec_5 .sec_body .root_body dl dd .txt {
	font-size: 167%;
}

.sec_5 .sec_body .root_body dl dt .sp_on {
	display: none;
}



#map {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding-left: 60px;
	padding-right: 60px;
}

#map img {
	width: 100%;
}
#googleMap01{
  height: 330px;
}
#googleMap01 img{
  max-height: none;
}




/*==================================================

  汎用クラス

====================================================*/
.gp_sp_none {
  display: none;
}

.gp_pc_none {
  display: inline;
}


/*==================================================

  works

====================================================*/

.works .sec_2 {
		margin-top: 140px;
}

.works .h_cont .subttl {
	padding-right: 110px;
}

.link_btn {
	width: 100%;
}

.works .link_btn .link_img {
	width: 100%;
	text-align: center;
}

.works .link_btn .link_img a {
	display: inline-block;
	overflow: hidden;
}

.works .link_btn .link_img a span {
	display: inline-block;
	position: relative;
	width: 480px;
	height: 100px;
	background-color: #ffe21d;
	transition: all 300ms ease;
}

.works .link_btn .link_img a span:after {
	content: "";
	width: 29px;
	height: 17px;
	background: url(../images/top/link_btn_arw.png);
	background-repeat: no-repeat;
	background-size: 29px 17px;
	display: block;
	position: absolute;
	left: 30px;
	top: 50%;
	margin-top: -8px;
	-webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
	-webkit-transform: scale(-1, 1);
	-o-transform: scale(-1, 1);
	transform: scale(-1, 1);
}

.works .link_btn .link_img a:hover span:after {
	width: 58px;
  height: 35px;
  background-size: 58px 35px;
  margin-top: -16px;
  left: 50%;
  margin-left: -28px;
}

.works .link_btn .link_img a img.pc_link_btn {
	position: relative;
	left: 0;
	-webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.works .link_btn .link_img a:hover img.pc_link_btn {
	left: 100%;
}


/*==================================================

  error

====================================================*/

.error .sec_2 {
	margin-top: 140px;
}

.error .h_cont .subttl {
	padding-right: 110px;
}

.error .link_btn .link_img {
	width: 100%;
	text-align: center;
}

.error .link_btn .link_img a {
	display: inline-block;
	overflow: hidden;
}

.error .link_btn .link_img a span {
	display: inline-block;
	position: relative;
	width: 480px;
	height: 100px;
	background-color: #ffe21d;
	transition: all 300ms ease;
}

.error .link_btn .link_img a span:after {
	content: "";
	width: 29px;
	height: 17px;
	background: url(../images/top/link_btn_arw.png);
	background-repeat: no-repeat;
	background-size: 29px 17px;
	display: block;
	position: absolute;
	left: 30px;
	top: 50%;
	margin-top: -8px;
	-webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
	-webkit-transform: scale(-1, 1);
	-o-transform: scale(-1, 1);
	transform: scale(-1, 1);
}

.error .link_btn .link_img a:hover span:after {
	width: 58px;
  height: 35px;
  background-size: 58px 35px;
  margin-top: -16px;
  left: 50%;
  margin-left: -28px;
}

.error .link_btn .link_img a img.pc_link_btn {
	position: relative;
	left: 0;
	-webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.error .link_btn .link_img a:hover img.pc_link_btn {
	left: 100%;
}

.error .error_main{
	width: 100%;
  padding-bottom: 60px;
}

.error .error_main_in{
	width: 100%;
	text-align: center;
}
.error .error_main_in dl{
	padding-bottom: 20px;
}
.error .error_main_in dl dt{
	font-size: 217%;
	font-weight: 700;
}
.error .error_main_in dl dt.txtr{
	color: #bc2331;
}
.error .error_main_in dl dd{
	font-size: 117%;
}







/*==================================================

  Media Queries for window size under 1199px

====================================================*/
@media screen and (max-width: 1199px) {
  /*==========================
    Z-Index
  ==========================*/
  /*==========================
    layout[ALL]
  ==========================*/
  /* Html */
  /* Body */
  /* Wrapper */
  /* Header */
  /* Container/Content */
	.sec_3 .item_contact li .list_dtl dl dt .txt {
		font-size: 150%;
	}

	.sec_3 .item_contact li .list_dtl dl dd .txt {
		font-size: 250%;
	}


  /* Main */
  /* Side */
  /* Footer */
  /* Structure */
  /* Parts */
  /* Section */
}


/*==================================================

  Media Queries for window size under 1023px

====================================================*/
@media screen and (max-width: 1023px) {
  /*==========================
    Z-Index
  ==========================*/
  /*==========================
    layout[ALL]
  ==========================*/
  /* Html */
  /* Body */
  /* Wrapper */
  /* Header */
  /* Container/Content */

	.sec_3 .item_contact li .list_dtl a dl {
    padding-left: 20px;
		padding-top: 20px;
    padding-bottom: 20px;
	}

	.sec_3 .item_contact li .list_dtl dl dd {
    padding-top: 3px;
	}

	.sec_3 .item_contact li .list_dtl dl dt .txt {
		font-size: 134%;
	}

	.sec_3 .item_contact li .list_dtl dl dd .txt {
		font-size: 192%;
	}

	.sec_3 .item_info {
    padding-top: 20px;
	}

	.sec_3 .item_info li {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
		padding-top: 20px;
    width: 50%;
	}

	.sec_5 .sec_body .add_body dl dt .gm_link {
		padding-left: 20px;
		display: block;
	}


  /* Main */
  /* Side */
  /* Footer */
  /* Structure */
  /* Parts */
  /* Section */
}

/*==================================================

  Media Queries for window size under 767px

====================================================*/
@media screen and (max-width: 767px) {
  /*==========================
    Z-Index
  ==========================*/
  /*==========================
    layout[ALL]
  ==========================*/
  /* Html */
  /* Body */
  /* Wrapper */
  /* Header */

	#map {
		padding-left: 20px;
		padding-right: 20px;
	}


	.header_top_in {
		padding-top: 17px;
		padding-bottom: 17px;
		min-width: 320px;
	}
	#logo {
		padding-left: 20px;
		position: absolute;
	}

	/*#logo .pc_logo {
		display: none;
	}*/

	#logo img {
		display: inline;
		width: 50%;
	}

	.subttl .pc_subttl {
		display: none;
	}

	.subttl .sp_subttl {
		display: inline;
		width: 80px;
	}

	.h_cont .g_nav_btn img {
	  width: 28px;
	}
/*.subttl {
	width: 50%;
}*/

/*.h_cont .g_nav_btn {
	width: 50%;
}*/

	.h_cont .g_nav_btn {
	    padding-top: 3px;
	    padding-left: 15px;
	    padding-right: 20px;
	}


	#g_nav {
		display: block;
		width: 100%;
    min-width: 320px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
		background-color: #f8f8f8;
		position: fixed;
		top: 0px;
	}

	#g_nav.on {
		top: 69px;
	}





	#g_nav ul {
		padding-top: 5px;
		padding-bottom: 5px;
	}

	#g_nav ul:after {
		content: "";
		display: block;
		clear: both;
	}

	#g_nav ul li {
		float: left;
		padding-right: 30px;
	}

	#g_nav ul li:first-child {
		padding-left: 0px;
	}

	#g_nav ul li a {
		display: block;
	}

	#g_nav ul li a:hover span:after {
		top: 80%;
	}

	#g_nav ul li a span {
		display: block;
		position: relative;
		padding-top: 0px;
		padding-bottom: 10px;
	}

	#g_nav ul li a span:after {
		content: "";
		width: 9px;
		height: 4px;
		background: url(../images/top/g_nav_arw.png);
		background-repeat: no-repeat;
		background-size: 9px 4px;
		display: block;
		position: absolute;
		right: -15px;
		top: 50%;
		margin-top: -2px;
		-webkit-transition: all 200ms ease 0s;
	  -o-transition: all 200ms ease 0s;
	  transition: all 200ms ease 0s;
	}

	.g_nav_1 {
		width: 75px;
	}

	.g_nav_2 {
		width: 47px;
	}

	.g_nav_3 {
		width: 63px;
	}

	.g_nav_4 {
		width: 54px;
	}

	.g_nav_5 {
		width: 61px;
	}

	.header_bottom {
		margin-top: 70px;
	}

	.header_bottom .head_img img.lf_pc {
    display: none;
	}
	.header_bottom .head_img img.lf_sp {
    display: block;
	}



  /* Container/Content */

	.sec_wrap {
		padding-bottom: 40px;
	}
	.sec_wrap .sec_wrap_in {
		width: 100%;
		min-width: 320px;
		padding-left: 20px;
		padding-right: 20px;
		margin: 0 auto;
	}

	.sec_header .sec_ttl {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.sec_header .sec_ttl .pc_sec_ttl {
    display: none;
	}

	.sec_header .sec_ttl .sp_sec_ttl {
    display: inline;
    width: 280px;
	}


	.sec_1 .insta_cont ul li {
		width: 50%;
		padding-left: 0px;
		padding-right: 0px;
		padding-bottom: 0px;
	}

	.sec_1 .insta_cont ul li img {
		width: 100%;
	}

	.pc_insta_img {
		display: none;
	}

	.sp_insta_img {
		display: inline;
	}

	.pc_link_btn {
		display: none;
	}

	.sp_link_btn {
		display: inline;
		width: 280px;
	}

	.link_btn .link_img {
		padding-top: 30px;
	}

	.link_btn .link_img a span:after {
		display: none;
	}

	.link_btn .link_img a span {
    width: 280px;
    height: 50px;
	}

	.sec_2 .works_main ul {
		padding-bottom: 0px;
	}

	.sec_2 .works_main ul li {
		width: 50%;
	}

	.sec_2 .works_main ul li img {
		width: 100%;
	}

	.sec_3 .sec_body ul li {
		float: none;
		padding-left: 0px;
		padding-right: 0px;
		width: 100%;
		padding-top: 20px;
	}

	.sec_3 .sec_body ul li:first-child {
		padding-top: 0px;
	}

	.sec_3 .item_info li .list_dtl {
		padding-left: 14px;
		padding-right: 14px;
	}
	.sec_3 .item_info li .list_dtl img{
		max-width: 248px;
	}

	.sec_3 .item_contact li .list_dtl dl dt .txt {
		font-size: 109%;
	}

	.sec_3 .item_contact li .list_dtl dl dd .txt {
		font-size: 167%;
	}

	.sec_3 .item_contact li .list_dtl a dl {
		padding-left: 15px;
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.sec_4 .sec_body .txt_body .txt ,
	.sec_4 .sec_body .txt_body .txt2 {
		font-size: 125%;
                text-align: left;
	}

	.sec_4 .sec_body .txt_body .txt2 {
		padding-top: 20px;
	}

	.sec_4 .sec_body .prof_pic {
		padding-top: 30px;
	}


	.sec_5 .sec_wrap_in {
		width: 100%;
		max-width: none;
		padding-left: 0px;
		padding-right: 0px;
	}

	.sec_5 .sec_body .add_body, .sec_5 .sec_body .root_body {
		width: 100%;
		min-width: 320px;
		padding-left: 0px;
		padding-right: 0px;
		margin: 0 auto;
	}

	.sec_5 .sec_body .add_body {
		padding-bottom: 20px;
	}

	.sec_5 .sec_body .add_body dl dt .sp_on {
		display: inline;
	}

	.sec_5 .sec_body .add_body dl dt .sp_none {
		display: none;
	}

	.sec_5 .sec_body .add_body dl dt .txt {
		font-size: 134%;
		line-height: 1.5;
	}

	.sec_5 .sec_body .add_body dl dt .gm_link_txt {
		font-size: 134%;
	}


	.sec_5 .sec_body .add_body dl dd .txt {
		font-size: 100%;
	}

	.sec_5 .sec_body .add_body dl dd ,
	.sec_5 .sec_body .root_body dl dd {
		padding-top: 8px;
	}

	.sec_5 .sec_body .root_body dl dt .txt {
		font-size: 134%;
	}

	.sec_5 .sec_body .root_body dl dd .txt {
		font-size: 109%;
	}

	.sec_5 .sec_body .root_body {
		padding-top: 18px;
	}

	.sec_5 .sec_body .add_body dl, .sec_5 .sec_body .root_body li {
		padding-left: 20px;
		padding-right: 20px;
	}

	.sec_5 .sec_body .root_body li {
		padding-top: 20px;
	}

  /* Footer */
	#copyright {
    line-height: 30px;
    font-size: 84%;
	}

	#pagetop {
		width: 30px;
		right:20px;
		bottom: -100px;
	}


  /*==========================
    works
  ==========================*/

	.works .link_btn .link_img a span {
    width: 280px;
    height: 50px;
	}

	.works .sec_2 {
    margin-top: 70px;
	}

	.works .link_btn .link_img a span:after {
    display: none;
	}

	.works .h_cont .subttl {
    padding-right: 20px;
	}

  /*==========================
    error
  ==========================*/

	.error .link_btn .link_img a span {
    width: 280px;
    height: 50px;
	}

	.error .sec_2 {
    margin-top: 70px;
	}

	.error .link_btn .link_img a span:after {
    display: none;
	}

	.error .h_cont .subttl {
    padding-right: 20px;
	}
	.error .error_main{
		padding-bottom: 0px;
	}
	.error .error_main_in dl dt{
		font-size: 134%;
	}
	.error .error_main_in dl dd{
		font-size: 109%;
	}










}
/*==================================================

  Media Queries for window size under 639px

====================================================*/
@media screen and (max-width: 639px) {
  /*==========================
    Z-Index
  ==========================*/
  /*==========================
    layout[ALL]
  ==========================*/
  /* Html */
  /* Body */
  /* Wrapper */
  /* Header */
  /* Container/Content */
  /* Main */
  /* Side */
  /* Footer */
  /* Structure */
  /* Parts */
  /* Section */
}
/*==================================================

  Media Queries for window size under 479px

====================================================*/
@media screen and (max-width: 479px) {
  /*==========================
    Z-Index
  ==========================*/
  /*==========================
    layout[ALL]
  ==========================*/
  /* Html */
  /* Body */
  /* Wrapper */
  /* Header */
  /* Container/Content */
  /* Main */
  /* Side */
  /* Footer */
  /* Structure */
  /* Parts */
  /* Section */
}
/*
ul {
//フレキシブルボックス:親要素に対する指定
//http://www.flapism.jp/html/278/
//Android4.3以下
    display:-webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: space-between;
    -webkit-box-align: stretch;

//IE10
    display:-ms-flexbox;
    -ms-flex-direction: row;
    -ms-flex-wrap: nowrap;
    -ms-flex-pack: space-between;
    -ms-flex-align: stretch;

//Safari、iOS7以上
    display:-webkit-flex;
    -webkit-flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -webkit-align-items: stretch;

//IE11以上
    display: flex;
//      flex-direction: row;
//      flex-wrap: nowrap;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: stretch;

}
ul > li {
//フレキシブルボックス:子要素に対する指定
//Android4.3以下
//        -webkit-box-flex: 1;
//        -webkit-box-flex-group: 1;

//IE10
//        -ms-flex: auto;

//Safari、iOS7以上
//        -webkit-flex: auto; //1 1 auto

//IE11以上
//        flex-grow: 1;
//        flex-shrink: 1;
//        flex-basis: auto;
//        flex: auto; //1 1 auto
}
*/
/*
//グラデーション 横縞(高さ20pxずつ)の背景パターン
//http://www.colorzilla.com/gradient-editor/
.gradient {
background-color: #f8f8f8;
background-size: 40px 40px;
// FF3.6+
background-image:
-moz-linear-gradient(top,
rgba(255,255,255,1) 0%,
rgba(255,255,255,1) 50%,
rgba(255,255,255,0) 50%,
rgba(255,255,255,0) 100%);

// Chrome,Safari4+
background-image:
-webkit-gradient(linear, left top, left bottom,
color-stop(0%,rgba(255,255,255,1)),
color-stop(50%,rgba(255,255,255,1)),
color-stop(50%,rgba(255,255,255,0)),
color-stop(100%,rgba(255,255,255,0)));

// Chrome10+,Safari5.1+
background-image:
-webkit-linear-gradient(top,
rgba(255,255,255,1) 0%,
rgba(255,255,255,1) 50%,
rgba(255,255,255,0) 50%,
rgba(255,255,255,0) 100%);

// Opera 11.10+
background-image:
-o-linear-gradient(top,
rgba(255,255,255,1) 0%,
rgba(255,255,255,1) 50%,
rgba(255,255,255,0) 50%,
rgba(255,255,255,0) 100%);

// IE10+
background-image:
-ms-linear-gradient(top,
rgba(255,255,255,1) 0%,
rgba(255,255,255,1) 50%,
rgba(255,255,255,0) 50%,
rgba(255,255,255,0) 100%);

// W3C
background-image:
linear-gradient(to bottom,
rgba(255,255,255,1) 0%,
rgba(255,255,255,1) 50%,
rgba(255,255,255,0) 50%,
rgba(255,255,255,0) 100%);
}
*/
