/*!
Theme Name:　sanyoelevator
Theme URI: 
Description: Dejavulabo
Author: dejavulabo
Author URI: 
Version: 1.0
*/
@charset "utf-8";
/* CSS Document */

/****************************************
		1. 基本設定
*****************************************/

/*
Copyright (c) 2010, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.com/yui/license.html
version: 3.3.0
build: 3167
　↓YUI3 CSS Reset　ブラウザー固有のスタイルをリセットします↓　*/
body,div,dl,dt,dd,
ul,ol,li,h1,h2,h3,h4,h5,h6,
pre,code,form,fieldset,legend,
input,textarea,p,blockquote,th,td {
    font-weight: normal;
	margin:0;
	padding:0;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
body{
	font-size: clamp(14px, 2.5vw, 16px); /* 画面幅に応じて可変 */
	color: var(--font_color);
}
main{
    min-height: 70vh;
}

/*送信ボタン*/
input[type="submit"] {
  -webkit-appearance: none;
}
input[type="reset"] {
  -webkit-appearance: none;
}


/*---↓リンクに対する共通設定↓---*/
*{
	margin:0;
	padding:0;
	line-height:1.5;
	list-style:none;
    scroll-behavior: smooth;
}
/*アンダーtopボタン*/
.pagetop {
	position: fixed;
	bottom: -520px;
	right: 10px;
	z-index:9999;
}
.pagetop a {
	display: block;
	width: 86px;
	height: 138px;
}

img{
	border:none;
}
a, a:link,/*未訪問のリンクを指定*/
a:visited,/*訪問済みのリンクを指定*/
a:hover,/*マウスオーバーした時のリンク部分を指定*/
a:active,/*クリック時のリンク部分を指定*/
a{
	text-decoration:none;
}
body{
	overflow-x:hidden;
	font-family: "Noto Sans JP", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: <weight>;
  	font-style: normal;
}


/* clearfix
----------------------------------------------------*/
.clearfix{ /zoom: 1; }
.clearfix:after{ content: ''; display: block; clear: both; }
/* box-sizing
----------------------------------------------------*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
        -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
/* ================= カラー設定 ======================= */
*{
  --main_color: #0068b7;/* rgba(0,104,183,1) */
  --main_color_light: #ebebeb; /*gray rgba(235,235,235,1)*/
  --sub_color: #003366;/*(0,51,102,1)*/
  --sub_color_light: #28a745 ; /*green rgba(40,167,69,1)*/
  --back_color: #fff;
  --font_color: #0a0a0a;
}
/************************************************
  投稿本文（記事詳細）用のアドミン・共通スタイル
*************************************************/
.post-content p{
 line-height: 1.7;
}
/* --- 1. 画像の崩れ防止・マージン確保 --- */
.post-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5em auto; /* 上下に余白を作り、中央揃えにする */
  border-radius: 4px;
}

/* 画像キャプション（説明文） */
.post-content figcaption,
.post-content .wp-caption-text {
  font-size: 0.85rem;
  color: #666;
  text-align: center;
  margin-top: -1em;
  margin-bottom: 1.5em;
}

/* --- 2. 表（テーブル）のレスポンシブ・枠線表示 --- */
.post-content table {
  width: 100%;
  margin: 1.5em 0;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.post-content th,
.post-content td {
  padding: 10px 14px;
  border: 1px solid #ccc; /* 枠線を明確に出す */
  text-align: left;
}

.post-content th {
  background-color: #f2f2f2; /* 見出しセルに薄い背景色 */
  font-weight: bold;
}

/* スマホで横長テーブルがはみ出さないようにスクロール可能にする */
.post-content .wp-block-table {
  overflow-x: auto;
}

/* --- 3. 見出し（H2, H3, H4）の装飾 --- */
.post-content h2 {
  font-size: 1.4rem;
  color: var(--main_color);
  padding: 8px 12px;
  border-left: 5px solid var(--main_color);
  background: #f8f9fa;
  margin: 2em 0 1em;
  font-weight: bold;
}

.post-content h3 {
  font-size: 1.2rem;
  color: #333;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--main_color);
  margin: 1.8em 0 0.8em;
  font-weight: bold;
}

.post-content h4 {
  font-size: 1.05rem;
  color: #333;
  margin: 1.5em 0 0.5em;
  font-weight: bold;
}

/* --- 4. リスト（箇条書き・番号つき） --- */
.post-content ul {
  list-style-type: disc;
  padding-left: 1.5em;
  margin: 1em 0 1.5em;
}

.post-content ol {
  list-style-type: decimal;
  padding-left: 1.5em;
  margin: 1em 0 1.5em;
}

.post-content li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}

/* --- 5. 引用（blockquote） --- */
.post-content blockquote {
  margin: 1.5em 0;
  padding: 15px 20px;
  background: #f9f9f9;
  border-left: 4px solid #ccc;
  color: #555;
  font-style: italic;
}

/* --- 6. 埋め込み動画（YouTube等）のアスペクト比維持 --- */
.post-content iframe {
  max-width: 100%;
  margin: 1.5em auto;
  display: block;
}
/* ================================================ */

/* ================= header ======================= */
header{
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: opacity .3s ease;
}
.header_inner{
  width: 95%;
  height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo{
  overflow: hidden;
  max-width: 380px;
  margin-right: 20px;
}
header .logo a{
  display: block;
  color: var(--main_color);
  transition: .3s;
}
header .logo a p{
	padding-left: 14%;
	font-size: clamp(0.75rem, 1.13vw, 0.85rem);
	letter-spacing: 1px;
	text-align: justify;
}
header .logo a img{
  display: block;
  height: 100%;
  width: 100%;
}
header .logo a:hover{
  opacity: 0.8;
}

/* ============ nav ============ */
nav#pc{
  /*height: 100%;*/
  display: flex;
  justify-content: flex-end;
}
nav#sp{
  display: none;
}
nav#pc .nav_list{
	display: flex;
	flex-direction: column-reverse;
	margin-right: 10px;
}
nav#pc ul {
  display: flex;
  align-items: center;
  font-size: 95%;
  /*justify-content: space-evenly;*/
  /*height: 100%;*/
}
nav#pc ul li{
  height: 100%;
}

nav#pc .nav_list_01 li a{
  display: flex;
  align-items: center;
  height: 100%;
  padding: 8px 15px;
  position: relative;
  z-index: 0;
  transition: 0.5s;
  overflow: hidden;
  color: var(--font_color);
  letter-spacing: 1px;
  white-space: nowrap;/* 改行を禁止 */
}
nav#pc .nav_list_other{
	display: flex;
	justify-content: flex-end;
	font-size: 85%;
	margin-bottom: 5px;
}
nav#pc .nav_list_other li a{
  display: flex;
  color: #a9a9a9;
  position: relative;
  z-index: 0;
  transition: 0.5s;
  overflow: hidden;
  align-items: center;
  height: 100%;
  transition: 0.3s;
  padding: 5px 15px;
}
nav#pc .nav_list_other li a:hover{
	color: var(--main_color);
}
nav#pc .nav_list_other .nav_list_button{
	margin: 0 5px;
	
}
nav#pc .nav_list_other .nav_list_button a{
	border: 1px solid var(--main_color);
	background: var(--main_color);
	color: #ffffff;
}
	
nav#pc .nav_list_other .nav_list_button a:hover{
	border: 1px solid #a9a9a9;
	background: #ffffff;
    color: #a9a9a9;
}
nav#pc .nav_contact{
	display: flex;
	flex-direction: column;
    align-items: center;
	flex-shrink: 0;
}
nav#pc .nav_contact .nav_tel{
	font-size: 197%;
	font-weight: bold;
	color: var(--sub_color_light);
	padding: 0 0 3px;
}
nav#pc .nav_contact .nav_tel a,
nav#pc .nav_contact .nav_tel a:visited,
nav#sp .nav_contact .nav_tel a,
nav#sp .nav_contact .nav_tel a:visited {
  color: inherit;               /* 親の緑色（--sub_color_light）を強制継承 */
  text-decoration: none;
}
nav#pc .nav_contact .nav_tel:before{
	content: '';
	background: url(img/tel_icon.png) no-repeat;
	background-size: contain;
	background-position: left top;
	display: inline-block;
	vertical-align: middle;
	width: 26px;
	height: 26px;
	margin-right: 3px;
	position: relative;
	top: -3px;
}
nav#pc .nav_contact p.nav_tel_small{
	background:  var(--sub_color_light);
	color: #fff;
	font-size: 85%;
	padding: 1px 15px;
	letter-spacing: 1.8px;
}
nav#pc .nav_list_01 li a:hover{
  color: var(--back_color);
}
nav#pc .nav_list_01 li a::before{
  content: '';
  width: 100%;
  height: 100%;
  background: var(--main_color);
  position: absolute;
  top: 0;
  right: 100%;
  z-index: -1;
  transition: 0.3s;
}
nav#pc .nav_list_01 li a:hover:before{
  right: 0;
}

/* ============ nav end ============ */

/* ============= footer ======================= */
footer{
  background: linear-gradient(to bottom, rgba(0, 104, 183, 1) 5%, rgba(0,137, 233, 1) 65%);
  position: relative;
  z-index: 0;
}
footer::before{
  content: '';
  width: 100%;
  height:  100%;
  background: url(img/back_img04.png) no-repeat top right;
  background-size: 150px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
footer .footer_contents{
  width: 80%;
  max-width: 1500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0 0;
  margin: 0 auto;
}
footer .footer_contents .text_contents{
 /* width: 30%;*/
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  white-space: nowrap;
}
.text_contents .footer_logo{
	width: 100%;
	min-width: 280px;
	max-width: 350px;
	padding-bottom: 15px;
}
.text_contents .footer_logo a{
	transition: .3s;
}
.text_contents .footer_logo a:hover{
	opacity: 0.8;
}

.text_contents .footer_logo img{
	width: 100%;
}
.footer_map{
	width: 100%;
	margin: 15px 0;
	padding-left: 32px;
}
.footer_map iframe{
	width: 100%;
	height: 160px;
	border: 0;
}
.text_contents p{
	color: #fff;
	padding-left: 32px;
	letter-spacing: 1px;
	font-size: 0.9rem;
}
.footer_contents .footer_nav{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	white-space: nowrap;
}
.footer_nav ul li{
	color: #fff;
	padding-bottom: 10px;
}
.footer_nav ul li a{
	color: #fff;
}
.footer_nav ul.footer_nav01{
	padding-right: 80px;
	flex: 1;
}
.footer_nav ul.footer_nav02{
	flex: 1;
}
ul.footer_nav_list02 li{
	font-size: 77%;
	padding-top: 10px;
}
ul.footer_nav01 li a:hover{
	border-bottom: 1px solid #fff;
	opacity: 0.8;
}
ul.footer_nav02 li a:hover{
	border-bottom: 1px solid #fff;
	opacity: 0.8;
}
footer .top_btn{
	position: absolute;
	right: 0;
	transform: translate(-15%,15%);
	z-index: 10;
	transition: 0.3s;
}
footer .top_btn img{
	width: 80px;
	height: auto;
}
footer .top_btn:hover{
	transform: translate(-15%,-5%);
}
/* ============= footer end ======================= */
/* ============= timeline-elevator ======================= */
.timeline-elevator {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: bottom;
    line-height: 0;
}
.timeline-elevator,
.timeline-elevator * {
  pointer-events: none;
}
.timeline-elevator-background {
    width: 100%;
}
.timeline-elevator-overlay {
    position: absolute;
    z-index: 30;
    line-height: 0;
    pointer-events: none;
}
.timeline-elevator-car-back {
    z-index: 24;
}

.timeline-elevator-car-front {
    z-index: 26;
}
.timeline-elevator-cargo-pile {
    z-index: 40;
}

.timeline-elevator-truck {
    z-index: 50;
}
.timeline-elevator-person {
    z-index: 70;
}
.timeline-elevator-lift {
    z-index: 60;
}
body,div,dl,dt,dd,
ul,ol,li,h1,h2,h3,h4,h5,h6,
pre,code,form,fieldset,legend,
input,textarea,p,blockquote,th,td {
	margin:0;
	padding:0;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
/*左右背景シルエット*/
#wrap{
	width: 100%;
	background: url(img/silhouette.png) repeat-x bottom / auto 260px, linear-gradient(#0089e9, #052555);
}
.gradation{
	width: 67%;
	height:auto;
	margin:0 auto;
	background-image: linear-gradient(#0089e9, #052555);
}
/* =======================================
	コピーライト
======================================= */
#under_wrapper{
	width:100%;
	height:25px;
	background:#000307;
}
#under_wrapper_center{
	width: min(95%, 1100px);
	height:25px;
	margin:0 auto;
}
p.copy{
	font-size:77%;
	text-align:center;
	line-height:25px;
	color:#FFF;
	letter-spacing:2px;
}

/* ============== main title =================== */
#main_visual{
	width: 100%;
	height: 400px;
	background-image: url(img/title-02.jpg);
	background-color: var(--main_color_light);
	background-position: center;
	background-size: cover;
  margin-top: 120px;
}
.main_title{
	width: 100%;
	height: 420px;
	display: flex;
	justify-content: center;
	align-items: center;
}
h1.title{
	font-size: 3rem;
	color: var(--back_color);
	font-weight: 600;
	letter-spacing: 4px;
	position: relative;
	text-align: center;
	width: 100%;
}

/* ============== パンくず =================== */
#pan_box{
	width: 30%;
	min-width: 475px;
	height: 40px;
	margin: -40px auto 0 0;
	background: var(--main_color);
	clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
}
#pan_list{
	margin-left: 30%;
}
ol.topic-path{
	list-style-type: none; /* リストマーク非表示 */
	line-height: 40px;
	font-size: 0.85rem;　/* 文字サイズ */
}
ol.topic-path li{
	display: inline; /* 項目を横並び */
}
ol.topic-path li.first{
	padding: 0 0 1px 45px;
	background-image: url(img/top_pan.png);
	background-position: 10% 0%;
	background-repeat: no-repeat;
	background-size: 1.3rem;
}
ol.topic-path li.second{
	padding-left: 5px;
	color: var(--back_color);
}
ol.topic-path li a{
	padding-right: 20px;
	background: url(img/navi-marker.gif) no-repeat right;
	background-size: 8px;
	color: var(--back_color);
	text-decoration: underline;
}
ol.topic-path li a:hover{
	opacity: 0.8;
}

/*--====== index ======--*/
.contents{
	background-color: #fff;
}
.contents_wrap{
	width: 95%;
	max-width: 1100px;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	transition: 0.3s;
	padding: 100px 0;
}
.content_box{
	width: 70%;
}
.blog_box{
	margin-bottom: 60px;
	width: 90%;
}
.blog_box li{
	border-radius: 10px;
	transition: 0.3s;
	padding: 10px;
	margin-bottom: 20px;
	position: relative;
	z-index: 0;
}
.blog_box li::before{
	content: '';
	width: 100%;
	height: 2px;
	border-bottom: 2px dashed var(--main_color_light);
	position: absolute;
	bottom: -10px;
	left: 0;
}
.blog_box li a{
	color: var(--font_color);
	transition: 0.3s;
	display: flex;
	gap: 1rem;
}
.blog_box li a img{
	width: 120px;
	height: 80px;
}
.blog_box li:hover{
	background: rgba(229, 240, 248, 1);
}
.blog_box li:hover a{
	color: var(--main_color);
}
.blog_box li:hover .cat{
	background: #fff;

}

.blog_box li .date{
  font-size: 90%;
  margin-bottom: 5px;
}
.blog_box li .title{
  letter-spacing: 1px;
}
.blog_box li .cat{
  background: rgba(229, 240, 248, 1);
  color: var(--main_color);
  border-radius: 10px;
  padding: 1px 8px 3px 5px;
  margin-left: 5px;
}
.wp-pagenavi span,
.wp-pagenavi a{
	background:  rgba(229, 240, 248, 1);
	color: var(--main_color);
	border: none !important;
	padding: 5px 10px !important;
	border-radius: 5px;
}
.wp-pagenavi a.page{
  background: unset;
  color: #fff;
}

/*--====== side ======--*/
.sidebar_box{
	width: 20%;
}
.sidebar_box .log_title{
	color: var(--main_color);
	font-size: 1.5rem;
	font-weight: bold;
	border-bottom: 1px solid var(--main_color);
	margin-bottom: 10px;
  position: relative;
  z-index: 0;
}
.sidebar_box .log_title::before{
  content: '';
  width: 5px;
  height: 1px;
  background: #01c0ef;
  position: absolute;
  bottom: -1px;
  left: 10px;
  z-index: 10;
}
.blogarchive_list,
.cat_list{
  margin: 0 5px 20px;
}
.blogarchive_list li,
.cat_list li{
  padding-bottom: 5px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.blogarchive_list li::before,
.cat_list li::before{
  content: '';
  height: 1px;
  width: 100%;
  background: #fff;
  position: absolute;
  bottom: 1px;
  right: 100%;
  transition: 0.3s;
}
.blogarchive_list li:hover:before,
.cat_list li:hover:before{
  right: 0;
}
.blogarchive_list li a,
.cat_list li a{
  display: block;
	color: var(--main_color);
	transition: 0.3s;
}
.cat_list li a:hover,
.blogarchive_list li a:hover{
	opacity: 0.7;
}
.sidebar_box select{
	width: 100%;
	padding: 5px 0;
}
.sidebar_box .label{
  width: 100%;
  padding: 9px 0 10px;
  margin:  0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  outline: 1px solid #fff;
	outline-offset: -1px;
  position: relative;
  z-index: 0;
}

.sidebar_box .label span{
  display: inline-block;
  width: 15px;
  height: 2px;
  background: #fff;
  margin-left: 10px;
  position: relative;
	transition: 0.5s;
}
.sidebar_box .label.active span{
  transform: rotate(-180deg);
}
.sidebar_box .label span::before{
  content: '';
  width: 15px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0%;
  margin: auto;
  transform: rotate(90deg);
  transition: 0.5s;
}
.sidebar_box .label.active span::before{
  transform: rotate(180deg);
}
.sidebar_box .inner_element{
  overflow: hidden;
  position: relative;
}
.sidebar_box .inner_element::before{
  content: '';
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  bottom: 100%;
  z-index: 1;
  transition: 0.3s;
}
.sidebar_box .inner_element.active::before{
  bottom: 0%;
}
.sidebar_box .inner_element li{
  padding: 5px 10px;
  position: relative;
  z-index: 10;
}
.sidebar_box .inner_element li:last-of-type{
  padding: 5px 10px 10px;
}
.sidebar_box .inner_element li a{
  display: block;
  color: #01c0ef;
  padding: 0 5px;
  position: relative;
  overflow: hidden;
}
.sidebar_box .inner_element li a::before{
  content: '';
  width: 100%;
  height: 1px;
  background: #01c0ef;
  position: absolute;
  bottom: 0;
  right: 100%;
  transition: 0.3s;
}
.sidebar_box .inner_element li:hover a::before{
  right: 0%;
}


/*--====== シングル ======--*/
.single_main-content{
  width: 95%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  margin: 100px auto;
}
.single_content_box{
  width: 75%;
}
.post-meta{
  display: block;
  width: fit-content;
  background: #fff;
  padding: 10px 20px 0px;
  border-radius: 10px 10px 0 0;
  position: relative;
}
.post-title{
  background: #fff;
  border-radius: 0 10px 0 0;
  padding: 10px 20px 0px;
}

.post-title{
  background: #fff;
  border-radius: 0 10px 0 0;
  padding: 10px 20px 0px;
}
.post-content{
  background: #fff;
  padding: 10px 20px 20px;
  border-radius: 0 0px 10px 10px;
  letter-spacing: 1px;
  line-height: 1.7;
  text-align: justify;
}

.post-navigation{
  margin: 30px auto;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.post-navigation a{
  display: block;
  max-width: 350px;
  background: #fff;
  border: 1px solid #fff;
  color: var(--main_color);
  padding: 10px 20px 20px;
  border-radius: 10px;
  transition: 0.3s;
}
.post-navigation a:hover{
  background: var(--main_color);
  color: #fff;
}
.post-navigation a span{
  display: block;
  text-align: center;
  margin-bottom: 5px;
  font-weight: bold;
}
.back-to-archive{
  padding: 10px 20px !important;
	
}
.category-column {
  width: 100%;
  max-width: 1200px;  /* 最大幅1200px */
  margin: 0 auto;
  padding: 20px 0;
  & .post-content{
    border-radius: 0 10px 10px 10px;
  }
  & h1{
    font-size: 170%;
    color: #ff5722;
    padding-top: 0.4em;
    padding-bottom: 0.2em;
    border-bottom: 4px solid #ffd699;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }

  & .title_02 {
    font-size: 1.5rem;
    color: #ff6f33;
    margin-top: 2em;
    margin-bottom: 0.5em;
    letter-spacing: 2px;
  }

  & .title_03 {
    font-size: 1.5rem;
    color: #ff794d;
    margin-top: 1.6em;
    margin-bottom: 0.4em;
    letter-spacing: 2px;
  }

  & p.txt01 {
    font-size: 1.02rem;
    margin-bottom: 1.4em;
    color: #444;
    line-height: 1.8;
    letter-spacing: 2px;
    text-align: justify;
  }

  /* — リスト装飾 — */
  & .list_01,
  & .list_02 {
    padding-left: 1.4em;
    margin-bottom: 1.4em;
  }

  & .list_01 li {
    margin-bottom: 0.8em;
    position: relative;
    padding-left: 1.2em;
  }

  & .list_01 li::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff8c42;
    font-weight: bold;
  }

  & .list_02 li {
    margin-bottom: 0.8em;
    padding-left: 0.8em;
  }

  /* — テーブル装飾 — */
  & table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    background-color: #fffaf5;
    border: 2px solid #ffcc99;
    border-radius: 6px;
    overflow: hidden;
  }

  & table th,
  & table td {
    padding: 14px;
    border: 1px solid #ffd9b3;
    text-align: left;
  }

  & table th {
    background-color: #ffe6d9;
    color: #b34e00;
  }

  & table tbody tr:nth-child(odd) {
    background-color: #fff4ed;
  }

  /* — 強調ボックス／囲み — */
  & .box {
    border: 2px dashed #ffccaa;
    background: #fff8f2;
    padding: 16px;
    border-radius: 8px;
    margin: 1.8em 0;
  }

  /* — リンク・ボタン — */
  & a {
    color: #0066cc;
    text-decoration: none;
  }

  & a:hover {
    text-decoration: underline;
  }

  & .button {
    display: inline-block;
    background: linear-gradient(135deg, #ff8c42 0%, #ff5722 100%);
    color: #fff;
    padding: 13px 26px;
    border-radius: 24px;
    font-weight: bold;
    transition: background 0.3s ease;
  }

  & .button:hover {
    background: linear-gradient(135deg, #ffbb80 0%, #ff8c42 100%);
  }

  /* — 画像やメディアのレスポンシブ対応 — */
  & img,
  & video,
  & iframe {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  /* — CTA ボタン用コンテナ — */
  & .cta-container {
    text-align: center;
    margin: 3em 0;
  }

  /* — ボタン本体 — */
  & .cta-button {
    display: inline-block;
    font-family: "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ff7e5f 0%, #ff5722 100%);
    padding: 1em 2.6em;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  /* — ホバー／フォーカス時の効果 — */
  & .cta-button:hover,
  & .cta-button:focus {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  }

  /* — 光沢エフェクト — */
  & .cta-button::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.25), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }

  & .cta-button:hover::before {
    opacity: 0.4;
  }
}
  
@media screen and (max-width: 1200px) {
  nav#pc{
    display: none !important;
  }
  nav#sp{
    display: block !important;
	height: 80px;
  }
  .header_inner{
	  height: 80px;
	  align-items: center;
  }
.hamburger {
	position: fixed;
	right: 0;
	top: 0;
	display: inline-block;
	vertical-align: middle;
	width: 80px;
	height: 80px;
	background: 0 0;
	border-radius: 85px 0 0;
	margin: 0 auto 5px;
}
.hamburger .hamburger-button {
	display: inline-block;
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 120;
	cursor: pointer
}
.hamburger_span{
	position: fixed;
	right: 0;
	top: 0;
	display: inline-block;
	vertical-align: middle;
	z-index: 120;
	width: 80px;
	height: 80px;
	background: var(--main_color);
	margin: 0 auto 5px;
	transform: scale(1);
	transition: 0.3s;
}
.hamburger-active .hamburger_span{
	transform: scale(0);
}
.hamburger_span_close{
	position: fixed;
	right: 0;
	top: 0;
	display: inline-block;
	vertical-align: middle;
	z-index: 120;
	width: 80px;
	height: 80px;
	background: var(--sub_color_light);
	margin: 0 auto 5px;
	transform: scale(0);
	transition: 0.4s;
	transition-delay: 0s;
}
.hamburger-active .hamburger_span_close{
	transform: scale(1);
	transition-delay: 0.4s;
}
.hamburger_span::before{
	content: 'menu';
	width: fit-content;
	text-align: center;
	position: absolute;
	bottom: 11px;
	right: 0;
	left: 0;
	margin: auto;
	font-size: 75%;
	color: var(--sub_color_light);
	font-weight: bold;
	transition: 0.4s;
}
.hamburger_span_close::before{
	content: 'close';
	width: fit-content;
	text-align: center;
	position: absolute;
	bottom: 11px;
	right: 0;
	left: 0;
	margin: auto;
	font-size: 75%;
	color: var(--back_color);
	font-weight: bold;
	transition: 0.4s;
}
.hamburger .hamburger-button span {
	position: absolute;
	width: 50%;
	height: .2em;
	right: 0px;
	left: 0;
	top: -7px;
	bottom: 0;
	margin: auto;
	background-color: var(--back_color);
	border-radius: .1em;
	transition: all .5s ease 0s;
	transform: rotate(0deg)
}
.hamburger .hamburger-button span.top {
	transform: translateY(-.5em)
}
.hamburger .hamburger-button span.bottom {
	transform: translateY(.5em)
}
.hamburger-active .hamburger-button span.middle {
	background: 0 0
}
.hamburger-active .hamburger-button span.top {
	transform: rotate(-45deg) translateY(0);
	background: var(--back_color);
}
.hamburger-active .hamburger-button span.bottom {
	transform: rotate(45deg) translateY(0);
	background: var(--back_color);
}
.hamburger .hamburger-menu {
	display:flex;
	align-items:center;
	justify-content: center;
	flex-direction: column;
	position:fixed;
	top:0;
	right:0;
	bottom:0;
    width:24rem;
	max-width:90%;
	transform:translateX(100%);
	transition:transform .5s ease;
	overflow-y:auto;
	min-height:100dvh;
	background:#0068b7f5;
}
.hamburger-active .hamburger-menu {
	transform:translateX(0);
}
.hamburger .hamburger-menu .hamburger-submenu {
	transition:
		opacity .3s ease,
		transform .3s ease;
}
.hamburger-active .hamburger-menu .hamburger-submenu {
	opacity:1;
	transform:none;
}
.hamburger-active .hamburger-menu .hamburger-submenu:nth-child(1) {
	transition: transform .5s ease .5s
}
.hamburger-active .hamburger-menu .hamburger-submenu:nth-child(2) {
	transition: transform .5s ease .8s
}
.hamburger-active .hamburger-menu .hamburger-submenu:nth-child(3) {
	transition: transform .5s ease 1.1s
}
/*.hamburger .hamburger-menu>a {
	display: block;
	text-decoration: none;
	color: #535353;
	height: 35px;
	letter-spacing: 1px
}*/
.hamburger-active .hamburger-button span {
	background: var(--back_color);
}
.hamburger_menulist{
	width: 100%;
}
.hamburger_menulist li.hamburger-menu_text{
	font-size: 120%;
	padding: 10px 0;
	margin: 0 0 5px;
	text-align: center;
}
.hamburger_menulist li a {
	display: block;
	width: 100%;
	color: var(--back_color);
	letter-spacing: 1px;
}
.hamburger_menulist li a:hover{
	opacity: 0.7;
}
.hamburger-menu_button{
	display: block;
	cursor: pointer;
	width: 60%;
	height: 60px;
	color: var(--main_color);
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
	padding: 0 10px;
	white-space: nowrap;
	text-align: center;
	margin: 10px auto;
	letter-spacing: 1px;
	font-size: 120%;
}
.hamburger-menu_button:hover{
	border: 2px solid #fff;
	background-color: var(--main_color);
	color: #fff;
}
.hamburger-menu_contact:before{
	content: '';
	background: url(img/mail_icon2.png) no-repeat;
	background-size: contain;
	background-position: left top;
	display: inline-block;
	vertical-align: middle;
	width: 28px;
	height: 28px;
	margin-right: 10px;
	position: relative;
}
.hamburger-menu_catalog:before{
	content: '';
	background: url(img/cata_icon.png) no-repeat;
	background-size: contain;
	background-position: left top;
	display: inline-block;
	vertical-align: middle;
	width: 28px;
	height: 28px;
	margin-right: 10px;
	position: relative;
}
.hamburger-menu_contact:hover:before{
	content: '';
	background: url(img/mail_icon.png) no-repeat;
	background-size: contain;
	background-position: left top;
	display: inline-block;
	vertical-align: middle;
	width: 28px;
	height: 28px;
	margin-right: 10px;
	position: relative;
}
.hamburger-menu_catalog:hover:before{
	content: '';
	background: url(img/cata_icon2.png) no-repeat;
	background-size: contain;
	background-position: left top;
	display: inline-block;
	vertical-align: middle;
	width: 28px;
	height: 28px;
	margin-right: 10px;
	position: relative;
}
  /*　電話番号　*/
.hamburger_contact{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 30px 0;
}
.hamburger_contact p.hamburger_tel{
	width: auto;
	white-space: nowrap;
	font-size: 26px;
	font-weight: bold;
	letter-spacing: 1px;
	color: #fff;
	padding: 0 0 3px;
	text-align: center;
}
.hamburger_contact p.hamburger_tel a{
	color: #fff;
}
.hamburger_contact p.hamburger_tel:before{
	content: '';
	background: url(img/tel_icon3.png) no-repeat;
	background-size: contain;
	background-position: left top;
	display: inline-block;
	vertical-align: middle;
	width: 26px;
	height: 26px;
	margin-right: 3px;
	position: relative;
	top: -3px;
}
.hamburger_contact p.hamburger_tel_small{
	background:  var(--sub_color_light);
	color: #fff;
	font-size: 80%;
	padding: 1px 15px;
	letter-spacing: 1.8px;
}
.nav_en{
	color: #fff;
	text-align: center;
	cursor: pointer;
	margin: 0 auto;
	display: block;
}
  
/* ================= ハンバーガーメニュー end ================= */
/* ================= nav_contact ================= */
  nav#sp .nav_contact{
	display: flex;
	flex-direction: column;
    align-items: center;
	margin: 0 80px 0 0;
	flex-shrink: 0;
  }
  nav#sp .nav_contact .nav_tel{
	width: 250px;
	white-space: nowrap;
	font-size: 189%;
	font-weight: bold;
	color: var(--sub_color_light);
	padding: 0 0 3px;
  }
  /* 実機でリンク化された際の下線・青文字化を防止 */
  nav#sp .nav_contact .nav_tel a,
  nav#sp .nav_contact .nav_tel a:visited,
  nav#sp .nav_contact .nav_tel a:hover {
    color: inherit;               /* 親の緑色を強制継承 */
    text-decoration: none;
  }
  nav#sp .nav_contact .nav_tel:before{
	content: '';
	background: url(img/tel_icon.png) no-repeat;
	background-size: contain;
	background-position: left top;
	display: inline-block;
	vertical-align: middle;
	width: 24px;
	height: 24px;
	margin-right: 3px;
	position: relative;
	top: -2px;
	z-index: -1;
  }
  nav#sp .nav_contact p.nav_tel_small{
	background:  var(--sub_color_light);
	color: #fff;
	font-size: 80%;
	padding: 1px 15px;
	letter-spacing: 1.8px;
  }
  #main_visual{
    margin-top: 80px;
  }
/* ============== main visual =================== */
#pan_list{
	margin-left: 10%;
}

}
@media screen and (max-width: 750px) {
.gradation{
	width: 100%;
}
#under_wrapper_center{
	width: 100%;
}
p.copy{
}

/* ============== main title =================== */
#main_visual{
	height: 240px;
  margin-top: 80px;
}
.main_title{
	height: 240px;
}
h1.title{
	font-size: 2.2rem;
	/*padding-top: 2.5rem;*/
	letter-spacing: 2px;
	max-width: 22em;
	margin: 0 auto;
}
#pan_box{
	display: none;
}
/* ================= footer ================= */
  footer .footer_contents{
	  flex-direction: column;
	  padding: 120px 0 0;
  }
  footer .footer_contents .text_contents{
	  width: 100%;
	  text-align: center;
  }
  .text_contents .footer_logo{
	  margin: 0 auto;
  }
  .text_contents p{
	  padding: 0;
  }
  .footer_contents .footer_nav{
	  padding: 70px 0 30px;
  }
  .footer_map{
	  padding: 0px;
  }
/* ================================== */

  .header_inner{
	width: 100%;
	padding: 0 80px 0 3%;
  }
  header .logo a p{
	  letter-spacing: 0px;
  }
  nav#sp .nav_contact{
	display: none;
  }
  footer{
    height: auto;
    flex-direction: column;
  }
  #footer_left{
    width: 100%;
  }
  .footer_logo{
    width: 80%;
    height: auto;
    margin: 0 auto;
  }
  .footer_logo img{
    width: 100%;
    height: auto;
  }
  footer td,
  footer th{
    font-size: 90%;
		padding:5px;
  }
  footer th{
    white-space: nowrap;
  }
  #footer_right{
    width: 100%;
  }
  .copy{
    font-size: 50% ;
  }
  .contents_wrap{
	 padding: 0;
  }
  .single_main-content,
  .contents_wrap{
    flex-direction: column;
    margin: 50px auto;
  }
  .content_box{
    width: 100%;
    margin-bottom: 50px;
  }
  .sidebar_box{
    width: 100%;
    margin-bottom: 50px;
  }
  .wrapper{
    flex-direction: column;
    margin: 20px auto;
  }
  .single_content_box{
    width: 100%;
  }
  .post-navigation a{
    width: 45%;
  }
  #prev_next > a{
    margin: 0 calc(10% / 4);
  }
  .top_btn a{
    width: 50%;
  }
  .category-column {
    & h1.post-title {
      font-size: 130%;
    }

    & .title_02 {
      font-size: 1.2rem;
    }

    & .table-box {
      width: 100%;
      height: auto;
      overflow: auto;
    }

    & table th,
    & table td {
      font-size: 100%;
    }

    & table th:first-of-type,
    & table td:first-of-type {
      min-width: 150px;
    }

    & .list_01,
    & .list_02 {
      padding-left: 0.5rem;
    }
  }
.wp-pagenavi{
	text-align: center;
}
.sidebar_box .log_title{
	text-align: center;
}
.blogarchive_list li, .cat_list li{
	text-align: center;
}
.blog_box{
	margin: 0 auto 60px;
	width: 100%;
}
	
	
}
