@charset "utf-8";
html {
	font-size: 62.5%;
}
body {
	background-color: #F0F0F0;
	min-width: 1000px;
  padding-top: 80px;
	/* for IE6/7 */
	*font-size:small;
	/* for IE Quirks Mode */
	*font:x-small;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 1.6em;
	-webkit-text-size-adjust: 100%;
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
 0% {opacity: 0}
 100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
 0% {opacity: 0}
 100% {opacity: 1}
}
select,input,button,textarea,button {font:99%;}
table {font-size:inherit;font:100%;}
pre,code,kbd,samp,tt {
font-family:monospace;
*font-size:108%;
line-height:100%;
}
a:link {
color: #000000;
transition: .3s;
}
a:visited {
color: #000000;
text-decoration: none;
}
a:hover {
color: #00C945;
text-decoration: underline;
}
a:active {
color: #999999;
text-decoration: none;
}
a.btn img {
-webkit-transition: 0.3s ease-in-out;
-moz-transition: 0.3s ease-in-out;
-o-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
-ms-filter: 'alpha(opacity=100)';
filter: alpha(opacity=100);
-moz-opacity: 1;
opacity: 1;
}
a:hover.btn img {
-ms-filter: 'alpha(opacity=60)';
filter: alpha(opacity=30);
-moz-opacity: 0.40;
opacity: 0.40;
}
a {
outline: none;
}
::selection {
background: #000000;
color: #FFFFFF;
}
::-moz-selection {
background:#000000;
color:#FFFFFF;
}
::-webkit-selection {
background:#000000;
color:#FFFFFF;
}
strong {
font-weight: bold;
}
img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.pc {
display: inherit!important;
}
.sp {
display: none!important;
}
#wrapper {
overflow: hidden
}


.font_mtsrt {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.img100{
  width: 100%;
  height: auto;
}


/*--header-------------*/
.header {
  width: 100%;
  position: fixed;           /* 画面上部に固定 */
  top: 0;
  left: 0;
  z-index: 1000;
  transition: transform 0.6s ease, opacity 0.6s ease; /* ふわっと動かす */
  padding: 2rem 0;
}

/* スクロールで隠すときに付けるクラス */
.header.hide {
  transform: translateY(-100%);
  opacity: 0;
}

header {
  width: 92%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1{
  width:16%;
  position: relative;
  z-index: 999;
}
header .gnav{
  width:60%;
  min-width: 740px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .gnav nav{
  width: 70%;
}
header .gnav nav ul {
  display: flex;
  justify-content: space-between;
}
header .gnav nav ul li a {
  display: inline-block;
  font-size: 1.5rem;
  text-decoration: none;
  letter-spacing: 0.2rem;
}
header .gnav .contact_btn{
  width: 20%;
}
header .gnav .contact_btn a{
  display: block;
  text-align: center;
  letter-spacing: 0.2rem;
  color: #FFFFFF;
  padding: 8px 0;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  background-color: #00C945;
}



/*--mainvis-------------*/
:root{
  --gutter: clamp(16px, 5vw, 80px); /* 左右余白：SP〜PCで可変 */
  --mvMax: 1750px;                  /* MVの最大幅 */
}

.mainvis{
  height: 80vh;
  margin: 0 auto 10rem;
  padding-inline: var(--gutter);    /* ← 余白は外側で管理 */
  box-sizing: border-box;
}

.mainvis__bg{
  width: 100%;                      /* ← padding内で100% */
  max-width: var(--mvMax);          /* ← 広い時だけ頭打ち */
  height: 80vh;
  margin: 0 auto;
  border-radius: 10px;
  background: url(/images/mainvis.jpg) center/cover no-repeat;
  background-attachment: fixed;
}


/*--side__nav-------------*/
/*side__nav__btn*/
.side__nav__btn {
  width: 40px;
  height: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001; /* ナビの上に表示 */



  position: fixed;
  top: 50%;
  left: calc(var(--gutter) / 2);
  transform: translateX(-50%);
  z-index: 9999;
}

.side__nav__btn span {
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  border-radius: 1px;
  transition: 0.3s ease;
  transform-origin: center;
}
.side__nav__btn.active span {
  background: #fff; /* ← 白に変更！ */
}

.side__nav__btn.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.side__nav__btn.active span:nth-child(2) {
  transform: translateY(-6px) rotate(-45deg);
}


.fullscreen-nav {
  position: fixed;
  inset: 0;
  background: rgba(0,201,69,1);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
  z-index: 1000;
}

.fullscreen-nav.active {
  opacity: 1;
  pointer-events: auto;
}



.nav-logo {
  position: absolute;
  top: 0;
  left: 4%;
  color: #fff;
  font-size:  2.8rem;
  font-weight: 400;
  letter-spacing: 0.3rem;
  opacity: 0;
  transition: 0.4s ease;
  margin: auto;
  padding: 2rem 0;
}

/* ナビが開いた時だけ表示 */
.fullscreen-nav.active .nav-logo {
  opacity: 1;
}


.fullscreen-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.fullscreen-nav li {
  margin: 3rem 0;
  text-align:left;
}

.fullscreen-nav a {
  color: #fff;
  font-size: 4.4rem;
  font-weight: 500;
  letter-spacing: 0.5rem;
  text-decoration: none;
  transition: 0.3s;

  display: inline-block; /* これがないとリンク範囲が全幅になる */
  position: relative; /* 相対位置指定 */

}
.fullscreen-nav a span{
  font-size: 1.5rem;
  margin-left: 1rem;
}

.fullscreen-nav a::after {
  background-color: #ffffff; /* 下線の色 */
  bottom: -4px; /* 要素の下端からの距離 */
  content: ""; /* 要素に内容を追加 */
  height: 1px; /* 下線の高さ */
  left: 0; /* 要素の左端からの距離 */
  position: absolute; /* 絶対位置指定 */
  transform: scale(0, 1); /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: right top; /* 変形の原点を右上に指定 */
  transition: transform .3s; /* 変形をアニメーション化 */
  width: 100%; /* 要素の幅 */
}
/* リンクにホバーした際の下線の表示 */
.fullscreen-nav a:hover::after {
  transform-origin: left top; /* 変形の原点を左上に指定 */
  transform: scale(1, 1); /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}




/*--CONTENTS-------------*/
#contents {
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
#contents:after{
  content:".";
  display:block;
  clear:both;
  height:0;
  visibility:hidden
}









.concept{
  width: 100%;
}
.concept h2{
  font-size: 5.6rem;
  font-weight: 600;
  letter-spacing: 1rem;
  line-height:9rem;
  text-align: left;
  margin-bottom: 14rem;
}
.concept p{
  width: 74%;
  font-size: 2.0rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0.2rem;
  display: block;
  margin-left: auto;
}
/* アニメーション基本形 */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示時 */
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* 遅延用クラス */
.delay-0 {
  transition-delay: 0s;
}

.delay-1 {
  transition-delay: 0.2s; /* ← h2 の後に出てくる */
}







.container{
  width: 100%;
  margin: 26rem auto;
  display: flex;
  justify-content: space-between;
}
.container h3{
  width: 10%;
  font-size: 5.0rem;
  font-weight: 500;
  letter-spacing: 0.5rem;
  color: #00C945;
  writing-mode: vertical-rl;
  line-height: 5rem;

}
.container h3 span{
  font-size: 1.5rem;
  letter-spacing: 0.6rem;
  font-weight: 400;
  margin-top: 0.5rem;
}
.container .inner{
  width: 73.4%;
  margin-top: 12rem;
}





.fade-up-s {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up-s.show {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-s:nth-child(1) { transition-delay: 0.3s; }






/*--service-------------*/
.service {
  padding-top: 5rem;
}
.service .box{
  width: 100%;
  margin-bottom: 12rem;
}

.service .box dl dt{
  font-size: 2.0rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
.service .box dl dd{
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  line-height: 3.4rem;
  margin-top: 2rem;
}
.service .box dl dd.price{
  color: #00C945;
}


/*--faq-------------*/
.faq {
  padding-top: 5rem;
}
.faq .box{
  width: 100%;
}
.faq .box dl{
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  line-height: 3rem;
  margin-bottom: 12rem;
}
.faq .box dl dt{
  padding: 2rem 2%;
  background-color: #00C945;
  border-radius: 10px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
}
.faq .box dl span{
  font-size: 3.2rem;
  margin-right: 3%;
}
.faq .box dl dd{
  padding: 2rem 2%;
  display: flex;
  align-items: center;
}


/*--column-------------*/
.column {
  padding-top: 5rem;
}
.column .box {
  width: 100%;
  border-left: #00C945 1px solid;
  border-right: #00C945 1px solid;
  overflow: hidden; /* ← スライド用に必要 */
  margin-bottom: 6rem;
}

.column .box a {
  position: relative;
  width: 96%;
  display: block;
  text-decoration: none;
  padding: 1rem 4%;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  color: #222;
  z-index: 1;
  transition: color .4s ease;
}

/* 背景アニメ用の疑似要素 */
.column .box a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%; /* ← 初期状態は完全に下へ */
  width: 100%;
  height: 100%;
  background: #00C945;
  z-index: -1;
  transition: bottom .3s ease;
}

/* ホバー時の動き */
.column .box a:hover::before {
  bottom: 0; /* ← 上にスライドイン */
}

.column .box a:hover {
  color: #fff; /* 文字色を白へ */
}

.column .box a .date {
  margin-bottom: 1rem;
}


.column .more a{
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  color: #00C945;
  text-decoration: none;
}
.column .fa-angle-right{
  margin-right: 0.5rem;
}
.column .more a:hover{
  letter-spacing: 0.8rem;
}






/*--about-------------*/
.about {
  padding-top: 5rem;
}
.about h4{
  color: #00C945;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.3rem;
  line-height:5.6rem;
  text-align: left;
  margin-bottom: 14rem;
}
.about .box {
  width: 100%;

}
.about .box dl{
  width: 100%;
  margin-top: 10rem;
}
.about .box dl dt{
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ACACAC;
}
.about .box dl dd{
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  line-height: 3rem;
  padding-top: 1rem;
}

.about .box .table{
  width: 100%;
  margin-top: 5rem;
}
.about .box .table .row{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  line-height: 3rem;
}
.about .box .table .row .ttl{
  width: 20%;
  font-weight: 500;
}
.about .box .table .row .txt{
  width: 76%;
}

.about .box dl .flex{
  display: flex;
  justify-content: space-between;
}
.about .box dl .flex .ph{
  width: 14%;
}
.about .box dl .flex .name{
  width: 84%;
}
.about .box p{
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  line-height: 3rem;
  margin-top: 5rem;
}




/*--contact-------------*/
.contact {
  padding-top: 5rem;
}
.contact .inner .box{
  width: 100%;
  border-top: 1px solid #00C945;
}
.contact .inner .box:last-child{
  border-bottom: 1px solid #00C945;
}
.contact .inner .box a{
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 5rem 0;

}
.contact .inner .box a:hover{
  letter-spacing: 0.8rem;
}
.contact .inner dl{
  width: 100%;
}
.contact .inner dl dt .fa-phone{
  font-size: 3.6rem;
  margin-right:1rem;
}
.contact .inner dl dt .fa-line{
  font-size: 4.2rem;

}
.contact .inner dl dt .fa-envelope{
  font-size: 4.2rem;

}
.contact .inner dl dt{
  font-size: 4.0rem;
  font-weight: 500;
  letter-spacing: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.contact .inner dl dd{
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
}






.pageTop {
  clear: both;
  display: flex;
  justify-content: right;
  margin-bottom: 8rem;
}

.pageTop p{
  width: 6%;
}
.pageTop p a{
  width: 100%;
}




/*--footer-------------*/
footer{
  width: 92%;
  margin: 0 auto 0 auto;
}
footer .inner{
  width: 96%;
  margin: auto;
  padding: 3rem 0;
  display: flex;
  justify-content: space-between;
}
footer .inner .left{
  width: 30%;
  position: relative;
  z-index: 999;
}
footer .inner .left p{
  font-size: 2.1rem;
  letter-spacing: 0.4rem;
  line-height: 2.0rem;
  font-weight: 500;
  color: #FFFFFF;
}
footer .inner .left p span{
  font-size: 1.2rem;
  letter-spacing: 0.3rem;
  color: #FFFFFF;

}
footer .inner .right{
  width: 70%;
}
footer .inner ul{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 3rem;
}
footer .inner ul li{
  margin-right:5rem;
}
footer .inner ul li a{
  color: #FFFFFF;
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  text-decoration: none;

  position: relative;
  text-decoration: none;
  display: inline-block;
}
footer .inner ul li a .fa-angle-right{
  margin-right: 1rem;
}
footer .inner ul li a::after {
  background-color: #FFFFFF;
  bottom: -4px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
  width: 100%;
}
footer .inner ul li a:hover::after {
  transform: scale(1, 1);
}



footer .inner .copy{
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  text-align: right;
  color: #FFFFFF;
  margin-top: 16rem;
  position: relative;
  z-index: 999;

}




.bg_slide{
	animation-name:bg_slideAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity:0;
  z-index: 997;
}

@keyframes bg_slideAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;
}
}

/*中の要素*/
.bgappear{
	animation-name:bg_slideAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes bg_slideAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}


/*下から上*/
.bg_slide_anm::before{
	animation-name:bg_slide_anmAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00C945;/*伸びる背景色の設定*/
}
@keyframes bg_slide_anmAnime{
	0% {
		transform-origin:bottom;
		transform:scaleY(0);
	}
	50% {
		transform-origin:bottom;
		transform:scaleY(1);
	}
	50.001% {
		transform-origin:top;
	}
	100% {
		transform-origin:top;
		transform:scaleY(1);
	}
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bg_slide_anm_Trigger{
    opacity: 0;
}




/*--single__page-------------*/
.subpage__container{
  width: 100%;
  margin: 20rem auto;
  display: flex;
  justify-content: space-between;
}
.subpage__container h2.single__h2,.subpage__container h2.columnlist__h2{
  width: 10%;
  font-size: 5.0rem;
  font-weight: 500;
  letter-spacing: 0.5rem;
  color: #00C945;
  writing-mode: vertical-rl;
  line-height: 5rem;

}
.subpage__container h2.single__h2 span, .subpage__container h2.columnlist__h2 span{
  font-size: 1.5rem;
  letter-spacing: 0.6rem;
  font-weight: 400;
  margin-top: 0.5rem;
}





.single_article{
  width: 79%;
  max-width: 800px;
  margin-top: 14rem;
  margin-bottom: 30rem;
}
.single_article .single_meta{
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
}

.single_article .single_ttl{
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin-bottom:6rem;
}
.single_article .single_content h4{
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  font-weight: 600;
  line-height: 4rem;
  margin-bottom: 2rem;
}
.single_article .single_content p{
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  line-height: 3.2rem;
  margin-bottom: 3rem;
  font-weight: 500;
}




.single_article .back_btn a{
  text-decoration: none;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  font-weight: 500;
  color: #00C945;
}
.single_article .back_btn .fa-angle-right{
  margin-right: 1rem;
}
.single_article .back_btn a:hover{
  letter-spacing: 0.8rem;
}



/*--past_columns-------------*/
.past_columns{
  width: 79%;
  max-width: 800px;
  margin-top: 14rem;
  margin-bottom: 10rem;
}
.past_columns a{
  display: block;
  text-decoration: none;
  border-bottom: 1px solid #ACACAC;
  padding: 4rem 0;
}
.past_columns a:first-child{
  border-top: 1px solid #ACACAC;

}
.past_columns a .item .date{
  font-size: 1.4rem;
  margin-bottom: 1rem;
  letter-spacing: 0.2rem;
}
.past_columns a .item .title{
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  font-weight: 500;
}




/*--privacypolicy-------------*/
.privacypolicy{
  width: 79%;
  max-width: 800px;
  margin-top: 14rem;
  margin-bottom: 10rem;
}
.privacypolicy p:first-child{
  margin-bottom: 3rem;
  font-size: 1.5rem;
  line-height: 3rem;
  letter-spacing: 0.2rem;
  font-weight: 500;
}
.privacypolicy .box{
  width: 100%;
  margin-bottom: 6rem;
}
.privacypolicy .box h3{
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
}
.privacypolicy .box p{
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  line-height: 3rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.privacypolicy .box ul li{
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}








/*--mailform-------------*/
.mailform{
  width: 79%;
  max-width: 800px;
  margin-top: 14rem;
  margin-bottom: 10rem;
}

/*--contactform7-------------*/
.wpcf7 {
  width: 100%;
}
.wpcf7 p{
  margin-bottom: 3rem !important;
}
.wpcf7-form label {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
}
.wpcf7-form .required {
  font-size: 1.2rem;
  color: #ff0000;
}
.wpcf7-form-control-wrap input {
  width: 80% !important;
  padding: 1rem;
  border: 1px solid #cccccc;
  margin-top:1rem;
  font-size: 1.5rem;
}
.wpcf7-list-item{
  margin: 1rem 2rem 0 0 !important;
}
.wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.wpcf7-checkbox .wpcf7-list-item-label{
  white-space: nowrap;
  writing-mode: horizontal-tb;
}
.wpcf7-checkbox input[type="checkbox"]{
  width: auto !important;
  margin: 0;
}

.wpcf7-form textarea {
  width: 80%;
  padding: 10px;
  border: 1px solid #cccccc;
  margin-top:1rem;
  font-size: 1.5rem;
}
.wpcf7-form textarea {
  height: 150px;
  resize: vertical;
}

.wpcf7-form input[type="submit"] {
  width: 83%;
  padding: 1rem 0;
  font-size: 1.5rem;
  background-color: #00C945 !important;
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
}
.wpcf7-form input[type="submit"]:hover {
  background-color: #FFFFFF;
}
.wpcf7-form .wpcf7-not-valid-tip {
  color: red;
  font-size: 14px;
}
.wpcf7-form .wpcf7-mail-sent-ok {
  color: green;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.wpcf7 form .wpcf7-response-output {
  width: 83%;
  margin: 0 !important;
  padding: 1rem 0 !important;
  border: none !important;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.2rem;
  color: #ff4400;
}














































/*=======================================
pc1200
========================================*/
@media screen and (max-width: 1199px) {
.pc {
    display: inherit!important;
}
.sp {
    display: none!important;
}

html {
	font-size: 62.5%;
}
body {
  padding-top: 100px; /* ヘッダーの高さに合わせて調整してね */


}



/*--1200__header-------------*/
.header {
  width: 100%;
  position: fixed;           /* 画面上部に固定 */
  top: 0;
  left: 0;
  z-index: 1000;
  transition: transform 0.6s ease, opacity 0.6s ease; /* ふわっと動かす */
  padding: 2rem 0;
}

/* スクロールで隠すときに付けるクラス */
.header.hide {
  transform: translateY(-100%);
  opacity: 0;
}

header {
  width: 92%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1{
  width:22%;
  position: relative;
  z-index: 999;
}
header .gnav{
  width:60%;
  min-width: 740px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .gnav nav{
  width: 74%;
}
header .gnav nav ul {
  display: flex;
  justify-content: space-between;
}
header .gnav nav ul li a {
  display: inline-block;
  font-size: 1.4rem;
  text-decoration: none;
  letter-spacing: 0.2rem;
}
header .gnav .contact_btn{
  width: 20%;
}
header .gnav .contact_btn a{
  display: block;
  text-align: center;
  letter-spacing: 0.2rem;
  color: #FFFFFF;
  padding: 8px 0;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  background-color: #00C945;
}









/*--1200__mainvis-------------*/
/*--mainvis-------------*/
:root{
  --gutter: clamp(16px, 5vw, 80px); /* 左右余白：SP〜PCで可変 */
  --mvMax: 1750px;                  /* MVの最大幅 */
}

.mainvis{
  height: 80vh;
  margin: 0 auto 10rem;
  padding-inline: var(--gutter);    /* ← 余白は外側で管理 */
  box-sizing: border-box;
}

.mainvis__bg{
  width: 100%;                      /* ← padding内で100% */
  max-width: var(--mvMax);          /* ← 広い時だけ頭打ち */
  height: 80vh;
  margin: 0 auto;

  background: url(/images/mainvis.jpg) center/cover no-repeat;
  background-attachment: fixed;
}



/*--1200__side__nav-------------*/
/*side__nav__btn*/
.side__nav__btn {
  width: 32px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;


  position: fixed;
  top: 50%;
  left: calc(var(--gutter) / 2);
  transform: translateX(-50%);
  z-index: 9999;
}

.side__nav__btn span {
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  border-radius: 1px;
  transition: 0.3s ease;
  transform-origin: center;
}
.side__nav__btn.active span {
  background: #fff;
}

.side__nav__btn.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.side__nav__btn.active span:nth-child(2) {
  transform: translateY(-6px) rotate(-45deg);
}


.fullscreen-nav {
  position: fixed;
  inset: 0;
  background: rgba(0,201,69,1);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
  z-index: 1000;
}

.fullscreen-nav.active {
  opacity: 1;
  pointer-events: auto;
}



.nav-logo {
  position: absolute;
  top: 0;
  left: 4%;
  color: #fff;
  font-size:  2.2rem;
  font-weight: 400;
  letter-spacing: 0.3rem;
  opacity: 0;
  transition: 0.4s ease;
  margin: auto;
  padding: 2rem 0;
}


.fullscreen-nav.active .nav-logo {
  opacity: 1;
}


.fullscreen-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.fullscreen-nav li {
  margin: 3rem 0;
  text-align:left;
}

.fullscreen-nav a {
  color: #fff;
  font-size: 4.4rem;
  font-weight: 500;
  letter-spacing: 0.5rem;
  text-decoration: none;
  transition: 0.3s;

  display: inline-block;
  position: relative;

}
.fullscreen-nav a span{
  font-size: 1.5rem;
  margin-left: 1rem;
}

.fullscreen-nav a::after {
  background-color: #ffffff;
  bottom: -4px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
  width: 100%;
}
.fullscreen-nav a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}










/*--1200__CONTENTS-------------*/
#contents {
  width: 82%;
  min-width: 870px;
  margin-right: auto;
  margin-left: auto;
}
#contents:after{
  content:".";
  display:block;
  clear:both;
  height:0;
  visibility:hidden
}









.concept{
  width: 100%;
}
.concept h2{
  font-size: 5.0rem;
  font-weight: 600;
  letter-spacing: 1rem;
  line-height:9rem;
  text-align: left;
  margin-bottom: 14rem;
}
.concept p{
  width: 74%;
  font-size: 1.8rem;
  line-height: 4rem;
  letter-spacing: 0.2rem;
  display: block;
  margin-left: auto;
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
.delay-0 {
  transition-delay: 0s;
}

.delay-1 {
  transition-delay: 0.2s; /* ← h2 の後に出てくる */
}







.container{
  width: 100%;
  margin: 26rem auto;
  display: flex;
  justify-content: space-between;
}
.container h3{
  width: 10%;
  font-size: 5.0rem;
  font-weight: 500;
  letter-spacing: 0.5rem;
  color: #00C945;
  writing-mode: vertical-rl;
  line-height: 5rem;

}
.container h3 span{
  font-size: 1.5rem;
  letter-spacing: 0.6rem;
  font-weight: 400;
  margin-top: 0.5rem;
}
.container .inner{
  width: 73.4%;
  margin-top: 12rem;
}





.fade-up-s {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up-s.show {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-s:nth-child(1) { transition-delay: 0.3s; }






/*--1200__service-------------*/
.service {
  padding-top: 5rem;
}
.service .box{
  width: 100%;
  margin-bottom: 12rem;
}

.service .box dl dt{
  font-size: 2.0rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
.service .box dl dd{
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  line-height: 3.4rem;
  margin-top: 2rem;
}
.service .box dl dd.price{
  color: #00C945;
}










/*--1200__faq-------------*/
.faq {
  padding-top: 5rem;
}
.faq .box{
  width: 100%;
}
.faq .box dl{
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  line-height: 3rem;
  margin-bottom: 12rem;
}
.faq .box dl dt{
  padding: 2rem 2%;
  background-color: #00C945;
  color: #FFFFFF;
  display: flex;
  align-items: center;
}
.faq .box dl span{
  font-size: 3.0rem;
  margin-right: 3%;
}
.faq .box dl dd{
  padding: 2rem 2%;
  display: flex;
  align-items: center;
}


/*--1200__column-------------*/
.column {
  padding-top: 5rem;
}
.column .box {
  width: 100%;
  border-left: #00C945 1px solid;
  border-right: #00C945 1px solid;
  overflow: hidden; /* ← スライド用に必要 */
  margin-bottom: 6rem;
}

.column .box a {
  position: relative;
  width: 96%;
  display: block;
  text-decoration: none;
  padding: 1rem 4%;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  color: #222;
  z-index: 1;
  transition: color .4s ease;
}

/* 背景アニメ用の疑似要素 */
.column .box a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%; /* ← 初期状態は完全に下へ */
  width: 100%;
  height: 100%;
  background: #00C945;
  z-index: -1;
  transition: bottom .3s ease;
}

/* ホバー時の動き */
.column .box a:hover::before {
  bottom: 0; /* ← 上にスライドイン */
}

.column .box a:hover {
  color: #fff; /* 文字色を白へ */
}

.column .box a .date {
  margin-bottom: 1rem;
}


.column .more a{
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  color: #00C945;
  text-decoration: none;
}
.column .fa-angle-right{
  margin-right: 0.5rem;
}
.column .more a:hover{
  letter-spacing: 0.8rem;
}






/*--1200__about-------------*/
.about {
  padding-top: 5rem;
}
.about h4{
  color: #00C945;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.3rem;
  line-height:5.6rem;
  text-align: left;
  margin-bottom: 14rem;
}
.about .box {
  width: 100%;

}
.about .box dl{
  width: 100%;
}
.about .box dl dt{
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ACACAC;
}
.about .box dl dd{
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  line-height: 3rem;
  padding-top: 1rem;
}

.about .box .table{
  width: 100%;
  margin-top: 5rem;
}
.about .box .table .row{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  line-height: 3rem;
}
.about .box .table .row .ttl{
  width: 20%;
  font-weight: 500;
}
.about .box .table .row .txt{
  width: 76%;
}

.about .box dl .flex{
  display: flex;
  justify-content: space-between;
}
.about .box dl .flex .ph{
  width: 14%;
}
.about .box dl .flex .name{
  width: 84%;
}
.about .box p{
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  line-height: 3rem;
  margin-top: 5rem;
}




/*--1200__contact-------------*/
/*--contact-------------*/
.contact {
  padding-top: 5rem;
}
.contact .inner .box{
  width: 100%;
  border-top: 1px solid #00C945;
}
.contact .inner .box:last-child{
  border-bottom: 1px solid #00C945;
}
.contact .inner .box a{
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 5rem 0;

}
.contact .inner .box a:hover{
  letter-spacing: 0.8rem;
}
.contact .inner dl{
  width: 100%;
}
.contact .inner dl dt .fa-phone{
  font-size: 3.6rem;
  margin-right:1rem;
}
.contact .inner dl dt .fa-line{
  font-size: 4.2rem;

}
.contact .inner dl dt .fa-envelope{
  font-size: 4.2rem;

}
.contact .inner dl dt{
  font-size: 4.0rem;
  font-weight: 500;
  letter-spacing: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.contact .inner dl dd{
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
}



/*--1200__cpast_columns-------------*/
.past_columns{
  width: 79%;
  max-width: 800px;
  margin-top: 14rem;
  margin-bottom: 10rem;
}
.past_columns a{
  display: block;
  text-decoration: none;
  border-bottom: 1px solid #ACACAC;
  padding: 4rem 0;
}
.past_columns a:first-child{
  border-top: 1px solid #ACACAC;

}
.past_columns a .item .date{
  font-size: 1.4rem;
  margin-bottom: 1rem;
  letter-spacing: 0.2rem;
}
.past_columns a .item .title{
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  font-weight: 500;
}

/*--1200__mailform-------------*/
.mailform{
  width: 79%;
  max-width: 800px;
  margin-top: 14rem;
  margin-bottom: 10rem;
}
/*--1200__contactform7-------------*/
.wpcf7 {
  width: 100%;
}
.wpcf7 p{
  margin-bottom: 3rem !important;
}
.wpcf7-form label {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
}
.wpcf7-form .required {
  font-size: 1.2rem;
  color: #ff0000;
}
.wpcf7-form-control-wrap input {
  width: 80% !important;
  padding: 1rem;
  border: 1px solid #cccccc;
  margin-top:1rem;
  font-size: 1.5rem;
}
.wpcf7-list-item{
  margin: 1rem 2rem 0 0 !important;
}
.wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.wpcf7-checkbox .wpcf7-list-item-label{
  white-space: nowrap;
  writing-mode: horizontal-tb;
}
.wpcf7-checkbox input[type="checkbox"]{
  width: auto !important;
  margin: 0;
}

.wpcf7-form textarea {
  width: 80%;
  padding: 10px;
  border: 1px solid #cccccc;
  margin-top:1rem;
  font-size: 1.5rem;
}
.wpcf7-form textarea {
  height: 150px;
  resize: vertical;
}

.wpcf7-form input[type="submit"] {
  width: 83%;
  padding: 1rem 0;
  font-size: 1.5rem;
  background-color: #00C945 !important;
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
}
.wpcf7-form input[type="submit"]:hover {
  background-color: #FFFFFF;
}
.wpcf7-form .wpcf7-not-valid-tip {
  color: red;
  font-size: 14px;
}
.wpcf7-form .wpcf7-mail-sent-ok {
  color: green;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.wpcf7 form .wpcf7-response-output {
  width: 83%;
  margin: 0 !important;
  padding: 1rem 0 !important;
  border: none !important;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.2rem;
  color: #ff4400;
}









.pageTop {
  clear: both;
  display: flex;
  justify-content: right;
  margin-bottom: 8rem;
}

.pageTop p{
  width: 6%;
}
.pageTop p a{
  width: 100%;
}




/*--1200__footer-------------*/
/*--footer-------------*/
footer{
  width: 92%;
  margin: 0 auto 0 auto;
}
footer .inner{
  width: 96%;
  margin: auto;
  padding: 3rem 0;
  display: flex;
  justify-content: space-between;
}
footer .inner .left{
  width: 30%;
  position: relative;
  z-index: 999;
}
footer .inner .left p{
  font-size: 2.1rem;
  letter-spacing: 0.4rem;
  line-height: 2.0rem;
  font-weight: 500;
  color: #FFFFFF;
}
footer .inner .left p span{
  font-size: 1.2rem;
  letter-spacing: 0.3rem;
  color: #FFFFFF;

}
footer .inner .right{
  width: 70%;
}
footer .inner ul{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}
footer .inner ul li{
  margin-right:5rem;
}
footer .inner ul li a{
  color: #FFFFFF;
  font-size: 1.3rem;
  letter-spacing: 0.2rem;
  text-decoration: none;

  position: relative;
  text-decoration: none;
  display: inline-block;
}
footer .inner ul li a .fa-angle-right{
  margin-right: 1rem;
}
footer .inner ul li a::after {
  background-color: #FFFFFF;
  bottom: -4px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
  width: 100%;
}
footer .inner ul li a:hover::after {
  transform: scale(1, 1);
}



footer .inner .copy{
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  text-align: right;
  color: #FFFFFF;
  margin-top: 16rem;
  position: relative;
  z-index: 999;

}





.bg_slide{
	animation-name:bg_slideAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity:0;
  z-index: 997;
}

@keyframes bg_slideAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;
}
}

/*中の要素*/
.bgappear{
	animation-name:bg_slideAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes bg_slideAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}


/*下から上*/
.bg_slide_anm::before{
	animation-name:bg_slide_anmAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00C945;/*伸びる背景色の設定*/
}
@keyframes bg_slide_anmAnime{
	0% {
		transform-origin:bottom;
		transform:scaleY(0);
	}
	50% {
		transform-origin:bottom;
		transform:scaleY(1);
	}
	50.001% {
		transform-origin:top;
	}
	100% {
		transform-origin:top;
		transform:scaleY(1);
	}
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bg_slide_anm_Trigger{
    opacity: 0;
}




/*--1200__single__page-------------*/
/*--single__page-------------*/
.subpage__container{
  width: 100%;
  margin: 20rem auto;
  display: flex;
  justify-content: space-between;
}
.subpage__container h2.single__h2,.subpage__container h2.columnlist__h2{
  width: 10%;
  font-size: 5.0rem;
  font-weight: 500;
  letter-spacing: 0.5rem;
  color: #00C945;
  writing-mode: vertical-rl;
  line-height: 5rem;

}

.subpage__container h2.single__h2 span,.subpage__container h2.columnlist__h2 span{
  font-size: 1.5rem;
  letter-spacing: 0.6rem;
  font-weight: 400;
  margin-top: 0.5rem;
}





.single_article{
  width: 79%;
  max-width: 800px;
  margin-top: 14rem;
  margin-bottom: 2rem;
}
.single_article .single_meta{
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
}

.single_article .single_ttl{
  font-size: 2.5rem;
  line-height: 3.8rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin-bottom:6rem;
}
.single_article .single_content h4{
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  font-weight: 600;
  line-height: 4rem;
  margin-bottom: 2rem;

}
.single_article .single_content p{
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  line-height: 3.2rem;
  margin-bottom: 3rem;
  font-weight: 500;
}







/*--privacypolicy-------------*/
.privacypolicy{
  width: 79%;
  max-width: 800px;
  margin-top: 14rem;
  margin-bottom: 10rem;
}
.privacypolicy p:first-child{
  margin-bottom: 3rem;
  font-size: 1.5rem;
  line-height: 3rem;
  letter-spacing: 0.2rem;
  font-weight: 500;
}
.privacypolicy .box{
  width: 100%;
  margin-bottom: 6rem;
}
.privacypolicy .box h3{
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
}
.privacypolicy .box p{
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  line-height: 3rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.privacypolicy .box ul li{
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}






}

/*=======================================
pc1200
========================================*/































































@media screen and (max-width: 768px) {
html {}
body {
background-color: #F0F0F0;
min-width: 320px;
  padding-top: 70px;
/* for IE6/7 */
*font-size:small;
/* for IE Quirks Mode */
*font:x-small;
font-family: 'Zen Kaku Gothic New', sans-serif;
font-size: 1.5rem;
-webkit-text-size-adjust: 100%;
animation: fadeIn 2s ease 0s 1 normal;
-webkit-animation: fadeIn 2s ease 0s 1 normal;
}
.pc {
display: none!important;
}
.sp {
display: inherit!important;
}
input{ font-size:1.5rem!important; } /*フォームのフォーカスOFF*/
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  font-size:16px;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}








#wrapper{
  overflow: hidden;
}




/*--sp__header-------------*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: transform 0.6s ease, opacity 0.6s ease;
  padding: 2rem 0;
}

.header.hide {
  transform: translateY(-100%);
  opacity: 0;
}

header {
  width: 92%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1{
  width:52%;
  position: relative;
  z-index: 999;
}
header .gnav{
  width:30%;
  min-width: unset;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .gnav nav{
  display: none;
}
header .gnav .contact_btn{
  width: 100%;
}
header .gnav .contact_btn a{
  display: block;
  text-align: center;
  letter-spacing: 0.2rem;
  color: #FFFFFF;
  padding: 8px 1rem;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  background-color: #00C945;
  line-height: 2rem;
}









/*--sp__mainvis-------------*/
:root{
  --gutter: clamp(40px, 5vw, 80px); /* 左右余白：SP〜PCで可変 */
  --mvMax: 768px;                  /* MVの最大幅 */
}

.mainvis{
  height: 54vh;
  margin: 0 auto 6rem;
  padding-inline: var(--gutter);    /* ← 余白は外側で管理 */
  box-sizing: border-box;
}

.mainvis__bg{
  width: 100%;                      /* ← padding内で100% */
  max-width: var(--mvMax);          /* ← 広い時だけ頭打ち */
  height: 54vh;
  margin: 0 auto;

  background: url(/images/mainvis_sp.jpg) center/cover no-repeat;
  background-attachment: unset;
  background-position: bottom center;
  border-radius: 10px;
}





/*--sp__side__nav-------------*/
/*side__nav__btn*/
.side__nav__btn {
  width: 32px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;

  position: fixed;
  top: 50%;
  left: 5vw;
  transform: translateX(-50%);
  z-index: 9999;
}

.side__nav__btn span {
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  border-radius: 1px;
  transition: 0.3s ease;
  transform-origin: center;
}
.side__nav__btn.active span {
  background: #fff;
}

.side__nav__btn.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.side__nav__btn.active span:nth-child(2) {
  transform: translateY(-6px) rotate(-45deg);
}


.fullscreen-nav {
  position: fixed;
  inset: 0;
  background: rgba(0,201,69,1);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
  z-index: 1000;
}

.fullscreen-nav.active {
  opacity: 1;
  pointer-events: auto;
}



.nav-logo {
  position: absolute;
  top: 0;
  left: 4%;
  color: #fff;
  font-size:  1.5rem;
  font-weight: 400;
  letter-spacing: 0.3rem;
  opacity: 0;
  transition: 0.4s ease;
  margin: auto;
  padding: 2rem 0;
}


.fullscreen-nav.active .nav-logo {
  opacity: 1;
}


.fullscreen-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.fullscreen-nav li {
  margin: 3rem 0;
  text-align:left;
}

.fullscreen-nav a {
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.5rem;
  text-decoration: none;
  transition: 0.3s;

  display: inline-block;
  position: relative;

}
.fullscreen-nav a span{
  font-size: 1.2rem;
  margin-left: 1rem;
}

.fullscreen-nav a::after {
  background-color: #ffffff;
  bottom: -4px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
  width: 100%;
}
.fullscreen-nav a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}










/*--sp__CONTENTS-------------*/
#contents {
  width: 76%;
  min-width: unset;
  margin-right: auto;
  margin-left: auto;
}
#contents:after{
  content:".";
  display:block;
  clear:both;
  height:0;
  visibility:hidden
}









.concept{
  width: 100%;
}
.concept h2{
  font-size: 2.0rem;
  font-weight: 600;
  letter-spacing: 0.5rem;
  line-height:4rem;
  text-align: left;
  margin-bottom: 6rem;
}
.concept p{
  width: 86%;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 3.5rem;
  letter-spacing: 0.2rem;
  display: block;
  margin-left: auto;
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
.delay-0 {
  transition-delay: 0s;
}

.delay-1 {
  transition-delay: 0.2s; /* ← h2 の後に出てくる */
}







.container{
  width: 100%;
  margin: 6rem auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.container h3{
  width: 30%;
  font-size: 3.0rem;
  font-weight: 600;
  letter-spacing: 0.5rem;
  color: #00C945;
  writing-mode: vertical-rl;
  line-height: 5rem;
}
.container h3 span{
  font-size: 1.2rem;
  letter-spacing: 0.6rem;
  font-weight: 500;
  margin-top: 0.5rem;
  line-height: 1rem;
  display: inline-block;   /* これ必須 */
  transform: translateX(-1.2rem); /* 数値は -0.2〜-0.8 で微調整 */
}
.container .inner{
  width: 100%;
  margin-top: 5rem;
}





.fade-up-s {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up-s.show {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-s:nth-child(1) { transition-delay: 0.3s; }






/*--sp__service-------------*/
.service {
  padding-top: 5rem;
}
.service .box{
  width: 100%;
  margin-bottom: 8rem;
}

.service .box dl dt{
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
.service .box dl dd{
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  line-height: 3.2rem;
  margin-top: 2rem;
}
.service .box dl dd.price{
  color: #00C945;
  line-height: 2.6rem;
}










/*--sp__faq-------------*/
.faq {
  padding-top: 5rem;
}
.faq .box{
  width: 100%;
}
.faq .box dl{
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  line-height: 2.4rem;
  margin-bottom: 8rem;
}
.faq .box dl dt{
  padding: 1rem 4%;
  background-color: #00C945;
  color: #FFFFFF;
  display: flex;
  align-items: baseline;
}
.faq .box dl span{
  font-size: 2.0rem;
  margin-right: 1rem;
}
.faq .box dl dd{
  padding: 1rem 4%;
  display: flex;
  align-items: baseline;
}


/*--sp__column-------------*/
.column {
  padding-top: 5rem;
}
.column .box {
  width: 100%;
  border-left: #00C945 1px solid;
  border-right: #00C945 1px solid;
  overflow: hidden; /* ← スライド用に必要 */
  margin-bottom: 4rem;
}

.column .box a {
  position: relative;
  width: 96%;
  display: block;
  text-decoration: none;
  padding: 1rem 4%;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  line-height: 3rem;
  color: #000;
  z-index: 1;
  transition: color .4s ease;
}

/* 背景アニメ用の疑似要素 */
.column .box a::before {
  display: none;
}

/* ホバー時の動き */
.column .box a:hover::before {
  bottom: unset; /* ← 上にスライドイン */
}

.column .box a:hover {
  color: unset; /* 文字色を白へ */
}

.column .box a .date {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}


.column .more a{
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  font-weight: 500;
  color: #00C945;
  text-decoration: none;
}
.column .fa-angle-right{
  margin-right: 0.5rem;
}
.column .more a:hover{
  letter-spacing: 0.8rem;
}






/*--sp__about-------------*/
.about {
  padding-top: 5rem;
}
.about h4{
  color: #00C945;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
  line-height:3.4rem;
  text-align: left;
  margin-bottom: 0rem;

}
.about .box {
  width: 100%;

}
.about .box dl{
  width: 100%;
}
.about .box dl dt{
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ACACAC;
}
.about .box dl dd{
  font-size: 1.3rem;
  letter-spacing: 0.2rem;
  line-height: 3rem;
  padding-top: 1rem;
}

.about .box .table{
  width: 100%;
  margin-top: 5rem;
}
.about .box .table .row{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  line-height: 3rem;
}
.about .box .table .row .ttl{
  width: 100%;
  font-weight: 500;
}
.about .box .table .row .txt{
  width: 100%;
}
.about .box dl{
  margin-top: 8rem;
}
.about .box dl .flex{
  display: flex;
  justify-content: space-between;
}
.about .box dl .flex .ph{
  width: 30%;
}
.about .box dl .flex .name{
  width: 64%;
  font-size: 1.4rem;
}
.about .box p{
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  line-height: 3rem;
  margin-top: 3rem;
}




/*--sp__contact-------------*/
/*--contact-------------*/
.contact {
  padding-top: 5rem;
}
.contact .inner .box{
  width: 100%;
  border-top: 1px solid #00C945;
}
.contact .inner .box:last-child{
  border-bottom: 1px solid #00C945;
}
.contact .inner .box a{
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 5rem 0;

}
.contact .inner .box a:hover{
  letter-spacing: 0.8rem;
}
.contact .inner dl{
  width: 100%;
}
.contact .inner dl dt .fa-phone{
  font-size: 2.2rem;
  margin-right:1rem;
}
.contact .inner dl dt .fa-line{
  font-size: 4.2rem;

}
.contact .inner dl dt .fa-envelope{
  font-size: 4.2rem;

}
.contact .inner dl dt{
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.contact .inner dl dd{
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
}








.pageTop {
  clear: both;
  display: flex;
  justify-content: right;
  margin-bottom: 8rem;
}

.pageTop p{
  width: 19%;
}
.pageTop p a{
  width: 100%;
}




/*--sp__footer-------------*/
footer{
  width: 80%;
  margin: 0 auto 0 auto;
}
footer .inner{
  width: 90%;
  margin: auto;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
footer .inner .left{
  width: 100%;
  position: relative;
  z-index: 999;
}
footer .inner .left p{
  font-size: 1.6rem;
  letter-spacing: 0.4rem;
  line-height: unset;
  font-weight: 500;
}
footer .inner .left p span{
  font-size: 1.2rem;
  letter-spacing: 0.3rem;
  line-height: 2.2rem !important;
  display: block;
}

footer .inner .right{
  width: 100%;
  margin-top: 3rem;
}
footer .inner ul{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  margin-bottom: 3rem;
}
footer .inner ul li{
  margin-right:5rem;
}
footer .inner ul li a{
  color: #FFFFFF;
  font-size: 1.3rem;
  letter-spacing: 0.2rem;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}
footer .inner ul li a::after {
  background-color: #FFFFFF;
  bottom: -4px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
  width: 100%;
}
footer .inner ul li a:hover::after {
  transform: scale(1, 1);
}



footer .inner .copy{
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  text-align: right;
  font-weight: 500;
  color: #FFFFFF;
  margin-top: 3rem;
  position: relative;
  z-index: 9999;
}




.bg_slide{
	animation-name:bg_slideAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity:0;
  z-index: 997;
}

@keyframes bg_slideAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;
}
}

/*中の要素*/
.bgappear{
	animation-name:bg_slideAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes bg_slideAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}


/*下から上*/
.bg_slide_anm::before{
	animation-name:bg_slide_anmAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00C945;/*伸びる背景色の設定*/
}
@keyframes bg_slide_anmAnime{
	0% {
		transform-origin:bottom;
		transform:scaleY(0);
	}
	50% {
		transform-origin:bottom;
		transform:scaleY(1);
	}
	50.001% {
		transform-origin:top;
	}
	100% {
		transform-origin:top;
		transform:scaleY(1);
	}
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bg_slide_anm_Trigger{
    opacity: 0;
}




/*--sp__single__page-------------*/
/*--single__page-------------*/
.subpage__container{
  width: 100%;
  margin: 6rem auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.subpage__container h2.single__h2,.subpage__container h2.columnlist__h2{
  width: 30%;
  font-size: 3.0rem;
  font-weight: 600;
  letter-spacing: 0.5rem;
  color: #00C945;
  writing-mode: vertical-rl;
  line-height: 5rem;

}

.subpage__container h2.single__h2 span,.subpage__container h2.columnlist__h2 span{
  font-size: 1.2rem;
  letter-spacing: 0.6rem;
  font-weight: 500;
  margin-top: 0.5rem;
  line-height: 1rem;
  display: inline-block;   /* これ必須 */
  transform: translateX(-1.2rem); /* 数値は -0.2〜-0.8 で微調整 */
}

.container .inner{
  width: 100%;
  margin-top: 5rem;
}




.single_article{
  width: 100%;
  max-width: 800px;
  margin-top: 7rem;
  margin-bottom: 0rem;
}
.single_article .single_meta{
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
}

.single_article .single_ttl{
  font-size: 2.0rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin-bottom:3rem;
  line-height: 3.4rem;
  font-weight: 500;
}
.single_article .single_content h4{
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  line-height: 3.4rem;
  margin-bottom: 2rem;
  font-weight: 600;
}
.single_article .single_content p{
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  line-height: 3.4rem;
  margin-bottom: 3rem;
  font-weight: 500;
}





/*--sp/past_columns-------------*/
.past_columns{
  width: 100%;
  max-width: unset;
  margin-top:7rem;
  margin-bottom: 10rem;
}
.past_columns a{
  display: block;
  text-decoration: none;
  border-bottom: 1px solid #ACACAC;
  padding: 2rem 0;
}
.past_columns a:first-child{
  border-top: 1px solid #ACACAC;

}
.past_columns a .item .date{
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.2rem;
}
.past_columns a .item .title{
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  line-height: 3rem;
  font-weight: 500;

}





/*--sp/privacypolicy-------------*/
.privacypolicy{
  width: 100%;
  max-width: unset;
  margin-top:7rem;
  margin-bottom: 10rem;
}
.privacypolicy p:first-child{
  margin-bottom: 3rem;
  font-size: 1.4rem;
  line-height: 3.4rem;
  letter-spacing: 0.2rem;
  font-weight: 500;
}
.privacypolicy .box{
  width: 100%;
  margin-bottom: 6rem;
}
.privacypolicy .box h3{
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
}
.privacypolicy .box p{
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  line-height: 3rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.privacypolicy .box ul li{
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}







/*--sp/mailform-------------*/
.mailform{
  width: 100%;
  max-width: unset;
  margin-top:7rem;
  margin-bottom: 10rem;
}


/*--sp/contactform7-------------*/
.wpcf7 {
  width: 100%;
}
.wpcf7 p{
  margin-bottom: 3rem !important;
}
.wpcf7-form label {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
}
.wpcf7-form .required {
  font-size: 1.2rem;
  color: #ff0000;
}
.wpcf7-form-control-wrap input {
  width: 97% !important;
  padding: 1rem;
  border: 1px solid #cccccc;
  margin-top:1rem;
  font-size: 1.5rem;
}
.wpcf7-list-item{
  margin: 1rem 2rem 0 0 !important;
}
.wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.wpcf7-checkbox .wpcf7-list-item-label{
  white-space: nowrap;
  writing-mode: horizontal-tb;
}
.wpcf7-checkbox input[type="checkbox"]{
  width: auto !important;
  margin: 0;
}

.wpcf7-form textarea {
  width: 97%;
  padding: 10px;
  border: 1px solid #cccccc;
  margin-top:1rem;
  font-size: 1.5rem;
}
.wpcf7-form textarea {
  height: 150px;
  resize: vertical;
}

.wpcf7-form input[type="submit"] {
  width: 104%;
  padding: 1rem 0;
  font-size: 1.5rem;
  background-color: #00C945 !important;
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
}
.wpcf7-form input[type="submit"]:hover {
  background-color: #FFFFFF;
}
.wpcf7-form .wpcf7-not-valid-tip {
  color: red;
  font-size: 14px;
}
.wpcf7-form .wpcf7-mail-sent-ok {
  color: green;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.wpcf7 form .wpcf7-response-output {
  width: 104%;
  margin: 0 !important;
  padding: 1rem 0 !important;
  border: none !important;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.2rem;
  color: #ff4400;
}



}