@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
	height:100%;
    font-size: 100%;
}
body{
    font-family: 'Playfair Display', serif;
    line-height: 1.8;
    color: #000000;
    font-style: normal;
    font-weight: 600;
    font-size:16px;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}

.wrapper {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 4%;
}



/*ページガイド*/
.menu-content p {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    margin: 10px 0  0px;
}
.menu-content a:hover {
    color: #0bd;
}



/* 大きな背景画像 */
.big-bg {
    background-size:100%;
    background-position: center top;
    background-repeat: repeat;
}



/* HEADER
------------------------------- */
.page-header {
    display: flex;
    justify-content:space-between;
}
.logo {
    width: 240px;
    margin-top: 40px;
}
.logo2 {
    width: 100px;
    margin-top: 15px;
}

#home {
    min-height: 100vh;
}
#home {
    background-image:url(images/hiroko_back.png)
}




*, *:before, *:after {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
ol, ul {
	list-style: none;
}
a {
	text-decoration: none;
	color: inherit;
}

.cp_cont {
	height: 65vh;
}
/* menu */
.cp_offcm03 {
	position: relative;
	z-index: 5;
	top: 0;
	left: 0;
	overflow: auto;
	width: 100%;
	height: auto;
	padding-top: 0;
	-webkit-transition: transform 0.3s ease-in;
	        transition: transform 0.3s ease-in;
	text-align: center;
	color: #000000;
	opacity: 0.5;
}
.cp_offcm03 nav{
	height:50%;
}
.cp_offcm03 ul {
	height: 100%;
	text-align: right;
	color: #000000;
}
.cp_offcm03 li {
	display: inline-block;
	margin-right: 1px;
	border: none;
}
.cp_offcm03 a {
	display: block;
	padding: 12px 45px;
	-webkit-transition: background-color .3s ease-in;
	        transition: background-color .3s ease-in;
}
.cp_offcm03 a:hover {
	color:#696969;
}
/* menu toggle */
#cp_toggle03 {
	display: none;
}
#cp_toggle03:checked ~ .cp_offcm03 {
	-webkit-transform: translateX(0);
					transform: translateX(0);
}
#cp_toggle03:checked ~ .cp_container {
	-webkit-transform: translateX(0);
					transform: translateX(0);
}

.cp_content {
    margin: 0 auto;
	padding-top:50px;
	padding-left:150px;
	font-size: 3rem;
    font-family: 'Source Serif Pro', serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #999999;
}

h1{
line-height:1.1;
}
p{
	font-size: 1.7rem;
}

.class1 {
  text-align: center;
  padding-top:50px;
}
 
.cp_mobilebar {
	display: none;
}
/* content */
.cp_container {
	position: relative;
	top: 0;
	padding: 35px auto;
	-webkit-transition: transform .3s ease-in;
	        transition: transform .3s ease-in;
}


	
@media (max-width: 767px) {
	/* menu */
	.cp_offcm03 {
		position: fixed;
		left: -250px;
		overflow-y: hidden;
		width: 250px;
		height: 100%;
		padding-top: 60px;
		color: #ffffff;
		background-color: #f5f5f5;
	}
	.cp_offcm03 nav {
		background: #29B6F6;
	}
	.cp_offcm03 li {
		display: block;
		margin-right: 0;
		border-bottom: 1px solid #ffffff;
	}
	.cp_offcm03 ul {
	text-align: center;
}
	.cp_offcm03 a {
		padding: 15px;
	}
	/* menu toggle */
	.cp_mobilebar {
		display: block;
		z-index: 10;
		position: fixed;
		top: 0;
		left: 0;
		padding: 0 25px;
		width: 100%;
		height: 60px;
		background-color: #ffe4e1;  /*メニューバーの色*/
	}
	.cp_menuicon {
		display: block;
		position: relative;
		width: 25px;
		height: 100%;
		cursor: pointer;
		-webkit-transition: transform .3s ease-in;
		        transition: transform .3s ease-in;
	}
	.cp_menuicon > span {
		display: block;
		position: absolute;
		top: 55%;
		margin-top: -0.3em;
		width: 100%;
		height: 0.2em;
		border-radius: 1px;
		background-color:  #ff1493; /*アイコンバーの色*/
		-webkit-transition: transform .3s ease;
		        transition: transform .3s ease;
	}
	.cp_menuicon > span:before,
	.cp_menuicon > span:after {
		content: '';
		position: absolute;
		width: 100%;
		height: 100%;
		border-radius: 1px;
		background-color: #ff1493;/*アイコンバーの色*/
		-webkit-transition: transform .3s ease-in;
		        transition: transform .3s ease-in;
	}
	.cp_menuicon > span:before {
		-webkit-transform: translateY(-0.6em);
		        transform: translateY(-0.6em);
	}
	.cp_menuicon > span:after {
		-webkit-transform: translateY(0.6em);
		        transform: translateY(0.6em);
	}
	#cp_toggle03:checked + .cp_mobilebar .cp_menuicon {
		-webkit-transform: rotate(45deg);
		        transform: rotate(45deg);
	}
	#cp_toggle03:checked + .cp_mobilebar span:before,
	#cp_toggle03:checked + .cp_mobilebar span:after {
		-webkit-transform: rotate(90deg);
		        transform: rotate(90deg);
	}
	#cp_toggle03:checked ~ .cp_offcm03 {
		-webkit-transform: translateX(100%);
		        transform: translateX(100%);
	}
	#cp_toggle03:checked ~ .cp_container {
		-webkit-transform: translateX(250px);
		        transform: translateX(250px);
	}
	/* content */
	.cp_container {
	padding: 0px;
	}
	.cp_content {
	  padding-top:100px;
	  padding-left:0px;
	  text-align: center;
	  font-size: 2.5rem;
}
}



/*ラベルの画像*/
.drawer{
 display: flex;
 flex-direction: row;
 align-items: flex-end;
 justify-content: center;
 position: relative;
 height: 0.5px;
}
#hedpic{
  max-width:20%;
  display:block;
}








input[type="checkbox"]{
  display:none;
}




 /* profile
------------------------------- */  
.pro_content {
	margin: 0 auto;
	text-align:center;
	font-size: 3rem;
    font-family: 'Source Serif Pro', serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #999999;
}
h1{
line-height:1.1;
}
p{
	font-size: 1.3rem;
}

.pro_content img{
  padding-top:20px;
  height:70px;
}
.div-pre2 {
    white-space: pre;
    font-size:16px;
    display: flex;
    font-family: 'Source Serif Pro', serif;
    font-weight: normal;
    color: #330000;
}
.div-pre2 img {
  padding-top:20px;
  padding-left:10px;
  height:275px;
}

/*ツイッター*/
.timeline {
  max-width: 100%;
  padding: 200px;
}




 /* works
------------------------------- */  
.works_content {
	margin: 0 auto;
	padding-top:50px;
	padding-left:150px;
	font-size: 3rem;
    font-family: 'Source Serif Pro', serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #999999;
}
.grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    margin-top: 6%;
    margin-bottom: 50px;
    text-align: center;
    font-weight: bolder;
}
.item p {
    font-family:"fot-seurat-pron", sans-serif;
    font-size: 1rem;
    margin: 10px 0  0px;
}
.name {
    font-weight: normal;
    margin: 1px 0  0px;
}

.div-pre {
    white-space: normal;
    font-size:16px;
    margin: 0 auto;
    font-family: 'Source Serif Pro', serif;
    font-weight: normal;
    color: #330000;
    padding-left:100px;
}
h3{
line-height:1.1;
}
p{
	font-size: 1.7rem;
}




/* salon
------------------------------- */  
.salon_content {
	margin: 0 auto;
	padding-top:50px;
	padding-left:150px;
	font-size: 3rem;
    font-family: 'Source Serif Pro', serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #999999;
}

#location {
    padding: 4% 0;
}
#location .wrapper{
    display: flex;
    justify-content: space-between;
}
.location-info{
    text-align: left;
}
.location-info p{
    font-size: 1rem;
    font-family: 'Source Serif Pro', serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #330000;
    padding-left:100px;
    padding-bottom:10px;
}
.location-info h1{
	font-size: 2.1rem;
    font-family: 'Source Serif Pro', serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #330000;
    padding-left:100px;
    padding-bottom:20px;
}

.location-info a{
    font-size: 1.2rem;
    font-family: 'Source Serif Pro', serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #330000;
    text-decoration:underline;
}
.location-info a:hover {
	color:#696969;
}
.location-map{
	width:50%;
}

.div-pre4 {
    font-size:17px;
    font-family: 'Source Serif Pro', serif;
    font-weight: normal;
    color: #220000;
}
.div-pre4 img {
  width: 150px;
  text-align: center;
}


/* フッター
------------------------------- */
footer {
    text-align: center;
    padding: 26px 0;
}
footer p {
    font-size: 0.875rem;
    font-family: 'Source Serif Pro', serif;
    text-transform: none;
    font-weight: normal;
    color: #999999;
}








/* モバイル版
------------------------------- */
@media screen and (max-width: 768px) {
.big-bg {
    background-size: cover;
    background-position: relative;
    background-repeat: no-repeat;
}
.div-pre {
    font-size:13px;
    white-space: normal ;
}
.works_content {
      padding-top:100px;
	  padding-left:0px;
	  text-align: center;
	  font-size: 2.5rem;
}
h1{
line-height:1.1;
}
p{
	font-size: 1.7rem;
}

.div-pre2 {
    display: block;
    font-size:12.25px;
    white-space: normal ;
}
.div-pre2 img {
   height:290px;
   padding-left:28%;
}

.pro_content {
    padding-top:20px;
	  padding-left:0px;
	  text-align: center;
	  font-size: 2.5rem;
}
.pro_content img{
  padding-top:20px;
  height:65px;
}
.salon_content {
    padding-top:100px;
	  padding-left:0px;
	  text-align: center;
	  font-size: 2.5rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 6%;
    margin-bottom: 50px;
    text-align: center;
    font-weight: bolder;
}

#location .wrapper{
   flex-direction:column;
}

.location-info{
	width:100%;
}

.location-info p{
    font-size: 0.8rem;
    padding-left:0px;
}
.location-info h1{
	font-size: 1.8rem;
    font-family: 'Source Serif Pro', serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #999999;
    padding-left:0px;
}


.location-info a{
     padding-left:0px;
}

/* i frame */
i frame{
    width:50%;
}

/*ツイッター*/
.timeline {
  max-width: 100%;
  padding: 55px;
}

.div-pre4 {
    font-size:15px;
    font-family: 'Source Serif Pro', serif;
    font-weight: normal;
    color: #220000;
}
.div-pre4 img {
  width: 150px;
  text-align: center;
}


/* フッター
------------------------------- */
footer {
    text-align: center;
    padding: 10px 0;
}
footer p {
    font-size: 0.9rem;
    font-family: 'Source Serif Pro', serif;
    text-transform: none;
    font-weight: normal;
    color: #999999;
}
}













