@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;
	margin-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: 20px;
	text-align: center;
	margin-bottom: 50px;
}

h5 {
	font-family: "Hiragino Kaku Gothic ProN", "sans-serif";
	font-weight: bold;
	font-size: 18px;
	line-height: 23px;
	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;
}

/* メインコンテンツ */
.title_img {
	margin-bottom: 100px;
}

.privacy-txt {
	padding-left: 10%;
	padding-right: 10%;	
	text-align: justify;
}

/* 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-top: 20px;
  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;
}


@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: 50px;	
}

h3::before {
	width: 100px;
	padding: 10px 0px 25px 0px;
}
	
h4 {
	font-size: 18px;
	line-height: 18px;
}

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

.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: 50px;
  }

  .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;
  }
	
/* メインコンテンツ */
.title_img {
	padding-top: 60px;
	margin-bottom: 50px;
}
	
.privacy-txt {
	padding-left: 10%;
	padding-right: 10%;
}
	
}