@charset "utf-8";

/* PC・SP：home.css
 * **************************************************
 * Content
 * **************************************************
 */

/*
 * ======================================
 * PC
 * ======================================
 */

 *,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}

@media (max-width: 1024px) {
	.inner {
        width: 100%;
        margin: 0 auto; 
        padding: 0 24px ;
    }
}

@media print, screen and (min-width: 641px) {
    body {
        position: relative;
        min-width: unset !important;
    }
}

 /* animation
------------------------------------------------------------------ */

#mainvisual, #animated-text, #header, #inquiry_form {
  opacity: 0;
	transition: opacity 1s ease-in-out;
}

@keyframes reveal {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes slideUp {
	from {
	  opacity: 0;
	  transform: translateY(50px); 
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
}
  
.scroll-effect {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-effect.visible {
	opacity: 1;
	transform: translateY(0);
	animation: slideUp 1s ease-out forwards;
}

/* Content
------------------------------------------------------------------ */

#content {
	margin: 0;
	padding: 0;
	font-family: 'Zen Maru Gothic', 'Noto Sans JP', 'Meiryo', sans-serif;
	transition: width 0.3s ease;
}

#content .button {
	display: flex;             
	justify-content: center;  
    align-items: center; 
	margin-top: 2%;
}

#content .button a {
	display: flex; 
	justify-content: center; 
	align-items: center; 
	text-align: center;
	width: 478px;
	gap: 8px; 
	background-color: #E8CA41;
	color: black; 
	padding: 8px; 
	font-size: 1.6rem;
	letter-spacing: 0.2em; 
	line-height: 1.6;
	text-decoration: none; 
	border-radius: 50px; 
	position: relative;
	transition: background-color 0.3s ease;
}

@media (max-width: 1024px) {
	#content .button a {
        width: 100%;
    }
}

#content .button a::after {
	content: "";
	position: absolute;
	right: 28px;
	width: 0;
	height: 0;
	border-left: 10px solid #000; 
	border-top: 6px solid transparent; 
	border-bottom: 6px solid transparent; 
 }

#content .button a:hover {
	background-color: rgba(232, 202, 65, 0.7);
}


/* header */
#header {
	border-top: none !important;
    left: 0;
    width: 100%;
	height: 124px;
	transition: opacity 0.5s ease, transform 0.5s ease;
}

#header .inner {
	width: 94%;
	display: flex;
  justify-content: space-between;
	align-items: center;
}

@media (max-width: 1024px) {
	#header .inner {
        width: 100%;
    }
}

#header .logo {
	position: relative;
	top: 28px;
	left: 0;
	text-align: left;
	width: 36%;
}

#header .logo .image {
	height: 42px;
	width: auto;
	transition: transform 0.3s ease; 
}

#header .logo p {
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 3%;
	opacity: 1;
	transition: opacity 0.3s ease; 
}

#header .inquiry {
	position: relative;
	top: 28px;
	width: 18.4%;
}

#header .inquiry a {
  display: flex; 
  justify-content: center;
  align-items: center; 
  gap: 8px; 
  background-color: #E8CA41; 
  color: black; 
  padding: 14px 28px; 
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 0.2em; 
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', 'Meiryo', sans-serif;
  text-decoration: none; 
  border-radius: 50px; 
  transition: transform 0.3s ease;
}

#header .inquiry a:hover {
  background-color: rgba(232, 202, 65, 0.7); 
}

#header .inquiry img {
	height: 16px;
	width: auto;
}


/* mainvisual */
#mainvisual {
  position: relative;
  width: 100%;
  height: 240px;
  background-image: url('../images/bg.jpg');
  background-size: cover; 
  background-position: 0% 95%; 
  background-repeat: no-repeat;
}

#mainvisual::before {
	content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

#mainvisual h1 {
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
	letter-spacing: 0.5em;
  color: white;
  text-align: center;
	line-height: 1.8;
	white-space: nowrap;
	word-wrap: break-word;
	font-weight: normal;
	z-index: 2; 
}

/* concept */
#concept {
	text-align: center;
	margin-top: 8%;
}

#concept h2 {
	font-size: 2.68rem;
	margin: 0;
	line-height: 1.6;
	letter-spacing: 0.2em; 
	margin-bottom: 1.2%;
}

#concept h2 br {
	display: none;
}

#concept p {
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 0.1em; 
}

/* detail */
#detail {
	margin: 0 auto;
    padding: 0;
    position: relative;
    max-width: 1000px;
	width: 100%;
	margin-top: 8%;
}

#detail .box {
    display: flex;
	align-items: stretch;
    flex-direction: row;
	justify-content: space-between;
	height: 360px; 
	gap: 32px;
}

#detail .box:nth-of-type(2) {
	flex-direction: row-reverse;
	margin-top: 8%; 
  }
  
  #detail .box:nth-of-type(3) {
	margin-top: 8%; 
  }

#detail .box .box_body {
	width: 100%;
	padding: 0;
}

#detail .box h3 {
	font-size: 2.68rem;
	line-height: 1.6;
	letter-spacing: 0.2em; 
	text-transform: uppercase;
}

#detail .box h3 br {
	display: none;
}

#detail .box .box_txt {
	font-size: 1.6rem;
    line-height: 2;
	letter-spacing: 0.2em; 
	margin-top: 4.4%;
}

#detail .box .box_txt span{
	background-color: #E8CA41;
	padding: 0 2px;
}

#detail .box_image {
	width: 100%;
	padding: 0;
	overflow: hidden;      
  position: relative;
}

#detail .box_image img {
  height: 360px;              
  width: 100%;                
  object-fit: cover;          
  border-radius: 20px;
  position: absolute;        
  transform: translate(-50%, -50%); 
}

/* about */
#about {
	text-align: center;
	margin: 0 auto;
	padding: 0;
	position: relative;
	max-width: 1000px;
	width: 100%;
	margin-top: 8%;
	margin-bottom: 8%;
}

#about h2 {
	font-size: 2.68rem;
	margin: 0;
	line-height: 1.6;
	letter-spacing: 0.2em; 
	margin-bottom: 1.2%;
}

#about h2 br {
	display: none;
}

#about p {
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 0.1em; 
}

#about img {
	margin: 0 auto;
	width: 100%;
	max-width: 720px;
	margin-top: 3%;
}

#about .source {
	font-size: 1.2rem;
	letter-spacing: 0.2em;
    line-height: 2 ;
}

	/* contentsBtm */

#contentBtm {
border-top: 0px ; 
margin: 0em 0 0 0; 
padding: 1.7em 0 2.7em;
}

#contentBtm .wp_social_bookmarking_light {
	display: none;
}

/* footer */
#footer .inner {
	max-width: 1000px;
	width: 100%;
}

#footer>p {
border-bottom: 1px solid #9E9E9F;
color: #DBDCDC;
font-size: 1.2rem;
padding: 1.8em 0;
text-align: center;
}

#footer .inner>p {
display: none;
} 

/* inquiry_form */

#inquiry_form {
display: none;
}



/*
 * ======================================
 * SP
 * ======================================
 */

@media screen and (max-width: 1000px) {

	/* Content
------------------------------------------------------------------ */
#content .button a {
	font-size: 1.4rem;
	letter-spacing: 0.12em; 
}

/* header */
	#header {
		height: auto;
		padding: 12px 0px;
	}
	
	#header .logo {
		top: 0;
		left: 0;
		text-align: center;
		margin: 0 auto;
		width: 100%;
	}
	
	#header .logo .image {
		height: 24px;
	}
	
	#header .logo p {
		display: block;
		font-size: 7px;
		font-weight: normal;
		margin-bottom: 2%;
	}
	
	#header .inquiry {
		display: none;
	}

/* mainvisual */
#mainvisual {
    height: 120px;
}

#mainvisual h1 {
    font-size: 16px;
}

/* concept */
#concept {
	margin-top: 12%;
}

#concept h2 {
	font-size: 1.675rem;
	letter-spacing: 0.12em; 
	margin-bottom: 1.2%;
}

#concept h2 br {
	display: block;
}

#concept p {
	font-size: 1.4rem;
}

#concept p br {
	display: none;
}

/* detail */
#detail {
	margin-top: 10%;
	text-align: center;
}

#detail .box {
	flex-direction: column-reverse;
	height: auto; 
	gap: 0px;
}

#detail .box:nth-of-type(2) {
	flex-direction: column-reverse;
	margin-top: 11%; 
  }
  
  #detail .box:nth-of-type(3) {
	margin-top: 10%; 
  }

#detail .box h3 {
	font-size: 1.675rem;
	letter-spacing: 0.12em; 
	margin-top: 9%;
	margin-bottom: 1.2%;
}

#detail .box h3 br {
	display: block;
}

#detail .box .box_txt {
	font-size: 1.4rem;
	margin-top: 3%;
}

#detail .box_image {
	margin: 3% 0 5% calc(50% - 50vw);
    width: 100vw;
}

#detail .box_image img {
  height: 100%;              
  width: 100%;                        
  border-radius: 0px;
  border: none;
  position: static; 
  transform: none; 
}

/* about */
#about {
	margin-top: 13%;
	margin-bottom: 13%;
	border-top: 1px solid rgba(0, 0, 0, 0.25); 
	padding-top: 12%;
}

#about h2 {
	font-size: 1.675rem;
	letter-spacing: 0.12em; 
	margin-bottom: 1.2%;
}

#about h2 br {
	display: block;
}

#about p {
	font-size: 1.4rem;
}

#about p br {
	display: none;
}

#about img {
	margin-top: 6%;
}

#about .source {
	font-size: 1rem;
	letter-spacing: 0.12em;
}

 /* contentsBtm */

#contentBtm {
padding: 0.7em 0 2.7em;
}

#contentBtm .btmLink {
margin: 0;
}

/* footer */

#footer>p {
	padding: 24px;
	}

/* inquiry_form */
#pageTop {
	display: none !important; 
}

#inquiry_form {
	display: block;
	position: fixed;
	bottom: 24px;
    width: 100%;
	z-index: 9999;
	padding: 0 24px
}

#inquiry_form a {
  display: flex; 
  justify-content: center;
  align-items: center; 
  gap: 8px; 
  background-color: #E8CA41; 
  color: black; 
  padding: 14px 28px; 
  font-size: 1.4rem;
  letter-spacing: 0.12em; 
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', 'Meiryo', sans-serif;
  text-decoration: none; 
  border-radius: 50px; 
  transition: transform 0.3s ease;
}

#inquiry_form img {
	height: 14px;
	width: auto;
	position: relative;
	top: 1px; 
}


}