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

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

.size10 {  font-size: 10px; line-height: 12px}
.size12 {  font-size: 12px; line-height: 18px}
.size14 {  font-size: 14px; line-height: 21px}
.size16 {  font-size: 16px; line-height: 24px}
.size18 {  font-size: 18px; line-height: 27px}
.size24 {  font-size: 24px; line-height: 30px}

.underline {
	border-bottom: 3px solid #000;
	padding-bottom: 0.5rem;
}
.center {
	text-align: center;
}

.box8 {
    display:inline-block;
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #232323;
    background: #fff8e8;
    border-left: solid 10px #ffc06e;
}
.box8 p {
    margin: 0; 
    padding: 0;
}

.box24 {
    position: relative;
    padding: 0.5em 0.7em;
    margin: 2em 0;
    background: #e6f4ff;
    color: #5c98d4;
    font-weight: bold;
}
.box24:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 30px;
    border: 15px solid transparent;
    border-top: 15px solid #e6f4ff;
    width: 0;
    height: 0;
}
.box24 p {
    margin: 0; 
    padding: 0;
}

.box26 {
    display:inline-block;
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #beff00;
    border-radius: 8px;
}
.box26 .box-title {
    position: absolute;
    display: inline-block;
    top: -10px;
    left: 10px;
    padding: 0 5px;
    line-height: 1;
    font-size: 14px;
    background: #FFF;
    color: #0098a5;
    font-weight: bold;
}
.box26 p {
    margin: 0; 
    padding: 0;
    text-align: left;
}

/*PC＆スマホ表示
-------------------------------------*/
/* PC時は"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
    
/* スマホ時は"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 767px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

/*改行*/
@media screen and (min-width: 767px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 767px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
}

/*ヘッダー
-------------------------------------*/
.head {
	display: flex;
    flex-direction: row;
    padding: 1rem 0 0 0;
}

.head h1 { 
    padding: 1rem 0;
	font-weight: 700;
	letter-spacing: 3px;
}
.mailbox {
	margin-left: auto;
	font-size: 3.0rem;
	padding: 1rem 0 0 0;
}
.snsbox {
	margin-left: auto;
	font-size: 3.0rem;
	padding: 1rem 0 0 0;
}
.telbox {
	margin-left: auto;
	font-size: 3.0rem;
	padding: 1rem 0 0 0;
}
nav ul {
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
	margin-bottom: 1rem;
}
nav li {
    display: block;
    flex: 1 0 auto;
}
nav li a {
    text-decoration: none;
    text-align: center;
    color: #666;
}
nav a:hover {
    background-color: #f4ebdb;
    border-radius:5px;
    color: #7f1084;
}
nav a {
    display: block;
    padding: 1rem;
}

/*改行*/
@media screen and (min-width: 650px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 650px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
}

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

#navi {
    display: block !important;
}
}

@media screen and (max-width: 768px){
.head {
	flex-direction: column;
    text-align: left;
    margin-bottom: 20px;
}
.telbox {
	margin-left: 0;
	text-align: center;
}
.head #open,#close  {
    position: absolute;
    top: 28px;
    right: 12px;
    }
nav ul {
	flex-direction: column;
}

nav li {
	padding-top: 0;
	border-bottom: 1px solid #ccc;
	margin-bottom: 0;
}
    
/* スマホ時はMENUボタンを表示 */
#open,#close  {
    display: block;
    width: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
/* スマホ時はメニューを非表示 */
#navi {
    display: none;
}
}

/*メイン画像
-------------------------------------*/
.mainimg img {
	width: 100vw;
}

/*メインコンテンツ
-------------------------------------*/
main {
    margin: 5rem 0 5rem 0;
}

/*汎用クラス
-------------------------------------*/
/* 写真中央寄せ */
.imgC {
	clear:both;
	overflow:hidden;
	margin-bottom:10px;
	text-align:center;
}
.imgC img {
	border-radius:0px;
	margin-bottom:0.5em;
}

/* 写真左寄せ */
.imgL {
	clear:both;
	overflow:hidden;
	margin-bottom:10px;
}
.imgL img {
	float:left;
	margin:0 1em 0.5em 0;
	border-radius:0px;
}

/* 写真右寄せ */
.imgR {
	clear:both;
	overflow:hidden;
	margin-bottom:10px;
}
.imgR img {
	float:right;
	margin:0 0 1em 0.5em;
	border-radius:0px;
}

/*キャッチタイトル
-------------------------------------*/
h2.catch {
	text-align: center;
	color: #666;
	font-size: 4.0rem;
	margin-bottom: 3rem;
}

h5 {
  font-weight: bold;
  position: relative;/*相対位置*/
  padding-left: 1.2em;/*アイコン分のスペース*/
  line-height: 1.4;/*行高*/
  color: #791a44;/*文字色*/
}

h5:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1fc";/*アイコンのユニコード*/
  font-weight: 900;
  position: absolute;/*絶対位置*/
  font-size: 1em;/*サイズ*/
  left: 0;/*アイコンの位置*/
  top: 0;/*アイコンの位置*/
  color: #beff00; /*アイコン色*/
}

h5.designer {
  font-weight: normal;
  position: relative;/*相対位置*/
  padding-left: 1.2em;/*アイコン分のスペース*/
  line-height: 1.4;/*行高*/
  color: #000;/*文字色*/
}

h5:before.designer {
  font-family: "Font Awesome 5 Free";
  content: "\f1fc";/*アイコンのユニコード*/
  font-weight: 900;
  position: absolute;/*絶対位置*/
  font-size: 1em;/*サイズ*/
  left: 0;/*アイコンの位置*/
  top: 0;/*アイコンの位置*/
  color: #beff00; /*アイコン色*/
}

/* ボタン
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button1,
button1,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  margin: 5px;
  padding: 0 30px;
  margin-right: 5px;
  color: #666;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 3px solid #beff00;
  border-radius: 0;
  cursor: pointer;
  box-sizing: border-box; }
.button1:hover,
button1:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button1:focus,
button2:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #999;
  border-color: #e4ff00;
  outline: 0; }

.button2,
button2,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  margin: 5px;
  padding: 0 30px;
  margin-right: 5px;
  color: #920783;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 3px solid #beff00;
  border-radius: 0;
  cursor: pointer;
  box-sizing: border-box; }
.button2:hover,
button2:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button2:focus,
button2:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #c492bc;
  border-color: #e4ff00;
  outline: 0; }

/* テーブル
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.transaction table {
  border-collapse: collapse; }
.transaction th {
  font-weight: bold;
  background-color: #eaeced;
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #fff; }
.transaction td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
.transactionth:first-child,
.transaction td:first-child {
  padding-left: 0; }
.transaction th:last-child,
.transaction td:last-child {
  padding-right: 0; }
@media screen and (max-width: 768px){
	.transaction table {
	}
	.transaction th,
	.transaction td{
		display: block;
	}
}

/*フッター
-------------------------------------*/
footer {
    background-color: #fff;
    padding: 3rem 0 1rem 0;
}
footer h5 {
    border-bottom: 1px solid #ccc;
}
.footmenu {
	width:100%;
	padding:10px 0;
	overflow:hidden;
}
.footmenu ul {
	position:relative;
	float:left;
	left:50%;
	margin:0;
	padding:0;
}
.footmenu li {
	position:relative;
	left:-50%;
	float:left;
	list-style:none;
    border-left:1px solid #ccc;
    border-right:1px solid #ccc;
	margin:0;
	padding:0 15px;
	font-size:14px;
	text-align:center;
}

.footmenu li+ li {
  border-left: 0;
  border-right: 1px solid #ccc;
}
.footmenu a {
	color:#666;
	text-decoration:none;
}
.footmenu a:hover {
	color:#999;
	text-decoration-line: none;
}

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

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}
#pagetop a {
    display: block;
    background: #920783;
    color: #fff;
    width: 50px;
    padding: 10px 5px;
    text-align: center;
    text-decoration: none;
    border-radius:3px;
}
#pagetop a:hover {
    opacity: 0.8;
}
/*パンくずリスト
-----------------------------------*/
.breadcrumb {
    font-size: 1.5rem;
    margin: 0 0 1em 0;
    padding: 0;	
}
.breadcrumb li {
    list-style-type: none;
}
.breadcrumb li a {
    display: inline-block;
    color: #959fa5;
}
.breadcrumb li a:hover {
    display: inline-block;
    color: #666;
}

/*スマートフォン向けデザイン
-----------------------------------*/
@media screen and (max-width: 768px){
.imgC {
		margin-bottom:30px;
	}
	.imgC img {
		max-width:100%;
	}

	.imgL {
		margin-bottom:30px;
	}
	.imgL img {
		float:none;
		max-width:100%;
		margin-right:0;
	}

	.imgR {
		margin-bottom:30px;
	}
	.imgR img {
		float:none;
		max-width:100%;
		margin-left:0;
	}
    }