@charset "utf-8";

.clearfix:after {
	content				: "" ;
	display				: block ;
	clear				: both ;
}

.clearfix	{
	display				: block ;
}

/* Hides from IE-mac \*/
* html .clearfix { height : 1% ; }
/* End hide from IE-mac */

html	{
	background		: none ;
	position		: relative ;
	width			: 100% ;
	height			: 100% ;
	margin: 0;
	padding: 0;
}

body	{
	width	: 100% ;
	padding	: 0 ;
	margin	: 0 ;
	font-family: 'Noto Sans JP', sans-serif;
	font-size	: 16px ;
	font-weight	: 400 ;
	line-height	: 1.5;
	color	: #4b4b4b;
	-webkit-text-size-adjust: 100%;
	position: relative ;
	overflow-x: hidden;
	background-color: #fff;
}

a img	{
	border			: none ;
}

a:hover img{
}

a	{
	color: #000;
	text-decoration	: none ;
}

a:hover{
	color: #000;
	text-decoration	: none ;
}

form{
	margin			: 0 ;
	padding			: 0 ;
}



/*************************TOP*************************/
.main_bg{
	width: 100%;
	height: 800px;
	background-image: url("../img/main.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}


/* アニメーション設定 */
.arrowWrap {
  height: 140px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0; /* 既存のmarginをリセット */
}

.arrowInner p {
  font-size: 12px;
  text-align: center;
  color: #fff;
}

.arrow {
  width: 1px;
  height: 70px;
  margin: 20px auto 0;
  background-color: #eee;
  position: relative;
  overflow: hidden;
}

.arrow::before {
  content: '';
  width: 1px;
  height: 100px;
  margin: 20px auto 0;
  background-color: #000;
  position: absolute;
  top: -150px;
  left: 0;
  -webkit-animation: arrow 2.5s ease 0s infinite normal;
  animation: arrow 2.5s ease 0s infinite normal;
}

@keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
}

.mainbox{
	width: 1200px;
	margin: 0 auto;
}

.logo{
	width: 270px;
	height: 100px;
	padding: 30px 0 5px;
	margin: 0 auto;
}
.logo img{
	width: 270px;
	height: 100px;
}


.maintxt01{
	width: 100%;
	font-size: 36px;
	font-weight: 700;
	padding: 0;
	margin: 0 0 30px;
	line-height: 1.0;
	color: #fff;
	text-align: center;
	padding: 20px 0 0;
}
.maintxt01 span{
	font-size: 16px;
	font-weight: 400;
}

.maintxt02{
	width: 100%;
	font-size: 60px;
	font-weight: 400;
	line-height: 1.0;
	margin: 0 0 20px;
	color: #fff;
	text-align: center;
}

.maintxt03{
	width: 100%;
	font-size: 60px;
	font-weight: 700;
	margin: 0;
	color: #fff;
	text-align: center;
}

/*ボタン*/
.btn-consult {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 360px;
  height: 64px;
  margin: 0 auto;
  background-color: #ff7a00;
  border-radius: 10px;
  text-decoration: none;
}

.btn-consult__text {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.btn-consult__arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: auto;
}

.btn-consult:hover {
  opacity: 0.85;
}

/****Gナビ****/
.globalNav {
  position: fixed;
  top: 60%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 100;
}

.globalNav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.globalNav ul li a {
  font-family: "Zilla Slab", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-shadow:
    0 1px 4px rgba(0, 0, 0, 0.8),
    0 0 8px rgba(0, 0, 0, 0.8);
  transition: opacity 0.2s;
}

.globalNav ul li a:hover {
  opacity: 0.7;
}



/****about****/
.aboutSection {
  position: relative;
  padding: 80px 0 80px;
  overflow: hidden;
}

/* ①青背景：左からスライド */
.aboutBg {
  position: absolute;
  top: 0;
  left: 0;
  /* 左余白 + テキストエリア + gap + 画像500pxの半分 */
  /* (100vw - 1200px) / 2 + 1200px - 500px + 250px = (100vw - 1200px)/2 + 950px */
  width: calc((100vw - 1200px) / 2 + 950px);
  height: 100%;
  background-color: #39231c;
  transform: translateX(-100%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.aboutSection.is-active .aboutBg {
  transform: translateX(0);
}

/* コンテンツ共通 */
.aboutInner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 1200px;
  margin: 0 auto;
}

/* ②テキスト：ふわっと */
.aboutText {
  flex: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.7s, transform 0.7s ease 0.7s;
}

.aboutSection.is-active .aboutText {
  opacity: 1;
  transform: translateY(0);
}

.aboutLabel {
  font-family: "Zilla Slab", serif;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.aboutLabel span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 21px;
  color: #fff;
  margin-top: 4px;
  font-weight: 400;
}

.aboutHeading {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin: 16px 0 20px;
  line-height: 1.5;
}

.aboutBody {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* ③画像：右からふわっと */
.aboutImage {
  flex-shrink: 0;
  width: 500px;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease 1.2s, transform 0.7s ease 1.2s;
}

.aboutSection.is-active .aboutImage {
  opacity: 1;
  transform: translateX(0);
}

.aboutImage img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.35);
}




/* セクション共通ヘッダー */
.sectionHeader {
  text-align: center;
  margin-bottom: 50px;
}

.sectionTitle {
  font-family: "Zilla Slab", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 60px;
  color: #39231c;
  margin: 0;
  line-height: 1;
}

.sectionSub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 21px;
  color: #39231c;
  margin-top: 8px;
}




/****company****/
.companySection {
  padding: 150px 0;
  background: #fff;
}

.companyInner {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.companyTable {
  border-collapse: collapse;
  width: 600px;
  margin-bottom: 50px;
}

.companyTable tr {
  border-bottom: 1px solid #39231c;
}

.companyTable tr:first-child {
  border-top: 1px solid #39231c;
}

.companyTable th {
  font-size: 16px;
  font-weight: 400;
  color: #39231c;
  padding: 16px 40px 16px 0;
  white-space: nowrap;
  vertical-align: top;
  width: 120px;
}

.companyTable td {
  font-size: 16px;
  font-weight: 400;
  color: #39231c;
  padding: 16px 0;
}

.companyLogo img {
  width: 390px;
  height: 140px;
  object-fit: contain;
  margin: 50px 0 80px;
}




/****contact****/
.contactSection {
  background: #39231c;
  padding: 80px 0;
}

.contactInner {
  width: 600px;
  margin: 0 auto;
}

.contactSection .sectionHeader {
  margin-bottom: 30px;
}

.contactLead {
  font-size: 16px;
  color: #fff;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 50px;
}

/* フォーム */
.contactForm {
  width: 600px;
  margin: 0 auto;
}

.formRow {
  margin-bottom: 24px;
}

.formRow label {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 6px;
}

.formRow input[type="text"],
.formRow input[type="email"],
.formRow input[type="tel"],
.formRow textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  border: none;
  background: #fff;
  color: #333;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}

.formRow textarea {
  resize: vertical;
}

/* チェックボックス */
.checkboxGroup {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.checkLabel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  margin-bottom: 0;
}

.checkLabel input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* プライバシーポリシー */
.privacyText {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* 送信ボタン */
.formSubmit {
  text-align: center;
}

.submitBtn {
 display: inline-block;
  padding: 14px 160px;
  background: #ff7a00;
  color: #fff;
  border: 2px solid #ff7a00;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  margin: 40px 0;
}

.submitBtn:hover {
  background: #fff;
  color: #ff7a00;
}

.contactTitle {
  color: #fff;
}

.contactSub {
  color: #fff;
}



.copy{
	width: 100%;
	background-color: #fff;
	padding: 8px 0;
	text-align: center;
	font-size: 14px;
	color: #39231c;
}

.add{
	font-size: 28px;
	text-align: center;
	font-weight: 500;
	color: #fff;
	line-height: 2.0;
	margin-top: 50px;
}
.add02{
	font-size: 16px;
	text-align: center;
	font-weight: 400;
	color: #fff;
	line-height: 2.0;
}

@media screen and (max-width: 768px) {
/* 768pxまでの幅の場合に適応される */
.main_bg{
	width: 100%;
	height: 100vh;
	background-image: url("../img/main.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}


/* アニメーション設定 */
.arrowWrap {
  height: 200px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0; /* 既存のmarginをリセット */
}

.arrowInner p {
  font-size: 12px;
  text-align: center;
  color: #fff;
}

.arrow {
  width: 1px;
  height: 90px;
  margin: 20px auto 0;
  background-color: #eee;
  position: relative;
  overflow: hidden;
}

.arrow::before {
  content: '';
  width: 1px;
  height: 120px;
  margin: 20px auto 0;
  background-color: #000;
  position: absolute;
  top: -150px;
  left: 0;
  -webkit-animation: arrow 2.5s ease 0s infinite normal;
  animation: arrow 2.5s ease 0s infinite normal;
}

@keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
}

.mainbox{
	width: 90%;
	margin: 0 auto;
	padding: 150px 0 0;
}

.logo{
	width: 195px;
	height: 70px;
	padding: 30px 0 50px;
}
.logo img{
	width: 195px;
	height: 70px;
}


.maintxt01{
	width: 100%;
	font-size: 24px;
	font-weight: 700;
	padding: 0;
	margin: 0 0 20px;
	line-height: 1.2;
	color: #fff;
}
.maintxt01 span{
	font-size: 14px;
	font-weight: 400;
}

.maintxt02{
	width: 100%;
	font-size: 20px;
	font-weight: 400;
	margin: 0 0 20px;
	color: #fff;
}

.maintxt03{
	width: 100%;
	font-size: 14px;
	font-weight: 400;
	margin: 0 0 20px;
	color: #fff;
}

/****Gナビ****/
.globalNav {
	display: none !important;
}

.globalNav ul {
	display: none !important;
}

.globalNav ul li a {
	display: none !important;
}

.globalNav ul li a:hover {
	display: none !important;
}


/****about****/
.aboutSection {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

/* ①青背景：左からスライド */
.aboutBg {
  position: absolute;
  top: 0;
  left: 0;
  /* 左余白 + テキストエリア + gap + 画像500pxの半分 */
  /* (100vw - 1200px) / 2 + 1200px - 500px + 250px = (100vw - 1200px)/2 + 950px */
  width: 90%;
  height: 70%;
  background-color: #39231c;
  transform: translateX(-100%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.aboutSection.is-active .aboutBg {
  transform: translateX(0);
}

/* コンテンツ共通 */
  .aboutInner {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
    width: 90%;
  }

/* ②テキスト：ふわっと */
.aboutText {
  flex: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.7s, transform 0.7s ease 0.7s;
  width: 100%;
}

.aboutSection.is-active .aboutText {
  opacity: 1;
  transform: translateY(0);
}

.aboutLabel {
  font-family: "Zilla Slab", serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.aboutLabel span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #fff;
  margin-top: 4px;
  font-weight: 400;
}

.aboutHeading {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin: 16px 0 20px;
  line-height: 1.5;
}

.aboutBody {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 16px;
  width: 75%;
}

/* ③画像：右からふわっと */
.aboutImage {
    width: 100%;
  }

.aboutSection.is-active .aboutImage {
  opacity: 1;
  transform: translateX(0);
}

.aboutImage img {
    width: 100%;
  }


/* セクション共通ヘッダー */
.sectionHeader {
  text-align: center;
  margin-bottom: 50px;
}

.sectionTitle {
  font-family: "Zilla Slab", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #39231c;
  margin: 0;
  line-height: 1;
}

.sectionSub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #39231c;
  margin-top: 8px;
}


/****company****/
.companySection {
  padding: 40px 0;
  background: #fff;
}

.companyInner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.companyTable {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 30px;
}

.companyTable tr {
  border-bottom: 1px solid #39231c;
}

.companyTable tr:first-child {
  border-top: 1px solid #39231c;
}

.companyTable th {
  font-size: 16px;
  font-weight: 400;
  color: #39231c;
  padding: 16px 40px 16px 0;
  white-space: nowrap;
  vertical-align: top;
  width: 120px;
}

.companyTable td {
  font-size: 16px;
  font-weight: 400;
  color: #39231c;
  padding: 16px 0;
}

.companyLogo img {
  width: 195px;
  height: 70px;
  object-fit: contain;
  margin: 30px 0 40px;
}




/****contact****/
.contactSection {
  background: #39231c;
  padding: 40px 0;
}

.contactInner {
  width: 90%;
  margin: 0 auto;
}

.contactSection .sectionHeader {
  margin-bottom: 30px;
}

.contactLead {
  font-size: 16px;
  color: #fff;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 50px;
}

/* フォーム */
.contactForm {
  width: 100%;
  margin: 0 auto;
}

.formRow {
  margin-bottom: 24px;
}

.formRow label {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
  width: 100%;
}

.formRow input[type="text"],
.formRow input[type="email"],
.formRow input[type="tel"],
.formRow textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  border: none;
  background: #fff;
  color: #333;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}

.formRow textarea {
  resize: vertical;
}

/* チェックボックス */
.checkboxGroup {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.checkLabel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  margin-bottom: 0;
}

.checkLabel input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* プライバシーポリシー */
.privacyText {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* 送信ボタン */
.formSubmit {
  text-align: center;
}

.submitBtn {
 display: inline-block;
  padding: 14px 80px;
  background: #ff7a00;
  color: #fff;
  border: 2px solid #ff7a00;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  margin: 40px 0;
}

.submitBtn:hover {
  background: #fff;
  color: #333333;
}

.contactTitle {
  color: #fff;
}

.contactSub {
  color: #fff;
}



.copy{
	width: 100%;
	background-color: #fff;
	padding: 8px 0;
	text-align: center;
	font-size: 14px;
	color: #39231c;
}


}



/****ABOUT OUR CRAFT****/
.otaruSection {
  padding: 0;
  margin: 0 0 150px;
}
.otaruSection02 {
  padding: 0;
  margin: 0;
}

.otaru_back{
	width: 100%;
	padding: 50px 0;
	background-image: url("../img/back.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.otaruInner {
  width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.otaruText {
	width: 680px;
  font-size: 16px;
  line-height: 1.8;
  color: #39231c;
  text-align: left;
  margin-bottom: 40px;
}

/*追加*/
.bgcolor{
	width: 680px;
	padding: 40px 20px;
	background-color: #fff;
	margin: 0 auto;
}

.midashi{
	text-align: center;
	font-size: 28px;
	font-weight: 700;
	color: #39231c;
	margin: 0 0 25px;
}

.midashi02{
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	color: #39231c;
	margin: 0 0 25px;
}


/* ギャラリー */
.otaruGallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 20px;
  width: 1200px;
  margin: 40px auto 0;
}

.galleryItem {
  width: 270px;
  margin: 0;
}

.galleryItem a {
  display: block;
  width: 270px;
  height: 270px;
  overflow: hidden;
}

.galleryItem a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.galleryItem a:hover img {
  transform: scale(1.05);
}

figcaption {
  font-size: 16px;
  color: #333;
  margin-top: 8px;
  text-align: left;
}

/* ライトボックス */
.lbOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.lbOverlay.is-open {
  display: flex;
}

.lbContent {
  text-align: center;
  animation: lbFadeUp 0.35s ease;
}

@keyframes lbFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lbOverlay img {
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  display: block;
}

.lbCaption {
  font-size: 16px;
  color: #fff;
  margin-top: 12px;
}

.lbClose {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 48px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

.lbPrev,
.lbNext {
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 20px;
  user-select: none;
  transition: opacity 0.2s;
}

.lbPrev:hover,
.lbNext:hover {
  opacity: 0.6;
}

.mapimg{
	width: 480px;
	height: 504px;
	margin: 50px auto 80px;
}
.mapimg img{
	width: 480px;
	height: 504px;
}





/* SP */
@media (max-width: 768px) {
.otaruSection {
  padding: 0 0 80px;
  margin:0;
}
  .otaruInner {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

.otaruText {
	width: 100%;
  font-size: 16px;
  line-height: 1.8;
  color: #39231c;
  text-align: left;
  margin-bottom: 40px;
}


/*追加*/
.bgcolor{
	width: calc( 100% - 40px );
	padding: 40px 20px;
	background-color: #fff;
	margin: 0 auto;
}

.midashi{
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	color: #39231c;
	margin: 0 0 25px;
}

.midashi02{
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	color: #39231c;
	margin: 0 0 25px;
}



  .otaruGallery {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    gap: 10px;
    justify-content: center;
  }

  .galleryItem {
    width: 45%;
  }

  .galleryItem a {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .lbPrev,
  .lbNext {
    font-size: 28px;
    padding: 10px;
  }

.mapimg{
	width: 90%;
	height: auto;
	margin: 50px auto 40px;
}
.mapimg img{
	width: 100%;
	height: auto;
}


}

@media screen and (min-width: 769px) {
/*　画面サイズが769pxからはここを読み込む　*/

.sp_head{
	display: none !important;
}
.sp_loge{
	display: none;
}
.sp_loge02{
	display: none;
}

.spbr{
	display: none;
}

.sp_loungeInstaWrap {
	display: none;
}

/* 透明オーバーレイ */
.sp_instaOverlay {
	display: none;
}

.sp_loungeInstaWrap iframe {
	display: none;
}

}

