/*
Theme Name: original
Theme URL: テーマのサイトのURI
Description: テーマの説明
Author: 作者の名前
Version: テーマのバージョン
Tags: テーマの特徴を表すタグ（カンマ区切り/オプション）
License: テーマのライセンス
License URI: テーマのライセンスのURI
*/
/* この下に通常のcssを書いていく */


/*----------------------
フォント
.m-plus rounded 1c-regular {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400,500,700,800,900;
  font-style: normal;
}
----------------*/
body {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
p {
  margin-bottom: 5px;
}

.grecaptcha-badge {
    position: absolute;
    z-index: -100;
    visibility: hidden;
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/

#header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 5px 20px 5px 30px;
  background-color: rgba(255,255,255,0.8);
  box-shadow: rgba(0,0,0,.25)0 0 2px;
}

#header .logo {
  width: 400px;
  margin-right: 10px;
}

.logo a {
  width: 100%;
  height: 100%;
  display: block;
}

.logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#header .header_contents {
  display: flex;
  justify-content: space-between;
  height: 60px;
}

.header_contents .btn_line {
  background-color: #7FAD79;
  border-radius: 10px;
  width: 168px;
  margin-right: 15px;
}

.btn_line a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  align-items: center;
}

.btn_line a img {
  width: 27px;
  object-fit: cover;
  margin-right: 9px;
}

.header_contents .btn_contact {
  background-color: #728E9A;
  border-radius: 10px;
  width: 136px;
  margin-right: 15px;
}

.btn_contact a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  align-items: center;
}

.btn_contact a img {
  width: 36px;
  object-fit: cover;
  margin-right: 9px;
}

.header_contents .btn_tel {
  background-color: #C16F72;
  border-radius: 10px;
  width: 167px;
  margin-right: 15px;
}

.btn_tel a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  align-items: center;
}

.btn_tel a img {
  width: 29px;
  object-fit: cover;
  margin-right: 9px;
}

#navi .nav-menu {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#navi li .nav-menu_link {
  color: #555555;
  text-decoration: none;
}

/*
ハンバーガーメニュー
メニューが閉じている時は、「left: -300px;」で画面左に隠し、
「opacity: 0;」で非表示にしている
*/
#navi {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  color: #fff;
  padding: 70px 50px;
  transition: all 0.5s;
  z-index: 20;
  opacity: 0;
}
#navi .nav-menu {
flex-direction: column;
}

#navi li {
	width: 100%;
	height:30px;
  margin-bottom: 14px;
	text-align:center;
}
#navi li .nav-menu_link {
  color: #fff;
	width:50%;
	height:100%;
	display:block;
	margin:0 auto;
}
/*
ハンバーガーメニュー
メニューが開いている時は、「left: 0;」「opacity: 1;」で
画面左に表示する
*/
.open #navi {
  left: 0;
  opacity: 1;
}
.toggle_btn {
  width: 60px;
  height: 60px;
  position: relative;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 20;
  background-color: #6E5F51;
  border-radius: 10px;
}
/*
ハンバーガーメニューの線の設定（メニューが閉じている時）
*/
.toggle_btn span {
  display: block;
  position: absolute;
  width: 32px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  transition: all 0.5s;
  left: calc(50% - 16px);
}
/*
1本目の線の位置を設定
*/
.toggle_btn span:nth-child(1) {
  top: 19.5px;
}
/*
2本目の線の位置を設定
*/
.toggle_btn span:nth-child(2) {
  top: 29.5px;
}
/*
/*
3本目の線の位置を設定
*/
.toggle_btn span:nth-child(3) {
  bottom: 19.5px;
}
/*
1本目の線を-45度回転
*/
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}
/*
2本目の線を45度回転
*/
.open .toggle_btn span:nth-child(2) {
  display: none;
}
/*
3本目の線を45度回転
*/
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}
#mask {
  display: none;
  transition: all 0.5s;
}
/*
メニューを開いている時は、全体を黒背景にする
*/
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 10;
  cursor: pointer;
}
/*------------------------------------------
メインビジュアル
--------------------------------------------*/
#main {
  overflow: hidden;
  padding: 0 !important;
}
/* 元のMV要素の記述 */
.mv {
  position: relative !important; /* 位置固定を絶対保障 */
  background-image: url(/wp-content/uploads/2026/06/mv1-1.webp); 
  aspect-ratio: 16/9;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  overflow: hidden;
}

/* 【重要】疑似要素「::before」が正しく重なるように、
  より確実に最前面・全画面に広げる記述を強化しました
*/
.mv::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  background-image: var(--bg-next);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
  /* フェードの核となる設定 */
  opacity: 0;
  will-change: opacity; /* ブラウザのアニメーションを滑らかにする設定 */
  transition: opacity 1200ms ease-in-out !important; /* 1.2秒かけてフェード */
  z-index: 1; /* 背景画像の真上に重ねる */
}

/* クラスがついた瞬間に、上のレイヤーをふわっと表示 */
.mv.is-changing::before {
  opacity: 1 !important;
}

/* テキストが画像の下に隠れてしまわないよう、
  z-indexを一番上に引き上げます
*/
.mv_ttl {
  position: relative !important;
  z-index: 2 !important; 
}

.mv .mv_ttl {
  position: absolute;
  left: 50px;
  top: 40%;
}
.mv .mv_ttl span {
  display: block;
  border-radius: 10px;
  height: auto;
  width: fit-content;
  margin-bottom: 20px;
  background-color: #ffffffd0;
  padding: 10px 20px;
  color: #49342c;
  font-size: 2.5rem;
  font-weight: bold;
}
.mv .mv_ttl span.sub_ttl {
  font-size: 1.3rem;
  font-weight: bold;
  padding: 15px 20px;
}

.mv .mv_ttl .mv_sub_ttl {
  color: #fff;
  font-size: 30px;
  font-weight: 500;
}


/*サービスについて*/
.service {
  margin: 8% auto !important;
	position:relative;
}
.service:before {
	content:'';
	width:160px;
	height:160px;
	background-image:url(/wp-content/uploads/2026/06/nyan1-1.webp);
	background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.service .service_ttl {
  font-size: 48px;
  color: #555555;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5%;
  position: relative;
}

.service .service_ttl span {
  font-size: 30px;
  font-weight: 500;
  display: block;
}
.service .service_ttl span.en {
  font-size: 140px;
  font-weight: 900;
  color: #f0e6d9;
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%); /* 要素の幅が何pxであっても、自動で自分の幅の半分だけ左に戻す */
  z-index: -1;
}
.service_list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service_list li {
  width: 32%;
  margin-bottom: 2%;
  aspect-ratio: 1/1;
  border-radius: 10px;
}
.service_list li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  color: #555555;
}
.service_list li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.service_txt {
  position: absolute;
  width: 100%;
  padding: 15px;
  background: #ffffffd0;
  left: 0;
  bottom: 0;
}
.ttl1 {
  font-size: 28px;
  color: #555555;
  font-weight: bold;
}
.service_list li.service_link {
  padding: 25px;
  background: #f0e6d9;
}
.service_list li.service_link a {
  color: #49342c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 10px;
}
.service_list li.service_link a img {
  width: 150px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}
.service_list li.service_link .service_txt {
  position: unset;
  background: unset;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
.service_list li.service_link .ttl1 {
  font-size: 28px;
  color: #49342c;
  font-weight: bold;
  text-align: center;
}

/*youtube*/
.ttl2 {
  color: #f0e6d9;
  font-size: 120px;
  font-weight: 900;
  margin: 3% 0;
}
.youtube iframe {
  aspect-ratio: 16/9;
}

/*施工事例*/
.works {
  margin: 5% auto 0 !important;
  padding: 5% 0;
  background-image: url(/wp-content/uploads/2026/06/back-1.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.works::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.5;
  top: 0;
  left: 0;
}

.works .works_ttl {
  font-size: 48px;
  color: #555555;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5%;
  position: relative;
}

.works .works_ttl span {
  font-size: 30px;
  font-weight: 500;
  display: block;
  z-index: 2;
  position: relative;
}
.works .works_ttl span.en {
  font-size: 140px;
  font-weight: 900;
  color: #cfe3c5;
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%); 
  z-index: 1;
}

/*スライダー*/
.swiper {
  width: 100%;
  overflow: visible;
  position: relative;
}
.swiper:before {
  content: '';
  width: 180px;
  height: 180px;
  background-image: url(/wp-content/uploads/2026/06/nyan4-1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -130px;
  right: 0px;
  z-index: 2;
}

.swiper-wrapper {
  overflow: visible;
}
.swiper-slide {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  object-fit: cover;
}

.swiper-slide-more {
  padding: 25px;
  background: #9dbf8c;
  aspect-ratio: 1/1;
  height: 100%;
  box-sizing: border-box;
}
.swiper-slide-more a {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 10px;
  text-decoration: none;
  height: 100%;
}
.swiper-slide-more .works_txt {
  position: unset;
  background: unset;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
.swiper-slide-more .ttl1 {
  font-size: 28px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

/*ポイント*/
.point {
  padding: 5% 0;
  background: #f0e6d9;
}
.point .width {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}
.point_link {
  padding: 40px;
  border-radius: 50px;
  background: #fff;
  width: 38%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ttl3 span {
  font-size: 28px;
  font-weight: bold;
  color: #d9bd9c;
  display: block;
}
.ttl3 {
  text-align: center;
  font-size: 24px;
}
.point_link img {
  width: 250px;
  display: block;
  margin: 5% auto;
}
.link1 a {
  display: block;
  width: 70%;
  margin: 5% auto 0;
  padding: 10px;
  border-radius: 50px;
  background: #49342c;
  text-decoration: none;
  color: #fff;
  text-align: center;
}
.link1 a:hover {
  background: #d9bd9c;
}
.list2 {
  width: 58%;
  list-style: none;
}
.list2 li {
  margin-bottom: 20px;
}
.ttl4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.ttl4 span {
  display: block;
  font-size: 28px;
  color: #d9bd9c;
  margin-bottom: 10px;
}

/*エリア*/
.erea {
  display: flex;
  justify-content: space-between;
  max-width: 1000px !important;
}
.erea_txt {
  width: 65%;
}
.erea>p {
  width: 32%;
}
.erea>p img {
  width: 100%;
  object-fit: contain;
}
.ttl5 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 3%;
}
.ttl6 {
  font-size: 24px;
  font-weight: bold;
}
.erea_txt ul {
  list-style: none;
}
.green_txt {
  display: block;
  color: #9ec08e;
}


/*コラム一覧*/
.column {
  
  margin-bottom: 54px;
  position: relative;
}

.column .column_ttl_area {
  max-width: 1085px;
  width: 79.4%;
  margin: 0 auto;
  position: relative;
}

.column .column_ttl {
  font-size: 66px;
  color: #555555;
  font-weight: 700;
  text-align: center;
  margin-bottom: 104px;
}

/*コラム一覧：記事*/
.column_list-area .column_list-area_contents {
  max-width: 1085px;
  width: 79.4%;
  margin: 0 auto;
  margin-bottom: 30px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.column_list-area_contents .column_content_01,
.column_list-area_contents .column_content_02,
.column_list-area_contents .column_content_03 {
  border-radius: 27px;
  width: 31%;
  max-width: 343px;
  position: relative;
  overflow: hidden;
  height: auto;
}

.column_list-area_contents .column_content_01 {
  background: #F4F1E7;
	border: #F4F1E7 solid 4px;
}

.column_list-area_contents .column_content_02 {
  background:#EFF5D7;
	border: #EFF5D7 solid 4px;
}

.column_list-area_contents .column_content_01 a,
.column_list-area_contents .column_content_02 a,
.column_list-area_contents .column_content_03 a {
	text-decoration:none;
}

.column_content_01 img,
.column_content_02 img,
.column_content_03 img {
  border-radius: 20px 20px 0 0;
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}

.column_content_01 .column_content_01_text_area,
.column_content_02 .column_content_02_text_area,
.column_content_03 .column_content_03_text_area {
  position: unset;
  padding: 20px 25px;
  width: 100%;
  transition: all .5s;
}

.column_content_01_text_area .column_content_01_ttl,
.column_content_02_text_area .column_content_02_ttl,
.column_content_03_text_area .column_content_03_ttl {
  font-size: 26px;
  font-weight: 500;
  color: #555555;
  text-align: center;
  margin-bottom: 13px;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; 
  overflow: hidden;
}

.column_content_03_text_area .column_content_03_ttl.mb0 {
  margin-bottom: 0;
}

.column_list-area_contents .column_content_03 a  {
	position: absolute;
    bottom: 0;
    width: 100%;
	background: #F4F1E7;
	border-radius: 20px;
}

.column_content_01_text_area .column_content_01_txt,
.column_content_02_text_area .column_content_02_txt,
.column_content_03_text_area .column_content_03_txt {
  font-size: 16px;
  font-weight: 500;
  color: #555555;
  width:100%;
		display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; 
  overflow: hidden;
}

/*---------------
お知らせ
---------------*/
.news {
  padding: 30px;
  position: relative;
  margin-top: 10% !important;
}
.news::before {
  content: '';
  width: 100%;
  height: calc(100% - 50px);
  display: block;
  background-color: #f6f9ed;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.news .news_ttl {
  font-size: 48px;
  color: #555555;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5%;
}

.news .news_ttl span {
  font-size: 30px;
  font-weight: 500;
  display: block;
  z-index: 2;
  position: relative;
}
.news .news_ttl span.en {
  font-size: 140px;
  font-weight: 900;
  color: #cfe3c5;
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%); 
  z-index: 1;
}


.news .news_link {
	list-style: none;
}

.news_link li {
  width: 100%;
	height: 100%;
  border-bottom: #707070 1px solid;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.news_link a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #49342c;
  padding-left: 25px;
	font-size: 18px;
}
.news_link .article_txt {
	display: flex;
	align-items: center;
}

.news_link .article_txt p {
	color: #555555;
	font-size: 18px;
	font-weight: 500;
	width:100px;
}
.news_link .article_txt .news_contents_ttl {
		color: #555555;
    font-size: 18px;
    font-weight: 500;
	overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
	}
.news_link .article_data {
	display: flex;
}

.news_link article {
		width:100%;
	}

.news_link a .news_category {
  margin: 0 30px;
  text-align: center;
}

.link3 {
  text-align: right;
  margin-right: 30px;
  margin-top: 10px;
}
.link3 a {
    position: relative;
    margin: 0 auto;
    color: #49342c;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}
.link3 a:before {
    content: '';
    position: absolute;
    bottom: 2px;
    right: -38%;
    transform: translateY(calc(-50% - 2px)) rotate(45deg);
    width: 25px;
    height: 1px;
    background-color: #707070;
    transition: 0.3s;
}
.link3 a:after {
    content: '';
    position: absolute;
    transform: translateY(-50%);
    width: 150%;
    height: 1px;
    background-color: #707070;
    transition: 0.3s;
    bottom: -5px;
    right: -35%;
}
.link3 a:hover:before {
  right: -43%;
}
.link3 a:hover:after {
    right: -40%;
}
.link3 a:hover {
    color: #d9bd9c;
}

/*----------------
メッセージ
-----------------*/
.message {
}
.message.width {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}
.ttl3b span {
  font-size: 32px;
  font-weight: bold;
  color: #d9bd9c;
  display: block;
}
.ttl3b {
  text-align: center;
  font-size: 24px;
  color: #49342c;
}

.message_link {
  padding: 40px;
  border-radius: 50px;
  background: #f0e6d9;
  width: 38%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.message_link img {
  width: 250px;
  height: 250px;
  display: block;
  margin: 5% auto;
  background: #fff;
  border-radius: 100%;
}
.link1b a {
  display: block;
  width: 70%;
  margin: 5% auto 0;
  padding: 10px;
  border-radius: 50px;
  background: #d9bd9c;
  text-decoration: none;
  color: #fff;
  text-align: center;
}
.link1b a:hover {
  background: #49342c;
}
.message_txt {
  width: 58%;
}

/*---------
FAQ
-----------*/
.fap {
  padding: 30px 0;
  position: relative;
  background-color: #f6f9ed;
  margin-top: 8% !important;
}

.fap .fap_ttl {
  font-size: 48px;
  color: #555555;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5%;
  position: relative;
  z-index: 1;
}

.fap .fap_ttl span {
  font-size: 30px;
  font-weight: 500;
  display: block;
}
.fap .fap_ttl span.en {
  font-size: 140px;
  font-weight: 900;
  color: #cfe3c5;
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%); 
  z-index: -1;
}


/*--------------
グーグルマップ
--------------*/
.map {
  margin-bottom: 35px;
}

/*--------------------
フッター
-------------------------*/
.f_cta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
}
.f_cta li {
  width: 32%;
  border-radius: 20px;
  box-shadow: rgba(0,0,0,.25) 4px 4px 4px;
}
.f_cta li a {
  display: block;
  width: 100%;
  padding-top: 100px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  background-image: url(/wp-content/uploads/2026/06/cta1-1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
}
.f_cta li:nth-of-type(2) a {
  background-image: url(/wp-content/uploads/2026/06/cta2-1.jpg);
}
.f_cta li:nth-of-type(3) a {
  background-image: url(/wp-content/uploads/2026/06/cta3-1.jpg);
}
.f_cta li a span {
  border-radius: 20px;
  background-color: rgba(128, 174, 122, 0.7);
  padding: 10px 0;
  text-align: center;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.f_cta li a.f_cta_con span {
  background-color: rgba(114, 142, 154, 0.7);
}
.f_cta li a.f_cta_tel span {
  background-color: rgba(193, 111, 114, 0.7);
}
.f_cta li img {
  width: 45px;
  height: 45px;
  margin-right: 10px;
}
.f_cta li a:hover {
  padding-top: 0px;
}
.f_cta li a:hover span {
  padding: 60px 0;
}

.footer_contents {
  display: flex;
  justify-content: space-between;
}

.table1 {
  border-collapse: collapse;
  width: 48%;
}
.table1 tr th {
  padding: 10px 0 10px 20px;
  width: 30%;
  border-bottom: #b7b7b7 1px solid;
  vertical-align: top;
  text-align: left;
}
.table1 tr td {
  padding: 10px 0 10px 20px;
  width: 70%;
  border-bottom: #b7b7b7 1px solid;
}
.table1 tr td a {
  text-decoration: none;
  color: #555555;
}

.f_map {
  width: 48%;
}

.footer_contents .footer_txt {
  font-size: 18px;
  font-weight: 500;
  color: #555555;
  text-align: center;
  margin: 0 auto;
}

.footer_sitemap_contents {
  margin-bottom: 45px;
}

.footer_sitemap_contents .footer_sitemap_ttl {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
}

#footer_navi .footer_nav-menu {
  list-style: none;
  display: flex;
  justify-content: space-between;
  width: 50%;
  margin: 0 auto;
	flex-wrap:wrap;
}

#footer_navi .footer_nav-menu li {
	padding:10px;
}

.footer_nav-menu .footer_nav-menu_link {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #555555;
}

#footer .footer_copy_light {
  background-color: #49342c;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

/*レスポンシブ*/
@media screen and (max-width:1000px) {
  .mv .mv_ttl {
		top: 40%;
		left:10px;
	}
  .mv .mv_ttl span {
    font-size: 28px;
  }
  .service .service_ttl span.en,
  .works .works_ttl span.en,
  .news .news_ttl span.en,
  .fap .fap_ttl span.en {
    font-size: 100px;
    top: -80px;
  }
  .service_list li {
    width: 48%;
  }
  .service_txt {
    padding: 10px;
  }
  .service_list li.service_link a img {
    width: 110px;
  }
  .service_list li.service_link .service_txt {
    font-size: 18px;
  }
  .ttl2 {
    font-size: 100px;
  }
  .f_cta li a {
    font-size: 18px;
  }
  .f_cta li img {
    width: 35px;
    height: 35px;
  }
  .service .service_ttl,
  .works .works_ttl,
  .news .news_ttl,
  .fap .fap_ttl {
    font-size: 36px;
  }
  .point .width,
  .message.width {
    flex-direction: column;
  }
  .point_link,
  .message_link {
    width: 100%;
    padding: 20px;
    margin-bottom: 30px;
  }
  .point_link img,
  .message_link img {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }
  .list2,
  .message_txt {
    width: 100%;
  }
  .service:before {
    width: 140px;
    height: 140px;
  }
  .swiper:before {
    width: 150px;
    height: 150px;
    top: -110px;
  }
}

@media screen and (max-width:900px) {
	body {
		margin-bottom: 55px;
  }	
  .header_contents .btn_line,
	.header_contents .btn_contact,
	.header_contents .btn_tel{
		position:fixed;
		bottom: 0px;
		height: 50px;
		width:30%;
		margin-right:0;
	}
	
	.header_contents .btn_line {
	  background-color: #7FAD79;
	  border-radius: 10px;
		left: 10px;
	}

	.btn_line {
	  display: flex;
	  justify-content: center;
	  width: 100%;
	  height: 100%;
	  align-items: center;
	}

	.btn_line img {
	  width: 30px;
	  object-fit: cover;
	  margin-right: 0px;
	}

	.header_contents .btn_contact {
	  background-color: #728E9A;
	  border-radius: 10px;
		left: calc(50% - 15%);
	}

	.btn_contact {
	  display: flex;
	  justify-content: center;
	  width: 100%;
	  height: 100%;
	  align-items: center;
	}

	.btn_contact img {
	  width: 30px;
	  object-fit: cover;
	  margin-right: 0px;
	}

	.header_contents .btn_tel {
	  background-color: #C16F72;
	  border-radius: 10px;
		right: 10px;
	}

	.btn_tel {
	  display: flex;
	  justify-content: center;
	  width: 100%;
	  height: 100%;
	  align-items: center;
	}

	.btn_tel img {
	  width: 30px;
	  object-fit: cover;
	  margin-right: 0px;
	}
	#footer_navi .footer_nav-menu {
		width:80%;
	}
	#footer .footer_copy_light {
		height:30px;
	}
}

@media screen and (max-width:700px) {
	#header {
		padding:0 10px;
	}
	.toggle_btn {
		width:45px;
		height: 45px;
	}
	#header .header_contents {
		height:45px;
	}
	#header .logo {
		width:250px;
	}
	.btn_line a,
	.btn_contact a,
	.btn_tel a{
		flex-direction: column;
		font-size:15px;
	}
	.btn_line a img,
	.btn_contact a img,
	.btn_tel a img {
		width:23px;
		margin-right:0;
	}

	.toggle_btn span {
		width:25px;
		left:calc(50% - 12.5px);
	}
	.toggle_btn span:nth-child(1) {
		top: 13.5px;
	}
	.toggle_btn span:nth-child(2) {
		top: 21.5px;
	}
	.toggle_btn span:nth-child(3) {
		bottom:13.5px;
	}

  .mv {
    height: 380px;
  }
  .mv .mv_ttl span {
    padding: 5px;
    font-size: 16px;
  }
	.mv .mv_ttl span.sub_ttl {
    font-size: 11px;
    padding: 5px;
    margin-bottom: 5px;
  }
  .mv .mv_ttl span {
    margin-bottom: 5px;
  }
	.mv .mv_ttl .mv_sub_ttl {
		font-size:15px;
	}

  .service .service_ttl span.en, .works .works_ttl span.en, .news .news_ttl span.en, .fap .fap_ttl span.en {
    font-size: 60px;
    top: -50px;
  }
  .ttl1 {
    font-size: 18px;
  }
  .service_list li {
    width: 100%;
  }
  .ttl2 {
    font-size: 80px;
  }
  .f_cta {
    flex-direction: column;
    margin: 5% 0;
  }
  .f_cta li {
    width: 100%;
    margin-bottom: 20px;
  }
  .works .works_ttl span,
  .news .news_ttl span,
  .news_link .article_txt p,
  .fap .fap_ttl span {
    font-size: 16px;
  }
  .swiper-slide,
  .swiper-slide-more {
    width: 90%;
    margin: 0 auto;
  }
  .swiper-slide-more .ttl1 {
    font-size: 18px;
  }
  .swiper-slide-more .works_txt {
    font-size: 16px;
  }
  .ttl3 span,
  .ttl3b span {
    font-size: 24px;
  }
  .ttl4 {
    font-size: 18px;
  }
  .ttl4 span {
    font-size: 24px;
    margin-bottom: 0;
  }
  .erea {
    flex-direction: column;
  }
  .erea_txt,
  .erea>p {
    width: 100%;
  }
  .news::before {
    height: calc(100% - 15px);
  }
  .service .service_ttl, .works .works_ttl, .news .news_ttl, .fap .fap_ttl {
    font-size: 24px;
  }
  .footer_contents {
    flex-direction: column;
  }
  .table1,
  .f_map {
    width: 100%;
  }
  .service:before {
    width: 75px;
    height: 75px;
  }
  .swiper:before {
    width: 90px;
    height: 90px;
    top: -65px;
  }




	.column .column_ttl {
		margin-bottom: 40px;
	}
	.news .news_ttl>a {
		font-size: 18px;
	}
	.license_ttl .license_sub_ttl, .service .service_ttl span {
		font-size:15px;
	}
	.point_content_01 .point_content_01_ttl span, .point_content_02 .point_content_02_ttl span, .point_content_03 .point_content_03_ttl span {
		font-size:20px;
	}
	.point_content_01 .point_content_01_ttl, .point_content_02 .point_content_02_ttl, .point_content_03 .point_content_03_ttl {
		font-size:20px;
	}
	.works_content_01_text_area .works_content_01_ttl, .works_content_02_text_area .works_content_02_ttl, .works_content_03_text_area .works_content_03_ttl, .works_content_04_text_area .works_content_04_ttl, .works_content_05_text_area .works_content_05_ttl {
		font-size: 20px;
		margin-bottom:22px;
	}
	.works_content_06 a {
		font-size:20px;
	}

	.service {
		margin-bottom:30px;
	}
	.cta_contact .cta_tel, .cta_contact .cta_form {
		margin-bottom:40px;
	}
	.works_ttl_area img {
		width:35px;
	}
	.works_ttl_area .works_ttl {
		font-size: 18px;
	}
	.license_contents .license_contents_txt_01, .license_contents .license_contents_txt_03, .license_contents .license_contents_txt_05,.license_contents .license_contents_txt_02,.license_contents .license_contents_txt_04 {
		width:150px;
		height:150px;
		font-size:18px;
		margin-bottom:20px;
	}
	.news .news_ttl {
		font-size:18px;
	}
	.news {
		padding:10px;
	}
	.news_link a,.news .news_txt {
		font-size:13px;
	}
	.news img {
		width:100px;
	}
	.news_link .article_txt {
		flex-direction: column;
		align-items: start;
	}
	.news_link article {
		width:100%;
	}
	.news_link .article_txt .news_contents_ttl {
		overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
		width:95%;
		color: #555555;
    font-size: 18px;
    font-weight: 500;
	}
	.message .message_ttl {
		font-size:70px;
	}
	.message .message_sub_ttl {
		font-size: 20px;
	}
	.works_area {
		flex-direction:column;
	}
	.works_area .works_area_ttl {
		width:90px;
		height:90px;
		font-size:17px;
		margin:0;
		margin-bottom:20px;
	}
	.works_area_txt_contents .works_area_txt {
		font-size:13px;
	}
	.works_area img {
		width:150px;
	}
	.footer_contents .footer_txt {
		font-size:13px;
	}
	#footer_navi .footer_nav-menu {
		flex-wrap: wrap;
		justify-content: space-evenly;
	}
	.footer_nav-menu li {
		text-align: center;
		margin: 0 10px;
		margin-bottom: 20px;
	}
	.open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
	}
	
}
@media screen and (max-width:400px) {
	.swiper-slide img {
		display:block;
		margin:0 auto;
	}
}


/*---240613 edit ---*/
.mt3 {margin-top:3%!important;}
.mt5 {margin-top:5%!important;}
.mt8 {margin-top:8%!important;}
section.single_inner p img, ul.ba li img {
    display: block;
    width: 100%;
    height: auto;
}
ul.ba {
    margin: 5% auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style: none;
    position: relative;
}
ul.ba::before {
    content:"";
    width: 8%;
    height: 100%;
    position: absolute;
    background: url(/wp-content/uploads/2024/06/right.png)no-repeat center / contain;
    left: 0;
    right: 0;
    margin: auto;
}
ul.ba li {
    width: 45%;
    margin-right: 10%;
    text-align: center;
}
ul.ba li:last-child {
    margin-right: 0;
	margin-bottom:0;
}
ul.ba li:first-child::before {
    content: "before";
    font-size: 30px;
    text-transform: capitalize;
    font-weight: 600;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(40%, #f5f1e7), color-stop(41%, transparent));
    background: -o-linear-gradient(bottom, #f5f1e7 40%, transparent 41%);
    background: linear-gradient(0deg, #f5f1e7 40%, transparent 41%);
    display: block;
	color: #6e6051;
}
ul.ba li:last-child::before {
    content: "after";
    font-size: 30px;
    text-transform: capitalize;
    font-weight: 600;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(40%, #f0dba7), color-stop(41%, transparent));
    background: -o-linear-gradient(bottom, #f0dba7 40%, transparent 41%);
    background: linear-gradient(0deg, #f0dba7 40%, transparent 41%);
    display: block;
	color: #6e6051;
}

@media screen and (max-width: 450px) {
ul.ba::before {
    width: 100%;
    height: 40px;
    top: 0;
    bottom: 0;
    transform: rotate(90deg);
}
ul.ba li {
    width: 100%;
    margin: 0 auto 50px;
}
}

/*--------------
 * 25.06.05-DC追記
 * --------------*/
.width {
	max-width: 1200px;
  width: 90%;
  margin: 5% auto;
}
.qa-6 {
    margin-bottom: 5px;
    border-bottom: 2px solid #878e9b;
}
.qa-6:nth-of-type(1) {
  border-top: 2px solid #878e9b;
}

.qa-6 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #555555;
    font-weight: 600;
    cursor: pointer;
}

.qa-6 summary::before,
.qa-6 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-6 summary::before {
    color: #2b3356;
    content: "Q.";
}

.qa-6 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #555555b3;
    border-right: 3px solid #555555b3;
    content: '';
    transition: transform .5s;
}

.qa-6[open] summary::after {
    transform: rotate(225deg);
}

.qa-6 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #555555;
    transition: transform .5s, opacity .5s;
}

.qa-6[open] p {
    transform: none;
    opacity: 1;
}

.qa-6 p::before {
    color: #2b3356;
    line-height: 1.2;
    content: "A.";
}
@media screen and (max-width:700px) {
	.width {
    width: 95%;
    margin: 5% auto;
}
	.qa-6 summary {
		font-size:14px;
		padding-right:10px;
	}
	.qa-6 summary::after {
		width:5px;
		height:5px;
	}
}

/*-----------------
 * 25.07.10 DC追記
 * -----------------*/
div.float.clear:after {
	content:'';
	display:block;
	clear:both;
}
div.float .floatr {
	width:40%;
	margin: 0 0 10px 10px;
	float:right;
}
@media screen and (max-width:700px) {
	div.float .floatr {
		width:100%;
		margin: 0 auto 3%;
		float:unset;
	}
}
/*-------------------
25.11.06 DC追記
----------------------*/
.dc_column {
    margin: 3% auto;
    max-width: 1085px;
    width: 95%;
}
.dc_ttl1 {
    color: #555555;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 2%;
    font-size: 24px;
}
.dc_list1 {
    max-height: 200px;
    overflow-y: scroll;
    margin: 3% 0;
}
.dc_list1 li {
    border-bottom: #525252 dashed 1px;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.dc_list1 a {
    text-decoration: none;
    color: #555555;
    transition: all .3s;
}
.dc_list1 a:hover {
    opacity: .8;
}
.dc_ttl2 {
    padding: 0;
    margin: 5px 0;
    border: none;
    white-space: nowrap; /* 折り返し無しにする */
    overflow: hidden; /* はみ出た部分を非表示 */
    text-overflow: ellipsis; /* 語尾を3点リーダーに */
    color: #555555;
    font-size: 18px;
}
.dc_read_txt {
    display: -webkit-box; /* 必須 */
    -webkit-box-orient: vertical; /* 必須 */
    -webkit-line-clamp: 2; /* 行数を制限 */
    overflow: hidden; /* はみ出た部分を非表示 */
    line-height: normal;
    margin: 0 !important;
}
.dc_column_link {
    text-align: right !important;
}
.dc_column_link a {
    text-decoration: none;
    color: #555555;
    transition: all .3s;
}
.dc_column_link a:hover {
    color: #555555;
    opacity: .8;
}