@charset "UTF-8";
/*****************************
 全体 共通
*****************************/
body{
  padding-top: 180px;
  margin: 0;
  font-size: 16px;
  background-color: #FFF;
  font-family: "Meiryo", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Segoe UI", "Helvetica Neue", "Arial", sans-serif;

}
@media (max-width: 767px) {
  body{
  padding-top: 15vw;
  }
}
a{
  text-decoration: none;
  color: #333;
}
h1,h2,h3,h4,h5,h6{
  padding: 0;
  font-weight: 100;
}
img,table {
  margin: 0;
  padding: 0;
}
ol, ul {
  padding: 0;
}
iframe {
    display: block;
}
@media (min-width: 767px) {
       a[href*="tel:"] {
           pointer-events: none;
           cursor: default;
           text-decoration: none;
       }
}

.date-tags {
  display: none;
}
.footer-meta{
    display: none;
}
.breadcrumb-area{
    padding: 10px 0 0 10px;
    font-size: 13px;
}
.article h2{
    background-color: none;
    margin-bottom: 0;
  }
.article h3{
    background-color: none;
  }
#rea01-link1,#rea01-link2,#rea01-link3,#rea01-link4,#rea01-link5,#rea01-link6,#rea01-link7,#rea01-link8 {
    padding-top: 160px;
    margin-top: -160px;
}
@media screen and (max-width: 767px){
  #rea01-link1,#rea01-link2,#rea01-link3,#rea01-link4,#rea01-link5,#rea01-link6,#rea01-link7,#rea01-link8 {
    padding-top: 65px;
    margin-top: -65px;
}
}
.rect-vertical-card .related-entry-card-wrap{
    border-radius: 10px;
}
ul.wp-block-list{
    padding-left: 40px;
}
a.wp-block-latest-posts__post-title {
    font-weight: 600;
}
.wp-block-latest-posts__featured-image.alignleft
 {
    margin-bottom: 2.5em;
}
@media screen and (max-width: 650px){
  .wp-block-latest-posts__featured-image.alignleft {
    width: 100%;
    margin: 2vw 0 0 0;
    text-align: center;
}
}
.entry-content.cf h2 {
    margin: 20px 0;
    padding: 15px;
    border-radius: 10px;
}

/*****************************
 共通（全体）
*****************************/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
}

.header-inner {
  position: relative; /* ハンバーガーのabsolute配置に必要 */
  background: #fff;
  max-width: 100%;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

/*****************************
 上段ナビ（グレー帯）
*****************************/
.top-bar {
  background: #494949;
  padding: 8px 20px;
}
.top-nav {
  max-width: 100%;
  margin: 0 auto;
  text-align: right;
}
.top-menu {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.top-menu li a {
  text-decoration: none;
  color: #FFF;
  font-size: 14px;
  letter-spacing: 0.7px;
}
.top-menu li a:hover {
  color: #FFD000;
}

/*****************************
 サブメニュー 共通
*****************************/
.menu-item-has-children > a::after {
  content: "▼";
  font-size: 12px;
  margin-left: 5px;
}
.menu-item-has-children.open > a::after {
  content: "▲";
}

.sub-menu {
  display: none;
  list-style: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
  box-shadow: inset 2px 0px 5px 0px rgba(0,0,0,0.2);
}
.menu-item-has-children.open > .sub-menu {
  display: grid !important;
}
.sub-menu.open {
  max-height: 500px;
}
.sub-menu li {
  margin: 0;
}
.sub-menu li a {
  display: block;
  padding: 6px 0;
  color: #333;
  text-decoration: none;
  font-size: 13.5px;
  letter-spacing: 0.7px;
  transition: background 0.2s;
  text-align: left;
}
.sub-menu li a:hover {
  color: #999;
  background-color: #fff;
  border-radius: 4px;
}

/*****************************
 PC サブメニュー（ポップアップ風）
*****************************/
.header-nav .sub-menu {
  position: absolute;
  top: 45px;
  right: 250px;
  min-width: 240px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 999;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.25s ease;
}
.header-nav .menu-item-has-children.open > .sub-menu {
  opacity: 1;
  transform: translateY(0);
}

/*****************************
 スマホ用
*****************************/
@media screen and (max-width: 767px) {
  .top-bar {
    display: none;
  }

  .sp-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    padding-top: 20px;
    overflow: auto;
    z-index: 2000;
  }
  .sp-nav.active {
    display: block;
  }

  .sp-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .sp-menu li {
    margin: 5px 0;
  }
  ul li.menu-item a {
    display: block;
    height: 40px;
    line-height: 40px;
    padding-left: 15px;
  }

  /* ハンバーガー調整（SP向け） */
  .menu-toggle {
    right: 16px;
    width: 50px;
    height: 40px;
    padding: 8px;
  }
}

/*****************************
 PC用
*****************************/
@media screen and (min-width: 768px) {
  /* sp-nav を右上ドロップダウンに */
  .sp-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px;
    width: 320px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    padding: 12px;
  }
  .sp-nav.active {
    display: block;
  }

  /* PC hover時に表示 */
  .header-nav ul.sub-menu {
    display: none;
    position: absolute;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    padding: 30px;
  }
  .header-nav li:hover > ul.sub-menu {
    display: block;
  }
}

/*****************************
 ハンバーガーボタン（共通）
*****************************/
@media screen and (max-width: 768px) {
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 48px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2100;
}

.menu-toggle span {
  display: block;
  height: 4px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), opacity 0.2s;
  transform-origin: center;
}

/* active（× に変形） */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
}

/*****************************
投稿類　共通（施工事例、ブログ）
*****************************/
/* --- 事例概要 --- */
.seko-overview {
  margin: 30px 0;
  font-size: 16px;
  line-height: 1.6;
}

/* --- 記事本文 --- */
.seko-content,.related-content {
  margin: 30px 0;
  font-size: 16px;
  line-height: 1.8;
}
h2 span#toc1,h2 span#toc2,h2 span#toc3,h2 span#toc4,h2 span#toc5,h2 span#toc6,h2 span#toc7,h2 span#toc8,h2 span#toc9,h2 span#toc10,h2 span#toc11,h2 span#toc12,h2 span#toc13,h2 span#toc14,h2 span#toc15,h2 span#toc16 {
    display: block;
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
    line-height: 27px;
    text-align: left;
    font-weight: 600;
    background-color: #eff2f8;
    font-size: 20px;
}
article.blog-card {
    margin-bottom: 3vw;
}

/* --- 施工データ --- */
.seko-data {
  background-color: #eff2f8;
  padding: 2vw;
  margin: 3vw 0 3vw 0;
  border-radius: 15px;
}

.seko-data h2 {
  margin-bottom: 15px;
  font-size: 23px;
  border-bottom: #999 solid 1px;
}

.seko-data-list {
  list-style: none;
  padding: 0;
}

.seko-data-list li {
  margin-bottom: 8px;
  font-size: 15px;
}

/* --- ページネーション --- */
.seko-pagination,.related-pagination {
  display: flex;
  justify-content: space-between;
  margin: 0 0 5vw 0;
}
@media(max-width:768px){
  .seko-pagination,.related-pagination {
    display: flex;
    justify-content: space-between;
    margin: 6vw 0 15vw 0;
}
}

.seko-pagination a,.related-pagination a {
  text-decoration: none;
  display: block;
  padding: 10px;
  border: #cccccc solid 1px;
  border-radius: 8px;
  color: #333;
}
.navigation {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin: 20px 0;
}

/* --- 関連記事 横スクロール --- */
.related-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}
section.related-posts h2 {
    font-size: 32px;
    text-align: center;
    padding-bottom: 20px;
    letter-spacing: 1px;
}
.related-post,.related-card {
  flex: 0 0 70%;
  width: auto;
}

.related-post img,.related-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.related-post h3,article.related-card h3 {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.3;
}

/* スクロールバー非表示（任意） */
.related-grid::-webkit-scrollbar {
  display: none;
}

/* --- PC向け: カード固定幅にして横並び --- */
@media(min-width:768px){
  .related-post {
    flex: 0 0 32%;
  }
  .related-card {
    flex: 0 0 23.5%;
  }
}

/* 固定ヘッダー下に余白を確保してパンくずを見せる */
.breadcrumb {
  margin: -20px 0 0 20px;
  font-size: 12px;
}
@media(max-width:768px){
  .breadcrumb {
    margin: 0 0 0 10px;
    font-size: 12px;
  }
}
/* パンくず内のリンク装飾 */
.breadcrumb a {
  color: #0073aa;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

ol.wp-block-list {
    margin-left: 2em;
}

/* ▼ スマホのみ開閉対応 */
@media (max-width: 768px) {
  .results-cats-ttl {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    font-weight: bold;
    padding: 10px 0;
  }

  /* ▼ SVGアイコン */
  .toggle-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    stroke: #333; /* アイコンの色：サイトに合わせて変更OK */
  }

  /* ▼ 開いた時に矢印を反転 */
  .results-cats-ttl.active .toggle-icon {
    transform: rotate(180deg);
  }

  /* ▼ スライドアニメーション用 */
  .results-cats-links {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
  }

  .results-cats-links.open {
    max-height: 1000px; /* 中身より少し大きめならOK */
    opacity: 1;
  }
}

/* ▼ PCは常に表示 */
@media (min-width: 769px) {
  .results-cats-links {
    display: block !important;
    max-height: none;
    opacity: 1;
  }

  .results-cats-ttl {
    cursor: default;
  }

  .toggle-icon {
    display: none;
  }
}



/***************************** 1023px以上
*****************************/
@media screen and (min-width: 1023px){
  h1{
    font-size: 13px;
  }
  .custom-header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
  }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  .site-logo-sp{
    display: none;
  }
  .site-logo img {
    height: 65px;
  }
  .header-center{
    width: 230px;
    height: 90px;
    margin: 0 0 0 auto;
    padding-top: 15px;
    background-color: #FFD000;
    border: #333 1px solid;
    border-radius: 15px;
  }
  .header-centerbox{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header-centerbox img{
    display: block;
    width: 20%;
    margin-right: 2%;
  }
  .header-right{
    margin: 5px 0 0 2%;
    text-align: right;
  }
  .header-text01{
    line-height: 15px;
    font-size: 15px;
    font-weight: 600;
  }
  .header-text01 a{
    font-size: 22px;
    color: #000000;
  }
  .header-text02{
    font-size: 14px;
  }
  a.header-text03{
    display: block;
    width: 180px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    margin: 6px 0 0 auto;
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
    text-align: center;
    letter-spacing: 0.1vw;
    background-color: #FF0000;
  }
  a.header-text03:hover{
    opacity: 0.8;
  }
  .header-text04{
    font-size: 20px;
    font-weight: 600;
  }
  .header-text05{
    font-size: 13px;
    text-align: center;
  }

/*-----------------
 中ページ　共通
-------------------*/
  h1.entry-title,h1.archive-title {
    width: 1000px;
    margin: 50px auto 50px auto;
    padding: 40px;
    font-size: 30px;
    font-weight: 100;
    letter-spacing: 0.05em;
    border: 1px solid #000;
    border-radius: 15px;
  }
  .entry-content.cf{
    width: 1000px;
    margin: 0 auto 8vw auto;
  }
  main
  {
    width: 1000px;
    margin: 0 auto 8vw auto;
  }
  .top-box03-cat{
    width: 1000px;
    margin: auto;
    padding: 30px 10px 20px 20px;
    background-color: #eff2f8;
    border-radius: 15px;
  }
  .top-box03-cat ul{
    display: flex;
    flex-wrap:wrap;
  }
  .top-box03-cat ul li{
    list-style: none;
    padding-left: 0;
  }
  .top-box03-cat ul li a{
    display: block;
    padding: 0 20px;
    margin: 0 10px 10px 0;
    height: 46px;
    line-height: 46px;
    border-radius: 23px;
    background-color: #FFF;
    font-size: 14px;
  }
  .top-box03-cat ul li a:hover{
    background-color: #D8DEEB;
    color: #000;
  }
  p.results-cats-ttl {
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
  }
  
/*-----------------
 バナー
-------------------*/
  a.bn-box01{
    display: block;
    width: 950px;
    margin: auto;
  }
  .bn-box01 a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 950px;
    margin: 0 auto 80px auto;
    padding: 15px 0;
    background-color: #FFD000;
    border: #494949 solid 1px;
    border-radius: 20px;
  }
  .bn-box01-left img{
    display: block;
    height: 70px;
    margin-left: 50px;
    border-radius: 50%;
    background-color: #ffffff;
  }
  .bn-box01-center{
    padding-right: 30px;
    font-size: 35px;
    line-height: 35px;
    font-weight: 600;
  }
  .bn-box01-right img{
    display: block;
    width: 180px;
  }
  .bn-box01-text{
    font-size: 22px;
  }

/*-----------------
 footer
-------------------*/
  .foot-box01{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2% 0;
    background-color: #494949;
  }
  .foot-box01-left img {
    display: block;
    width: 60px;
  }
  .foot-box01-center{
    width: 550px;
    padding: 0 40px 0 10px;
    color: #FFF;
    font-size: 25px;
  }
  .foot-box01-right img{
    display: block;
    width: 200px;
  }
  .foot-box02{
    display: flex;
    align-items: stretch;
    margin-bottom: 80px;
  }
  a.foot-box02-left{
    display: block;
    width: 50%;
    height: 270px;
    padding-top: 50px;
    background-color: #FF6A00;
    color: #FFF;
  }
  .foot-box02-left img{
    display: block;
    width: 50px;
    margin: auto;
  }
  a.foot-box02-right{
    display: block;
    width: 50%;
    height: 270px;
    padding-top: 70px;
    background-color: #FF0000;
    color: #FFF;
  }
  a:hover.foot-box02-right{
    opacity: 0.7;
  }
  .foot-box02-right img{
    display: block;
    width: 60px;
    margin: auto;
  }
  .foot-box03{
    display: flex;
    align-items: stretch;
    background-color: #eff2f8;
  }
  .foot-box03-left{
    width: 40%;
    padding-left: 2%;
  }
  a.foot-box03-logo img{
    display: block;
    width: 300px;
    margin: 30px 0 10px 0;
  }
  a.foot-box03-ins img{
    width: 30px;
  }
  a:hover.foot-box03-ins img{
    opacity: 0.7;
  }
  .foot-box03-right{
    width: 60%;
  }
  .foot-box04{
    background-color: #494949;
    text-align: right;
    padding: 5px 10px;
    color: #FFF;
    font-size: 11px;
  }
  .foot-box05{
    margin-bottom: 100px;
  }
  .foot-box05-box{
    display: flex;
    justify-content: space-around;
    width: 1000px;
    margin: auto;
  }
  .foot-box05-minibox01{
    width: 310px;
    padding: 30px;
    background-color: #FFD000;
    border-radius: 20px;
  }
  .foot-box05-minibox02{
    width: 310px;
    padding: 30px;
    background-color: #FF6A00;
    border-radius: 20px;
  }
  .foot-box05-minibox03{
    width: 310px;
    padding: 30px;
    background-color: #FF0000;
    border-radius: 20px;
  }
  img.foot-box05-img{
    display: block;
    width: 80%;
    margin: 0 0 10px auto;
  }
  a.foot-box05-link{
    display: block;
    width: 100%;
    height: 54px;
    line-height: 54px;
    border-radius: 27px;
    font-size: 18px;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-align: center;
    background-color: #FFF;
  }
  .foot-box05-text01{
    padding: 0 0 30px 0;
    font-size: 38px;
    text-align: center;
    letter-spacing: 4px;
  }
  .foot-box05-text02{
    font-size: 27px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  .foot-box05-text03{
    padding: 10px 0;
    font-size: 15px;
    line-height: 20px;
  }
  .foot-box05-text04{
    font-size: 27px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #FFF;
  }
  .foot-box05-text05{
    padding: 10px 0;
    font-size: 15px;
    line-height: 20px;
    color: #FFF;
  }
  .foot-text01{
    font-size: 40px;
  }
  .foot-text02{
    padding-top: 20px;
    font-size: 20px;
    text-align: center;
  }
  .foot-text03{
    font-size: 35px;
    font-weight: 600;
  }
  .foot-text04{
    padding-top: 30px;
    font-size: 27px;
    line-height: 32px;
    text-align: center;
  }
  .foot-text05{
    margin-bottom: 20px;
    font-size: 15px;
  }
  .foot-text06{
    padding: 140px 0 5px 0;
    font-size: 14px;
  }
  .foot-text07{
    padding-bottom: 5px;
    font-size: 14px;
  }
  .foot-text06 a:hover,.foot-text07 a:hover{
    color: #FF0000;
  }
}

/***************************** 
1022px以下
*****************************/
@media screen and (max-width: 1022px){
  h1{
    padding-top: 5px;
    font-size: 13px;
    line-height: 18px;
  }
  h2{
    padding-bottom: 20px;
    font-size: 25px;
    text-align: center;
  }
  h3{
    width: 700px;
    margin: auto;
    font-size: 16px;
    line-height: 28px;
  }
  .custom-header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
  }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2%;
  }
  .site-logo-sp{
    display: none;
  }
  .site-logo {
    width: 35%;
  }
  .site-logo img {
    height: 100%;
  }
  .header-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
  }
  .header-center{
    width: 200px;
    height: 100px;
    margin: 0 0 0 auto;
    padding-top: 20px;
    background-color: #FFD000;
    border: #333 1px solid;
    border-radius: 15px;
  }
  .header-centerbox{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header-centerbox img{
    display: block;
    width: 20%;
    margin-right: 2%;
  }
  .header-right{
    margin-left: 2%;
    text-align: right;
  }
  .header-text01{
    line-height: 15px;
    font-size: 15px;
    font-weight: 600;
  }
  .header-text01 a{
    font-size: 22px;
    color: #000000;
  }
  .header-text02{
    font-size: 14px;
  }
  a.header-text03{
    display: block;
    width: 180px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    margin: 6px 0 0 auto;
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
    text-align: center;
    letter-spacing: 0.1vw;
    background-color: #FF0000;
  }
  a.header-text03:hover{
    opacity: 0.8;
  }
  .header-text04{
    font-size: 20px;
    font-weight: 600;
  }
  .header-text05{
    font-size: 12.5px;
    text-align: center;
  }

/*-----------------
 中ページ　共通
-------------------*/
  h1.entry-title,h1.archive-title {
    width: 95%;
    margin: 20px auto 50px auto;
    padding: 4vw;
    font-size: 30px;
    font-weight: 100;
        letter-spacing: 0.05em;
    border: 1px solid #000;
    border-radius: 15px;
  }
  .entry-content.cf{
    width: 95%;
    margin: auto;
  }
  main
  {
    width: 95%;
    margin: 3vw auto 0 auto;
  }
  .top-box03-cat{
    width: 95%;
    margin: auto;
    padding: 7px 20px 7px 20px;
    background-color: #eff2f8;
    border-radius: 15px;
  }
  .top-box03-cat ul{
    display: flex;
    flex-wrap:wrap;
  }
  .top-box03-cat ul li{
    list-style: none;
    padding-left: 0;
  }
  .top-box03-cat ul li a{
    display: block;
    padding: 0 20px;
    margin: 0 10px 10px 0;
    height: 46px;
    line-height: 46px;
    border-radius: 23px;
    background-color: #FFF;
    font-size: 14px;
  }
  .top-box03-cat ul li a:hover{
    background-color: #D8DEEB;
    color: #000;
  }
  p.results-cats-ttl {
    padding-bottom: 10px;
    font-size: 17px;
    font-weight: 600;
  }

/*-----------------
 バナー
-------------------*/
  .bn-box01 a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 730px;
    margin: 0 auto 80px auto;
    padding: 15px 0;
    background-color: #FFD000;
    border: #494949 solid 1px;
    border-radius: 20px;
  }
  .bn-box01-left img{
    display: block;
    height: 70px;
    margin-left: 30px;
    border-radius: 50%;
    background-color: #ffffff;
  }
  .bn-box01-center{
    padding-right: 0;
    font-size: 30px;
    line-height: 35px;
    font-weight: 600;
  }
  .bn-box01-right img{
    display: block;
    width: 160px;
  }
  .bn-box01-text{
    font-size: 20px;
  }

/*-----------------
 footer
-------------------*/
  .foot-box01{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 4% 0;
    background-color: #494949;
  }
  .foot-box01-left img {
    display: block;
    width: 50px;
  }
  .foot-box01-center{
    width: 450px;
    padding: 0 40px 0 10px;
    color: #FFF;
    font-size: 25px;
  }
  .foot-box01-right img{
    display: block;
    width: 170px;
  }
  .foot-box02{
    display: flex;
    align-items: stretch;
    margin-bottom: 80px;
  }
  a.foot-box02-left{
    display: block;
    width: 50%;
    height: 270px;
    padding-top: 55px;
    background-color: #FF6A00;
    color: #FFF;
  }
  .foot-box02-left img{
    display: block;
    width: 40px;
    margin: auto;
  }
  a.foot-box02-right{
    display: block;
    width: 50%;
    height: 270px;
    padding-top: 70px;
    background-color: #FF0000;
    color: #FFF;
  }
  a:hover.foot-box02-right{
    opacity: 0.7;
  }
  .foot-box02-right img{
    display: block;
    width: 50px;
    margin: auto;
  }
  .foot-box03{
    display: flex;
    align-items: stretch;
    background-color: #eff2f8;
  }
  .foot-box03-left{
    width: 40%;
    padding-left: 2%;
  }
  a.foot-box03-logo img{
    display: block;
    width: 250px;
    margin: 30px 0 10px 0;
  }
  a.foot-box03-ins img{
    width: 30px;
  }
  a:hover.foot-box03-ins img{
    opacity: 0.7;
  }
  .foot-box03-right{
    width: 60%;
  }
  .foot-box04{
    background-color: #494949;
    text-align: right;
    padding: 5px 10px;
    color: #FFF;
    font-size: 11px;
  }
  .foot-box05{
    margin-bottom: 100px;
  }
  .foot-box05-box{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin: auto;
  }
  .foot-box05-minibox01{
    width: 310px;
    margin: 15px;
    padding: 30px;
    background-color: #FFD000;
    border-radius: 20px;
  }
  .foot-box05-minibox02{
    width: 310px;
    margin: 15px;
    padding: 30px;
    background-color: #FF6A00;
    border-radius: 20px;
  }
  .foot-box05-minibox03{
    width: 310px;
    margin: 15px;
    padding: 30px;
    background-color: #FF0000;
    border-radius: 20px;
  }
  img.foot-box05-img{
    display: block;
    width: 80%;
    margin: 0 0 10px auto;
  }
  a.foot-box05-link{
    display: block;
    width: 100%;
    height: 54px;
    line-height: 54px;
    border-radius: 27px;
    font-size: 18px;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-align: center;
    background-color: #FFF;
    color: #333;
  }
  .foot-box05-text01{
    padding: 50px 0 30px 0;
    font-size: 38px;
    text-align: center;
    letter-spacing: 2px;
  }
  .foot-box05-text02{
    font-size: 27px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  .foot-box05-text03{
    padding: 10px 0;
    font-size: 15px;
    line-height: 20px;
  }
  .foot-box05-text04{
    font-size: 27px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #FFF;
  }
  .foot-box05-text05{
    padding: 10px 0;
    font-size: 15px;
    line-height: 20px;
    color: #FFF;
  }
  .foot-text01{
    font-size: 33px;
  }
  .foot-text02{
    padding-top: 20px;
    font-size: 20px;
    text-align: center;
  }
  .foot-text03{
    font-size: 35px;
    font-weight: 600;
  }
  .foot-text04{
    padding-top: 30px;
    font-size: 27px;
    line-height: 32px;
    text-align: center;
  }
  .foot-text05{
    margin-bottom: 20px;
    font-size: 15px;
  }
  .foot-text06{
    padding: 140px 0 5px 0;
    font-size: 14px;
  }
  .foot-text07{
    padding-bottom: 5px;
    font-size: 14px;
  }
  .foot-text06 a:hover,.foot-text07 a:hover{
    color: #FF0000;
  }
}

/*****************************
767px以下
*****************************/
@media screen and (max-width: 767px){
  h1{
    display: none;
  }
  h2{
    padding-bottom: 20px;
    font-size: 21px;
    text-align: center;
  }
  h3{
    width: 90%;
    margin: auto;
    font-size: 15px;
    line-height: 27px;
  }
  .custom-header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
  }
  .header-inner {
    display: block;
    justify-content: space-between;
    align-items: center;
    padding: 2% 2%;
  }
  .site-logo-sp{
    display: none;
  }
  .site-logo {
    width: 60%;
  }
  .site-logo img {
    width: 100%;
  }
  .header-center{
    position: fixed;
    right: 2%;
    bottom: 70px;
    z-index: 9999;
    width: 190px;
    height: 80px;
    margin: 0 0 0 auto;
    padding-top: 20px;
    background-color: #FFD000;
    border: #333 1px solid;
    border-radius: 10px;
  }
  .header-centerbox{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header-centerbox img{
    display: block;
    width: 15%;
    margin-right: 2%;
  }
  .header-right{
    margin-left: 2%;
    text-align: right;
  }
  .header-text01{
    display: none;
    line-height: 20px;
    font-size: 15px;
    font-weight: 600;
  }
  .header-text01 a{
    font-size: 23px;
    color: #000000;
  }
  .header-text02{
    display: none;
    font-size: 14px;
  }
  a.header-text03{
    position: fixed;
    right: 2%;
    bottom: 160px;
    display: block;
    z-index: 9999;
    width: 190px;
    height: 60px;
    line-height: 60px;
    margin: 3% 0 0 auto;
    font-size: 18px;
    font-weight: 600;
    color: #FFF;
    text-align: center;
    letter-spacing: 0.1vw;
    background-color: #FF0000;
    border-radius: 10px;
    border: 1px solid #FFF;
  }
  a.header-text03:hover{
    opacity: 0.8;
  }
  .header-text04{
    font-size: 18px;
    font-weight: 600;
  }
  .header-text05{
    font-size: 11.5px;
    text-align: center;
  }

  /*-----------------
 中ページ　共通
-------------------*/
  h1.entry-title,h1.archive-title {
    display: block;
    width: 98%;
    margin: 2vw auto 5vw auto;
    padding: 4vw;
    font-size: 6vw;
    font-weight: bold;
    letter-spacing: 0.2vw;
    border: 1px solid #000;
    border-radius: 15px;
  }
  .entry-content.cf{
    width: 98%;
    margin: auto;
  }
  main
  {
    width: 98%;
    margin: 5vw auto 0 auto;
  }

  /*-----------------
 バナー
-------------------*/
  .bn-box01 a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 98%;
    margin: 0 auto 10vw auto;
    padding: 15px 0;
    background-color: #FFD000;
    border: #494949 solid 1px;
    border-radius: 15px;
  }
  .bn-box01 a:hover{
    opacity: 0.7;
  }
  .bn-box01-left img{
    display: none;
    height: 30px;
    margin-left: 30px;
    padding: 25px 30px;
    border-radius: 50%;
    background-color: #ffffff;
  }
  .bn-box01-center{
    padding-left: 2%;
    padding-right: 0;
    font-size: 4.8vw;
    line-height: 5.5vw;
    font-weight: 600;
  }
  .bn-box01-right img{
    display: block;
    width: 23vw;
  }
  .bn-box01-text{
    font-size: 3.5vw;
  }

/*-----------------
 footer
-------------------*/
  .foot-box01{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 7% 0;
    background-color: #494949;
  }
  .foot-box01-left img {
    display: block;
    width: 45px;
  }
  .foot-box01-center{
    width: 80%;
    padding: 0 0 0 10px;
    color: #FFF;
    font-size: 4vw;
  }
  .foot-box01-right img{
    display: none;
    width: 170px;
  }
  .foot-box02{
    display: block;
    align-items: stretch;
    margin-bottom: 10vw;
  }
  a.foot-box02-left{
    display: block;
    width: 100%;
    height: auto;
    padding: 10% 0;
    background-color: #FF6A00;
    color: #FFF;
  }
  .foot-box02-left img{
    display: block;
    width: 40px;
    margin: auto;
  }
  a.foot-box02-right{
    display: block;
    width: 100%;
    height: auto;
    padding: 10% 0;
    background-color: #FF0000;
    color: #FFF;
  }
  a:hover.foot-box02-right{
    opacity: 0.7;
  }
  .foot-box02-right img{
    display: block;
    width: 50px;
    margin: auto;
  }
  .foot-box03{
    display: flex;
    align-items: stretch;
    flex-direction: column-reverse;
    background-color: #eff2f8;
  }
  .foot-box03-left{
    width: 100%;
    padding-left: 2%;
  }
  a.foot-box03-logo img{
    display: block;
    width: 280px;
    margin: 30px 0 10px 0;
  }
  a.foot-box03-ins img{
    width: 30px;
  }
  a:hover.foot-box03-ins img{
    opacity: 1;
  }
  .foot-box03-right{
    width: 100%;
  }
  .foot-box04{
    background-color: #494949;
    text-align: center;
    padding: 5px 10px;
    color: #FFF;
    font-size: 11px;
  }
  .foot-box05 {
        margin-bottom: 10vw;
    }
  .foot-box05-text01{
    padding: 10vw 0 0 0;
    font-size: 7vw;
    text-align: center;
    letter-spacing: 3px;
  }
  .foot-text01{
    font-size: 6vw;
  }
  .foot-text02{
    padding-top: 5%;
    font-size: 4vw;
    text-align: center;
  }
  .foot-text03{
    font-size: 7.5vw;
    font-weight: 600;
  }
  .foot-text04{
    padding-top: 5%;
    font-size: 6vw;
    line-height: 7vw;
    text-align: center;
  }
  .foot-text05{
    margin-bottom: 20px;
    font-size: 15px;
  }
  .foot-text06{
    padding: 16% 0 2% 0;
    font-size: 14px;
  }
  .foot-text07{
    padding-bottom: 5%;
    font-size: 14px;
  }
  .foot-text06 a:hover,.foot-text07 a:hover{
    color: #FF0000;
  }
}
