@import url(sanitize.css);
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300&family=Noto+Serif+JP:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');

body{
	background: #FFFFFF;
	margin-top: 0px; 
	margin-right: 0px; 
	margin-bottom: 0px; 
	margin-left: 0px; 
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	line-height: 130%;
	margin:0 auto;
	width:100%;
}

/* 内容が入る真ん中の余白サイズ */
.base01{
	background-color:#dac6b6;
}

.base02{
	background-color:#fff;
}

/*クリアボス*/

.clr{
	clear:both;
}

/*imgサイズ*/

.img{
	width:100%;
	-webkit-backface-visibility: hidden;
}

.fonts{
	font-family: 'Noto Serif JP', serif;
}

/*1.フェードインアニメーションの指定*/
.scrollanime {opacity: 0;} /*一瞬表示されるのを防ぐ*/
.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 2.5s;
    animation-fill-mode: forwards;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;         
    }
    100% {
    opacity: 1;
    transform: translate(0);
    }
}
 
/*2.上下の動きを指定*/
.updown {transform: translateY(-100px);}
.downup {transform: translateY(100px);}
 
/*3.左右の動きを指定*/
.sect02{overflow: hidden;} /*横スクロールバーを隠す*/
.slide-right {transform: translateX(200px);}
.slide-left {transform: translateX(-200px);}

/* アニメーション指定ここまで↑↑ */

/* ヘッダーメニュー */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:0 5px 0 10px;
  background: #231816;
  position: fixed;
  width:100%;
  z-index:999;
}

/*ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
ul li:nth-of-type(2) {
    margin-left: auto;
    background-color: #ffc;
}*/

/*------------------------------

  ここから下がハンバーガーメニュー
  に関するCSS

------------------------------*/
  
/* チェックボックスは非表示に */
.drawer-hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上に */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #bca73c;
  transition: 0.5s;
  position: absolute;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 8px;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;/* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #231816;
  transition: 0.8s;
}
/* メニューの文字デザイン*/


.drawer-item{
  padding:15px;
  font-size:14px;
}

.drawer-list{
    margin:60px 40px 0 40px;
}

ul.drawer-list li + li {
    border-top:1px solid #dac6b6;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
  left: 0;/* メニューを画面に入れる */
}

/*------------------------------

  ここまで

------------------------------*/


/* メニューリンク↓↓ */
a.link:link {
	color: #dac6b6;
	text-decoration: none;
}
a.link:visited {
	color: #dac6b6;
	text-decoration: none;
} 
a.link:hover {
	color: #fff;
	text-decoration: none;
}
/* メニューリンク↑↑ */

/* メールフォームリンク↓↓ */
a.mail:link {
	color: #bca73c;
	text-decoration: none;
}
a.mail:visited {
	color: #bca73c;
	text-decoration: none;
} 
a.mail:hover {
	color: #000;
	text-decoration: none;
}
/* メールフォームリンク↑↑ */

/* more部リンク↓↓ */
a.more:link {
	color: #bca73c;
	text-decoration: none;
}
a.more:visited {
	color: #bca73c;
	text-decoration: none;
} 
a.more:hover {
	color: #000;
	text-decoration: none;
}
/* more部リンク↑↑ */

/* ヌルっと拡大する↓↓ */
.img_wrap{
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  cursor: pointer;
}
.img_wrap img{
  width: 100%;
  transition-duration: 0.5s;
}
.img_wrap:hover img{
  transform: scale(1.2);
  transition-duration: 0.5s;
}
/* ヌルっと拡大する↑↑ */

/* 茶色ボタンリンク↓↓ */

.btn {
  display: block;
  margin:2% 0;
  width: 100%;
  height: 50px;
  text-align: center;
  line-height: 45px;
  background: #231816;
  border:1px solid #fff;
  font-weight: bold;
  text-decoration: none;
  /*border-radius: 5px;*/
}

a.btn:hover{/* マウスオーバー時に色変更*/
	background-color: #d2b48c;
}

.btn span{
  color: #FFF;
  position: relative;
  padding-right: 30px;
}
.btn span::before{ /* 矢印マーク部分。擬似的に四角形を作り上と右にボーダーをつけて45°回転させる */
  content: "";
  position: absolute;
  top: 60%;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -5px;
}

.btn_obi{
	width:60%;
	position: absolute;
	top: 72%;
	left: 5%;
}

/* 茶色ボタンリンク↑↑ */

/* フェイシャルコースボタン矢印↓↓ */
.face_btn::after {
  content: ">";
  font-size:18px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
/* フェイシャルコースボタン矢印↑↑ */

/* Q&Aボタンリンク↓↓ */
.linkBox02 {
	position: relative;
	height:100px;
	margin:10px 20px;
	text-align:center;
	font-size:18px;
	font-weight:bold;
	padding:10px;
	border:1px solid #3e1e1e;  //#231816;
	color:#231816; padding:14px 0;
	line-height: 135%;
}

.linkBox02 a {
	color: #231816;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color:#dac6b6;
	text-decoration: none;
	padding:10px;
}

.linkBox02 a:hover{/* マウスオーバー時に色変更*/
	background-color: #fff;
}

/* Q&Aボタンリンク↑↑ */

/* フッターメニューボタンリンク↓↓ */
.linkBox03 {
	position: relative;
	display: block;
	font-weight:bold;
	height:70px;
	font-size:16px;
	color:#231816;
	border-top:1px solid #fff;
	padding:10px;
	text-align:center;
	line-height:150%;
}

.linkBox03 a {
	color: #231816;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color:#dac6b6;
	text-decoration: none;
	padding:10px;
}

.linkBox03 a:hover{/* マウスオーバー時に色変更*/
	background-color: #fff;
}

/* フッターメニューボタンリンク↑↑ */

/* 予約メニューボタンリンク↓↓ */
.linkBox04 {
	position: relative;
	display: block;
  //width: 70%;
  //height: 70px;
  line-height: 240%;
  background: linear-gradient(to right,#b7a020,#f0e8c7,#b7a020);
  font-size:30px;
  font-weight:bold;
  height:auto;
}

.linkBox04 a {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  line-height: 240%;
  background: linear-gradient(to right,#b7a020,#f0e8c7,#b7a020);
  font-size:30px;
  font-weight:bold;
  height:auto;

}

.linkBox04 a:hover{/* マウスオーバー時に色変更*/
	background-color: #fff;
}

/* 予約メニューボタンリンク↑↑ */

/* menuかたまり↓↓ */

#container01 {
  width: 100%;
  padding:4% 4% 0% 4%;
}

.obi {
  width: 70%;
  height: 40px;
  line-height: 200%;
  background: #231816;
  text-align: left;
  font-family: 'Noto Serif JP', serif;
  padding-left:20px;
  position: absolute;
  top: 0%;
  left: 0%;
  color: #fff;
  font-weight:bold;
  font-size:18px;
}

.box {
  text-align: center;
  position: relative;
}

/* menuかたまり↑↑ */

/* menu帯かたまり↓↓ */
.menuobi01 {
	background-color:#231816;
	padding:30px;
	text-align:center;
	color:#fff;
	font-size:24px;
	font-weight:bold;
}

.menuobi02 {
	background-color:#dac6b6;
	margin:4% 0;
	padding:5%;
	text-align:center;
	color:#fff;
	font-size:20px;
	font-weight:bold;
}

.menuobi03 {
	background-color:#dac6b6;
	padding:5% 3%;
	color:#231816;
	font-size:18px;
	font-weight:bold;
}

/* menu帯かたまり↑↑ */


.top_main01 {
	font-size: 24px;
	font-family: 'Noto Serif JP', serif;
	text-align:center;
	line-height:140%;
	padding:4%;
}

.top_main02 {
	font-size: 14px;
	line-height:130%;
	padding:4%;
}

/* topのエンビロン、GoldenAgeとはのかたまり↓↓ */

#container02 {
  width: 100%;
  padding:4%;
}

.box02 {
  text-align: center;
  position: relative;
}

.logo01 {
  width: 50%;
  //height: 50px;
  position: absolute;
  top: 5%;
  left: 10%;
  //color: #fff;
}

.text01 {
  width: 50%;
  height: 50px;
  line-height: 140%;
  //padding-left:20px;
  position: absolute;
  top: 40%;
  left: 10%;
  //color: #fff;
  font-size:15px;
}

.text02 {
  width: 50%;
  height: 50px;
  line-height: 140%;
  //padding-left:20px;
  position: absolute;
  top: 40%;
  left: 10%;
  color: #fff;
  font-size:15px;
}

.obi02 {
  width: 60%;
  height: 50px;
  line-height: 140%;
  background: #231816;
  //text-align: left;
  //padding-left:20px;
  position: absolute;
  top: 67%;
  left: 0%;
  color: #fff;
  font-weight:bold;
  font-size:18px;
  border:1px solid #fff;
}

/* topのエンビロン、GoldenAgeとはのかたまり↑↑ */

/*ACCSESSのかたまり↓↓ */

.acc01 {
	font-weight:bold;
	font-size:16px;
	color:#231816;
	border-top:1px solid #ddd;
	padding:4%;
	text-align:center;
}

.acc02 {
	font-size:13px;
	//color:#231816;
	padding-bottom:4%;
	text-align:center;
}

.acc03 {
	font-size:20px;
	//color:#231816;
	padding:4%;
	text-align:center;
	border-top:1px solid #ddd;
}

.acc04 {
	//font-size:20px;
	color:#231816;
	padding:4%;
	text-align:center;
	border-top:1px solid #ddd;
	border-bottom:1px solid #ddd;
	line-height: 160%;
	font-weight:bold;
}

.acc05 {
	font-size:12px;
	padding:4%;
	line-height: 160%;
}

/* ACCSESSのかたまり↑↑ */


/* 予約のかたまり↓↓ */

/* ---------------------------- */
/* ▼枠なしグラデーションボタン */
/* ---------------------------- */
a.rese_btn {
   display: inline-block;    /* インラインブロック化 */
   background-color: #bca73c;   /* グラデーションが表示できない際の背景色 */
   background-image: linear-gradient( to right,#b7a020,#f0e8c7,#b7a020 );
   color: #231816;             /* 文字色 */
   //border-radius: 0.75em;    /* 角丸 */
   padding: 10px;       /* 内側の余白量 */
   text-decoration: none;    /* 下線を消す */
   vertical-align: middle;   /* 縦方向の位置を中心で揃える */
}
/* ▼マウスが載ったときの装飾（※単色） */
a.rese_btn:hover {
   background-image: none;     /* グラデーションを消す */
   background-color: #bca73c;  /* 背景色 */
   color: #213816;            /* 文字色 */
}

.tel01 {
	font-size:18px;
	width: 55%;
	color: #fff;
	font-weight:bold;
	text-align: left;
	float:left;
	padding-left:20px;
}

.tel02 {
	font-size:10px;
	width: 45%;
	color: #fff;
	//font-weight:bold;
	text-align: right;
	float:left;
	padding-right:20px;
}

.tel03{
	float:left;
	padding:5px;
}

.tel04{
	float:left;
	font-size:28px;
	font-weight:bold;
	padding:10px;
}

.rese01 {
	text-align:center;
	padding:4%;
}

.rese02 {
	font-size:30px;
	color: #fff;
	font-weight:bold;
	padding:5% 5% 10% 5%;
}

.rese03 {
	text-align:center;
	padding:4%;
}

/* 予約のかたまり↑↑ */


/* フッターのかたまり↓↓ */

.foot01 {
	background-color:#231816;
	text-align:center;
	padding:4%;
}

.foot02 {
	color: #fff;
	font-size:20px;
	line-height:160%;
}

.foot03 {
	margin:4%;
}

.foot04 {
	color: #fff;
	font-size:14px;
	line-height:150%;
}

.foot05 {
	margin:5%;
}

/* フッターのかたまり↑↑ */

/* 初めての方へのかたまり↓↓ */

#container03 {
  width: 100%;
  padding-top:100px;
}

#container04 {
  width: 100%;
  padding-top:40px;
}

.bigi01{
	padding:6% 6% 0 6%;
	font-weight:bold;
	font-family: 'Noto Serif JP', serif;
}

.bigi02{
	padding:6%;
	line-height:150%;
	font-size:14px;
}

.bigi03{
	margin:0 6% 6% 6%;
	line-height:150%;
	font-size:14px;
}

/* 初めての方へのかたまり↑↑ */

/* Q&Aのかたまり↓↓ */

#container05 {
  width: 100%;
  padding-top:130px;
}

.obi03 {
  width: 70%;
  height: 40px;
  line-height: 180%;
  background: #231816;
  text-align: left;
  padding-left:20px;
  position: absolute;
  top: -10%;
  left: 0%;
  color: #fff;
  font-weight:bold;
  font-size:20px;
}

.faq01 {
  width: 100%;
  padding:4%;
}

/* Q&Aのかたまり↑↑ */

/* Q&Aカテゴリのかたまり↓↓ */

.que01 {
	color: #231816;
	border-bottom: dashed 1px #231816;
	font-size:18px;
	font-weight:bold;
	margin-right:10%;
	padding:5px 0 5px 14px;
}

.que02 {
	color: #231816;
	font-size:13px;
	//margin:4% 6%;
	padding:4% 6%;;
}

/* Q&Aカテゴリのかたまり↑↑ */

/* エンビロンとはのかたまり↑↑ */

.env01 {
	padding-bottom:10px;
	margin:4% 0 0 0;
	font-size: 20px;
	font-weight:bold;
	float:left;
	text-align:center;
}

.big01 {
	font-size: 30px;
	font-weight:bold;
	margin:7% 7% 2% 7%;
	float:left;
}

.env02 {
	padding:6% 0 0 6%;
	line-height:150%;
	font-size:14px;
	border-top: 2px solid #000;
	margin-right:6%;
}

.env03 {
	padding:4%;
	text-align:center;
}

.env04 {
	font-size:17px;
	font-weight:bold;
	text-align:center;
	padding:10px 0;
}

/* エンビロンとはのかたまり↑↑ */

/* 最初の見出し↓↓ */

.ttl_main01 {
	padding:4% 6% 0 6%;
	font-size: 19px;
	font-family: 'Noto Serif JP', serif;
	line-height:140%;
}
/* 最初の見出し↓↓ */

/* エンビロンフェイシャルメニューのかたまり↓↓ */

.face_waku{
	margin:4%;
    position: relative;
    z-index: 1; /* 必要であればリンク要素の重なりのベース順序指定 */
}

.face_waku a{ /* リンクを要素いっぱいに広げる */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent:-999px;
    z-index: 2; /* 必要であればリンク要素の重なりのベース順序指定 */
}

.face_ttl {
	font-size: 20px;
	font-family: 'Noto Serif JP', serif;
	float:left;
}

.face_ttl02 {
	font-size: 14px;
	font-family: 'Noto Serif JP', serif;
	padding:5px 20px 0 0;
	text-align:right;
}

.face_ttl03 {
	font-size: 20px;
	font-family: 'Noto Serif JP', serif;
	padding:5px 0 0 15px;
	line-height:130%;
}

.face_ttl04 {
	font-size: 14px;
	font-family: 'Noto Serif JP', serif;
	padding:5px 20px 0 15px;
}

.face_ttl_main01 {
	font-size: 25px;
	font-family: 'Noto Serif JP', serif;
	text-align:center;
	line-height:140%;
}

.face_ttl_main02 {
	margin-top:10px;
	font-size: 18px;
	font-family: 'Noto Serif JP', serif;
	text-align:center;
	line-height:130%;
}

.face_ttl_main03 {
	margin:30px 0 15px 0;
	font-size: 20px;
	font-family: 'Noto Serif JP', serif;
	text-align:center;
}

.face_time{
	margin:10px;
	padding:10px;
	border:1px solid;
	font-size: 18px;
	text-align:center;
}

.face_course {
	position: relative;
	background-color: #000;
	color:#f0e8c7;
	overflow: hidden;
	padding: .3em;
	height: 100px;
}
.face_course:before{
	background-color:#fff;
	content: '';
	display: block;
	transform: rotate(-25deg);
	position: absolute;
	bottom: -30px;
	right: -150px;
	width: 200px;
	height: 200px;
}

.course01{
	background:linear-gradient( to right,#b7a020,#f0e8c7,#b7a020 ); /* グラデーション */
  -webkit-background-clip: text; /* 文字をグラデーションで抜く */
  -webkit-text-fill-color: rgba(255,255,255,0.0);/* 文字以外を透過させる */
	font-weight:bold;
}

.face_icon01 {
	margin:10px 0 10px 10px;
	float:left;
	width:68px;
}

.face_icon02 {
	float:left;
}

.face_icon03 {
	margin:5px 0 5px 10px;
	font-size: 20px;
	line-height:120%;
	font-family: 'Noto Serif JP', serif;
}

.face_icon04 {
	margin:0 10px 10px 10px;
	font-size: 15px;
	font-family: 'Noto Serif JP', serif;
}

.face_obi {
	background-color:#dac6b6;
	margin:4% 0;
	color:#231816;
	height:5px;
}

.face_bun01 {
	padding:3% 6% 3% 6%;
	line-height:150%;
	font-size:14px;
	font-weight:bold;
}

.face_obi01 {
	background-color:#c0c0c0;
	padding:5% 3%;
	color:#231816;
	font-size:18px;
	font-weight:bold;
}

.face_bun02 {
	padding:2% 6%;
	line-height:150%;
	font-size:13px;
}

.big02 {
	font-size: 38px;
	font-weight:bold;
	padding:10px 10px 0 10px;
	float:left;
	font-family: 'Noto Serif JP', serif;
}

.price01{
	font-weight:bold;
	text-align:right;
	margin:20px 0 10px 0;
}

.price02{
	color:red;
}

.price03{
	margin:10px;
	padding:10px;
	font-weight:bold;
	text-align:center;
	background:#000;
	color:#fff;
}

.face_flow01{
	background-color:#000;
	padding:5% 3%;
	color:#fff;
	font-size:18px;
	font-weight:bold;
}

.face_flow02 {
	font-size: 14px;
	font-family: 'Noto Serif JP', serif;
	margin-left:70px;
}

.face_flow03 {
	font-size: 20px;
	font-family: 'Noto Serif JP', serif;
	float:left;
	margin-left:10px;
}

.face_flow04 {
	background-color:#f5f5f5;
	margin:0 0 10px 20px;
	padding:10px;
	color:#231816;
	font-size:13px;
	font-weight:bold;
}

/* エンビロンフェイシャルメニューのかたまり↑↑ */

/* ホワイトニングのかたまり↓↓ */

.white01 {
	margin:4%;
	text-align:center;
	font-size:18px;
	font-weight:bold;
	padding:14px;
	border:double 10px #ccc; solid;
	color:#fff;
	background-color:#231816;
	line-height: 180%;
}

/* ホワイトニングのかたまり↑↑ */


/* 自己紹介のかたまり↓↓ */

#container06 {
  width: 100%;
  padding:0 0 4% 4%;
}

.obi04 {
  width: 70%;
  height: 40px;
  line-height: 180%;
  background: #231816;
  text-align: left;
  padding-left:20px;
  position: absolute;
  top: 0%;
  right: 0%;
  color: #fff;
  font-weight:bold;
  font-size:20px;
}

.box05 {
  //text-align: center;
  position: relative;
}


#container07 {
  width: 100%;
  height: 400px;
  padding:4% 0 4% 4%;
  box-sizing: border-box;
  overflow:hidden;
}

.box10{
	position:relative;
	//padding:10px 10px 10px 100px;
	min-height:60px;
}

.img-a{
	position:absolute;
	left:10px;
	top:50%;
	margin-top:-30px;
	width:60%;
	height:50px;
	float:left;
}

.prof01{
	width: 70%;
	height: 40px;
	line-height: 180%;
	background: #231816;
	text-align: left;
	padding-left:20px;
	color: #fff;
	font-weight:bold;
	font-size:20px;
	position:absolute;
	right:0px;
	top:50%;
	margin-top:-30px;
}

.prof02{
	position:absolute;
	right:5px;
	top:50%;
	margin-top:30px;
	width:50%;
	froat:left;
}

.obi05 {
	width: 70%;
	height: 40px;
	line-height: 180%;
	background: #231816;
	text-align: left;
	padding-left:20px;
	position: absolute;
	top: -5%;
	left: 0%;
	color: #fff;
	font-weight:bold;
	font-size:20px;
}
/* 自己紹介のかたまり↑↑ */

/* メールフォームのかたまり↓↓ */

.form01 {
	padding:10%;
}

.form02 {
	font-weight: bold;
	padding-top:10px;
	font-size: 14px;
	color:#653200;
}

.hisu {
	padding: 3px 10px;
	margin-left: 5%;
    font-weight: bold;
    font-size: 12px;
    border-radius: 5px;
	width:50px;
	height:20px;
    background-color: #231816;
    color: #fff;
}


.cp_iptxt {
	position: relative;
	width: 80%;
	margin:3% 0;
}
.cp_iptxt input[type=text] {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	width: 100%;
	margin: 8px 0;
	padding: 0.3em;
	transition: 0.3s;
	border: 1px solid #1b2538;
	border-radius: 4px;
	outline: none;
}
.cp_iptxt input[type=text]:focus {
	border-color: #bca73c;/* 色変更 */
}
.cp_iptxt input[type=text] {
	padding-left: 10px;
}


.cp_iptxt02 {
	position: relative;
	width: 100%;
	margin:3% 0;
}
.cp_iptxt02 textarea[type=text] {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	width: 100%;
	margin: 8px 0;
	padding: 0.3em;
	transition: 0.3s;
	border: 1px solid #1b2538;
	border-radius: 4px;
	outline: none;
}

.cp_iptxt02 textarea[type=text]:focus {
	border-color: #bca73c;/* 色変更 */
}

.cp_iptxt02 textarea[type=text] {
	padding-left: 10px;
}

.btn_form {
    padding: 10px;
	margin: 5%;
    font-weight: bold;
    display: inline-block;
    text-decoration: none !important;
    font-size: 16px;
    border-radius: 5px;
	border:none; outline:none;
	width:150px;
	height:45px;
}

.btn_form02 {
    background-color: #231816;
    color: #fff !important;
}
.btn_form02:hover {
    background-color: #d2b48c;

/* メールフォームのかたまり↑↑ */

/* 自己紹介のかたまり↑↑ */

/*#container06 {
  width: 100%;
  height: 400px;
  padding:5%;
box-sizing: border-box;
}

.box10{
	position:relative;
	padding:10px 10px 10px 100px;
	min-height:60px;
}

.img-a{
	position:absolute;
	left:10px;
	top:50%;
	margin-top:-30px;
	width:50%;
	froat:left;
}

.prof01{
  width: 70%;
  height: 40px;
  line-height: 180%;
  background: #231816;
  text-align: left;
  padding-left:20px;
  color: #fff;
  font-weight:bold;
  font-size:20px;
	position:absolute;
	left:200px;
	top:50%;
	margin-top:-30px;
}

.prof02{
	position:absolute;
	left:240px;
	top:50%;
	margin-top:30px;
	width:55%;
	froat:left;
}


/*#container07 {
  width: 100%;
padding-top:20%;
}

.parent {
        background: lightblue;
        height: 200px;
        width: 100%;

        /* フレックスコンテナであることを指定 */
/*        display: flex;

        /* 軸の設定(既定値がrowなので省略可能) */
/*        flex-direction: row;

        /* 主軸：左右の配置 */
/*        justify-content: center;

        /* 交差軸：上下の配置 */
/*        align-items: flex-end;
      }

      .child {
        background: lightgreen;
        width: 50%;
      }

/* 自己紹介のかたまり↑↑ */
