@charset "utf-8";
/*##########################################################*/
/*  Main Style:                															*/
/*    Ver:1.00/001           																*/
/*    Date:2025/05/25        																*/
/*##########################################################*/
/*###################### Variable Define #######################*/
/*################### For All Pages ###################*/
/* 初期ロード定義 */
:root {
  --COM-LOAD-FO-TIME:2.0s;  /* 初期ロード画面フェードアウト時間 */
  --COM-LOAD-BAR-TIME:15.0s;  /* 初期ロード画面進捗バーアニメーション時間 */
}
/* ヘッダー高定義 */
:root {
  --COM-HEADER-HEIGHT:259px;  /* ヘッダー高 */
  --COM-HEADER-HEIGHT-PC2:calc(var(--COM-HEADER-HEIGHT) - var(--COM-HEADER-TEXT-HEIGHT));  /* 1120px以下 */
  --COM-HEADER-HEIGHT-SP:calc(var(--COM-HEADER-HEIGHT-PC2) - var(--COM-HEADER-PTB-DIFF));  /* 480px以下 */
  --COM-HEADER-PTB-DIFF:40px;  /* ヘッダー上下余白PC-SP差分 ((COM-HEADER-PTB - COM-HEADER-PTB-SP) * 2) */
  --COM-HEADER-PTB-DIFF-SAFARI:calc(var(--COM-HEADER-PTB-DIFF) - 1px);  /* ヘッダー上下余白PC-SP差分 SAFARI用 */
  --COM-HEADER-TEXT-HEIGHT:87px;  /* ヘッダー内テキスト部分高 */
}

/* 余白定義 */
:root {
  --COM-HEADER-PTB:60px;  /* ヘッダー上下余白 */
  --COM-HEADER-PTB-SP:40px;  /* ヘッダー上下余白SP */
  --COM-FOOTER-MT:160px;  /* フッター上余白 */
  --COM-FOOTER-MT-SP:60px;  /* フッター上余白SP */
  --COM-FOOTER-MB:60px;  /* フッター下余白 */
  --COM-FOOTER-MB-SP:20px;  /* フッター下余白SP */
}

/*################### For Under Pages ###################*/
/* 余白定義 */
:root {
 --UP-MAIN-MT: 150px;      /* メインコンテンツ上部余白 */
 --UP-SEC02-MT: 150px;     /* セクション02レベル上部余白 */
 --UP-SEC03-MT: 120px;     /* セクション03レベル上部余白 */
 --UP-SEC02-H2-MB: 40px;   /* セクション02レベルH2下部余白 */
 --UP-SEC03-H3-MB: 30px;   /* セクション02レベルH3下部余白 */
  /* スマホ用 */
 --UP-MAIN-MT-SP: 75px;      /* メインコンテンツ上部余白SP */
 --UP-SEC02-MT-SP: 75px;     /* セクション02レベル上部余白SP */
 --UP-SEC03-MT-SP: 60px;     /* セクション03レベル上部余白SP */
 --UP-SEC02-H2-MB-SP: 20px;  /* セクション02レベルH2下部余白SP */
 --UP-SEC03-H3-MB-SP: 20px;  /* セクション02レベルH3下部余白SP */
}

/*###################### Main PC sec #######################*/
/*################### Base div ###################*/
/* コンテンツ基本 */
html {
  font-size: 13px;
  scroll-padding-top: 90px;
}
body {
	background-color: #FFFFFF;
	font-family: "Noto Serif JP","ヒラギノ角ゴ Pro W3",Hiragino Kaku Gothic Pro,"メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	font-size: 13px;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
	line-height:1;
	color:#000;
}
body ul,
body dl {
	font-size:0px;
}
body p,
body small,
body ul li,
body dl dt,
body dl dd {
	font-size:13px;
	line-height:1.6;
  letter-spacing: .06em;
}

/* ドロワーメニュー表示時に背景となるメインコンテンツを固定 */
/* https://lopan.jp/css-animation/drawer/ */
#container.hidden {
  position: absolute;
  inset: 0;
  overflow: auto;
}

/* リンク関連 */
body a {
	color:#000000;
}
body a:hover {
	opacity:0.55;
  transition:0.3s ease-in-out;
}
body a:hover img {
	opacity:0.55;
  transition:0.3s ease-in-out;
}
img {
	max-width:100%;
	height:auto;
}

/* コンテンツ部分枠 */
body .common-wrap {
	width:1080px;
	margin-left: auto;
	margin-right: auto;
}

/*################### Common Layout div ###################*/
/* ローディング画面 */
#loader {
  position:fixed;
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 30000;
}
/* 読み込み完了後に「loaded」を付与する */
#loader.loaded {
  animation: fadeOut var(--COM-LOAD-FO-TIME) forwards;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    z-index: -1;
  }
}
#loader #loader-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
}
#loader #loader-content .loader-text {
  margin-top:5px;
  font-size:12px;
  font-weight: bold;
}
#loader #loader-content .progress-bar {
	width:100%;
	height:5px;
  margin-top: 7px;
	background:#f5f5f5;	/*バーの背景色*/
	position:relative;
	overflow: hidden;
}
#loader #loader-content .progress-bar .bar-line {
  height:100%;
	background:#e1e1e1;	/*バーカラー*/
	position:absolute;
	animation: progress var(--COM-LOAD-BAR-TIME) normal;	/*アニメーションスピード*/
	animation-fill-mode: forwards;
}
@keyframes progress {
	0% {width: 0}
	100% {width: 100%}
}

/* ヘッダー */
header {
  position: fixed;
  width:100%;
  padding-top: var(--COM-HEADER-PTB);
  padding-bottom: var(--COM-HEADER-PTB);
  transition: all 0.5s ease;
  z-index: 10000;
}
header #header-content {
  position: relative;
}
header #header-content .common-wrap {
  position: relative;
}
header #header-content #header-logo {
  width:162px;
}
header #header-content #header-text .header-lead {
  margin-top:5px;
  font-weight: bold;
}
header #header-content #header-text .header-explanation {
  margin-top:10px;
  font-size: 10px;
}
/* PCメニュー */
header #pc-menu {
  position: absolute;
  top:0;
  right:0;
  width: calc(100% - 162px - 30px);
  max-width:400px;
}
header #pc-menu .pc-menu-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header #pc-menu .pc-menu-list li {
  font-size:16px;
}
header #pc-menu .pc-menu-list li a {
  font-weight: bold;
}
header #pc-menu .pc-menu-list li .font-alphabet {
  font-size:18px;
}

/* SPメニュー */
header #sp-menu {
  display: none;
}
/* SPメニューボタン */
header #sp-menu #sp-menu-button {
  position: absolute;
  top:0;
  right:20px;
  display: flex;
  justify-content: center;
  align-items: center; 
  width: 58px;
  height: 58px;
  border:solid 1px #000;
  border-radius:50%;
  z-index: 12000;
}
header #sp-menu #menu-buton {
  position: relative;;
  width: 38px;
  height: 28px;
  padding: 0;
  background: none;
  border: none;
  text-align: center;
  letter-spacing: 0.1em;
  cursor: pointer;
  outline: none;  
}
header #sp-menu #menu-buton .drawer_bar {
  display: block;
  width: 38px;
  height: 3px;
  transition: all 0.2s;
  transform-origin: 0% 0%;
  transform: translateY(-50%);
  position: absolute;
  left: 0;
  background-color:#000;
}
header #sp-menu #menu-buton .drawer_bar1 {
  top: 0;
}
header #sp-menu #menu-buton .drawer_bar2 {
  top: 50%;
}
header #sp-menu #menu-buton .drawer_bar3 {
  top: 100%;
}
header #sp-menu #menu-buton.active .drawer_bar {
  width: 39.6px;
  left: 5px;
  background-color:#000;
}
header #sp-menu #menu-buton.active .drawer_bar1 {
  transform: rotate(0.7853981633974483rad) translateY(-50%);
  top: 0px
}
header #sp-menu #menu-buton.active .drawer_bar2 {
  opacity: 0;
}
header #sp-menu #menu-buton.active .drawer_bar3 {
  transform: rotate(-0.7853981633974483rad) translateY(-50%);
  top: calc(100% - 0px);
}

/* worksページ対応メニュー */
body:has(#page-workstop) #sp-menu-button {
  border-color:#fff;
}
body:has(#page-workstop) #sp-menu #menu-buton .drawer_bar {
  background-color:#fff;
}

/* SPドロワーメニュー */
header #sp-header-menu {  
  position: fixed;
  top:0px;
  right: 0px;
	width: 100%;
  height: 100%;
  transition: all 0.5s;
  transform: translate(100%);
  background-color: rgba(255,255,255,0.90);
  background-repeat: no-repeat;
  background-position:right top;
  background-size:contain;
  z-index: 11000;
  overflow: scroll;
}
header #sp-header-menu.open {
  transform: translate(0);
  scrollbar-width: none;    /* スクロールバー対応（Firefox） */
}
header #sp-header-menu .common-wrap {
  margin-left: auto;
  margin-right: auto;
}
header #sp-header-menu #menu-content {
  margin-top:60px;
  margin-left:50%;
  padding-bottom: 60px;
}
header #sp-header-menu #menu-content .sp-menu-list li {
  margin-top:40px;
}
header #sp-header-menu #menu-content .sp-menu-list li:first-child {
  margin-top:0;
}
header #sp-header-menu #menu-content .sp-menu-list li a {
  font-size:30px;
}
header #sp-header-menu #menu-content .sp-menu-list li.contact {
  border:solid 1px #000;
  background-color: #e4e4e4;
  text-align: center;
  line-height: 1.4;
}
header #sp-header-menu #menu-content .sp-menu-list li.instagram {
  line-height: 1.0;
}
header #sp-header-menu #menu-content .info-data {
  margin-top:50px;
}
header #sp-header-menu #menu-content .info-data .name {
  margin-top:10px;
}
header #sp-header-menu #menu-content .info-data .address,
header #sp-header-menu #menu-content .info-data .tel {
  margin-top:5px;
}

header #sp-header-menu.open::-webkit-scrollbar {    /* スクロールバー対応（Chrome,Safari,Edge）*/
  display:none;
}

/* メイン */
main {
  padding-top: var(--COM-HEADER-HEIGHT);
}

/* フッター */
footer {
  margin-top: var(--COM-FOOTER-MT);
  margin-bottom: var(--COM-FOOTER-MB);
}
footer #footer-content .common-wrap {
  display:flex;
  align-items:flex-end;
}
footer #footer-content #footer-text {
  margin-left:10px;
}
footer #footer-content #footer-text .footer-lead {
  margin-bottom: -2px;
  font-weight:bold;
}
footer #footer-content #footer-insta {
  margin-left: auto;
}

/* コンテンツ初期フェード */
.fade {
  transition: all 1500ms;
  opacity: 0;
  visibility: hidden;
  transform: translate(0px, 200px);
}
.fade-in {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
}
.fade-end {
  transition:none ;
}

/*###################### Main PC sec #######################*/
/*################### Components div ###################*/
/* マージン */
.MT05 {
	margin-top:5px !important;
}
.MT10 {
	margin-top:10px !important;
}
.MT15 {
	margin-top:15px !important;
}
.MT20 {
	margin-top:20px !important;
}
.MT30 {
	margin-top:30px !important;
}
.MT40 {
	margin-top:40px !important;
}
.MT50 {
	margin-top:50px !important;
}
.MT60 {
	margin-top:60px !important;
}
.MT80 {
	margin-top:80px !important;
}
.MT100 {
	margin-top:100px !important;
}
.ML10 {
	margin-left:10px !important;
}
.ML15 {
	margin-left:15px !important;
}
.ML20 {
	margin-left:20px !important;
}
.MB00 {
	margin-bottom:0px !important;
}
.MB20 {
	margin-bottom:20px !important;
}
.MB40 {
	margin-bottom:40px !important;
}
.PB00 {
	padding-bottom:0px !important;
}

/* 文字 */
.font-alphabet {
  font-family: "Cormorant Garamond", "ヒラギノ明朝 ProN","Hiragino Mincho ProN","Hiragino Mincho Pro","ヒラギノ明朝 Pro","ＭＳ Ｐ明朝","MS PMincho", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
}

strong {
	font-weight:bold !important;
}
.text-bold {
	font-weight:bold !important;
}
.text-underline {
	text-decoration: underline;
}

/* 文字位置 */
.text-AC {
	text-align:center;
}
.text-AL {
	text-align:left;
}
.text-AR {
	text-align:right;
}
.text-IDT01 {
	text-indent: -1em;
	margin-left: 1em;
}
.text-IDT02 {
	text-indent: 1em;
}
.text-IDT03 {
	text-indent: -2.6em;
	margin-left: 3em;
}
.text-color00 {
  color: #000 !important;
}
.text-color01 {
  color: #fb3b03 !important;
}

/* 文字縦位置 */
.FV01 {
  vertical-align: 2px;
}
.FV02 {
  vertical-align: 3px;
}

/* 文字サイズ */
.FS10 {
	font-size:10px;
}
.FS14 {
	font-size:14px;
}
.FS16 {
	font-size:16px;
}
.FS18 {
	font-size:18px;
}
.FS26 {
	font-size:26px;
}
.FS40 {
	font-size:40px;
}

/* サイズ毎表示 */
.PC-Disp {
	display: block;
}
.PCTB-Disp {
	display: block;
}
.PCTB-Disp2 {
	display: block;
}
.TB-Disp {
	display: none;
}
.TBSP-Disp {
	display: none;
}
.SP-Disp {
	display: none;
}
.SP-Disp2 {
display: none;
}
.TBSP-iDisp {
	display: none !important;
}

/*###################### Middle3 PC sec  #######################*/
@media (max-width:1120px){
	/*################### Common Layout div ###################*/
  /* コンテンツ部分枠 */
  body .common-wrap {
    width:calc(100% - 40px);
  }
  
  /* ヘッダー */
  header #header-content #header-text {
    display: none;
  }
  /* メイン */
  main {
    padding-top: var(--COM-HEADER-HEIGHT-PC2);
  }
}

/*###################### Tablet sec #######################*/
@media (max-width:960px){
  /*################### Components div ###################*/
	/* サイズ毎表示 */
	.PC-Disp {
		display: none;
	}
	.PCTB-Disp {
		display: block;
	}
	.PCTB-Disp2 {
		display: block;
	}
	.TB-Disp {
		display: block;
	}
	.TBSP-Disp {
		display: block;
	}
	.SP-Disp {
		display: none;
	}
	.SP-Disp2 {
		display: none;
	}
	.TBSP-iDisp {
		display:inline-block !important;
	}
}

/*###################### S-Phone sec #######################*/
@media (max-width : 768px){
  /* ヘッダー */
  header #pc-menu {
    display: none;
  }
  /* メニューボタン */
  header #sp-menu {
    display: block;
  }
}

/*###################### S-Phone sec #######################*/
@media (max-width : 600px){
  /*################### Components div ###################*/
	/* サイズ毎表示 */
	.PC-Disp {
		display: none;
	}
	.PCTB-Disp {
		display: none;
	}
	.PCTB-Disp2 {
		display: block;
	}
	.TB-Disp {
		display: none;
	}
	.TBSP-Disp {
		display: block;
	}
	.SP-Disp {
		display: block;
	}
	.SP-Disp2 {
		display: none;
	}
	.TBSP-iDisp {
		display:inline-block !important;
  }

  /* SPドロワーメニュー */
  header #sp-header-menu #menu-content {
    margin-left: 0;
    text-align: center;
  }
  /* フッター */
  footer #footer-content .common-wrap {
    display:block;
    text-align: center;
  }
  footer #footer-content #footer-text {
    margin-left:0;
    margin-top:20px;
  }
  footer #footer-content #footer-insta {
    margin-top:30px;
  }
}

/*###################### S-Phone sec #######################*/
@media (max-width : 480px) {
	/*################### Common Layout div ###################*/
/* ヘッダー */
  header {
    padding-top: var(--COM-HEADER-PTB-SP);
    padding-bottom: var(--COM-HEADER-PTB-SP);
  }
  /* メイン */
  main {
    padding-top: var(--COM-HEADER-HEIGHT-SP);
  }

  /* フッター */
  footer {
    margin-top: var(--COM-FOOTER-MT-SP);
    margin-bottom: var(--COM-FOOTER-MB-SP);
  }
  
	/* サイズ毎表示 */
	.PCTB-Disp2 {
		display: none;
	}
 	.SP-Disp2 {
		display: block;
	}
 }
