@charset "UTF-8";

/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,var,b,i,dl,dt,dd,ol,ul,li,fieldset,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav.gnav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav.gnav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}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 #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}


/*================================================
 *  一般・共通設定
 ================================================*/
body {
	font-size: 13px;
	font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
	line-height: 2;
	letter-spacing: .05em;
  color: #111;
  background-color: #fff;
}

#content {
	max-width: 1000px;
	margin: 0 auto;
}
#widecontent {
	max-width: 1200px;
	margin: 0 auto;
  }
.narrowcontent {
	max-width: 830px;
	margin: 0 auto;
  }
h2 {
	font-weight: normal;
	margin-bottom: 30px;
	font-size: 20px;
	 border-bottom: rgb(218, 216, 216) 0.5px solid;
	 letter-spacing: 3px;
}
h2 span {
	font-size: 11px;
	letter-spacing: 1.6px;
}
h3 {
	font-size: 30px;
   font-weight: normal;
   margin-bottom: 50px;
   line-height: 1.1;
}
h3 span {
	font-size: 10px;
}
a{
  color: #555;
	text-decoration: none;
}
a:hover{
  opacity: .7;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
p {
  margin-bottom: 1em;
}
strong {
  font-weight: bold;
}
small {
	font-size: smaller;
}
ul,ol,dl {
	margin: 0;
}
ul li {
	list-style: none;
}
li {
	margin-left: 0;
}
/* ボタン */
.btnArea {
	text-align: left;
	margin-top: 30px;
	
}
.btnArea a {
	box-shadow: 3px 3px 3px rgba(154, 154, 155, 0.5);
	background-color: #333;
	padding: 11px 40px;
	color: #fefefe;
	letter-spacing: 3px;
	font-size: 12px;
}
.btnArea a:hover {
	border: 1px solid #333;
	background-color: #fefefe;
	color: #111;
	transition: .5s;
}


@media screen and (max-width:768px) {
	*, *:before, *:after {
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box
  }
  body {
    font-size: 13px;
	line-height: 2.4;
  }
  #content {
	width: 90%;
  }
  #widecontent {
	width: 90%;
  }
  h2 {
	font-size: 18px;
  }
}

/*================================================
 *  ヘッダー
 ================================================*/
header {
	position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  box-sizing: border-box;
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.7);
  /* border-bottom: rgb(218, 216, 216) 0.5px solid; */
  line-height: 1.5;
}
header .inner {
  max-width: 1100px;
  margin: 0 auto;
}
/* inner-left */
header .inner-left {
  width: 20%;
  text-align: center;
  position: relative;
}
header .inner-left h1 {
  font-size: 14px;
}
header .inner-left h1 span img{
	width: 23%;
}
header .inner-left h1 a {
  color: #222;
}
/* inner-right */
header .inner-right {
  width: 70%;
}
nav.gnav ul {
  text-align: right;
}
nav.gnav ul li {
  font-size: 15px;
  display: inline-block;
  padding: 0 12px;
  text-align: center;
}
nav.gnav ul li span {
	font-size: 12px;
}
nav.gnav ul .insta {
	font-size: 20px;
	
}

@media screen and (max-width:768px) {
  header .inner-left {
    width: 45%;
  }
	header .inner-left h1 {
    font-size: 11px;
  }
  /* ハンバーガーメニュー */
	nav.global-nav {
	    position: fixed;
	    right: -320px;
	    top: 0;
	    width: 270px;
	    height: 100vh;
	    padding-top: 40px;
	    background: #eee;
	    transition: all .2s ease-out;
	    z-index: 200;
	    overflow-y: auto;
	    padding: 70px 30px 40px 40px;
    }
    nav.gnav.global-nav ul li {
	    margin-bottom: 15px;
      border-bottom: 1px solid rgba(54, 54, 54, 0.5);
      width: 100%;
      padding: 5px 12px;
      font-size: 13px;
    }
    nav.gnav ul li a {
      color: #222;
    }

	  .hamburger {
	    position: absolute;
	    right: 15px;
      	top: 15px;
	    width: 45px;
	    height: 45px;
	    cursor: pointer;
	    z-index: 300;
	  }
	  .global-nav__list {
	    margin: 0;
	    padding: 0;
	    list-style: none;
	  }
	  .global-nav__item a {
	    display: block;
	    padding: 8px 0;
	    border-bottom: 1px solid #fff;
	    line-height: 1.3;
	  }
	  .global-nav__item a:hover {
	    background-color: #eee;
	  }
	  .hamburger__line {
	    position: absolute;
	    left: -5px;
	    width: 30px;
	    height: 1px;
	    background-color: #2d2d2d;
	    transition: all .2s ease-out;
	  }
	  .hamburger__line--1 {
	    top: 18px;
	  }
	  .hamburger__line--2 {
	    top: 26px;
	  }
	  .hamburger__line--3 {
	    top: 33px;
	  }
	  .black-bg {
	    position: fixed;
	    left: 0;
	    top: 0;
	    width: 100vw;
	    height: 100vh;
	    z-index: 100;
	    background-color: #000;
	    opacity: 0;
	    visibility: hidden;
	    transition: all .6s;
	    cursor: pointer;
	  }
	  /* 表示された時用のCSS */
	  .nav-open .global-nav {
	    right: 0;
	  }
	  .nav-open .black-bg {
	    opacity: .8;
	    visibility: visible;
	  }
	  .nav-open .hamburger__line--1 {
	    transform: rotate(45deg);
	    top: 20px;
	  }
	  .nav-open .hamburger__line--2 {
	    width: 0;
	    left: 50%;
	  }
	  .nav-open .hamburger__line--3 {
	    transform: rotate(-45deg);
	    top: 20px;
	  }
}

/* =======================================================
* section
* ======================================================= */
section  {
	padding-bottom: 7rem;
	position: relative;
}
.section {
	padding-top: 6rem;
}
@media screen and (max-width:768px) {
	section {
		padding-bottom: 6rem;
	}
	.section {
		padding-top: 6rem;
  }
}
/* =======================================================
*main
* ======================================================= */
#main {
	margin: 6%;
	background: url(../images/main.jpg)no-repeat center/cover;
	height: 100vh;
	display: flex;
}
#main .main_ttl  {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 45px;
	color: #ffffff;
	letter-spacing: 3px;
	text-align: center;
	line-height: 2;
	
}
@media screen and (max-width:768px) {
	#main {
		margin: 5%;
		height: 500px;
		background-position: bottom 0px right -170px;
	}
	#main .main_ttl  {
		font-size: 20px;
		
	}
}


/* =======================================================
*intro
* ======================================================= */

#intro .intro_txt1 {
	margin: 50px auto 0;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-size: 30px;
	line-height: 3;
}
#intro .intro_txt2 {
	width: 60%;
	position: relative;
}
.intro_txt2 p {
	position: absolute;
	bottom: 30px;
}
@media screen and (max-width:768px) {
	#intro {
		width: 95%;
		margin: 0 auto;
	}
	#intro .intro_txt1 {
		margin: 10px auto 0;
		font-size: 25px;
	}
	#intro .flex {
		display: block;
	}
	
	#intro .intro_txt2{
		width: 100%;
		margin-top: 200px;
	}
}



/* =======================================================
*who
* ======================================================= */
#who .who .who_txt {
	width: 40%;
}
#who .who .who_img {
	width: 50%;
}

#who .who {
	align-items: center;
}
.solve {
	margin-top: 30px;
}
@media screen and (max-width:768px) {
	
	#who .flex {
		display: block;
	}
	#who .who .who_txt {
		width: 100%;
		margin: 0 auto;
	}
	#who .who .who_img {
		width: 100%;
		margin: 50px auto 0;
	}
	
}
/* =======================================================
services
* ======================================================= */
.service {
	width: 30%;
	 border: rgb(204, 204, 204) 1px solid;
}
.service .service_img {
	padding: 20px;
}
.service .service_txt {
	padding: 20px 20px 40px 20px;
}
@media screen and (max-width:768px) {
	#services .flex {
		display: block;
	}
	#services .service {
	width: 100%;
	margin: 5px auto;
}
}





/* =======================================================
contact
* ======================================================= */

#contact {
  	background-image: url(../images/bg.jpg);
  	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 55vh;
	position: relative;
}
#contact h3 {
  	text-align: center;
	font-size: 25px;
	margin-bottom: 20px;
	color: #444;
	border-bottom: 0;
}
#contact .txt_area {
  	max-width: 900px;
	margin: 50px auto;
	padding: 80px;
	background-color: rgb(233, 232, 232, 0.8)
}
#contact .btnArea {
	text-align: center;
}
#contact p {
	margin-top: 50px;
}
@media screen and (max-width:768px) {
	#contact {
		padding-top: 2rem;
	}
	#contact h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#contact .txt_area {
		width: 90%;
		padding: 30px 20px;
		margin: 20px auto;
	}
	#contact p {
		margin-top: 30px;
	}
}


/* =======================================================
*footer
* ======================================================= */
footer {
	padding-top: 50px;
	text-align: center;
	background-color: #eee;
	
}
footer .logo {
	width: 100px;
	margin: 0 auto;
}
nav.footer_nav ul {
	text-align: center;
	position: relative;
	margin-top: 30px;
	margin-bottom: 20px;
  }
 
  nav.footer_nav ul li {
	display: inline-block;
	padding:  12px;
	text-align: center;
	letter-spacing: 1.5px;
	font-family: 'Marcellus SC', serif;
  }
.copyright{
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
#pagetop {
    position: fixed;
    right: 15px;
    bottom: 10px;
    cursor: pointer;
    overflow: visible!important;
}

#pagetop .arrow-up {
	width: 20px;
  height: 20px;
  border: 1px solid;
  border-color:#555#555 transparent transparent;
  transform: rotate(-45deg);
}
/* =======================================================
*under_main
* ======================================================= */


#under_main {
	height: 450px;
	display: flex;
	margin: 50px;
}

@media screen and (max-width:768px) {
	
	#under_main {
		height: 250px;
		margin: 10px;
	}
	
}
