@charset "utf-8";
/* CSS Document */

/*-------------------------------------------

共通

 --------------------------------------------*/
html {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  min-width: 960px;
width: 100%;
}
body {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
	color: #333;
  width:100%; /*ページ全体の幅は100%と指定する*/	
   margin-right: 0 auto;//ここで中央寄せを指定する。
  margin-left :  0 auto;

}

.container{
  text-align:center;
  width:1000px;
  margin:0 auto;
}

.container_fluid

p {
  margin-bottom: 1em;
}
img {
  max-width: 100%;
  height: auto;
}
hr {
  border: none;
  border-top: #DDD 1px solid;
}

/* ニュース項目の文字仕様：カーソルがかかった時のみ下線*/
a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
/* リンクの文字色仕様*/
a:link,
a:visited { 
  color: black;
 }

a:hover,
a:active {
  color: #F79646; transition: 0.5s; 
}

/* ブロックリンクの場合*/
.no-line{
  text-decoration: none;
}

.no-line:hover {
  text-decoration: none;
}
/* リンクの文字色仕様*/
.no-line:link,
.no-line:visited { 
  color: black;
 }

.no-line:hover,
.no-line:active {
  color: #F79646; transition: 0.5s; 
}

.title_h1{
  margin-top: 0px;
  margin-bottom: 0px;
}
table {
  width: 910px;
}
/* ページアクセスでフェードイン*/
body {
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/* スクロールでフェードイン*/
.fade_off {
    opacity: 0;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
}

.fade_on {
    opacity: 1;
}


/*-------------------------------------------

ヘッター

 --------------------------------------------*/
header {
  height:50px;
  position: fixed;
  background-color: #ffffff;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
}

.Golferweb {
  vertical-align: bottom; 
}

.logo{
  margin-left: 50px;
  float: left;
  margin-top: 5px;
}
.nav{
  float: right;
  margin-right: 50px;
  height:50px;
}
.nav_menu ul {
  display: inline-block;
  margin-top: 0px;
  margin-right: 100px;
  float: right;
  vertical-align: middle;
}
.nav_menu li {
  display: inline-block;
  list-style: none;
  margin-right: 0px;
  padding: 10px;

}
/*-------------------------------------------

メインビジュアル

 --------------------------------------------*/
.header-bg {
  background-image: url("../manual_image/main_v.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-top: 50px;
  /*margin-bottom: 30px; 目次エリア仕様変更に伴い削除20200812kaneko*/
     }

.catch{
  margin-left: 120px;
  padding-top: 5px
}

.alph_1:{
  width: 88%;
  height: auto;
}


/*-------------------------------------------

目次

 --------------------------------------------*/
.contents_area {
  background-color: #69b326;
/*padding-top: 30px;
  padding-bottom: 30px;目次エリア仕様変更に伴い削除20200812kaneko*/
}

/* BOX仕様 */
.box_contents{
display:block;
  width: 100%;
/*padding-bottom: 10px;目次エリア仕様変更に伴い削除20200812kaneko*/
}
.child{
  float: center;
  padding-right: 30px;
  display: inline-block;
  width:20%;
}

.box:hover {
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .3);
-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
　　}		


/*-------------------------------------------

基本機能

 --------------------------------------------*/

.function{
  background-color: #eeece1;
  padding-top: 30px;
  padding-bottom: 5px;
text-align:center;

}
.title_1 :before {
  content: url(../manual_image/phone_icon.png);
  padding:0.5em ;
}
.article {
  text-align: left;
}

.article_h3 {
  clear: both;
  position: relative;
  padding-left: 20px;
  font-size: 2.1rem;
  border-left: 8px solid #f79464;
  margin-top: 40px;
  margin-bottom: 20px;
  margin-left: 50px;
  margin-right: 50px;
  border-bottom: solid 1px #f79464;/*下線*/

}

/* 囲み */
.border_rounded_s{
    padding: 1em 1em;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 10px;
width: 800px;
  text-align:center;

}
.border_rounded p {
}
    margin: 0; 
    padding: 0;
}


/*-------------------------------------------

コンペはリビングで参戦！

 --------------------------------------------*/
.living{
  padding-top: 30px;
  padding-bottom: 30px;

}

.title_2 :before {
  content: url(../manual_image/phone_icon.png);
  padding:0.5em ;
}

/*-------------------------------------------

使い方（マニュアル）

 --------------------------------------------*/
.using{
  background-color: #eeece1;
  padding-top: 30px;
  padding-bottom: 20px;
}

.title_3 :before {
  content: url(../manual_image/using_icon.png);
  padding:0.5em ;

}
.title_3 :{
  margin-bottom: 30px;
}

/* ボタン */
.btn-manual1{
  display: inline-block;
  padding: 7px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: #FFF;
  background: orange;
  transition: .4s;
  border: none; 
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
  -webkit-tap-highlight-color: transparent;
  transition: .3s ease-out;
  outline: none
}

.btn-manual1:hover {
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 5px 10px 0 rgba(0,0,0,0.12), 0 3px 20px 0 rgba(0,0,0,0.12), 0 5px 6px -2px rgba(0,0,0,0.2);
}

.btn-manual2{
  display: inline-block;
  padding: 7px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: #FFF;
  background: #666666;
  transition: .4s;
  border: none; 
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
  -webkit-tap-highlight-color: transparent;
  transition: .3s ease-out;
  outline: none
}

.btn-manual2:hover {
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 5px 10px 0 rgba(0,0,0,0.12), 0 3px 20px 0 rgba(0,0,0,0.12), 0 5px 6px -2px rgba(0,0,0,0.2);
}

.btn-manual3{
  display: inline-block;
  padding: 7px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: #FFF;
  background: #24b7ea;
  transition: .4s;
  border: none; 
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
  -webkit-tap-highlight-color: transparent;
  transition: .3s ease-out;
  outline: none
}

.btn-manual3:hover {
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 5px 10px 0 rgba(0,0,0,0.12), 0 3px 20px 0 rgba(0,0,0,0.12), 0 5px 6px -2px rgba(0,0,0,0.2);
}

.btn-manual5{
  display: inline-block;
  padding: 7px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: #FFF;
  background: #6eb92c;
  transition: .4s;
  border: none; 
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
  -webkit-tap-highlight-color: transparent;
  transition: .3s ease-out;
  outline: none
}

.btn-manual5:hover {
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 5px 10px 0 rgba(0,0,0,0.12), 0 3px 20px 0 rgba(0,0,0,0.12), 0 5px 6px -2px rgba(0,0,0,0.2);
}

.btn-manual6{
  display: inline-block;
  padding: 7px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: #FFF;
  background: #ffcc05;
  transition: .4s;
  border: none; 
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
  -webkit-tap-highlight-color: transparent;
  transition: .3s ease-out;
  outline: none
}

.btn-manual6:hover {
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 5px 10px 0 rgba(0,0,0,0.12), 0 3px 20px 0 rgba(0,0,0,0.12), 0 5px 6px -2px rgba(0,0,0,0.2);
}

/* 囲み */
.border_rounded{
    padding: 0.5em 1em;
    margin: 2em 0;
    background: #ffffff;
    border-radius: 10px;
}
.border_rounded p {
    margin: 0; 
    padding: 0;
}
/* テーブル仕様 */
.manual_table td, th {
    padding: 4px 10px;
}

td.btn_space{
padding-left: 0px;
padding-right: 30px;
}


/*-------------------------------------------

使い方（マニュアル）動画

 --------------------------------------------*/
.moving{
  background-color: #69b326;
}

.moving_icon:hover {
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 5px 10px 0 rgba(0,0,0,0.12), 0 3px 20px 0 rgba(0,0,0,0.12), 0 5px 6px -2px rgba(0,0,0,0.2);
border-radius: 2em; 
}


/*-------------------------------------------

FAQ

 --------------------------------------------*/
.faq{
  padding-top: 30px;
  padding-bottom: 0px;
margin-right:0px;
}

/* 表設定 */
.faq_tableth{
  padding-left: 10px;
  padding-right: 10px;
  vertical-align:bottom;
}

.faq_tabletd{
  padding-left: 10px;
  padding-right: 10px;
}

.faq_table th{
  vertical-align:bottom;
  text-align:left;
}
.faq_table td{
  padding-top: 10px;
  padding-bottom: 20px;
}

.faq_table thead th {
   border-bottom: 1px solid green; /* ヘッダ行の下線 */
}
/* ボタン仕様 */
.btn-QA{
  display: inline-block;
  background-color: #6eb92c;
  color: #FFF;
  width: 350px;
  padding: 0.3em;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
  -webkit-tap-highlight-color: transparent;
  transition: .3s ease-out;
  border: none; 
  outline: none;
}
.btn-QA:hover{
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 5px 10px 0 rgba(0,0,0,0.12), 0 3px 20px 0 rgba(0,0,0,0.12), 0 5px 6px -2px rgba(0,0,0,0.2);
}
/* 表内image */
.menu {
  vertical-align: bottom; 
}
.Q {
  vertical-align: bottom; 
}

/* タイトル */
.title_4 :before {
  content: url(../manual_image/faq_icon.png);
  padding:0.5em ;
  display: inline-block;
}


/*-------------------------------------------

ダウンロードエリア

 --------------------------------------------*/
.foot-app{
  background-image: url("../manual_image/dl_v.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  margin-bottom: 0px;
  color: #ffffff;
}

.alph{

  width: 150px;
}

.dl-app{
width: 500px;
text-align: center;
padding-bottom: 15px
}
/*------------------------------------------

フッター

 --------------------------------------------*/
footer{
    width: 100%;
    height: 50px;
    background-color: #69b326;
    color: white;
    text-align: center;
}
ul.footer-menu li {
display: inline;
margin-top: 0px;
font-size: 1.2rem;
}

.footer-menu {
margin-top: 0px;
padding-top:15px;
}

/*------------------------

ページトップへ戻る

------------------------*/

#page-top {
	position:absolute;
	z-index: 40px;
	right: 20px;
	bottom: 72px;
	width: 30px;
}

#page-top a {
	display: block;
	cursor: pointer;
	text-align: center;
} 

#page-top a:hover {
	text-decoration: none;
}

#page-top a:hover img{
	 filter:alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}

@media (min-width: 768px) {
	#page-top {
		position: fixed;
		z-index: 99999;
		right: 20px;
		bottom: 80px;
		margin-bottom: 0;
	}	
}

/*-------------------------------------------

基本機能

 --------------------------------------------*/

/*
.function{
  background-color: #eeece1;
  padding-top: 30px;
  padding-bottom: 20px;
}
.title_1 :before {
  content: url(../manual_image/phone_icon.png);
  padding:0.5em ;
}

*/
