@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css?family=Pacifico);
/*スクロールダウン*/
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');


/* reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;}
ul{list-style:none;}
table{border-collapse:collapse;border-spacing:0;}
caption,th{text-align:left;}
q:before,q:after{content:'';}
object,embed{vertical-align:top;}
legend{display:none;}
h1,h2,h3,h4,h5,h6{font-size:100%;}
img,abbr,acronym,fieldset{border:0;}
hr{border: none;}/*追加*/

body{
	font: 18px/1.9 'Noto Sans JP', Arial, Verdana, 游ゴシック, YuGothic,'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', メイリオ, Meiryo,sans-serif;
	font-weight: 300;
	-webkit-text-size-adjust:100%;
	overflow-x: hidden;
	color: #000;
}

a{
	color: #000;
	text-decoration: none;
}

a:hover, .active{
	text-decoration: none;
	opacity: 0.6;
	transition: 0.5s;
}

a:active, a:focus,input:active, input:focus{outline:0;}


/* ヘッダー
------------------------------------------------------------*/
#header{
	text-align: center;
}

#header h1{
	display: none;
}

/*ヘッダーフル表示*/
.full {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("../images/sample/header.jpg")
    center / cover;
}

/* スマホ表示①スマホでもheader画像ををフル表示するとき（表示位置の調整可能） 
@media screen and (max-width: 768px) {
  .full {
    background-position: 50% center;
  }
}*/


/* スマホ表示②スマホではheader画像をフル表示しないとき（写真の表示範囲が調整不可の場合） */
@media screen and (max-width: 767px) {　/*ipadmini対応のため768→767変更*/
  .full {
    background-size: 150% auto; /* 横幅を広げて表示、縦は自動調整 */
    background-position: center top; /* 画像の上部を表示 */
	background-repeat: no-repeat; /* 画像が繰り返し表示されないように設定 */
    min-height: 50vh; /* スマホでの高さを調整 */
  }
}


/*スクロールダウン*/
.scroll_down a{
  color: #000;
  font-size: 16px;
  letter-spacing: 2px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  display: block;
  background-size: 14px auto;
  z-index: 2;
  text-decoration: none; 
  transform: translate(-50%, -50%);
}

.scroll_down a:before {
  position: absolute;
  top: calc(50% - 56px);
  left: calc(50% - 8px);
  transform: rotate(-45deg);
  display: block;
  width: 12px;
  height: 12px;
  content: "";
  border: 2px solid #000;
  border-width: 0px 0 2px 2px;
}

.scroll_down a:after {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 2px solid #000;
  content: "";
  border-radius: 100%;
  top: calc(50% - 64px);
  left: calc(50% - 19px);
}

.scroll_down a span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  box-sizing: border-box;
  box-shadow: 0 0 0 0 #000;
  opacity: 0;
  animation: circle 3s infinite;
  top: calc(50% - 63px);
  left: calc(50% - 19px);
}

@keyframes circle {
  0% { opacity: 0; }
  30% { opacity: 1; }
  60% { box-shadow: 0 0 0 40px rgba(255,255,255,.1);
        opacity: 0; }
  100% { opacity: 0; }
}

/*スマホではスクロールダウンを非表示（スマホでheader画像をフル表示しない時は使用。フル表示する時はコメントアウトする）*/
@media screen and (max-width: 767px) {　/*ipadmini対応のため768→767変更*/
  .scroll_down {
    display: none;
  }
}



/* フッター
------------------------------------------------------------*/
#footer{
	clear: both;
	padding: 30px 10px 50px 0;
	text-align: center;
	font-size: 12px;
}

/*メニューをページ下部に固定*/
#sp-fixed-menu{
   position: fixed;
   width: 100%;
   bottom: 0px;
   /*opacity: 0.9;*/
   z-index: 99;
}
#sp-fixed-menu ul{
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    font-size: 18px;
	font-weight: 600;
}
#sp-fixed-menu li{
	justify-content: center;
	align-items: center;
	width: 50%;
	margin: 0;
	/*border-right: 1px solid #fff;(色違いにため)不要*/
	background: #c9caca;
	line-height: 1.3;
}

/*右メニュー(色違いにため追加)*/
#sp-fixed-menu li:last-child{
	background: #53b332;
}

/*右メニューのみ　区切り線なし(色違いにため不要)
#sp-fixed-menu li:last-child{
   border-right: none;
}*/

/*ボタンを調整*/
#sp-fixed-menu li a{
   color: #fff;
   text-align: center;
   display:block;
   width: 100%;
   padding:10px 0;
}
/**/


/* ページ共通　メイン
------------------------------------------------------------*/

img{
	max-width: 100%;
	height: auto;
}

section{
	clear:both;
	padding: 50px 0;
}

.inner{
	width: 94%;
	margin: 0 auto;
	padding-bottom: 20px;
}

.indentS{
	margin-bottom: 10px;
}

.indentM{
	margin-bottom: 20px;
}

.indentL{
	margin-bottom: 40px;
}

.outdentS{
	margin-top: 10px;
}

/*追従するトップへボタン　*/
#page_top{
	width: 50px;
	height: 50px;
	position: fixed;
	right: 0;
	background-color: #000;
	z-index: 1000;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: FontAwesome;
  content: '\f106';
  font-size: 30px;/*初期値25*/
  color: #fff;
  position: absolute;
  width: 25px;
  height: 50px;
  top: 0;
  bottom: 12px;/*アイコンセンター調整　初期値0*/
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

#page_top a:hover {
	background-color: #555;
	transition: 0.5s;
}

/* スマホでは非表示 */
@media screen and (max-width: 768px) {
  #page_top {
    display: none;
  }
}


/*共通サブ
------------------------------------------------------------*/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 640px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

/*スマホで改行*/
.br-sp {
  display: none;
}
@media screen and (max-width: 640px) {
  .br-pc {
    display: none;
  }
  .br-sp {
    display: inline-block;
  }
}
/*タブレット以下で改行*/
.br-tb {
  display: none;
}
@media screen and (max-width: 1024px) {
  .br-pc {
    display: none;
  }
	.br-tb {
    display: inline-block;
  }
}

/*パソコンの時だけ改行*/
.pc-only-br {
    display: none;
  }

@media screen and (min-width: 767px) {
	.pc-only-br {
		display: inline;
    }
}


/*テキストレイアウト パソコンはセンター寄せ、スマホでは左寄せ*/
.responsive-text {
	text-align: center;
}

@media screen and (max-width: 767px) {
	.responsive-text {
		text-align: left;
    }
}





/* personal info
------------------------------------------------------------*/
#personal_info{
}

#personal_info h2{
	font-size: 25px;
	text-align: center;
	line-height: 1.2;
	margin-bottom: 20px;
}
#personal_info h2 span{
	font-size: 18px;
	font-weight: normal;
}

#personal_info h3{
	font-size: 30px;
	text-align: center;
	line-height: 1.2;
}
#personal_info h3 span{
	font-size: 18px;
	font-weight: normal;
}

.position{
	font-size: 18px;
	text-align: center;
	font-weight: normal;
}

.message{
	margin: 50px auto 30px;
}

.personal_info_col2 {
	margin: 30px auto 50px;
}
.personal_info_col2 li{
	display: inline-block;
	width: 100%;
	margin-bottom: 20px;
}
@media only screen and (min-width: 641px){
	.personal_info_col2 li{
		width: 48%;
		vertical-align: top;
		padding: 0 0.5% 0 1%;
	}
}
@media only screen and (max-width: 799px){
.personal_info_col2 {
	margin: 20px auto 0;
}
}

.personal_info_box {
	border: 3px #c9caca solid;
	border-radius: 10px;
}
.personal_info_box .box-title {
    background: #c9caca;
    padding: 4px;
    text-align: center;
    color: #FFF;
    letter-spacing: 0.05em;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.personal_info_box p {
    padding: 10px 15px;
    margin: 0;
	text-align: center;
}


/*SNS　リンク　contact*/
.personal_info_link{
	text-align: center;
}

.personal_info_col3 {
	display: flex;
	width: 70%;
	justify-content: center;
	margin: 0 auto;
}

.personal_info_col3 li {
  width: calc(100% / 3);
}

.personal_info_col3 li {
  background: #fff;
  text-align: center;
  padding: 0 30px;
}

#sns{
	margin: 30px auto;
}
.sns-icons a {
	margin-right: 20px;
}

@media screen and (max-width: 767px) {
	.personal_info_col3 {
		width: 90%;
	}
	.personal_info_col3 li {
		padding: 0 10px;
	}
	.sns-icons a {
	margin-right: 7px;
}
}


/* company info
------------------------------------------------------------*/
#company_info{
}

#company_info h2{
	font-size: 25px;
	text-align: center;
	line-height: 1.2;
	margin-bottom: 20px;
}

.greeting{
	margin: 30px auto;
}

.map {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9のアスペクト比 */
    height: 0;
	margin: 30px auto;
	text-align: center;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	border-radius: 15px;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
}


/* PR
------------------------------------------------------------*/
#pr{
	margin-bottom: -30px;
}

#pr h2{
	font-size: 25px;
	text-align: center;
	line-height: 1.2;
	margin-bottom: 20px;
}

#pr h2 span {
  position: relative;
  display: inline-block;
  padding-bottom: 10px; /* テキストと下線の距離 */
}

#pr h2 span::after {
  content: "";
  position: absolute;
  left: -10px; /* テキストの左より少し外に */
  right: -10px; /* テキストの右より少し外に */
  bottom: 0;
  height: 1px;
  background-color: #000;
}

.pr_message{
	margin: 30px auto;
}

#pr .btn-link {
	display: block;
	text-decoration: none;
	color: #000;
	background-color: #fff;
	border: 3px solid #c9caca;
	text-align: center;
	margin: 40px 5px 10px;
	padding: 20px 10px;
	border-radius: 10px;
	font-size:35px;
	font-weight: 600;
	line-height: 1.2;
}
#pr .btn-link:hover {
	background-color: #c9caca;
	color: #fff;
	border: 3px solid #c9caca;
	transition:0.5s;
}
#pr .btn-link .small-txt {
  font-size: 16px;
  font-weight: normal;
}

#pr .col2 {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

#pr .col2 li {
  width: 50%; /* 2列表示 */
  box-sizing: border-box;
  padding: 0;
}

/* タブレット以下は1列表示に */
@media (max-width: 1024px) {
#pr .col2 li {
	width: 100%;
	}
}

@media screen and (max-width: 767px) {
#pr .btn-link {
	font-size: 25px;
	margin: 10px 5px;
	}
#pr .btn-link .small-txt {
	font-size: 16px;
}
}






/* RESPONSIVE 設定
------------------------------------------------------------*/

@media only screen and (min-width: 1200px){
	.inner{
		width: 1024px;
	}
}

@media only screen and (min-width: 800px){
	body{
		font-size:18px;
	}
	
  #footer{
		padding: 10px 10px 70px 0;
	}
}


@media only screen and (max-width: 640px){
	.inner{
		width: 94%;
		padding-bottom: 20px;
	}
}

@media only screen and (max-width: 799px){
	#header{
		position: relative !important; /* スマホでスクロール可能にするため fixed から relative に変更 */
		width: 100%;
		z-index: 500;
	}
	
	#headerWrap{
		position: relative;
		width: 100%;
		height: 70px;
		background: #d7d7d7;
		border-bottom: 1px solid #ccc;
	}
	
	#header h1{
		padding-top: 10px;
	}
	
	#header h1 img{
		margin-top: 3px;
		max-height: 45px;
		width: auto !important;
	}

	section{
		padding-top: 30px;
	}
	
}