/*
Theme Name: テーマ名
Theme URL: 
Description: お客様専用テーマです。
Author: 制作者
*/


/* header */

.header  {
	width: 100%;
	height: 80px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}
body:not(.home) .header {
    background-color: #0D6142;
}

.header .header_space {
	width: 100%;
	height: 100%;
	padding: 0 100px;
}

.header .header_space .container {
	width: 100%;
}

.header .header_space .container .logo {
	width: 100px;
	display: block;
}

.header .header_space .container .logo img {
	width: 100%;
	height: auto;
}

.header .header_space .container nav {
	
}

.header .header_space .container nav ul {
	gap: 0 60px;
}

.header .header_space .container nav ul li a {
	font-size: 16px;
	color: #ffffff;
	font-weight: 500;
	letter-spacing: 1.2px;
}

.header .header_space .container nav ul li a.menu_contact {
	/*background: linear-gradient(180deg, rgba(6, 125, 81, 1) 0%, rgba(4, 83, 54, 1) 100%);*/
	background-color: #E9C271;
	padding: 5px 20px;
	border-radius: 50px;
}

a.underline {
  display: inline-block;
  position: relative;
  text-decoration: none;
	padding: 5px 0;
}

a.underline::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

a.underline:hover::after {
  transform: scaleX(1);
}
.button-border{
  border: 1px solid #fff;
  padding: 20px 40px;
  position: relative;
  display: inline-block;
  text-decoration: none;
 
}


/* sidebar */

.sidebar {

	width :100px;
	position: fixed;
	left: 0;
	top: 100px;
	height: calc(100vh - 100px);
	z-index: 99;
	display: flex;
	align-items: flex-end;
}

.sidebar .scroll_button {

	width: 100%;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #3d3d3d;
	color: #fff;
	position: relative;
	transition: .6s all;
	opacity: 1;
}
.sidebar .scroll_button.hide {
	opacity: 0;
	z-index: -1;
}

.sidebar .scroll_button:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 35px;
	background: #fff;
	animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

.sidebar .scroll_button:hover {
	opacity: .9;
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}





/* main */

.main_box {
	width: calc(100% );
	background-color: #edeef1;
}

/* index */

.firstview {
	width: 100%;
	height: calc(100vh );
	background-image: url(./assets/img/fv-img.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 0 70px;
}

.firstview h2 {
	font-size: 104px;
	color: #2CB885;
	text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}

.firstview .subtitle {
	font-size: 33px;
	color: #fff;
	margin-top: 30px;
	font-weight: bold;
	text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}

.firstview .text {
	font-size: 18px;
	color: #fff;
	margin-top: 20px;
	font-weight: bold;
	text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}

.about {
	width: 100%;
	padding: 100px 0 180px;
}

.about .title_box {
	width: 100%;
}

.about .title_box .left {
	gap: 10px 0;
	position: relative;
	z-index: 100;
}

.about .title_box .left h2 {
	font-size: 100px;
	background-image: linear-gradient(to bottom, #067D51, #045336);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	letter-spacing: 5px;
}


.about .title_box .left h2 span {
	font-size: 100px;
	background-clip: text;
	-webkit-background-clip: text;
	color: #1c1c1c;
	letter-spacing: 5px;
}

.about .title_box .left p {
	font-size: 18px;
	font-weight: 400;
	margin-top: -20px;
}

.about .title_box .right_text {
	font-size: 210px;
	color: #F0F7F4;
	line-height: 1;
    margin-top: 30px;
	position: absolute;
	top: -30px;
}

.about .img_flex {
	width: 100%;
	gap: 0 5.5%;
}

.about .img_flex .img_box {
	width: 46.5%;
}

.about .img_flex .img_box img {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
	padding-left: 100px;
}

.about .content_box {

	padding-top: 55px;
	padding-right: 105px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	position: relative;
}

.about .content_box p {
	font-size: 18px;
	font-weight: 400;
	line-height: 38px;
	margin-bottom: 50px;
	z-index: 1;
	letter-spacing: 2px;
}

.about .content_box a {
	font-size: 17px;
	font-weight: 500;
	display: flex;
	align-items: center;
	background: linear-gradient(180deg,rgba(6, 125, 81, 1) 0%, rgba(4, 83, 54, 1) 100%);
	border-radius: 50px;
	padding: 25px 30px 25px 80px;
	color: #fff;
	gap: 0 50px;
	margin-top: 80px;
}

.about .left_img {
	width: 88%;
	height: 530px;
	border-radius: 0 60px 60px 0;
	object-fit: cover;
	object-position: center;
	margin-top: 100px;
}

.green {
	width: 100%;
	
}

.green .section_space {
	width: 100%;
	background-color: #50826A;
	border-radius: 0 120px 0 0px;
	padding: 120px 0 190px 175px;
	background: linear-gradient(180deg, rgba(6, 125, 81, 1) 0%, rgba(4, 83, 54, 1) 100%);
	
}

.green .section_space .container {
	width: 100%;
}

/* --- レイアウトブロック基本設定 --- */
.content-block {
    color: #FFFFFF; /* 親要素で指定されていれば不要 */
    margin-bottom: 4rem; /* ブロック間の余白 */
	width: 80%;
}
.content-block:last-child {
    margin-bottom: 0;
}

.heading-wrapper {
    display: flex;
    align-items: center;
	flex-direction: column;
	margin-bottom: 20px;
}


.heading-wrapper h2 {
    
　font-size: 125px;
}
.heading-wrapper h2 {
    
　font-size: 125px;
}

.heading-wrapper h2.heading-mission {
	text-align: right;
	padding-left: 0px;
	padding-right: 50px;
	lighting-color: 5px;
	display: flex;
	justify-content: center;
	font-size: 125px;
	letter-spacing: 5px;
}
.heading-wrapper p {
	
	font-size: 27px;
}


/* VISION: 見出しの右側に線 */
.heading-vision::after {
    margin-left: 1.5rem;
	margin-right: 140px;
}
.heading-vision::before {
    display: none !important;
}

/* --- 2. コンテンツセクション (Flex) --- */
.section-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
	border-top: solid 2px;
    padding: 60px 0;
	
}

/* ★★★★★ 修正ポイント ★★★★★ */
/* VISION ブロックのみ、カラムの順序をCSSで反転させる */
.vision-block .section-content {
    flex-direction: row-reverse;
}
/* ★★★★★★★★★★★★★★★★★ */


.image-wrapper {
	flex: 0.7;
}
.text-wrapper {
    flex: 1;
}

.titel{
	display: flex;
	align-items: center;
    justify-content: center;
	
}

/* --- 画像エリアと背景テキスト --- */
.image-wrapper {
    border-radius: 8px;
}

.placeholder-image {
    background-color: #C0C0C0;
    border-radius: 10px;
	aspect-ratio: 1.5/1;
    position: relative;
    z-index: 2; /* 背景テキストより手前に */
}

.section-bg-text {
    position: absolute;
   top: 16.5em;
    z-index: 1;
    writing-mode: sideways-lr;
	font-size: 12vw;
    color: #7FAC97;
    user-select: none;
    white-space: nowrap;
    left: -3rem; 
}

/* VISIONの背景テキストは右側に配置 */
.vision-block .section-bg-text {
}


/* --- 説明テキストエリア --- */

.text-description{
	display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-top: 30px;
}

.titel h2{
	font-size: 115px;
	letter-spacing: 2px;
	background-image: linear-gradient(to bottom, #FFE7B5, #FFCD64);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;

}

.text-description p{
	
	font-size: 25px;
	letter-spacing: 3px;
	
}
/* テキスト前の■（四角） */
.text-description p:not(.subtitle) {
    padding-left: 1.7rem;
}

.text-description p:not(.subtitle)::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: #D4B255;
    position: absolute;
    left: 0;
    top: 0.6em;
}

.text-description .subtitle {
   
    padding-left: 0;
    margin-top: 1rem;
}

.green .section_space .container .philosophy {
	width: 100%;
	background-color: #fff;
	border-radius: 120px 0 0 120px;
	padding: 110px 120px;
	margin-top: 100px;
	position: relative;
}

.green .section_space .container .philosophy .backtext {
	position: absolute;
    left: 120px;
    top: 40px;
    font-size: 14vw;
    color: #E0F0EA;
    width: 100%;
    overflow-wrap: anywhere;
    z-index: 0;
    line-height: 1.1;
	letter-spacing: 3px;
}

.green .section_space .container .philosophy .title_box {
	padding-left: 40px;
}

.green .section_space .container .philosophy .title_box h2 {
	font-size: 110px;
	background-image: linear-gradient(to right, #067D51, #045336);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	letter-spacing: 5px;
	z-index: 1;
    position: relative;
}


.green .section_space .container .philosophy .title_box h2 span{
	font-size: 110px;
	background-clip: text;
	-webkit-background-clip: text;
	color: #1c1c1c;
	letter-spacing: 5px;
	z-index: 1;
    position: relative;
}

.green .section_space .container .philosophy .title_box p {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	z-index: 1;
    position: relative;
}

.green .section_space .container .philosophy .flex_box {
	width: 100%;
	margin-top: 55px;
	z-index: 1;
    position: relative;
}

.green .section_space .container .philosophy .flex_box .text_box {
	width: 50%;
	padding-right: 0;
	padding-left: 80px;
}

.green .section_space .container .philosophy .flex_box .text_box .heading {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    line-height: 1;
}

.green .section_space .container .philosophy .flex_box .text_box .heading::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-color: #E8AC2F;
    border-radius: 50%;
    flex-shrink: 0;
	margin-top: 5px;
}

.green .section_space .container .philosophy .flex_box .text_box .heading::after {
    content: "";
    display: block;
    width: 75px;
    height: 1px;
    background-color: #1C1C1C;
	margin-top: 5px;
}

.green .section_space .container .philosophy .flex_box .text_box p {
	font-size: 18px;
	font-weight: 400;
	margin-top: 30px;
}

.green .section_space .container .philosophy .flex_box .img_box {
	width: 50%;
	position: relative;
}

.green .section_space .container .philosophy .flex_box .img_box .abname {
	position: absolute;
	font-family: 'SignPainter', sans-serif;
	color: #E8AC2F;
	font-size: 4vw;
    left: -40px;
    top: 76%;
	transform: rotate(-10deg);
}

.green .section_space .container .philosophy .flex_box .img_box img {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
}

.green .section_space .container .philosophy .flex_box .img_box .neme span {
	color: #0C6F4B;
}

.green .section_space .container .philosophy .flex_box .img_box .neme {
	display: flex;
	justify-content: center;
	margin-top: 17px;
}

.green .section_space .container .philosophy .messaage {
	width: 100%;
	margin-top: 60px;
	z-index: 1;
    position: relative;
}

.green .section_space .container .philosophy .messaage h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    line-height: 1;
}

.green .section_space .container .philosophy .messaage h2::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-color: #E8AC2F;
    border-radius: 50%;
    flex-shrink: 0;
	margin-top: 10px;
}

.green .section_space .container .philosophy .messaage h2::after {
    content: "";
    display: block;
    width: 75px;
    height: 1px;
    background-color: #1C1C1C;
	margin-top: 10px;
}

.green .section_space .container .philosophy .messaage p {
	font-size: 1.2vw;
	margin-top: 25px;
	padding-left: 0px;
}


.access {
	width: 100%;
	border-radius: 0 120px 0 0;
	margin-top: -100px;

}

.access .section_space {
	width: 100%;
	background-color: #EEEFF2;
	border-radius: 0 130px 0 0;
	padding: 90px 150px 120px 150px;
	position: relative;
}

.access .section_space .container {
	width: 100%;
}

.access .title_box {
	width: 100%;
}

.access .title_box .left {
	gap: 0px 0;
	z-index: 1;
}

.access .title_box .left h2 {
	font-size: 100px;
    background-image: linear-gradient(to bottom, #067D51, #045336);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 5px;
	font-size: 130px;
}

.access .title_box .left h2 span{
	font-size: 130px;
	color: #1c1c1c;
	letter-spacing: 5px;
}

.access .title_box .left p {
	font-size: 23px;
	font-weight: 400;
	color: #1c1c1c;
}

.access .title_box .right_text {
	font-size: 190px;
	color: #F9F9F9;
	line-height: 1;
    margin-top: 0px;
	letter-spacing: 5px;
	position: absolute;
	top: 62px;
    left: 120px;
}

.access .info {
	width: 100%;
	margin-top: 50px;
}

.access .info iframe {
	width: 50%;
	height: auto;
	aspect-ratio: 2 / 1.2;
}

.access .info .info_box {
	width: 50%;
	color: #1c1c1c;
	gap: 30px 0;
	padding-top: 30px;
	padding-left: 50px;
}

.access .info .info_box .box_item {
	width: 100%;
}

.access .info .info_box .box_item .title {
	width: 25%;
	font-size: 17px;
}

.access .info .info_box .box_item .text {
	width: 75%;
	font-size: 17px;
}




.page_box .access_list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 40px 3.5%;
	padding: 0 30px;
	margin-top: 70px;
}

.page_box .access_list .list_item {
	width: 31%;
	background-color: #fff;
	border-radius: 16px;
}

.page_box .access_list .list_item img {
	width: 100%;
	height: auto;
	aspect-ratio: 364 / 248;
	object-fit: cover;
		border-radius: 16px 16px 0 0;
}

.page_box .access_list .list_item .contents {
	width: 100%;
	padding: 40px 30px 30px;
}

.page_box .access_list .list_item .contents .text_flex {
	align-items: center;
	gap: 20px;
}

.page_box .access_list .list_item .contents .text_flex .al {
	font-size: 20px;
	color: #E8AC2F;
	margin-top: 5px;
}

.page_box .access_list .list_item .contents .text_flex .ja {
	font-size: 25px;
	font-weight: 500;
}

.page_box .access_list .list_item .contents .tel {
	font-size: 22px;
	font-weight: bold;
	color: #154587;
}

.page_box .access_list .list_item .contents .address {
	font-size: 15px;
	font-weight: 400;
	margin-top: 10px;
	line-height: 1.6;
	letter-spacing: 0.5px;
}

.page_box .access_list .list_item .contents .more {
	font-size: 14px;
	color: #154587;
	font-weight: 500;
	margin-top: 10px;
	margin-left: auto;
	display: table;
	text-decoration: underline 1px #154587; 
}

.pricing-table {
    margin: 80px auto 60px;
  }





/* page */

.page_box {
	width: 100%;
	margin-top: 80px;
	padding: 100px 0;
	background-color: #edeef1;
}

.page_box .section_space {
	width: 85%;
	margin: 0 auto;
	max-width: 1240px;
}

.page_box .section_space .container {
	width: 100%;
}

.page_box .section_space .container .title_box {
	width: 100%;
}

.page_box .section_space .container .title_box h2 {
	font-size: 130px;
	background-image: linear-gradient(to bottom, #067D51, #045336);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	letter-spacing: 5px;
}

.page_box .section_space .container .title_box h2 span {
	font-size: 130px;
	background-clip: text;
	-webkit-background-clip: text;
	color: #1c1c1c;
	letter-spacing: 5px;
}

.page_box .section_space .container .title_box p {
	font-size: 22px;
	font-weight: 400;
	margin-top: -10px;
}

.company-info {
    background-color: #fff;
    width: 100%;
    max-width: 1000px;
    padding: 30px 60px 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	border-radius: 5px;
	margin: 60px auto 0;
}

.info-row {
    display: flex;
    align-items: center;
    width: 100%;
	align-items: stretch;
}

.info-row .left {
    width: 200px;
	border-bottom: 1px solid #7cbda7;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	padding: 30px;
}

.info-row .right {
    flex: 1;
	border-bottom: 1px solid #D8D8D8;
	padding: 30px 60px;
	display: flex;
	align-items: center;
}

.info-term {
    font-weight: 500;
    margin: 0;
	line-height: 1.8;
}

.info-desc {
    margin: 0;
    line-height: 1.8;
}









/* footer */

.footer {
	width: 100%;
	background-color: #303030;
	padding: 85px 0;
}

.footer .space {
	width: 85%;
	margin: 0 auto;
}

.footer .space .container {
	width: 100%;
}

.footer .space .container .logo {
	width: 100px;
	display: block;
}

.footer .space .container .logo img {
	width: 100%;
	height: auto;
}

.footer .space .container .right_box {
	color: #fff;
}

.footer .space .container .right_box .footer_menu {
	gap: 0 30px;
}

.footer .space .container .right_box .footer_menu a {
	font-size: 14px;
	color: #fff;
}

.footer .space .container .right_box .copyright {
	font-size: 12px;
	margin-top: 25px;
}





