﻿@charset "utf-8";

*{
	margin:0;
	padding:0;
}

/* 画像をボックスからはみ出さないようにする */
img {
  max-width:100%;
  max-height:100%;
  height:auto;
}

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


/**マウスを乗せたリンク画像を半透明に**/
a img:hover{
	opacity: 0.5;   /*透明度0.5*/
}

/***親要素に高さをもたせる(float対策)***/
.clearfix:after{     /*疑似要素*/
	content:"";      /*空のボックス*/
	display:block;       /*ブロックレベル要素に設定*/
	clear:both;        /*杭打ちをして高さを得る*/
}


/**ブラウザの規定スタイルを解除**/
/*画像下の余白をなくす*/
img {
	vertical-align: bottom;
}

/*リスト項目の余白をなくす*/
ul {
	margin: 0;
	padding: 0;
}
/**規定解除ここまで**/

#wrap {
	clear: both;
	margin-top: 0px;        /*コンテンツエリアの外部上に余白*/
	padding: 0px;       /*コンテンツ内部に余白*/
}


/* ヘッダーの固定 */
header{
  top: 0px;                   /* 位置(上0px) */
  left: 0px;                  /* 位置(右0px) */
	width: cover;           /*ヘッダーフルページ表示*/
	height: 150px;
	margin: 0 auto;
  background-image:url('../photo/haikei.jpg');   /*背景画像URL*/
	background-repeat: no-repeat;      /*タイル状繰り返し解除*/
	background-position: center top;     /*位置指定*/
	background-attachment: fixed;               /*位置指定固定*/
	background-size: cover;           /*フルページ大きさ指定*/
	background-size: 100% auto;     /*大きさを領域に合わせる*/

}

body {
  width:auto;
  height:100%;
  margin-right: auto;
  margin-left : auto;
	padding: 0;
	font-size: 15px;
	background-color:#FAF0E6;
	
}

.box1 {
	float:left;
	width:50%;
}

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

.logo {
	float:left;
	width:100%;
}

.twitter-share-button {
	float:left;
	width:100%;
	margin-bottom:20px;
}

.box2 {
	float:left;
	width:50%;
}

/*メニューの指定*/
.global-nav {
	float: right;
}

/*メニューを横に並べる*/
.global-nav li{
	float: left;
	padding-left:10px;      /*左右に余白*/
	list-style: none;     /*メニューの行頭無し*/
	width:20%;
}

/*コンテンツを中央揃え*/
.content {
	width: cover;
	margin-top:200px;
	padding-left:100px;
	padding-right:100px;
}

#wrap {
	clear: both;
	width:85%;
	margin-left:auto;
	margin-right:auto;
}

/* 2カラムレイアウト設定 */
.main {
	float:left;
	width:68%;
}

.sidebar {
	float:left;
	width:30%;
	background-color:white;
	border:1px solid #000;
}

.box11 {
	float:left;
	width:100%;
	margin-bottom:20px;
}

.box11 h4{
	font-size:medium;
	margin-bottom:10px;
}

.box11 h3{
  color:red;
  margin-bottom:15px;
}

.box11 p{
  color:gray;
	font-size:x-small;
}

/**疑似要素**/
/*要素の前後に文字や画像を追加できる*/
.icon:before {
	content: "";          /*必須項目 テキスト追加用*/
	padding-right: 10px;     /*右側に余白*/
	border-left: 7px solid #9cd4a4;    /*幅7の色付きボーダー*/
}

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

.box12 {
	float:left;
	width:auto;
	margin-bottom:40px;
	padding-left:20px;
}

.box12 p{
  font-size:small;
  line-height:40px;
  word-break:break-all;
}

.box12 img{
	width:70%;
	margin-top:20px;
	margin-bottom:20px;
	margin-right:30%;
}

.box12 .verticalphoto{
	width:50%;
}

.box12 h6{
  color:green;
  opacity:0.4;
	font-size:small;
	margin-top:15px;
}

.box12 h5{
	margin-top:15px;
	padding-right:20%;
	text-align:right;
}

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

.box13 {
	float:left;
	width:100%;
  margin-top:20px;
  border:1px solid #000;
}

.box13 p{
	font-size:small;
	text-align:center;
}


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









/****************** 349px以下のとき適用 *******************************/
@media (max-width: 349px){

body {
  width:300px;
}

header{
	height: 70px;
}

.content {
  margin-top:30px;
  padding-left:10px;
  padding-right:10px;
}

.box11{
	margin-bottom:15px;
}

.box11 h4{
	font-size:x-small;
}

.box11 h3{
  font-size:medium;
  margin-bottom:5px;
}

.box11 p{
  font-size:xx-small;
}

.icon:before {
  content: "";          /*必須項目 テキスト追加用*/
  padding-right: 10px;     /*右側に余白*/
  border-left: 7px solid #9cd4a4;    /*幅7の色付きボーダー*/
}

.box12{
	margin-bottom:20px;
	padding-left:20px;
}

.box12 p{
  font-size:x-small;
  line-height:40px;
}

.box12 h6{
	font-size:x-small;
	margin-top:10px;
}

.box13 {
  margin-top:20px;
}

.box13 p{
	font-size:x-small;
}

}


/****************** 350px以上399以下のとき適用 *******************/
@media (min-width: 350px) and (max-width: 399.99999px) {

body {
  width:350px;
}

header{
	height: 80px;
}

.content {
  margin-top:33px;
  padding-left:10px;
  padding-right:10px;
}

.box11{
	margin-bottom:17px;
}


.box11 h4{
	font-size:x-small;
}

.box11 h3{
  font-size:medium;
  margin-bottom:6px;
}

.box11 p{
  font-size:xx-small;
}

.icon:before {
  content: "";          /*必須項目 テキスト追加用*/
  padding-right: 11px;     /*右側に余白*/
  border-left: 8px solid #9cd4a4;    /*幅7の色付きボーダー*/
}

.box12{
	margin-bottom:21px;
	padding-left:21px;
}

.box12 p{
  font-size:x-small;
  line-height:41px;
}

.box12 h6{
	font-size:x-small;
	margin-top:11px;
}


.box13 {
  margin-top:22px;
}

.box13 p{
	font-size:x-small;
}


}

/****************** 400px以上449以下のとき適用 *******************/
@media (min-width: 400px) and (max-width: 449.99999px) {

body {
  width:400px;
}

header{
	height: 90px;
}

.content {
  margin-top:35px;
  padding-left:10px;
  padding-right:10px;
}

.box11{
	margin-bottom:19px;
}

.box11 h4{
	font-size:x-small;
}

.box11 h3{
  font-size:medium;
  margin-bottom:7px;
}

.box11 p{
  font-size:xx-small;
}

.icon:before {
  content: "";          /*必須項目 テキスト追加用*/
  padding-right: 12px;     /*右側に余白*/
  border-left: 9px solid #9cd4a4;    /*幅7の色付きボーダー*/
}

.box12{
	margin-bottom:22px;
	padding-left:22px;
}

.box12 p{
  font-size:x-small;
  line-height:42px;
}

.box12 h6{
	font-size:x-small;
	margin-top:12px;
}

.box13 {
  margin-top:24px;
}

.box13 p{
	font-size:x-small;
}

}


/****************** 450px以上499以下のとき適用 *******************/
@media (min-width: 450px) and (max-width: 499.99999px) {

body {
  width:450px;
}

header{
	height: 100px;
}

.content {
  margin-top:37px;
  padding-left:15px;
  padding-right:15px;
}

.box11{
	margin-bottom:21px;
}

.box11 h4{
	font-size:x-small;
}

.box11 h3{
  font-size:medium;
  margin-bottom:8px;
}

.box11 p{
  font-size:xx-small;
}


.icon:before {
  content: "";          /*必須項目 テキスト追加用*/
  padding-right: 13px;     /*右側に余白*/
  border-left: 10px solid #9cd4a4;    /*幅7の色付きボーダー*/
}

.box12{
	margin-bottom:23px;
	padding-left:23px;
}

.box12 p{
  font-size:x-small;
  line-height:43px;
}

.box13 {
  margin-top:26px;
}

.box13 p{
	font-size:x-small;
}

}


/****************** 500px以上549以下のとき適用 *******************/
@media (min-width: 500px) and (max-width: 549.99999px) {

body {
  width:500px;
}

header{
	height: 110px;
}

.content {
  margin-top:40px;
  padding-left:20px;
  padding-right:20px;
}

.box11{
	margin-bottom:23px;
}

.box11 h4{
	font-size:small;
}

.box11 h3{
  font-size:medium;
  margin-bottom:9px;
}

.icon:before {
  content: "";          /*必須項目 テキスト追加用*/
  padding-right: 14px;     /*右側に余白*/
  border-left: 11px solid #9cd4a4;    /*幅7の色付きボーダー*/
}

.box12{
	margin-bottom:24px;
	padding-left:24px;
}

.box12 p{
  font-size:x-small;
  line-height:44px;
}

.box12 h6{
	font-size:x-small;
	margin-top:13px;
}


.box13 {
  margin-top:28px;
}

.box13 p{
	font-size:x-small;
}

}


/****************** 550px以上599以下のとき適用 *******************/
@media (min-width: 550px) and (max-width: 599.99999px) {

body {
  width:550px;
}

header{
	height: 120px;
}

.content {
  margin-top:43px;
  padding-left:25px;
  padding-right:25px;
}

.box11{
	margin-bottom:25px;
}


.box11 h4{
	font-size:small;
}

.box11 h3{
  font-size:large;
  margin-bottom:10px;
}

.icon:before {
  content: "";          /*必須項目 テキスト追加用*/
  padding-right: 15px;     /*右側に余白*/
  border-left: 12px solid #9cd4a4;    /*幅7の色付きボーダー*/
}

.box12{
	margin-bottom:25px;
	padding-left:25px;
}

.box12 p{
  font-size:x-small;
  line-height:45px;
}

.box12 h6{
	font-size:x-small;
	margin-top:14px;
}


.box13 {
  margin-top:30px;
}

.box13 p{
	font-size:x-small;
}


}

/****************** 600px以上649以下のとき適用 *******************/
@media (min-width: 600px) and (max-width: 649.99999px) {

body {
  width:600px;
}

header{
	height: 130px;
}

.content {
  margin-top:45px;
  padding-left:30px;
  padding-right:30px;
}

.box11{
	margin-bottom:27px;
}

.box11 h4{
	font-size:small;
}

.box11 h3{
  font-size:large;
  margin-bottom:11px;
}

.icon:before {
  content: "";          /*必須項目 テキスト追加用*/
  padding-right: 16px;     /*右側に余白*/
  border-left: 13px solid #9cd4a4;    /*幅7の色付きボーダー*/
}

.box12{
	margin-bottom:26px;
	padding-left:26px;
}

.box12 p{
  font-size:x-small;
  line-height:46px;
}

.box12 h6{
	font-size:x-small;
	margin-top:15px;
}


.box13 {
  margin-top:32px;
}

.box13 p{
	font-size:small;
}

}


/****************** 650px以上699以下のとき適用 *******************/
@media (min-width: 650px) and (max-width: 699.99999px) {

body {
  width:650px;
}

header{
	height: 140px;
}

.content {
  margin-top:47px;
  padding-left:35px;
  padding-right:35px;
}

.box11{
	margin-bottom:29px;
}

.box11 h4{
	font-size:small;
}

.box11 h3{
  font-size:large;
  margin-bottom:12px;
}

.icon:before {
  content: "";          /*必須項目 テキスト追加用*/
  padding-right: 17px;     /*右側に余白*/
  border-left: 14px solid #9cd4a4;    /*幅7の色付きボーダー*/
}

.box12{
	margin-bottom:27px;
	padding-left:27px;
}

.box12 p{
  font-size:x-small;
  line-height:47px;
}

.box12 h6{
	font-size:x-small;
	margin-top:16px;
}

.box13 {
  margin-top:34px;
}

.box13 p{
	font-size:small;
}

}


/****************** 700px以上739以下のとき適用 *******************/
@media (min-width: 700px) and (max-width: 739.99999px) {

body {
  width:700px;
}

header{
	height: 150px;
}

.content {
  margin-top:50px;
  padding-left:40px;
  padding-right:40px;
}

.box11{
	margin-bottom:31px;
}

.box11 h4{
	font-size:small;
}

.box11 h3{
  font-size:large;
  margin-bottom:13px;
}

.icon:before {
  content: "";          /*必須項目 テキスト追加用*/
  padding-right: 18px;     /*右側に余白*/
  border-left: 15px solid #9cd4a4;    /*幅7の色付きボーダー*/
}

.box12{
	margin-bottom:28px;
	padding-left:28px;
}

.box12 p{
  font-size:x-small;
  line-height:48px;
}

.box12 h6{
	font-size:x-small;
	margin-top:17px;
}

.box13 {
  margin-top:36px;
}

.box13 p{
	font-size:small;
}

}

/****************** 740px以上767以下のとき適用 *******************/
@media (min-width: 740px) and (max-width: 767.99999px) {

body {
  width:740px;
}

.content {
  margin-top:53px;
  padding-left:45px;
  padding-right:45px;
}

.box11{
	margin-bottom:33px;
}

.box11 h4{
	font-size:small;
}

.box11 h3{
  font-size:large;
  margin-bottom:14px;
}

.icon:before {
  content: "";          /*必須項目 テキスト追加用*/
  padding-right: 19px;     /*右側に余白*/
  border-left: 16px solid #9cd4a4;    /*幅7の色付きボーダー*/
}

.box12{
	margin-bottom:29px;
	padding-left:29px;
}

.box12 p{
  font-size:x-small;
  line-height:49px;
}

.box12 h6{
	font-size:x-small;
	margin-top:17px;
}

.box13 {
  margin-top:38px;
}

.box13 p{
	font-size:small;
}

}


/****************** 768px以上849以下のとき適用 *******************/
@media (min-width: 768px) and (max-width: 849.99999px) {

body {
}

#wrap {
	width:700px;
}

.content {
  margin-top:55px;
  padding-left:47px;
  padding-right:47px;
}

.box11{
	margin-bottom:35px;
}

.box11 h4{
	font-size:medium;
}

.box11 h3{
  font-size:x-large;
  margin-bottom:15px;
}

.icon:before {
  content: "";          /*必須項目 テキスト追加用*/
  padding-right: 20px;     /*右側に余白*/
  border-left: 17px solid #9cd4a4;    /*幅7の色付きボーダー*/
}

.box12{
	margin-bottom:30px;
	padding-left:30px;
}

.box12 p{
  font-size:x-small;
  line-height:50px;
}

.box12 h6{
	font-size:small;
	margin-top:18px;
}

.box13 {
  margin-top:40px;
}

.box13 p{
	font-size:small;
}

}



/****************** 850px以上949以下のとき適用 *******************/
@media (min-width: 850px) and (max-width: 949.99999px) {

body {
  width:850px;
}

.content {
  margin-top:57px;
  padding-left:50px;
  padding-right:50px;
}

.box11{
	margin-bottom:37px;
}

.box11 h4{
	font-size:medium;
}

.box11 h3{
  font-size:x-large;
  margin-bottom:16px;
}

.icon:before {
  content: "";          /*必須項目 テキスト追加用*/
  padding-right: 21px;     /*右側に余白*/
  border-left: 18px solid #9cd4a4;    /*幅7の色付きボーダー*/
}

.box12{
	margin-bottom:31px;
	padding-left:31px;
}

.box12 p{
  font-size:x-small;
  line-height:51px;
}

.box12 h6{
	font-size:small;
	margin-top:19px;
}

.box13 {
  margin-top:42px;
}

.box13 p{
	font-size:small;
}

}


/******************* 950px以上1049以下のとき適用 ********************/
@media (min-width: 950px) and (max-width: 1049.99999px) {

body {
}

#wrap {
	width:800px;
}

.content {
  margin-top:60px;
  padding-left:53px;
  padding-right:53px;
}

.box11{
	margin-bottom:39px;
}

.box11 h4{
	font-size:medium;
}

.box11 h3{
  font-size:x-large;
  margin-bottom:17px;
}

.icon:before {
  content: "";          /*必須項目 テキスト追加用*/
  padding-right: 22px;     /*右側に余白*/
  border-left: 19px solid #9cd4a4;    /*幅7の色付きボーダー*/
}

.box12{
	margin-bottom:32px;
	padding-left:32px;
}

.box12 p{
  font-size:x-small;
  line-height:52px;
}

.box12 h6{
	font-size:small;
	margin-top:20px;
}


.box13 {
  margin-top:44px;
}

.box13 p{
	font-size:small;
}


}


/****************** 1050px以上1199以下のとき適用 *******************/
@media (min-width: 1050px) and (max-width: 1149.99999px) {

body {
}

#wrap {
	width:1000px;
}

.content {
  margin-top:63px;
  padding-left:55px;
  padding-right:55px;
}

.box11{
	margin-bottom:41px;
}

.box11 h4{
	font-size:medium;
}

.box11 h3{
  font-size:x-large;
  margin-bottom:18px;
}

.icon:before {
  content: "";          /*必須項目 テキスト追加用*/
  padding-right: 23px;     /*右側に余白*/
  border-left: 20px solid #9cd4a4;    /*幅7の色付きボーダー*/
}

.box12{
	margin-bottom:33px;
	padding-left:33px;
}

.box12 p{
  font-size:small;
  line-height:53px;
}

.box12 h6{
	font-size:small;
	margin-top:21px;
}

.box13 {
  margin-top:46px;
}

.box13 p{
	font-size:small;
}

}

/********************************* 1150px以上1249以下のとき適用 *************************************/
@media (min-width: 1150px) and (max-width: 1249.99999px) {

body {
}

#wrap {
}


.content {
  margin-top:65px;
  padding-left:57px;
  padding-right:57px;
}

.box11{
	margin-bottom:43px;
}

.box11 h4{
	font-size:medium;
}

.box11 h3{
  font-size:x-large;
  margin-bottom:19px;
}

.icon:before {
  content: "";          /*必須項目 テキスト追加用*/
  padding-right: 24px;     /*右側に余白*/
  border-left: 21px solid #9cd4a4;    /*幅7の色付きボーダー*/
}

.box12{
	margin-bottom:34px;
	padding-left:34px;
}

.box12 p{
  font-size:small;
  line-height:54px;
}

.box12 h6{
	font-size:small;
	margin-top:22px;
}


.box13 {
  margin-top:48px;
}

.box13 p{
	font-size:small;
}

}


/********************************** 1250px以上1349以下のとき適用 *********************************/
@media (min-width: 1250px) and (max-width: 1349.99999px) {

body {
}

#wrap {
}


.content {
  margin-top:67px;
  padding-left:60px;
  padding-right:60px;
}

.box11{
	margin-bottom:45px;
}

.box11 h4{
	font-size:medium;
}

.box11 h3{
  font-size:x-large;
  margin-bottom:20px;
}

.icon:before {
  content: "";          /*必須項目 テキスト追加用*/
  padding-right: 25px;     /*右側に余白*/
  border-left: 22px solid #9cd4a4;    /*幅7の色付きボーダー*/
}

.box12{
	margin-bottom:35px;
	padding-left:35px;
}

.box12 p{
  font-size:small;
  line-height:55px;
}

.box12 h6{
	font-size:small;
	margin-top:23px;
}


.box13 {
  margin-top:50px;
}

.box13 p{
	font-size:small;
}

}

/****************************** 1350px以上1449以下のとき適用 *****************************/
@media (min-width: 1350px) and (max-width: 1449.99999px) {

body {
}

#wrap {
}


.content {
  margin-top:70px;
  padding-left:63px;
  padding-right:63px;
}

.box11{
	margin-bottom:47px;
}

.box11 h4{
  font-size:medium;
}

.box11 h3{
  font-size:x-large;
  margin-bottom:21px;
}

.icon:before {
  content: "";          /*必須項目 テキスト追加用*/
  padding-right: 26px;     /*右側に余白*/
  border-left: 23px solid #9cd4a4;    /*幅7の色付きボーダー*/
}

.box12{
	margin-bottom:36px;
	padding-left:36px;
}

.box12 p{
  font-size:small;
  line-height:56px;
}

.box12 h6{
	font-size:small;
	margin-top:24px;
}


.box13 {
  margin-top:52px;
}

.box13 p{
	font-size:small;
}

}


/***************************** 1450px以上1549以下のとき適用 ********************************/
@media (min-width: 1450px) and (max-width: 1549.99999px) {

body {
}

#wrap {
}


.content {
  margin-top:70px;
  padding-left:63px;
  padding-right:63px;
}

.box11{
	margin-bottom:47px;
}

.box11 h4{
  font-size:medium;
}

.box11 h3{
  font-size:x-large;
  margin-bottom:21px;
}

.icon:before {
  content: "";          /*必須項目 テキスト追加用*/
  padding-right: 26px;     /*右側に余白*/
  border-left: 23px solid #9cd4a4;    /*幅7の色付きボーダー*/
}

.box12{
	margin-bottom:36px;
	padding-left:36px;
}

.box12 p{
  font-size:small;
  line-height:56px;
}

.box12 h6{
	font-size:small;
	margin-top:24px;
}


.box13 {
  margin-top:52px;
}

.box13 p{
	font-size:small;
}

}



/***************************** 1550px以上1649以下のとき適用 *******************************/
@media (min-width: 1550px) and (max-width: 1649.99999px) {

body {
}

#wrap {
}


.content {
  margin-top:70px;
  padding-left:63px;
  padding-right:63px;
}

.box11{
	margin-bottom:47px;
}

.box11 h4{
  font-size:medium;
}

.box11 h3{
  font-size:x-large;
  margin-bottom:21px;
}

.icon:before {
  content: "";          /*必須項目 テキスト追加用*/
  padding-right: 26px;     /*右側に余白*/
  border-left: 23px solid #9cd4a4;    /*幅7の色付きボーダー*/
}

.box12{
	margin-bottom:36px;
	padding-left:36px;
}

.box12 p{
  font-size:small;
  line-height:56px;
}

.box12 h6{
	font-size:small;
	margin-top:24px;
}


.box13 {
  margin-top:52px;
}

.box13 p{
	font-size:small;
}

}


/******************************* 1650px以上のとき適用 ***********************************/
@media (min-width: 1650px){

body {

}

#wrap {
}

.content {
  margin-top:70px;
  padding-left:63px;
  padding-right:63px;
}

.box11{
	margin-bottom:47px;
}

.box11 h4{
  font-size:medium;
}

.box11 h3{
  font-size:x-large;
  margin-bottom:21px;
}

.icon:before {
  content: "";          /*必須項目 テキスト追加用*/
  padding-right: 26px;     /*右側に余白*/
  border-left: 23px solid #9cd4a4;    /*幅7の色付きボーダー*/
}

.box12{
	margin-bottom:36px;
	padding-left:36px;
}

.box12 p{
  font-size:small;
  line-height:56px;
}

.box12 h6{
	font-size:small;
	margin-top:24px;
}


.box13 {
  margin-top:52px;
}

.box13 p{
	font-size:small;
}

}

