@charset "UTF-8";
/* CSS Document */

/* 共通設定 */
/* すべての余白を解除 */
*,
::before,
::after {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

/* リストの行頭アイコンを非表示 */
ul,
ol {
	list-style: none;
}

/* リンクの文字色と下線をなくす */
a {
	color: inherit;
	text-decoration: none;
}

/* デフォルトの文字と背景色指定 */
body {
	font-family: "Hiragino Kaku Gothic ProN", "sans-serif";
	font-size: 16px;
	color: #000000;
	line-height: 2em;
	background-color: #ffffff;
}

/* img要素の最大幅 */
img {
	max-width: 100%;
}

h1 {
	font-family: "Hiragino Kaku Gothic ProN", "sans-serif";
	font-weight: bold;
	font-size: 25px;
	line-height: 50px;
}

h2 {
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 50px;
	line-height: 50px;
	text-align: center;
	padding-bottom: 5px;
}

h3 {
	font-family: "Hiragino Kaku Gothic ProN", "sans-serif";
	font-weight: bold;
	font-size: 18px;
	line-height: 22px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	padding-bottom: 100px;
}

h3::before {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	width: 120px;
	border-bottom: 3px solid;
	border-image: linear-gradient(to right, #3d7b8c 0%, #b38341 50%, #cd576d 100%);
	border-image-slice: 1;
	border-bottom-height: 120px;
	padding: 10px 0px 30px 0px;
}

h4 {
	font-family: "Hiragino Kaku Gothic ProN", "sans-serif";
	font-weight: bold;
	font-size: 20px;
	line-height: 1.5em;;
	text-align: center;
	padding-bottom: 50px;
}

h5 {
	font-family: "Hiragino Kaku Gothic ProN", "sans-serif";
	font-weight: bold;
	font-size: 18px;
	line-height: 1.5em;;
	color: #b38341;
	text-align: center;
	padding-top: 7px;
	padding-bottom: 20px;
}

/* ヘッダー */
.header-inner {
	max-width: 1366px;
	height: 80px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 50px;
	padding-right: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;		
}

.header-logo {
	display: block;
	width: 200px;
	padding-top: 15px;
}

.site-menu ul {
	display: flex;
}

.site-menu ul li {
	margin-left: 20px;
	margin-right: 20px;
}

.site-menu ul li a {
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 400;
	font-style: normal;
}

/* ページ内リンク先の位置調整 */
a.anchor{
    display: block;
    padding-top: 60px;
    margin-top: -60px;
}

/* ハンバーガーメニュー非表示 */
.drawer {
  visibility: hidden;
}

/* メニューにカーソル重ねると下線が出る */
.gnavi li a {
  position: relative;
}

.gnavi li.current a,
.gnavi li a:hover {
  color: #000000;
}

.gnavi li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: #000000;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: center top;
}

.gnavi li.current a::after,
.gnavi li a:hover::after {
  transform: scale(1, 1);
}

/* アンカー */
#company {
	display: block;
	height: 6rem;
	margin-top: -6rem;
	content: "";
}

#contact {
	display: block;
	height: 6rem;
	margin-top: -6rem;
	content: "";
}

.footer {
	color: #000000;
	background-color: #ffffff;
	padding-top: 30px;
	padding-bottom: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-logo {
	display: block;
	width: 50px;
	margin-top: 100px;
	margin-bottom: 100px;
}

.copyright {
	font-size: 14px;
	margin-bottom: 50px;
}

/* COMPANY */
.company {
	background-color: #ffffff;
	padding-top: 100px;
	padding-bottom: 100px;
	padding-left: 10%;
	padding-right: 10%;	
}

.table {
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	width : 60%;
}

.table th {
	padding-right: 10px;
	vertical-align: baseline;
	white-space: pre;
}

/* お問い合わせ */
.contact {
	background-color: #f0e6da;
	padding-top: 100px;
	padding-bottom: 100px;
	padding-left: 10%;
	padding-right: 10%;
}

/* メールフォーム */
.Form {
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
}

.Form-Item {
  padding-bottom: 20px;
  display: flex;
  align-items: center;
}

.Form-Item:nth-child(5) {
}

.Form-Item-Label {
  width: 100%;
  max-width: 200px;
  font-size: 16px;
}

.Form-Item-Label.isMsg {
  margin-bottom: auto;
}

.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #e1cdb3;
  color: #b38341;
  font-size: 12px;
}

.Form-Item-Input {
  border-radius: 6px;
  border: none;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  background: #ffffff;
  font-size: 16px;
}

.Form-Item-Textarea {
  border-radius: 6px;
  border: none;
  margin-left: 40px;
  padding-right: 1em;
  height: 300px;
  flex: 1;
  width: 100%;
  background: #ffffff;
  font-size: 16px;
}

.Form-Btn {
  border-radius: 6px;
  border: none;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  background: #b38341;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

/* プライバシーポリシーへのリンク */
.privacy-link {
	text-align: center;
	text-decoration: underline;
	padding-top: 20px;
}

/*** メインコンテンツ ***/
.txtbox_s {	
	margin-left: auto;
	margin-right: auto;
	width: 60%;
	justify-content: center;
}

.txtbox_s p {
	margin-bottom: 2em;
}

.txtbox_l {	
	margin-left: auto;
	margin-right: auto;
	justify-content: center;
}

.txtbox_l_white {	
	margin-left: auto;
	margin-right: auto;
	justify-content: center;
	color: #fff;
}

.underline {
	background-image: repeating-linear-gradient(-45deg, #ffff66 0, #ffff66 2px, transparent 2px, transparent 4px);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 100% 0.5em;
}

.h4_line {
	margin-left: auto;
	margin-right: auto;
	margin-top: 80px;
	margin-bottom: 10px;
	width: 1.5px;
	height: 50px;
	background-color: #000000;
}

.title_img {
	margin-bottom: 100px;
}


.plannumber_white {
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 70px;
	line-height: 1.5em;
	color: #fff;
	text-align: center;
}

.plannumber_beige {
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 70px;
	line-height: 1.5em;
	color: #e4d3bd;
	text-align: center;
}

.plansample {
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	width: 60%;
}

.web {
	background-color: #f0e6da;
	padding-top: 50px;
	padding-bottom: 100px;
}

.web_point {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.web_point_item {
	width: 20%;
	margin: 10px;
	padding: 20px;
	background-color: #e4d3bd;
	border-radius: 10px;
}

.web_point_icon {
	margin-right: auto;
	margin-left: auto;
	width: 70px;
}

.web_plan {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.web_plan_item {
	width: 25%;
	margin: 10px;
	padding: 20px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0px 5px #d9c1a0;
}

.web_plan_en {
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5em;
	text-align: center;	
	color: #b38341;
}

.web_plan_jp {
	font-family: "Hiragino Kaku Gothic ProN", "sans-serif";
	font-weight: bold;
	font-size: 20px;
	line-height: 1.5em;;
	text-align: center;
}

.web_plan_price {
	font-family: "Hiragino Kaku Gothic ProN", "sans-serif";
	font-weight: bold;
	font-size: 23px;
	line-height: 1.5em;;
	text-align: center;
	color: #b38341;
	padding: 10px;
}

.web_plan_heading {
	font-family: "Hiragino Kaku Gothic ProN", "sans-serif";
	font-weight: bold;
	font-size: 16px;
	line-height: 1.5em;
	text-align: left;
	padding-top: 10px;
	padding-bottom: 10px;
	border-top: 1px solid #b38341;
	border-bottom: 1px solid #b38341

}

.web_plan_list {
	padding-top: 10px;
}

.plan_support {
	width : 60%;
	margin-left: auto;
	margin-right: auto;
	background-color: #fff;
	padding-top: 20px;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 20px;
	border-radius: 10px;
	text-align: center;
	color: #b38341;
	box-shadow: 0 0px 5px #d9c1a0;
}

.plan_support_item {
	background-color: #e4d3bd;
	padding: 0.7em;
	border-radius: 100vh;
	text-align: center;
	color: #000;
	font-weight: bold;
	margin: 10px;
}

.lp {
	background-color: #fff;
	padding-top: 50px;
	padding-bottom: 100px;
}

.txtbox_2 {
	width : 60%;
	margin-left: auto;
	margin-right: auto;
	justify-content: center;
	background-color: #fff;
	padding: 0.5em 1em;
    border: double 5px #b38341;
}

.sns {
	background-color: #f0e6da;
	padding-top: 50px;
	padding-bottom: 100px;
}

.sns_plan {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.sns_plan_item {
	width: 25%;
	margin: 10px;
	padding: 20px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0px 5px #d9c1a0;
}

.sns_plansample {
	width: 100%;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 10px;	
}

.sns_plan_jp {
	font-family: "Hiragino Kaku Gothic ProN", "sans-serif";
	font-weight: bold;
	font-size: 20px;
	line-height: 1.5em;;
	text-align: center;
}

.pickup {
	background: repeating-linear-gradient(135deg, #f0e6da, #f0e6da 5px, #f7f1ea 5px, #f7f1ea 10px);
	padding-top: 70px;
	padding-bottom: 100px;
}

.pickup_title {
	font-family: "brandon-grotesque", sans-serif;
	font-weight: 700;
	font-size: 40px;
	line-height: 1.5em;
	color: #b38341;
	text-align: left;
	padding-left: 20%;
	padding-right: 20%;
}

hr {
	border-width: 1px 0px 0px 0px;
	border-style: solid;
	border-color: #b38341;
	margin-left: 20%;
	margin-right: 20%;
}


.pickup_heading {
	font-family: "Hiragino Kaku Gothic ProN", "sans-serif";
	font-weight: bold;
	font-size: 20px;
	line-height: 1.5em;;
	text-align: center;
}

.pickup_img {
	width: 50%;
	margin-left: auto;
	margin-right: auto;
}

.btn_item {
	text-align: center;
}

.btn {
	display: inline-block;
	position: relative;
	background: linear-gradient(to right, #3d7b8c 0%, #b38341 50%, #cd576d 100%);
	padding: .7rem 3rem;
	border-radius: 100vh;
	color: #FFF;
	text-decoration: none;
	text-align: center;
	font-family: "Hiragino Kaku Gothic ProN", "sans-serif";
	font-size: 16px;
	transition: .5s;
}

.btn:before {
  content: "";
  position: absolute;
  top: 45%;
  right: 15px;
  width: 10px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);	
}

.btn:after {
  content: "";
  position: absolute;
  top: 55%;
  right: 15px;
  width: 10px;
  height: 2px;
  background: #fff;
  transform: rotate(-45deg);
}

.btn:hover {
  background: linear-gradient(to right, #296d80 0%, #b38341 50%, #c43953 100%);
}

.tool {
	background-color: #fff;
	padding-top: 50px;
	padding-bottom: 100px;
}

.about_bottom {
	background-image:url("https://designstudio-r.com/images/bottom_comment_backr");
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position:center;
	padding-top: 75px;
	padding-bottom: 100px;
}

.bottom_column_decoration {
	margin-left: auto;
	margin-right: auto;
	width: 10px;
}

.bottom_column_btn_item {
	text-align: center;
}

.bottom_column_btn {
	display: inline-block;
	position: relative;
	padding: .7rem 3rem;
	border: solid 1px #fff;
	border-radius: 100vh;
	text-decoration: none;
	color: #FFF;
	font-family: "Hiragino Kaku Gothic ProN", "sans-serif";
	font-size: 16px;
}

.bottom_column_btn:before {
  content: "";
  position: absolute;
  top: 45%;
  right: 15px;
  width: 10px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);	
}

.bottom_column_btn:after {
  content: "";
  position: absolute;
  top: 55%;
  right: 15px;
  width: 10px;
  height: 2px;
  background: #fff;
  transform: rotate(-45deg);
}

.bottom_column_heading {
	font-family: "Hiragino Kaku Gothic ProN", "sans-serif";
	font-weight: bold;
	font-size: 18px;
	line-height: 1.5em;
	color: #fff;
	text-align: center;
	padding-top: 7px;
	padding-bottom: 20px;
}

.salon_bottom {
	background-image:url("https://designstudio-r.com/images/bottom_salon_back.jpg");
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position:center;
	padding-top: 75px;
	padding-bottom: 100px;
}

.media_bottom {
	background-image:url("https://designstudio-r.com/images/bottom_media_back.jpg");
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position:center;
	padding-top: 75px;
	padding-bottom: 100px;
}

.media_box {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.media_box_item {
	width: 25%;
	margin: 10px;
	padding: 20px;
	border: solid 1px #fff;
	border-radius: 10px;
}

.media_img {
	width: 100%;
	text-align: center;
}

.media_name {
	text-align: center;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	padding-bottom: 20px;
}


@media(max-width: 800px){
	
.pc {
	display: none !important;
}
  
.sp {
	display: block !important;
}
	
body {
	font-size: 14px;
}
	
h1 {
	font-size: 20px;
	line-height: 40px;
}
	
h2 {
	font-size: 40px;
	line-height: 44px;
}

h3 {
	font-size: 16px;
	line-height: 20px;
	padding-bottom: 70px;

}

h3::before {
	width: 100px;
	padding-top: 10px;
	padding-bottom: 30px;
}
	
h4 {
	font-size: 18px;
	line-height: 1.5em;;
}

h5 {
	font-size: 16px;
	line-height: 1.5em;;
}		

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: #ffffff;
	height: 60px;
	z-index: 10;
}
	
.header-inner {
	padding-left: 20px;
	padding-right: 20px;
	height: 100%;
	position: relative;
}
	
.header-logo {
	width: 130px;
	padding-top: 10px;
}
	
.footer-logo {
	margin-top: 60px;
}

.copyright {
	margin-top: 50px;
}
		
.table {
	width: 100%;
}

.site-menu {
	display: none;
}
	
	
/* ハンバーガーメニュー */
/* ハンバーガーメニューの表示 */
.drawer {
  visibility: visible;
}
	
/* チェックボックス非表示 */
.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: #000000;
  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: 60px;
	left: 100%;/* メニューを画面の外に飛ばす */
	z-index: 99;
	background: rgba(255,255,255,0.8);
	font-family: "brandon-grotesque", sans-serif;
	font-size: 18px;
	font-weight: 400;
	font-style: normal;
	line-height: 50px;
	padding: 10%
}

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

/* メールフォーム */
  .Form {
    margin-top: 5px;
  }

  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }

  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }

  .Form-Item-Label.isMsg {
    margin-top: 0;
  }

  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }

  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }

  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }

  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
	
/*** メインコンテンツ ***/
.txtbox_s {
	width: 90%;
}
	
.title_img {
	padding-top: 60px;
	margin-bottom: 50px;
}
	
.plansample {
	width: 90%;
}
	
.web_point_item {
	width: 43%;
}	

.web_plan_item {
	width: 90%;
}

.txtbox_2 {
	width : 90%;
}
	
.komidashi {
	width: 7px;
}

.about_bottom_ill {
	width : 45%;
}
	
.plan_support {
	width : 90%;
}

.sns_plan_item {
	width: 90%;
}
	
.sns_plan_jp {
	font-size: 18px;
}

.pickup_title {
	font-size: 35px;
	padding-left: 5%;
	padding-right: 5%;
}
	
hr {
	margin-left: auto;
	margin-right: auto;
	width: 90%;
}
	
.pickup_heading {
	font-size: 18px;
}

.pickup_img {
	width: 90%;
}

.pickup_box_img {
	width: 100%;
}

.media_bottom {
	background-image:url("https://designstudio-r.com/images/bottom_media_back_sp.jpg");
}

	
.media_box_item {
	width: 90%;
}

.media_name {
	font-size: 16px;
}
	
	
}