@charset "utf-8";
/* CSS Document */

@font-face{
	font-family: 'Noto Sans JP' 'Noto Sans JP' 'Allura';
	font-style:normal;
	font-weight: 400;
	src:
	local("Noto Serif JP"),
	url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSerifJP-Reegular.woff2) format('woff2'),
	url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSerifJP-Reegular.woff) format('woff'),
	url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSerifJP-Reegular.otf) format('opentype');
}

html{
	font-size: 62.5%;/*16px × 62.5%=10px*/
}

body{
	color: #585858;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.6rem;
	font-feature-settings: "palt";
	letter-spacing: 0.025em;
}
a{
	color: #585858;
}
img{
	max-width: 100%;
	width: 100%;
	height: auto;
}
li{
	list-style: none;
}
/*---------------------------------
 *utility
 --------------------------------*/
.img-sp{
	display: none;
}
.text-center{
	text-align: center;
}

/*---------------------------------
 *ハンバーガーメニュー
 --------------------------------*/
.btn {
  position: relative;
  width: 40px;
  height: 40px;
  border: none;
  cursor: pointer;
}

.btn__text{
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  display: none;
}

.btn__menu{	
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #26344a;
  margin: 0;
  padding: 0;
  border: none;
  transition: all 0.5s;
  transform: translate(-50%, -50%);
  cursor: pointer;
  outline: none;
}

.btn__menu::before{
  display: block;
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #26344a;
  transition: all 0.5s;
}

.btn__menu::after{
  display: block;
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #26344a;
  transition: all 0.5s;
}

.btn__menu.active{
  background: transparent;
}

.btn__menu.active::before{
  top: 0;
  transform: rotate(-45deg);
}

.btn__menu.active::after{
  bottom: 0;
  transform: rotate(45deg);
}
.p-global-nav{
  position: absolute;
  top: 60px;
  left: -120%;
  width: 100%;
  height: 50%;
  background: rgba(255,255,255,0.9);
  transition: all 0.5s;
  line-height: 4;
  text-align: center;
  z-index:10000;
}
.p-global-nav.active{
  left: 0;
}
.btn-pageTop>a {
right: 0px;
}	

/*---------------------------------
 *header
 --------------------------------*/
.header-gnav{
	display: flex;
	justify-content: space-between;
	max-width: 1400px;
	margin: 0 auto;
	padding: 10px 20px;
}
.nav-list{
	display: flex;
}
.nav-title{
	padding-left: 40px;
	line-height: 4;
}
.nav-list a:hover{
	color: #2f4c72;
}
.subtitle{
	font-size: 0.8rem;
	line-height: 2;
}


/*---------------------------------
 *logo
 --------------------------------*/
.logo{
	width: 238px;
}


/*---------------------------------
 *スライドショー
 --------------------------------*/
.slider_fade {
    position: relative;
}
 
.slider_fade > li {
    position: absolute;
    list-style: none;
    visibility: hidden;
    animation: anime_slider_fade 12s 0s infinite;
}
.slider_fade > li:nth-of-type(2) {
    animation-delay: 4s;
}
.slider_fade > li:nth-of-type(3) {
    animation-delay: 8s;
}
 
@keyframes anime_slider_fade {
    0% {
        visibility: visible;
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    33.3% {
        opacity: 1;
    }
    48.3% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
/*---------------------------------
 *News
 --------------------------------*/
.news-wrap{
	padding: 40px 200px 0 200px;
}
@media screen and (max-width: 1020px) {
	.news-wrap{
		padding: 40px 100px 0 100px;
	}
}
@media screen and (max-width: 480px) {
	.news-wrap{
		padding: 20px;
	}
}
	

/*---------------------------------
 *section
 --------------------------------*/
.section-wrap{
	padding-top:45%;
}
.section-title{
	color: #052856;
	font-family: "Noto Serif JP";
	font-size: 3.6rem;
	font-weight: bold;
	line-height: 1.4;
	padding-top: 72px;
	padding-bottom: 32px;
	letter-spacing: 0.2em;
}
.section-message{
	padding: 64px 20px;
	line-height: 1.5;
}
.section-title__message{
	padding-bottom: 32px;
	font-size: 2.8rem;
}
.br-message{
	padding-top: 10px;
}
.section-gray{
	padding: 72px 0px;
	background-color: #f0f2f2;
}
.service-title{
	font-family: 'Allura', cursive;
	font-size: 8rem;
}
.service-title__en{
	padding-top: 24px;
	font-size: 2.4rem;
	font-family: 'Montserrat';
}
.service-title__en:last-of-type{
	padding-top: 72px;
}
.service-text{
	padding: 18px 20px 32px 20px;
	line-height: 1.5;
}
.service-box{
	display: flex;
	width: 48%;
	padding: 10px 20px 40px 20px;
	margin: auto;
}
.flex-item{
	padding-right: 80px;
}
.flex-item2{
	padding-left: 80px;
}
.flex-cap{
	margin-top: 16px;
	line-height:1.3;
}
.hr{
	width: 88px;
	margin-top: -8px;
}
.hr-profile{
	width: 88px;
	margin-top: 8px;
}

/*---------------------------------
 *Works
 --------------------------------*/
.works-box{
	display: flex;
	justify-content: space-between;
	width: 48%;
	margin: auto;
	padding: 32px 0;
}
.flex-item__Works{
	width: 30%;
}
.flex-item__Works:hover{
	opacity: 0.8 ;
}
.flex-cap__small{
	font-size: 14px;
	margin-top: 18px;
	line-height:1.3;
}

/*---------------------------------
 *Profile
 --------------------------------*/
.section-white{
	padding: 48px 0px;
}
.profile-box{
	display: flex;
	width: 70%;
	padding: 40px 20px 40px 20px;
	margin: auto;
}

.profile-item{
	padding-right: 40px;
	padding-left: 40px;
	width: 20%;
}
.profile-cap{
	padding-top: 20px;
	text-align: left;
	line-height: 1.5;
}
.profile-cap__sub{
	font-size: 1.4rem;
}
/*---------------------------------
 *Contents
 --------------------------------*/
.banner{
	width: 48%;
	margin: auto;
	padding: 32px 0;
}
.banner:hover{
	opacity: 0.8 ;
}

/*---------------------------------
 *contact
 --------------------------------*/
.asterisk{
	color: #B80000;
}
.contact-message{
	padding-top: 24px;
	line-height: 1.5;
}

.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
@media screen and (max-width: 480px) {
  .Form {
    margin-top: 40px;
  }
}
.Form-Item {
  /*border-top: 1px solid #ddd;*/
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .Form-Item {
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
	justify-content: center;
  }
}
.Form-Item:nth-child(5) {
  /*border-bottom: 1px solid #ddd;*/
}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
	padding-left: 24px;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
	width: 80%;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
	width: 80%;
    font-size: 15px;
  }
}
.Form-Btn {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #585858;
  color: #fff;
  font-size: 20px;
	border: none;  /* 枠線を消す */
    outline: none; /* クリックしたときに表示される枠線を消す */	
}
.Form-Btn:hover{
	opacity: 0.8 ;
}
@media screen and (max-width: 641px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}

/*---------------------------------
 *ページTOPボタン
 --------------------------------*/
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #91BDD3;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/*---------------------------------
 *footer
 --------------------------------*/
.footer-end{
	color: #fff;
    background-color: #585858;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 1.2rem;
}

/*---------------------------------
 *works　一覧ページ（下層ページ）
 --------------------------------*/
.works-box__2{
	padding-top: 16px;
}
.btn_bottom{
	margin-top: 40px;
	margin-bottom: 100px;
}

/*---------------------------------
 *works　個別ページ【webデザイン・コーディング】（下層ページ）
 --------------------------------*/
.service-title__small{
	font-family: 'Allura', cursive;
	font-size: 5rem;
}
.works-title{
	font-size: 20px;
	padding-top: 48px;
}
.works-category{
	padding-top: 28px;
	line-height: 1.5;
}
.hr-works{
	width: 88px;
	margin-top: 20px;
}
.works-photo{
	margin: auto;
	padding: 24px 0 16px 0;
	width: 24%;
}
.works-p{
	padding-top: 12px;
	line-height: 1.5;
}
.kobetsu-title__en{
	padding: 32px 0 16px 0;
	font-size: 2rem;
	font-family: 'Montserrat';
}
.request-box{
	background-color: #f0f2f2;
	width: 56%;
	margin: 20px auto;
	padding: 10px 0;
}
.request-wrap{
	display: flex;
	width: 95%;
	margin: auto;
	padding: 10px 0;
}
.request-title{
	width: 15%;
	line-height: 1.3;
}
.request-text{
	width: 85%;
	text-align: left;
	line-height: 1.3;
}
.hr-end{
  display:block;
  width: 80%;
  height: 1px;
  border: 0;
  border-top: 1px dashed #cccccc;
}
.hr-box{
  display:block;
  width: 90%;
  height: 1px;
  border: 0;
  border-top: 1px dashed #cccccc;
		}
/*---------------------------------
 *Foryouページ
 --------------------------------*/
.calendar-wrap{
	display: flex;
    width: 60%;
    padding: 10px 20px 40px 20px;
    margin: auto;
}
@media screen and (max-width: 641px) {
  .calendar-wrap{
	display:block;
	  width: 90%
  }
}
.contents-img{
	width: 70%;
	margin: auto;
	padding-top: 40px;
}
@media screen and (max-width: 641px) {
  .contents-img {
	width: 90%;
  }
}
.download-Btn{
	width: 75%;
}



@media screen and (max-width:641px){
	/*---------------------------------
	 *utility
	 --------------------------------*/
	.img-pc{
		display: none;
	}
	.img-sp{
		display: block;
	}
	.br-sp{
		display: none;
	}

	/*---------------------------------
	 *ボタン
	 --------------------------------*/
	ul {
	  margin: 0;
	  padding: 0;
	  list-style: none;
	}

	/*---------------------------------
 	*section
 	--------------------------------*/
	.section-title{
		font-size: 2.4rem;
		padding-top: 40px;
	}
	.section-gray{
		padding: 58px 0;
	}
	.section-message{
	padding: 48px 20px 64px 20px;
	}

	/*---------------------------------
	 *header
	 --------------------------------*/
	.header-nav{
		padding: 14px 20px;
	}

	/*---------------------------------
	 *メッセージ
	 --------------------------------*/
	.section-title{
		padding-top: 32px;
		text-align: center;
	}
	.section-title__message{
		font-size: 2.2rem;
	}
	.section-message__text{
		text-align: left;
	}
	.br-message{
		text-align: left;
	}
	.messege-text{
		width: 100%;
		margin: 0;
		padding: 0 20px 32px 20px;
	}
	.service-text{
		text-align: left;
		padding-bottom: 16px;
	}
	/*---------------------------------
	 *サービス
	 --------------------------------*/
	.service-box{
		display: block;
		width: 60%;
	}
	.flex-item{
		padding-right: 0px;
		padding-bottom: 24px;;
	}
	.flex-item2{
		padding-left: 0px;
	}
	.service-title__en:last-of-type{
		padding-top: 40px;
	}
	/*---------------------------------
	 *プロフィール
	 --------------------------------*/
	.profile-box{
		display: block;
		width: 100%;
		padding: 0;
	}
	.profile-item{
		margin: auto;
		padding: 32px 0 0 0;
		width: 56%;
	}
	.profile-cap{
		padding: 24px 20px;
	}
	/*---------------------------------
	 *コンタクト
	 --------------------------------*/
	.contact-message{
		text-align: left;
		padding-left: 20px;
		padding-right: 20px;
	}
	
	/*---------------------------------
	 *コンタクトフォーム
	 --------------------------------*/	
	.Form {
		margin-top: 40px;
		margin-left: auto;
		margin-right: auto;
		max-width: 400px;
	}

	/*---------------------------------
	 *works
	 --------------------------------*/
  	.works-box {
		display: block;
		width: 60%;
  	}

  	.flex-item__Works {
		justify-content: start;
   		width: 100%;
		margin: auto;
 	}
	.flex-cap__small{
		margin-bottom: 24px;
	}
	.flex-cap__small{
		font-size: 16px;
	}
	.banner{
		width: 90%;
	}
	/*---------------------------------
	 *works 個別ページ
	 --------------------------------*/
	.works-category{
		text-align: center;
		font-size: 20px;
	}
	.works-photo{
		width: 80%;
	}
	.contact-message{
		font-size: 20px;
	}
	.works-p{
		font-size: 18px;
	}
	.request-box{
		width: 80%;
	}
	.request-wrap{
		display: block;
		width: 100%;
	}
	.request-title{
		margin: auto;
		width: 90%;
		font-size: 18px;
		text-align: left;
	}
	.request-text{
		margin: auto;
		width: 90%;
		font-size: 18px;
	}

	/*---------------------------------
	 *works 一覧ページ
	 --------------------------------*/
	.works-box{
		padding-bottom: 0;
	}
	.flex-cap__small{
		font-size: 18px;
	}
}

