/*
Theme Name: Decobaboo
Description: オリジナルテーマ「Decobaboo」
Author: 9D
Version: 1.0
*/

:root {
  --primary-color: #fff000;
  --secondary-color: #009fe8;
}

body {
  font-family: 'M PLUS 1p', sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
	background-color: var(--primary-color);
  color: #333;
}
body.home{
	background-color: #ffffff;
}
a {
  transition: all 0.5s ease 0s;
  color: #333;
}
/* すべてのリンク化を無効にする */
a, address, tel, .no-link {
    text-decoration: none !important;
}
img {
  width: 100%;
}

main {
  display: grid;
  margin: 0;
  padding: 0;
}
main.layout, main.fullpage{
  padding-bottom: 350px;
}
.container {
	width:100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ヘッダー・フッター */
header{
  padding: 15px 0;
  transform: translateY(0);
  transition: transform 0.3s ease;
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 999;
}
header.hidden {
  transform: translateY(-100%);
}

header img {
  max-width: 280px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*フッターセクション*/
.upper-footer{
	background-color: #009fe8;
	padding: 50px 0 0;
	overflow: hidden;
}
.upper-footer .container{
	position: relative;
}
.footer-grid{
	margin: 0 auto 30px;
	display: grid;
	gap:30px;
	grid-template-columns:1.5fr 1fr;
}
.footer-item p{
	margin: 3px auto;
}
footer::before{
	position: absolute;
	display: block;
	content:'';
	background-image: url("img/common/upper-decobaboo.svg");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	width:500px;
	height:520px;
	bottom:32px;
	left:15%;
	z-index: 1;
    opacity: var(--fade-opacity, 0);
    transition: opacity 1.5s ease-out;
}
.footer-logo img{
	max-width:300px;
	margin-bottom:10px;
}
footer {
  background-color: #fff000;
  padding: 5px 0;
	text-align: center;
	position: relative;
}
.copyright{
	font-size:0.9rem;
	margin:0;
	padding: 0;
	color:#009fe8;	
}


/* トップページ用のセクション */
/* キービジュアルセクション */
#kv {
  background:#fff000;
  color: #ffffff;
  position: relative;
  width: 100%;
	height:600px;
  margin-top: 0;
  padding-top: 0;
	overflow: hidden;
}
.kv-overlay{
	background-image: url("img/kv/cloud.svg");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 140%;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 14;
}
.element01{
	position:absolute;
	bottom:-100px;
	width:520px;
	right:10%;
  z-index: 11;
}
.element02{
  position: absolute;
  bottom: 200px;
  left: 100px;
  width: 100px;
  height: auto;
}
.element03{
	position:absolute;
	width:120%;
  left: 50%;
  bottom: 10px; 
  transform: translateX(-50%);
  height: auto;
  z-index: 10;
}
.element04{
  position: absolute;
  width: 300px;
  height: auto;
  top: 100px;
  left: 25%;
  z-index: 12;
  animation: none;
}
@keyframes fly {
    0% { transform: translate(0, 0); }
    50% { transform: translate(0, 20px); }
    100% { transform: translate(0, 0); }
}
.element05{
  position: absolute;
  width: 500px;
  height: auto;
  top: 45%;
  left: 13%;
  z-index: 13;
	transform: translateY(-45%;)
}
.element06 {
  width: 150px;
  position: absolute;
  top: 20%;
  left: 100%;
}

section {
  scroll-margin-top: 86px;
}

.sec-title{
  position: relative;
  text-align: center;
}
.sec-title h2{
	font-family: "Roboto", serif;
	font-weight: 900;
	font-size:3rem;
}
.sec-title h2 span{
	display:block;
	font-family: 'M PLUS 1p', sans-serif;
	font-size:1rem;
	font-weight:normal;
}
.blue{
	color:#009fe8;
}
.yellow{
	color:#fff000;
}
.skyblue{
	color:skyblue;
}

.button-block{
	margin: 30px auto;
	text-align:center;
}
.button{
	padding:12px 30px;
	background-color:#009fe8;
	color:#fff;
	border-radius: 30px;
	font-size:1.2rem;
}

/* 新着投稿セクション */
#latest-posts {
  padding: 0 0 60px;
  background-color: #ffffff;
	position: relative;
}
.new-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.new-posts article {
  background-color: #f7f7f7;
  padding: 15px;
  border-radius: 15px;
}
.new-posts a article{
    transition: transform 0.3s ease-out;
}
.new-posts a:hover article{
    transform: translateY(-5px);
}
.new-posts img {
  width: 100%;
  height: auto;
	aspect-ratio: 16 / 9;
  object-fit: cover;
}
.new-posts h3 {
  font-size: 1rem;
  margin: 0 0 5px;
  padding: 0;
}
.post-meta {
  text-align: right;
	font-size:0.9rem;
}
.post-cat span {
  font-size: 0.8rem;
  padding: 5px 10px;
  background-color: #009fe8;
	color:#ffffff;
  border-radius: 30px;
  text-decoration: none;
}
.post-cat span:not(:first-child) {
  margin-left:3px;
}
.post-tags {
  margin-top: 10px;
}
.post-tags .tags-label {
  font-weight: bold;
}
.post-tags span {
  display: inline-block;
}
.post-tags span:not(:first-child) {
  text-decoration: none;
  background: #fff;
  padding: 5px 10px;
  border-radius: 30px;
  font-size: 0.8rem;
  margin-left:3px;
}

/*セクション2グリッド*/
.twocolumn-grid{
	display: grid;
	gap:20px;
	grid-template-columns:repeat(2, 1fr);
}

/* 会社概要セクション */
#about {
  padding: 60px 0 120px;
  background-color: #009fe8;
	position: relative;
}
.companyinfo-grid{
	display: grid;
	gap:30px;
	grid-template-columns:1fr 4fr;
	padding:20px 5px;
	border-bottom: 1px #ffffff dotted;
}
#about .twocolumn-grid{
	gap:30px;
}
#about .twocolumn-item:first-child{
    display: flex;
    justify-content: center;
}
#about .twocolumn-item:last-child{
    color:#ffffff;
}
.btnMap{
	margin-top:5px;	
}
.map{
	font-family: "Roboto", serif;
	font-size:0.8rem;
	font-weight: 900;
	background-color:#fff;
	color:#009fe8;
	padding: 3px 10px;
	border-radius: 20px;
}
.circle-decobaboo{
	max-width:450px;
	margin-top:-50px;
}

/* 業務内容セクション */
#services {
  padding: 60px 0 300px;
  background-color: #fff000;
	 position: relative;
  overflow: hidden;
margin-top:-70px;

}

/* お問合せセクション */
#contact {
  padding: 20px 0 120px;
	background-color:#ffffff;
	position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}
.contact-info h3{
	font-family: "Roboto", serif;
	font-weight:600;
	font-size:2rem;
	margin:3px auto;
}
.contact-info h3 span{
	font-weight:500;
	font-size:1.5rem;
	background-color:#fff;
	padding:3px 15px;
	margin-right:10px;
	border-radius: 30px;
}
.contact-info h4{
	font-weight:400;
	font-size:1.2rem;
	margin:10px auto 20px;
}
.contact-info h4 span{
	font-size:1.5rem;
	margin-left:10px;
}
.contact-form a {
    font-weight: 900;
	color:#009fe8;
}
.sns-grid{
	display: grid;
	gap:30px;
	grid-template-columns:repeat(2, 1fr);
}
.button.blue{
	background-color:#009fe8;
	display:block;
	border-radius: 8px;
	text-align: center;
	position:relative;
    transition: border-radius 0.3s ease;
}
.button.blue:hover {
    border-radius: 30px;
}
.line .button.blue::before{
	content:'';
	position: absolute;
	top:10px;
	left:25px;
	width:28px;
	height:28px;
	background-image:url("img/social/line-wh.svg");
	background-size:contain;
}
.instagram .button.blue::before{
	content:'';
	position: absolute;
	top:10px;
	left:25px;
	width:28px;
	height:28px;
	background-image:url("img/social/instagram-wh.svg");
	background-size:contain;
}
/*投稿ページシェアボタン*/
.share-block{
	margin:30px auto;
	text-align: center;
}
.share-block a{
	display: inline-block;
}
.share-block a:not(:nth-child(1)){
	margin-left: 10px;
}
.share-block a img{
	width:35px;
	height: 35px;
    transition: transform 0.3s ease-out;
}
.share-block a:hover img {
    transform: translateY(-5px);
}

/* ビジュアルセクション（トップページ以外） */
.page-visual {
  height: 200px;
  background-size: cover;
  background-position: right center;
  position: relative;
	margin-bottom:5px;
}
.page-visual .page-title {
	position: absolute;
    bottom: -19px;
    margin: 0;
    padding: 0;
    color: #fff000;
	font-family: "Roboto", sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
	line-height:1.2;
}

/* サイドバー付きページ */
.layout .container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 60px;
}
h3.widget-title{
	background-color:#009fe8;
	border-radius:5px;
	padding:5px 10px;
	color:#ffffff;
}
.sidebar li{
    margin-bottom: 10px;
}

/* お知らせ一覧ページ用 */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.news-grid .post-date{
	margin-top:3px;
}
/*
.news-grid a article{
	padding:15px;
	border-radius:10px;
    transition: box-shadow 0.3s ease-in-out;
}
.news-grid img{
    object-position: center center;
	border-radius:15px;
  width: 100%;
  height: auto;
	aspect-ratio: 16 / 9;
  object-fit: cover;	
}
*/
.news-grid h3{
	margin: 0;
  padding: 0;
	line-height: 1.2;
	font-size:1rem;
	margin-bottom:5px;
}

.news-grid a article {
	padding:15px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}
/* 画像の枠を定義 */
.news-grid a article .img-container {
    position: relative;
    width: 100%; /* 画像の幅を記事枠に合わせる */
    aspect-ratio: 16 / 9; /* 画像のアスペクト比を統一 */
    overflow: hidden; /* 画像が枠からはみ出さないように */
    border-radius: 15px;
}
/* 画像にズームエフェクトを適用 */
.news-grid a article .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease-in-out;
}
/* ホバー時に画像のみズーム */
.news-grid a:hover article .img-container img {
    transform: scale(1.1);
}
/*ページネーション*/
.pagination{
	margin:80px auto 0;
}
/* ページネーション全体 */
.pagination {
  text-align: center;
  margin: 2rem 0;
}

/* 数字部分の共通スタイル */
.pagination .page-numbers {
  font-size: 1.2rem;
  background-color: #ffffff;
  color: #333;
  border-radius: 50%;
  padding: 0.5rem 0.75rem;
  margin: 0 5px;
  display: inline-block;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.pagination .prev,.pagination .next{
  padding: 0.5rem 1.1rem;
	color:#009fe8;
}
.pagination .dots{
  background-color:transparent;
}
/* 現在のページやホバー時 */
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background-color: #009fe8;
  color: #fff;
}

/* 「前へ」と「次へ」を矢印に変更 */
/* ここでは、.prev と .next のクラスがあるリンクを対象にしています */
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  font-size: 1.2rem;
  /* 元のテキスト（「前へ」「次へ」）を隠す */
  text-indent: -9999px;
  position: relative;
}

/* 擬似要素で矢印を表示 */
.pagination .page-numbers.prev::before,
.pagination .page-numbers.next::before {
  text-indent: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.pagination .page-numbers.prev::before {
  content: "\f104";  /* FontAwesome 左矢印 (fa-chevron-left) */
  font-family: "Font Awesome 5 Free"; /* FontAwesomeのフォントを指定 */
  font-weight: 900; /* FontAwesomeのアイコンを適用 */
}

.pagination .page-numbers.next::before {
  content: "\f105";  /* FontAwesome 右矢印 (fa-chevron-right) */
  font-family: "Font Awesome 5 Free"; /* FontAwesomeのフォントを指定 */
  font-weight: 900; /* FontAwesomeのアイコンを適用 */
}

/* SNSアイコン共通スタイル */
.social-icons {
  gap: 15px;
}
.social-icons a{
}
.social-icons a:not(:first-child) {
	margin-left: 2px;
}
.social-icons a img {
  width: 35px;
  height: 35px;
/*	filter: drop-shadow(0px 0px 5px #fff);*/
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 30px;
	padding:8px;
	transition: all 0.3s ease;
}
.social-icons a:hover img {
	transform: rotate(360deg);
}

/* お問合せフォーム */
form label em{
	font-style: normal;
	color:#ffffff;
	padding:2px 5px;
	font-size:0.7rem;
	border-radius:3px;
	background-color:#D94042;
	margin-left:5px;
	vertical-align: 3px;
}
input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  box-sizing: border-box;
  border: none;
  padding: 8px;
  font-size: 1rem;
  border-radius: 5px;
}
input.wpcf7-form-control.wpcf7-submit {
  font-size: 1.1rem;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  background-color: #009fe8;
  color: #fff;
    transition: border-radius 0.3s ease;
}
input.wpcf7-form-control.wpcf7-submit:hover {
    border-radius: 30px;
}
.wpcf7 form.invalid .wpcf7-response-output{
	border-radius:8px;
	color:#ffffff;
	background-color: #009fe8;
	border:none;
	padding:10px;
}
input.wpcf7-form-control.wpcf7-text, textarea.wpcf7-form-control.wpcf7-textarea{
	border: 1px #dddddd solid!important;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner{
	width: 100%;
}
.wpcf7-spinner{
	margin:5px 24px;
}


/*お知らせ個別ページ*/
img.attachment-full.size-full{
  width: 100%;
  height: auto;
	aspect-ratio: 16 / 9;
  object-fit: cover;
	object-position: center center;
	border-radius:10px;
}
.single .post-date{
	margin:5px auto; 
}
.single .post-cat{
	margin:30px auto; 
}

/* ページネーション全体 */
.nav-links {
  text-align: center;
  margin: 2rem 0;
}

/* 数字部分の共通スタイル */
.nav-links .page-numbers {
  font-size: 1.2rem;
  background-color: #ccc;
  color: #333;
  border-radius: 50%;
  padding: 0.5rem 0.75rem;
  margin: 0 5px;
  display: inline-block;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.nav-links .prev.page-numbers, .nav-links .next.page-numbers {
  padding: 0.5rem 1.1rem;
}

/* 現在のページやホバー時 */
.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
  background-color: #009fe8;
  color: #fff;
}
/* 「前へ」と「次へ」を矢印に変更 */
.nav-links .page-numbers.prev,
.nav-links .page-numbers.next {
  font-size: 1.2rem;
  /* 元のテキスト（「前へ」「次へ」）を隠す */
  text-indent: -9999px;
  position: relative;
}
/* 擬似要素で矢印を表示 */
.nav-links .page-numbers.prev::before,
.nav-links .page-numbers.next::before {
  text-indent: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav-links .page-numbers.prev::before {
  content: "\003C";  /* 左矢印 */
}

.nav-links .page-numbers.next::before {
  content: "\003E";  /* 右矢印 */
}

  /* デスクトップ用SNSアイコンを表示 */
  .social-desktop {
    display: flex;
    order: 3;
  }
  /* スマホ用は非表示 */
  .social-mobile {
    display: none;
  }
  /* header内のレイアウト：ロゴ、ナビ、SNSアイコンを横並びに */
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

.main-navigation {
	position: fixed;
    width: auto;
    height: auto;
    background: none;
    transition: none;
    top: 20px;
    right: 150px;
}

/* 前後の投稿ナビゲーション */
.post-navigation {
  margin-top: 60px;
  overflow: hidden;
}

.post-navigation .prev-post,
.post-navigation .next-post {
  font-size: 0.9rem;
	font-weight:700;
  color: #009fe8;
  border-radius: 30px;
  padding: 5px 15px;
  display: inline-block;
}

.post-navigation .prev-post {
  float: left;
}

.post-navigation .next-post {
  float: right;
}

/* お知らせ一覧ボタン */
.back-to-news a {
  background-color: #009fe8;
  color: #ffffff;
}
.back-to-news .btn-arrow span::after {
		color:#ffffff;		
}

/*カーソル追従*/
#cursorImage {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 9999;
  /* 必要に応じてサイズなども設定 */
  width: 160px;
  height: auto;
}

/*レスポンシブ対応*/
@media (max-width: 1400px) {
.element04 {
	left:15%;
}
.element05 {
	left:10%;
}
}
@media (max-width: 1140px) {
.container {
	width:-webkit-fill-available;
}
.element05 {
	width:400px;
	left:5%;
}
footer::before{
	left:5%;
}
}
@media (max-width: 950px) {
.element01{
	bottom:-80px;
	width:350px;
}
.element03{
	width:150%;
}
.element04 {
    width: 220px;
    top: 220px;
    left: 10%;
}
.element05 {
	width:600px;
	top:18%;
	left:50%;
	transform: translateX(-50%);
}
.contact-grid {
    grid-template-columns: 1fr;
}
footer::before{
	width:400px;
	height:420px;
}
main.layout, main.fullpage{
  padding-bottom: 250px;
}
.news-grid {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 850px) {
}

@media (max-width: 750px) {
.circle-decobaboo{
	margin-top:0;
}
#about .twocolumn-item:first-child{
	order:2;
}
#about .twocolumn-item:last-child{
	order:1;
}
#services {
  padding: 60px 0 550px;
	margin-top: -100px;
}
.upper-footer{
	padding: 100px 0 0;
}
.footer-grid{
	grid-template-columns:1fr;
	text-align:center;
	padding-bottom:280px;
}
footer::before{
	width:300px;
	height:320px;
	left:50%;
	transform: translateX(-50%);
}
.footer-item:first-child{
	order:2;
}
.footer-item:last-child{
	order:1;
}
.twocolumn-grid{
		grid-template-columns: 1fr;
}
.layout .container {
    grid-template-columns:1fr;
}
.new-posts {
    grid-template-columns: 1fr;
}
main.layout, main.fullpage{
  padding-bottom: 100px;
}
}

@media (max-width: 650px) {
.element05 {
	width:500px;
}
.page-visual {
  height: 150px;
}
.page-visual .page-title {
    bottom: -12px;
    font-size: 2.5rem;
}
}

@media (max-width: 600px) {
header{
	padding:10px 0;
}
header{
    top: 0;
}
header img {
    max-width: 200px;
}
#kv {
  padding-top: 60px; 
}
#kv{
  height:500px; 
}

.element01{
	bottom:-50px;
	width:250px;
}
.element03{
	width:180%;
	bottom:0;
}
.element04 {
    width: 200px;
    left: 8%;
}
.element05 {
	width:450px;
}
.element06 {
  width: 100px;
  top: 35%;
}
section {
  scroll-margin-top: 80px;
}
.layout .container {
	grid-template-columns:1fr;
}
.content,.sidebar {
    width: 100%;
}
/*カーソル追従
#cursorImage {
  width: 100px;
}*/
}
@media (max-width: 500px){
body{
	font-size:14px;
}
.element04 {
    width: 160px;
    left: 5%;
}
.element05 {
	top:20%;
	width:400px;
}
.sec-title h2{
	font-size:2.5rem;
}
#latest-posts {
  padding: 30px 0 60px;
}
#about {
    padding: 80px 0 100px;
}
#services {
  padding: 60px 0 400px;
}
#contact {
  padding: 20px 0 80px;
}
.contact-info h3{
	font-size:1.5rem;
}
.contact-info h3 span{
	font-size:1.3rem;
}
.news-grid {
    grid-template-columns: 1fr;
}
.main-navigation {
    top: 55px;
    left: 5%;
}
.social-icons a img {
  width: 30px;
  height: 30px;
}
}

@media (max-width: 450px) {
.element05 {
	top:20%;
	width:350px;
}
.sns-grid{
	gap:10px;
}
.button.blue{
	font-size:1rem;
	padding:10px 10px 10px 18px;
}
.line .button.blue::before{
	top:11px;
	left:15px;
	width:22px;
	height:22px;
	background-image:url("img/social/line-wh.svg");
	background-size:contain;
}
.instagram .button.blue::before{
	top:11px;
	left:15px;
	width:22px;
	height:22px;
}
.footer-grid{
	padding-bottom:240px;
}
footer::before{
	width:250px;
	height:260px;
}
.pagination .page-numbers {
  padding: 0.5rem 0.7rem;
  font-size: .9rem;
  margin:0 2px 5px;
}
.pagination .prev,.pagination .next{
  padding: 0.5rem 0.98rem;
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  font-size: .9rem;
}
}

@media (max-width: 400px) {
.element01{
	bottom:-30px;
	width:260px;
	right:5%;
}
.element03{
	width:300%;
	bottom:0;
}
.element04 {
    width: 150px;
    left: 10px;
}
.element05 {
	top:22%;
	width:300px;
}
#services {
  padding: 60px 0 320px;
}
.page-visual .page-title {
    bottom: -10px;
    font-size: 2rem;
}
}

@media (max-width: 350px) {
#kv{
	height:450px;
}
.element01 {
	width:220px;
}
.element04 {
	top:180px;
}
.element05 {
	top:24%;
	width:260px;
}
}

/*個人情報保護方針見出し*/
h3.has-background{
	border-radius: 5px;
}

/*ヘッダーナビゲーション*/
nav {
    display: block;
    position: fixed;
    width: 500px;
    height: 500px;
    user-select: none;
    top: -185px;
    right: -185px;
    pointer-events: none;
}
nav .disc {
    pointer-events: auto;
}
.disc {
    position: absolute;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    line-height: 40px;
    padding-top: 10px;
    border-radius: 250px;
    transform: scale(0.5) rotate(190deg);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
	font-size:1.2rem;
	font-weight:600;
}
.disc:hover {
    opacity: 0.8;
	background-color:#fff000;
	color:#009fe8;
}
.disc.l5:hover {
	background-color:transparent;
}
.disc div {
    transform: rotate(180deg);
}
.l1 { top: 50px; left: 50px; right: 50px; bottom: 50px; background-color: #009fe8; color:#fff;}
.l2 { top: 100px; left: 100px; right: 100px; bottom: 100px; background-color:#23b9e2;  color:#fff; }
.l3 { top: 150px; left: 150px; right: 150px; bottom: 150px;  background-color: #44c2e0; color:#ffffff;}
.l4 { top: 200px; left: 200px; right: 200px; bottom: 200px; background-color:#fff000;  color:#009fe8; }
.l5 { top: 200px; left: 200px; right: 200px; bottom: 200px; background-color:transparent; color:#333333;}
.toggle {
    line-height: 100px;
    padding: 0;
    width: 100px;
    height: 100px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
	font-family: "Roboto", serif;
	font-size: 1rem;
	font-weight: 900;
    text-align: center;
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}
.toggle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("img/header/menu-sun.svg");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 50%;
    animation: rotate 10s linear infinite;
    z-index: -1;
}
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.toggle:hover::before {
	opacity: 0.8;
}
nav.closed .disc:not(.toggle) {
    top: 200px;
    left: 200px;
    right: 200px;
    bottom: 200px;
}

/*パンくずリスト*/
.breadcrumb{
	margin-bottom:40px;
}

.breadcrumb ul{
	margin:0;
	padding:0;
}
.breadcrumb ul li{
	list-style: none;
	display: inline-block;
	font-size:0.9rem;
}

/*トップへもどるボタン*/
#back-to-top {
    position: fixed;
    bottom: -130px;  /* 初期状態では画面下外に配置 */
    right: 10px;
    width: 70px;
    height: auto;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    transition: bottom 0.3s ease;
    z-index: 1001;
}
/* ボタン表示時のアニメーション */
#back-to-top.show {
    bottom: 5px;
}
/* 吹き出しスタイル */
.tooltip {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #009fe8;
    color: #fff000;
    padding: 5px 10px;
    border-radius: 50%;
    font-size: 1rem;
	font-weight:700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translate(-50%, 10px);
}
/* 吹き出しの三角部分 */
.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #009fe8 transparent transparent transparent;
}

/* ボタンホバー時に吹き出しを表示 */
#back-to-top:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
@media screen and (max-width:500px){
/*トップへもどるボタン*/
#back-to-top {
    width: 50px;
}
/* 吹き出しスタイル */
.tooltip {
    bottom: 95px;
}
}

/*商品スライダー*/
/* 画像スライダー全体の設定 */
.image-slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: auto;
}
.slider-set {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.slider-set {
  display: none;
}
.slider-slot {
  position: relative;
  overflow: hidden;
}
/* 上段と下段の間隔 */
.top-slot {
  margin-bottom: 5px;
}
.slider-slot img {
  width: 100%;
  display: block;
}


/*ボタン*/
.btn-arrow {
      position: relative;
      display: inline-block;
      padding: 8px 50px 8px 30px; /* 左右に余裕を持たせる */
      color: #009fe8;
      border: none;
      cursor: pointer;
      overflow: hidden;
      text-align: center;
	  transition: all 0.5s ease 0s;
		background-color: #fff000;
}
/* テキスト部分をspanでラップして中央寄せ */
.btn-arrow span {
      position: relative;
      z-index: 2;
      display: inline-block;
}
/* テキストの右側に矢印を擬似要素で常時表示 */
.btn-arrow span::after {
      content: "\f0da";
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      position: absolute;
		top:0;
      right:-40px; 
      margin-left: 10px;
      opacity: 1;
      transform: translateX(0);
		color:#fff000;
	background-color: #009fe8;
	padding: 5px 10px;
	border-radius: 30px;
}
/* 矢印を左右に5px往復移動させるアニメーション */
@keyframes arrow-move {
      0% { transform: translateX(0); }
      50% { transform: translateX(5px); }
      100% { transform: translateX(0); }
}
/* ホバー時に矢印にアニメーションを適用 */
.btn-arrow:hover span::after {
      animation: arrow-move 0.8s infinite;
}
.btn-arrow:hover{
      opacity: 0.8;
}

.remarks-section{
	position: relative;
	margin: 80px auto 30px;
}
.remarks-section h3{
	position: absolute;
	left:10px;
	top:-33px;
	padding:5px 20px;
	border-radius:10px;
	background-color:#ff5a5f;
	color:#ffffff;
	font-size:1rem;
}
.remarks-section p{
	padding: 25px 25px 20px;
	background-color:#ffffff;
	border:3px #ff5a5f solid;
	border-radius:10px;
	font-size:0.9rem;
}

.wpcf7 form.sent .wpcf7-response-output{
	border:2px #009fe8 solid!important;
	border-radius:10px;
}

.display-sp-01{
	display: none;
}
@media (max-width: 500px) {
.display-pc-01{
	display: none;
}
.display-sp-01{
	display: block;
}
}

.kv-decoration {
  position: absolute;
  width: 25px;
  height: 25px;
  opacity: 0; /* 初期状態で非表示 */
  transition: opacity 0.3s ease-in;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 8; /* `.kv-elements` の背面 */
}


.element04::after{
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #009fe8;
    color: #fff000;
    padding: 5px 10px;
    border-radius: 50%;
    font-size: 1rem;
	font-weight:700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translate(-50%, 10px);
}
/* 吹き出しの三角部分 */
.element04::after::after{
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #009fe8 transparent transparent transparent;
}

/*カタログ調整*/
p.attention{
	font-size:0.8rem;
	font-weight:700;
	color:#ff5a5f;
}

/*Google recaptcha*/
.grecaptcha-badge { visibility: hidden; }