@charset "UTF-8";
@import url("grid.css");

img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
    /*display:block;*/
    color: #666;
    text-decoration-line: none;
}
a:hover { 
    color: #999;
}



@font-face{ 
	font-family: 'ShinyaWebFont'; 
	src: url('../../../font/HanaMinA.eot'); /* IE9以上用 */
	src: url('.././../font/HanaMinA.eot?#iefix') format('embedded-opentype'), /* IE8以前用 */
		url('../../../font/HanaMinA.woff') format('woff'), /* モダンブラウザ用 */
		url('../../../font/HanaMinA.woff2') format('woff2'), /* モダンブラウザ用? */
		url('../../../font/HanaMinA.ttf') format('truetype'); /* iOS, Android用 */
	font-weight: normal; /* 念の為指定しておきます */
	font-style: normal;
}

html {
	font-size: 62.5%;
	line-height: 200%;
}


body {
	font-family: 'ShinyaWebFont';
}

/* clearfix */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*\*//*/
  height: auto;
  overflow: hidden;
  /**/
}


.clear {
	line-height: 0px;
	display: block;
	clear: both;
	height: 0px;
	visibility: hidden;
}
.clear10 {
	line-height: 0px;
	display: block;
	clear: both;
	height: 10px;
	visibility: hidden;
}
.clear20 {
	line-height: 0px;
	display: block;
	clear: both;
	height: 20px;
	visibility: hidden;
}
.clear30 {
	line-height: 0px;
	display: block;
	clear: both;
	height: 30px;
	visibility: hidden;
}
.clear40 {
	line-height: 0px;
	display: block;
	clear: both;
	height: 40px;
	visibility: hidden;
}
.clear50 {
	line-height: 0px;
	display: block;
	clear: both;
	height: 50px;
	visibility: hidden;
}

/*hide
-------------------------------------*/
@media screen and (max-width: 560px) {
.hide_in_sp {
	display: none !important;
}
.hide_in_sm {
	display: none !important;
}
}
@media screen and (min-width: 561px) and (max-width: 979px) {
.hide_in_tablet {
	display: none !important;
}
.hide_in_sm {
	display: none !important;
}
.br-sp {
	display:none !important;
}
}
@media print, screen and (min-width: 769px) {
.br-sm {
	display:none !important;
}
.br-sp {
	display:none !important;
}
.hide_in_pc {
	display: none !important;
}
}




p {
	font-size: 1.2em;
	color: #333;
	font-weight: 600;
}
.lead {
	text-align: center;
	margin-bottom: 4rem;
}
@media screen and (max-width: 768px){
.lead {
	text-align: left;
	padding-right: 20px;
	padding-left: 30px;
}
}
.photocaption {
	font-size: 1.1em;
	font-weight: 600;
	text-align: left;
	padding-right: 20px;
	padding-left: 20px;
}
@media screen and (max-width: 560px) {
.sentencebox {
	display: block;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 30px;
	float: none;
}
.rightimagebox {
	display: block;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	float: none;
}
.rightimagebox img {
	width: 100%;
	height: auto;
}
}
@media screen and (min-width: 561px) and (max-width: 768px) {
.sentencebox {
	display: block;
	float: left;
	width: 57%;
	margin-left: 2%;
}
.rightimagebox {
	display: block;
	float: right;
	width: 33%;
	margin-right: 2%;
}

.rightimagebox img {
	width: 100%;
	height: auto;
}
}
@media screen and (min-width: 769px) and (max-width: 850px) {
.sentencebox {
	display: block;
	float: left;
	width: 55%;
	margin-left: 4%;
}
.rightimagebox {
	display: block;
	float: right;
	width: 31%;
	margin-right: 4%;
}

.rightimagebox img {
	width: 100%;
	height: auto;
}
}
@media print, screen and (min-width: 851px) {
.sentencebox {
	display: block;
	float: left;
	width: 45%;
	margin-left: 9%;
}
.rightimagebox {
	display: block;
	float: right;
	width: 31%;
	margin-right: 9%;
}

.rightimagebox img {
	width: 100%;
	height: auto;
}
}







/*ヘッダー
-------------------------------------*/
.header {
	display: flex;
    flex-direction: row;
    padding: 2rem 0 0 0;
}
.header-box {
	margin-left: auto;
	margin-top: 8px;
}
.contact-button {
	padding: 1rem;
	border: 2px solid #000;
}
nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
    margin-top: 5rem;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0;
}
nav li {
	flex: 1 0 auto;
}
nav li a {
    text-decoration: none;
    text-align: center;
    width: 100%;
}
nav a:hover {
    background-color: #f7f7f7;    
}
nav a {
    padding: 0.5rem;
}

@media screen and (min-width: 768px){
/* PC時はMENUボタンを非表示 */
#open,#close {
    display: none !important;
}

#navi {
    display: block !important;
}
}

@media screen and (max-width: 768px){
.header {
	flex-direction: column;
    margin-bottom: 10px;
}
.header #open,#close  {
    position: absolute;
    top: 20px;
    right: 12px;
}
nav ul {
	flex-direction: column;
}
.header li {
	padding-top: 0;
}
/* スマホ時はMENUボタンを表示 */
#open {
    display: block;
    background: url(../img/button.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
#close  {
    display: block;
    background: url(../img/button2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
/* スマホ時はメニューを非表示 */
#navi {
    display: none;
}
}
    
/*メイン画像
-------------------------------------*/

.mainimg {
    margin-top: -8px;
    margin-right: -8px;
    margin-left: -8px;
    margin-bottom: -8px;
    padding: 0;
	position: relative;
}

.mainimg img {
    width: 100vw;
}

.mainimg .maincatch {
    position: absolute;
    top: 30%;
    width: 100%;
    /*left: 15%;*/
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 340%;
    z-index: 10;
    text-shadow: 0px 0px 3px #000;
}
.mainimg .maincatch .bgpart {
    font-size: 48px;
    font-weight: 500;
    /*background-color: #4E10C1;*/
	background-image: url("../img/bg_pp.jpg");
    padding-top: 15px;
    padding-right: 40px;
    padding-left: 40px;
    padding-bottom: 15px;
}
.maincath-sp {
    display: none;
}
@media screen and (min-width: 561px) and (max-width: 768px) {
.maincath-sp {
    display: none;
}
}
@media screen and (max-width: 560px){
.mainimg .maincatch {
    display: none;
}
.maincath-sp {
    display: block;
    width: 100%;
	background-image: url("../img/bg_pp.jpg");
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    z-index: 10;
    /*text-shadow: 0px 0px 3px #000;*/
    padding-top: 15px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 15px;
}
.maincath-sp-p {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    line-height: 180%;
    z-index: 10;
    /*text-shadow: 0px 0px 3px #000;*/
}
.maincath-sp-p .bgpart {
    font-size: 24px;
    font-weight: 600;
	background-image: none;
    padding-top: 15px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 15px;
}
}


/*メインコンテンツ
-------------------------------------*/
main {
    margin: 0;
}
section {
    margin-right: 0;
    margin-left: 0;
    padding-top: 6rem;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 6rem;
}
.gray-back {
	background-color: #f4f4f4;
}
.box__bg_pattern {
	background-repeat: repeat;
}
.bg_011{
	background-image: url("../../../img/bg/bg_011.gif")
}
.bg_0111{
	background-image: url("../../../img/bg/bg_0111.gif")
}
.bg_033{
	background-image: url("../../../img/bg/bg033.jpg")
}
.bg_washi030{
	background-image: url("../../../img/bg/washi_030.jpg")
}

/*キャッチコピー
-------------------------------------*/
.catch {
    text-align: center;
	margin: 0;
	padding-top: 6rem;
	padding-bottom: 6rem;
}
.catch h1 {
    padding-bottom: 1rem;
	font-size: 38px;
}
.under {
    border-bottom: 0.4rem solid #000;
    padding:0 1rem 1rem 1rem;
}
.center {
	text-align: center;
	margin-bottom: 4rem;
}

/*申し込みの流れ
-------------------------------------*/
.flow.row {
	margin-bottom: 0;
}
@media screen and (max-width: 768px){
.flow.row {
	margin-bottom: 0;
}
}


/*フッター
-------------------------------------*/
footer {
    background-color: #f7f7f7;
    padding-top: 5rem;
    padding-right: 0;
    padding-left: 0;
}
footer h4 {
    border-bottom: 3px solid #ccc;
}

/*お問い合わせ
-------------------------------------*/
.contact-box {
	border: 1px solid #ccc;
	text-align: center;
	padding: 2rem 0;
}
.table {
	margin: 4rem 0;
}
.table th {
	width: 250px;
}

/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: #000;
}
.copyright a {
    color: #fff;
    text-decoration: none;
	display: inline;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}
#pagetop a {
    display: block;
    background: #000;
    color: #fff;
    width: 50px;
    padding: 10px 5px;
    text-align: center;
}
#pagetop a:hover {
    background: #666;
}

/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 768px){
	
/*ヘッダー
-------------------------------------*/
.header-box {
	display: none;
}	
/*お問い合わせ
-------------------------------------*/
.table th {
	width: 100%;
	display: block;
}	
.table td {
	display: block;
}
}
.headerlogo {
	margin-bottom: 1rem;
}
@media screen and (max-width: 768px){
.headerlogo img {
	max-width: 30%;
	height: auto;
}
}
.widebannerwrap {
	width: 70%;
	margin-left: auto;
	margin-right: auto;
}
.widebannerwrap img {
	width: 100%;
	height: auto;
}
@media screen and (max-width: 768px){
.widebannerwrap {
	width: 100%;
}
}

.singlebox {
	background-color: rgba(255,255,255,0.2);
	width: 80%;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	padding: 15px;
	border-radius: 5px;        /* CSS3草案 */
	-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */
	-moz-border-radius: 5px;    /* Firefox用 */
	margin-bottom: 20px;
	animation-delay:1.2s;
}
@media screen and (max-width: 768px){
.singlebox {
	width: 100%;
}
}
.singlebox_inner {
	background-color: rgba(255,255,255,0.8);
	height: auto;
	width: 100%;
	border-radius: 5px;        /* CSS3草案 */
	-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */
	-moz-border-radius: 5px;
	padding-top: 30px;
	padding-bottom: 30px;
}
@media screen and (max-width: 768px){
.singlebox_inner {
	padding-top: 15px;
	padding-bottom: 15px;
}
}
.shitsumon {
	font-weight: bold;
	color: #333333;
	text-align: left;
	text-shadow: 1px 1px 1px #999;
	line-height: 170%;
	margin-bottom: 20px;
	font-size: 18px;
	width: 90%;
	display: block;
	margin-right: auto;
	margin-left: auto;
}
.kaitou {
	font-size: 14px;
	font-weight: bold;
	color: #666666;
	text-align: left;
	display: block;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	text-shadow:none;
}
#thispagenav li {
	margin-right: 1em;
	display: inline-block;
}
.hyou {
    width: 680px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255,255,255,0.20);
}
@media screen and (max-width: 768px){
.hyou {
    width: 95%;
}
}
.hyou th {
    width: 150px;
	padding-left: 20px;
}
@media screen and (max-width: 768px){
.hyou th {
    width: 100px;
}
}
.kakomititle {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    border: 1px;
    border-style: solid;
    border-color: #666;
    background-color: rgba(255,255,255,0.50);
    padding-top: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
}
	