@charset "UTF-8";

/*==========================================

Theme Name: ブリヂストンタイヤ岩手販売株式会社
Author: kpj
Author URI: 
Description: ブリヂストンタイヤ岩手販売株式会社のテーマです
Version: 1.0
Text Domain: 
Tags: 
License: 
License URI: 
Tested up to: 6.5
Requires PHP: 8.3.2.

全デバイス共通［common］
　・ヘッダー
　・フッター
  ・ボタン
	・リンク
　・テキスト
===========================================*/
:root {
  --main-color: #E72410;
  --sub-color: #F5F5F5;
  --text-color: #2B2B2B;
  --bg-color: #ddd;
  --line-color: #aaa;
}

body {
  width: 100%;
  color: var(--text-color);
  font-size: 16px;
  font-family: 'NotoSansJP', sans-serif;
  font-style: normal;
  letter-spacing: .05em;
  position: relative;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

a:link {
  color: #065FD4;
  transition-duration: .3s;
}

@media (hover: hover) {

  a:hover,
  a:visited:hover,
  .footerNavList li a:hover {
    color: var(--main-color);
  }

}

/*フォント*/
@font-face {
  font-family: 'NotoSansJP';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/NotoSansJP-Light.woff') format('woff');
}

@font-face {
  font-family: 'NotoSansJP';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/NotoSansJP-Regular.woff') format('woff');
}

@font-face {
  font-family: 'NotoSansJP';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/NotoSansJP-Bold.woff') format('woff');
}


/* スキップリンク */
.skip-nav {
  margin: 0;
  position: relative;
}

.skip-link a {
  position: absolute;
  top: -120px;
  display: inline-block;
  height: 20px;
  width: 140px;
  padding: 2px 10px;
  text-align: center;
  font-size: 12px;
  color: #FFF;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  background: var(--main-color);
  transition: top .3s ease;
  z-index: 999999;
}

.skip-link a:focus-visible {
  left: 0;
  top: 0;
}



/*視覚的には非表示にしつつ、スクリーンリーダでは読む*/
.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
  color: var(--text-color);
}

/*ローディング*/
.loading-wrap {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: #dedede;
  left: 0px;
  top: 0px;
  z-index: 9999;
  width: 100%;
  height: 100%;
}

.loading-anime {
  animation-name: loadinganime;
  animation-timing-function: ease;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

@keyframes loadinganime {
  from {
    transform: translateX(0);
  }

  30%,
  70% {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}

.loading-wrap .logo {
  margin: auto;
  position: absolute;
  top: 45%;
  right: 0;
  left: 0;
  animation: blink 1s ease-in-out infinite alternate;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


/*==========================================
 PC［1001px~］
===========================================*/
/*------------
 header
------------*/
.headerWrap {
  margin: 0 auto 0;
  padding: 0;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 999;
}

.headerWrap.js-fixed {
  position: fixed;
  top: 0;
}

/*headerInfo*/
.headerInfo {
  margin: 0 0 0 auto;
  padding: 0 0 0 0;
  width: calc(90% - 70px);
  position: relative;
}

.headerInner.flex {
  position: relative;
  background-color: #FFF;
  flex-wrap: nowrap;
}

/*headerInfo*/

/*ロゴ*/
.logoArea {
  margin: 30px auto 30px 30px;
  width: 215px;
  height: 55px;
  display: flex;
  align-content: center;
  align-items: center;
  transition-duration: .3s;
}

.logoArea a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: var(--text-color);
  transition-duration: .3s;
}

.headerWrap.js-fixed .logoArea {
  margin: 10px auto 10px 10px;
}

@media (hover: hover) {
  .logoArea a:hover {
    opacity: .7;
  }
}

.logoArea .logo {
  width: 100%;
  height: auto;
  pointer-events: auto;
  display: block;
  transition-duration: .3s;
}

/*===global-nav===*/
.global-nav {
  padding: 0 30px;
  background: #000;
  display: flex;
  align-items: center;
}

.global-nav .nav-list {
  display: flex;
  justify-content: end;
  align-items: end;
  position: relative;
}

.global-nav .nav-list .nav-item a {
  height: 100%;
  display: flex;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  line-height: 1.25;
  align-items: center;
  flex-direction: column;
  font-size: 15px;
  letter-spacing: 0;
  color: #fff;
  position: relative;
}

/*お問い合わせ*/
.global-nav .nav-list .nav-item.contact {
  margin-left: 1em;
}

.global-nav .nav-list .nav-item.contact a {
  padding: 10px 20px;
  background: var(--sub-color);
  color: var(--text-color) !important;
}

@media (hover: hover) {
  .global-nav .nav-list .nav-item.contact a:hover {
    color: var(--main-color) !important;
  }
}

/*カレント*/
.global-nav .nav-list a[aria-current="page"] {
  position: relative;
}

.single-voicelist .global-nav .menu-item-93>a::before,
.global-nav :not(.contact).current-page-ancestor>a::before,
.global-nav :not(.contact, #menu-item-187).current-menu-parent>a::before,
.global-nav .nav-list a[aria-current="page"]::before {
  content: '';
  margin: auto;
  width: 30px;
  height: 3px;
  position: absolute;
  bottom: -5px;
  right: 0;
  left: 0;
  background-color: #fff;
}

/*.page-template-page-contact-form .global-nav .nav-list a[aria-current="page"]::before,*/
.page-template-page-contact-form .global-nav .nav-list .contact a[aria-current="page"]::before

/*.category-recruit .global-nav #menu-item-93.current_page_ancestor>a::before */
  {
  content: none !important;
}

.global-nav .nav-list .current-page-ancestor .nav-item_sub a::before,
.global-nav .nav-list .nav-item_sub a[aria-current="page"]::before {
  margin: inherit;
}

@media print {

  .nav-item_sub,
  .nav-item_sub .inner ul {
    display: none;
  }
}


@media screen and (min-width: 1023px) {
  .global-nav .nav-list .nav-item:not(.contact)>a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background: #fff;
    bottom: -5px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
  }

  .global-nav .nav-list .nav-item>a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }

  .global-nav .nav-list .nav-item .nav-item_sub .nav-item a::after {
    content: none;
  }

  /*PCに反映するスタイル*/
  .global-nav .nav-list:hover .nav-item a {
    color: var(--line-color);
  }

  .global-nav .nav-list .nav-item:hover>a,
  .global-nav .nav-list .nav-item a:hover {
    color: #fff;
  }

  /* サブメニュー*/
  .nav-item.parent {
    position: relative;
  }

  .nav-item_sub {
    width: 250px;
    position: absolute;
    top: 45px;
    /*display: none;*/
    visibility: hidden;
    opacity: 0;
    transition-duration: .3s;
    transform: scale(0.7);
  }


  .nav-item .nav-item_sub.focused,
  .nav-item:hover .nav-item_sub {
    /* display: block;*/
    visibility: visible;
    opacity: 1;
    transform: scale(1);
  }

  .nav-item_sub .inner {
    display: flex;
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }

  .nav-item_sub .inner ul {
    padding: 1em;
    width: 100%;
    background: var(--sub-color);
    justify-content: flex-start;
  }

  .global-nav .nav-list .nav-item_sub ul li {
    width: 100%;
  }

  .global-nav .nav-list .nav-item_sub a {
    padding: .7em 1em .7em 1.7em;
    width: 100%;
    display: block;
    color: var(--text-color);
    font-size: 14px;
  }

  .global-nav .nav-list .nav-item_sub ul li a {
    position: relative;
    text-align: left;
    /*hover時の色変更用*/
    color: transparent !important;
    background: linear-gradient(to right, var(--main-color) 50%, #000 50%) 100%;
    background-clip: text;
    background-size: 200% 100%;
    transition: background-position .5s;
  }

  .global-nav .nav-list .nav-item_sub ul li a::before {
    content: "";
    width: 8px;
    height: 8px;
    border: 2px solid #000;
    position: absolute;
    box-sizing: border-box;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    transform-origin: top right;
    top: 50%;
    left: 5px;
  }

  .global-nav .nav-list .nav-item_sub ul li a::after {
    content: "";
    width: 10px;
    height: 2px;
    border-bottom: 2px solid #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
  }

  .global-nav .nav-list .nav-item_sub ul li a:hover {
    background-position: 0 100%;
  }

  :is(.single-voicelist, .post-type-archive-voicelist) #menu-item-188 a,
  .global-nav .nav-list .nav-item .nav-item_sub :is(.current-page-ancestor, .current_page_item) a {
    color: var(--main-color) !important;
  }

}

/*ハンバーガーメニューは非表示*/
.hamburger,
.hamburger-nav {
  display: none;
}

/*------------
	footer
------------*/
footer {
  position: relative;
}

/*contactArea*/
#footerArea {
  margin-top: 130px;
  background: var(--bg-color);
}

#footerArea .inner {
  padding: 100px 0;
  width: min(80%, 950px);
  transform: translateX(-40px);
}

#footerArea .address {
  width: 250px;
}

#footerArea .menu {
  width: calc(100% - 350px);
}

.address>a {
  display: block;
  width: 250px;
  height: auto;
}

.footerlogo {
  margin-bottom: 50px;
  width: 100%;
  height: auto;
  transition-duration: .3s;
}

@media (hover: hover) {
  .footerlogo:hover {
    opacity: .7;
  }
}

#footerArea address {
  font-style: normal;
  font-size: clamp(0.9375rem, 0.9167rem + 0.1042vw, 1rem);
  line-height: 1.5;
}

.footerNavList>li>a {
  padding: .5em 2.5em .5em .25em;
  margin-left: auto;
  width: 100%;
  font-size: clamp(0.875rem, 0.834rem + 0.2vw, 1rem);
  line-height: 1.5;
  position: relative;
  text-decoration: none !important;
  transition-duration: .3s;
  font-weight: bold;
  border-bottom: solid 1px var(--text-color);
  display: inline-block;
  /*hover時の色変更用*/
  color: transparent !important;
  background: linear-gradient(to right, #888 50%, var(--text-color) 50%) 100%;
  background-clip: text;
  background-size: 200% 100%;
  transition: background-position .5s;
}

.footerNavList>li>a::after {
  content: '';
  position: absolute;
  top: calc(50% - .25em);
  transform: translateY(-50%);
  right: 0;
  width: 15px;
  height: 10px;
  background: url(images/arrow.svg);
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition-duration: .3s;
}

@media (hover: hover) {
  .footerNavList>li>a:hover {
    background-position: 0 100%;
  }

  .footerNavList>li>a:hover::after {
    opacity: .8;
    right: -.25em;
  }
}

.footerNavList li ul {
  margin: 1em 0;
}

.footerNavList li li {
  padding: .5em 0 .5em 1.5em;
  position: relative;
}

.footerNavList li li a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: bold;
  font-size: clamp(0.75rem, 0.7083rem + 0.2083vw, 0.875rem);
  line-height: 1.5;
  letter-spacing: 0;
  display: block;
  /*hover時の色変更用*/
  color: transparent !important;
  background: linear-gradient(to right, #888 50%, var(--text-color) 50%) 100%;
  background-clip: text;
  background-size: 200% 100%;
  transition: background-position .5s;

}

@media (hover: hover) {
  .footerNavList li li a:hover {
    background-position: 0 100%;
  }
}

.footerNavList li li a::before {
  content: '';
  width: 15px;
  height: 1px;
  background-color: var(--text-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.footerBotom {
  padding: 45px 0;
  width: 100%;
  background-color: var(--text-color);
  color: #fff;
}

#footerArea .footerBotom .inner {
  padding: 0;
}

.footerBotomMenu {
  margin-bottom: 1em;
}

.footerBotomMenu li {
  margin-right: 30px;
}

.footerBotomMenu a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  transition-duration: .3s;
}

@media (hover: hover) {
  .footerBotomMenu a:hover {
    opacity: .7;
    color: #fff;
  }
}

/*-------
 small
-------*/
small {
  font-size: 12px;
  display: block;
  text-align: center;
}

/*-------
 page top
-------*/

#pagetop {
  padding-top: 1.5em;
  width: 50px;
  height: 100%;
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  background-color: var(--text-color);
}

#pagetop a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  position: relative;
  color: #fff;
  text-decoration: none;
}

#pagetop a img {
  width: 25px;
  display: block;
  transition-duration: .3s;
}

@media (hover: hover) {
  #pagetop a:hover img {
    transform: translateY(-5px);
  }

}

/*------------
ボタンのスタイル
------------*/

:is(.btm-circle, .btm, .btm-entry).fit-content a {
  width: fit-content;
  min-width: 140px;
}

:is(.btm).w100 a {
  width: 100%;
}

:is(.btm).btm-center a {
  margin: 2em auto;
  display: block;
}

:is(.btm-circle).btm-center {
  margin: auto;
  width: fit-content;
}

.btm {
  margin: 2em 0;
  position: relative;
}

.btm a {
  padding: 0 2.5em .5em .25em;
  margin-left: auto;
  width: min(100%, 240px);
  font-size: clamp(0.875rem, 0.834rem + 0.2vw, 1rem);
  line-height: 1.5;
  position: relative;
  text-decoration: none !important;
  transition-duration: .3s;
  font-weight: bold;
  border-bottom: solid 2px var(--text-color);
  display: inline-block;
  /*hover時の色変更用*/
  color: transparent !important;
  background: linear-gradient(to right, var(--main-color) 50%, #000 50%) 100%;
  background-clip: text;
  background-size: 200% 100%;
  transition: background-position .5s;
}

.btm a::after {
  content: '';
  position: absolute;
  top: calc(50% - .25em);
  transform: translateY(-50%);
  right: 0;
  width: 25px;
  height: 20px;
  background: url(images/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  transition-duration: .3s;
}

@media (hover: hover) {
  .btm a:hover {
    background-position: 0 100%;
  }

  .btm a:hover::after {
    opacity: .8;
    right: -.25em;
  }
}


/*btm-circle*/
.btm-circle {
  margin: 3.5em 0;
  position: relative;
}

.btm-circle a {
  padding: 0 65px .5em .25em;
  margin-left: auto;
  width: min(100%, 240px);
  font-size: clamp(0.875rem, 0.834rem + 0.2vw, 1rem);
  line-height: 1.5;
  position: relative;
  text-decoration: none !important;
  transition-duration: .3s;
  font-weight: bold;
  display: inline-block;
  /*hover時の色変更用*/
  color: transparent !important;
  background: linear-gradient(to right, var(--main-color) 50%, var(--text-color) 50%) 100%;
  background-clip: text;
  background-size: 200% 100%;
  transition: background-position .5s;

}

.btm-circle a::before,
.btm-circle a::after {
  content: '';
  position: absolute;
  top: calc(50% - .25em);
  transform: translateY(-50%);
  right: 0;
  transition-duration: .5s;
}

.btm-circle a::before {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--text-color);
  transition-duration: .5s;
  clip-path: circle(25px at 50% 50%);
}

.btm-circle a::after {
  width: 55px;
  height: 55px;
  background-image: url(images/arrow-wh.svg);
  background-repeat: no-repeat;
  background-size: 25px 25px;
  background-position: center;
}

@media (hover: hover) {
  .btm-circle a:hover {
    background-position: 0 100%;
  }

  .btm-circle a:hover::before {
    background-color: var(--main-color);
    clip-path: circle(55px at 50% 50%);
  }
}

/*btm-entry*/
.btm-entry {
  margin: 1em 0;
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: ease .2s;
  background-color: #fff;

}

.btm-entry a {
  padding: .5em 2.5em;
  margin-left: auto;
  width: min(100%, 240px);
  font-size: clamp(1.25rem, 1.042rem + 1.04vw, 1.875rem);
  font-family: 'Anton';
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
  position: relative;
  text-decoration: none !important;
  font-weight: bold;
  border: solid 2px var(--text-color);
  color: var(--text-color);
  display: inline-block;
  z-index: 2;
  transition-duration: .3s;
}

.btm-entry:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: var(--main-color);
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

/*hoverした際の形状*/
@media (hover: hover) {
  .btm-entry:hover:before {
    transform-origin: left top;
    transform: scale(1, 1);
  }

  .btm-entry:hover a {
    color: #fff;
  }
}

/*------------
 リンク
------------*/
:where(.contentArea) a:hover {
  color: var(--text-color);
}

main a:not(.no-icon)[href$=".pptx"]:after,
main a:not(.no-icon)[href$=".ppt"]:after,
main a:not(.no-icon)[href$=".pdf"]:after,
main a:not(.no-icon)[href$=".doc"]:after,
main a:not(.no-icon)[href$=".docx"]:after,
main a:not(.no-icon)[href$=".xls"]:after,
main a:not(.no-icon)[href$=".xlsm"]:after,
main a:not(.no-icon)[href$=".xlsx"]:after,
main a:not(.no-icon)[href^="https://"][target="_blank"]:after,
main a:not(.no-icon)[href^="http://"][target="_blank"]:after {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 5px;
}

main a:not(.no-icon)[href^="http://"][target="_blank"]:after,
main a:not(.no-icon):not([href^="https://www.bstiwate.co.jp/"])[href^="https://"][target="_blank"]:after {
  content: url("images/icon-blank.svg");
}

.btm a:not(.no-icon)[href$=".pdf"][target="_blank"]:after,
main a:not(.no-icon)[href$=".pdf"]:after {
  content: url("images/icon-pdf.svg");
}

.btm a:not(.no-icon)[href$=".docx"][target="_blank"]:after,
.btm a:not(.no-icon)[href$=".doc"][target="_blank"]:after,
main a:not(.no-icon)[href$=".doc"]:after,
main a:not(.no-icon)[href$=".docx"]:after {
  content: url("images/icon-word.svg");
}

.btm a:not(.no-icon)[href$=".xls"][target="_blank"]:after,
.btm a:not(.no-icon)[href$=".xlsm"][target="_blank"]:after,
.btm a:not(.no-icon)[href$=".xlsx"][target="_blank"]:after,
main a:not(.no-icon)[href$=".xls"]:after,
main a:not(.no-icon)[href$=".xlsm"]:after,
main a:not(.no-icon)[href$=".xlsx"]:after {
  content: url("images/icon-excel.svg");
}

.btm a:not(.no-icon)[href$=".pptx"][target="_blank"]:after,
.btm a:not(.no-icon)[href$=".ppt"][target="_blank"]:after,
main a:not(.no-icon)[href$=".pptx"]:after,
main a:not(.no-icon)[href$=".ppt"]:after {
  content: url("images/icon-ppt.svg");
}

main a.gmap[href^="https://"][target="_blank"]:after {
  content: url("images/icon-pin.svg") !important;
}

main a.gmap {
  padding: 1em 0;
  color: var(--text-color);
}

@media (hover: hover) {
  main a.gmap:hover {
    opacity: .7;
  }
}

main .wp-block-file a {
  font-size: clamp(0.875rem, 0.834rem + 0.2vw, 1rem);
}

main a.wp-block-file__button::after {
  content: none !important;
}

/*------------
 コンテンツ
------------*/
.sp-on,
.tb-on {
  display: none;
}

/*
main {
  overflow: hidden;
}*/

.inner {
  margin: 0 auto;
  width: min(90%, 1000px);
}

/*--見出し--*/

main :where(h2, h3, h4, h5, h6) {
  margin: 0 0 1.25em;
  font-size: clamp(1.25rem, 0.875rem + 1.88vw, 2.375rem);
  line-height: 1.5;
  font-weight: bold;
  position: relative;
}

main :is(h2, h3) .jp {
  padding-left: 25px;
  font-size: clamp(0.75rem, 0.7083rem + 0.2083vw, 0.875rem);
  position: relative;
}

main :is(h2, h3) .jp::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--text-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
}

main :is(h2, h3) .en {
  letter-spacing: 0.05em;
  display: block;
  font-family: 'Anton';
  font-size: clamp(3.125rem, 2.6042rem + 2.6042vw, 4.6875rem);
  font-weight: normal;
  line-height: 1.1;
}


:where(main) h3 {
  font-size: clamp(1.25rem, 1.167rem + 0.42vw, 1.5rem);
}

main h2 .jp {
  font-size: clamp(1rem, 0.958rem + 0.21vw, 1.125rem);
}

main h3 .jp {
  padding-left: 0;
}

main h3 .jp::before {
  content: none;
}

main h3 .en {
  font-size: clamp(1.25rem, 1.167rem + 0.42vw, 1.5rem);
  display: inline;
}

:where(main) h4 {
  font-size: clamp(1.125rem, 1.042rem + 0.42vw, 1.375rem);
}

:where(main) h5 {
  font-size: clamp(1.063rem, 1rem + 0.31vw, 1.25rem);
}

:where(main) h6 {
  font-size: clamp(1rem, 0.958rem + 0.21vw, 1.125rem);
}


/*------------
	 テキスト関連
------------*/
.m-bottom0 {
  margin-bottom: 0;
}

.m-bottom3em {
  margin-bottom: 3em;
}

.text-small {
  font-size: 11px;
}

.text-lead {
  font-size: clamp(1.25rem, 1.167rem + 0.42vw, 1.5rem);
}

strong,
.text-bold {
  font-weight: bold;
}

.text-wh {
  color: #fff;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

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

:where(main) p {
  font-size: clamp(0.9375rem, 0.9167rem + 0.1042vw, 1rem);
  line-height: 1.8;
}

/*--ボックス--*/
.box {
  padding: 2em;
  box-shadow: 0 0 8px rgba(0, 0, 0, .1);
  background: #fff;
}

:where(.col-2)> :is(div, li) {
  margin-bottom: 1em;
  width: 48%;
}

:where(.col-3)> :is(div, li) {
  margin-bottom: 1em;
  width: 30%;
}

:where(.col-3)::after {
  content: "";
  display: block;
  width: 30%;
}

:where(.col-4, .anchorArea, .voiceList)> :is(div, li) {
  margin-bottom: 1em;
  width: 22%;
}

:where(.col-4, .anchorArea, .voiceList)::before,
:where(.col-4, .anchorArea, .voiceList)::after {
  content: "";
  display: block;
  width: 22%;
}

:where(.col-4, .anchorArea, .voiceList)::before {
  order: 1;
}


/*==========================================
 tb［541px-1024px以下］
===========================================*/
@media screen and (max-width: 1024px) {

  /*------------
	 header
	------------*/
  .headerInner {
    background-color: #fff;
    z-index: inherit;
  }

  .headerInfo {
    margin: 50px auto;
  }

  .headerWrap.js-fixed .logoArea,
  .logoArea {
    margin: 15px auto 15px 30px;
  }

  .open .headerInner {
    background-color: inherit;
  }

  .open .logoArea {
    opacity: 0;
  }

  .global-nav {
    display: none;
  }

  .hamburger-nav {
    margin: 65px 0 0;
    padding: 50px 0 200px;
  }

  .hamburgerLine {
    width: 30px;
    top: 25px;
  }

  .hamburgerLine:before {
    top: -10px;
  }

  .hamburgerLine:after {
    top: 10px;
    right: 0;
  }

  .hamburgerText::before {
    top: -15px;
  }

  /*hamburger menu*/

  /* hamburger */
  .hamburger-nav {
    display: none;
    position: relative;
  }

  .hamburger {
    margin: 0 0 0 auto;
    display: block;
    height: 85px;
    width: 85px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999999;
    border: none;
    background-color: var(--text-color);
    transition: .5s;
  }

  .hamburgerLine {
    display: block;
    height: 2px;
    width: 45px;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    transition: 0.5s;
  }

  .hamburgerLine:before,
  .hamburgerLine:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #fff;
    transition: inherit;
  }

  .hamburgerLine:before {
    top: -15px;
  }

  .hamburgerLine:after {
    top: 15px;
    right: 0;
  }

  .hamburgerText {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }

  .hamburgerText::before {
    content: "MENU";
    margin: auto;
    text-align: center;
    color: #fff;
    font-size: 10px;
    position: absolute;
    top: -10px;
    right: 0;
    left: 0;
  }

  /*アクティブ*/
  .open .hamburger {
    background: var(--text-color);
  }

  .open .hamburgerLine {
    background: inherit;
    background: var(--text-color);
  }

  .open .hamburgerLine::before {
    top: 0;
    transform: rotate(45deg);
    background-color: #fff;

  }

  .open .hamburgerLine::after {
    top: 0;
    transform: rotate(-45deg);
    width: 100%;
    background-color: #fff;

  }


  /*ENDアクティブ*/

  /*中身*/

  .hamburger-nav {
    margin: 0 0 0;
    padding: 100px 0 200px;
    height: 100%;
    width: 80%;
    position: fixed;
    right: -100%;
    top: 0px;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    pointer-events: auto;
    visibility: hidden;
    transition-duration: .3s;
    display: block;
    z-index: 99999;
    background-size: auto auto;
    background-color: var(--text-color);
  }

  .open .hamburger-nav {
    right: 0;
    overflow-x: hidden;
    visibility: visible;
  }

  body.open::before {
    content: '';
    background: rgba(0, 0, 0, .8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
  }

  .is-fixed .hamburger-nav {
    top: 0;
  }

  /*hamburger menu*/

  .hamburger-list {
    margin: auto;
    width: 80%;
  }

  .hamburger-list>.nav-item:not(.contact) {
    border-bottom: solid 1px var(--line-color);
    position: relative;
  }

  .hamburger-list .nav-item a {
    padding: 1.5em .5em;
    color: #fff;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: bold;
  }

  .hamburger-list .parent {
    display: block;
    width: 100%;
  }

  .hamburger-list .button {
    display: block;
    width: 50px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    background-color: inherit;
  }

  .hamburger-list .button::before,
  .hamburger-list .button::after {
    content: '';
    position: absolute;
    background: #fff;
    top: 2.25em;
    width: 18px;
    height: 2px;
    transition: all 0.3s;
  }

  .hamburger-list .button::before {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .hamburger-list .button::after {
    transform: translateX(-50%);
  }

  .hamburger-list .button.open::before {
    transform: translate(-50%, -50%);
  }

  .hamburger-list .button.open::after {
    opacity: 0;
  }

  .hamburger-list .contact {
    margin: 3em auto;
    border: solid 1px #fff;
  }

  .hamburger-list .contact a {
    text-align: center;
    font-size: 12px;
  }

  /*子要素*/
  .nav-item_sub {
    display: none;
  }

  .nav-item_sub li {
    width: 100%;
  }

  .hamburger-list .nav-item_sub {
    margin-bottom: 1em;
  }

  .hamburger-list .nav-item_sub li a {
    padding: 1em .5em 1em 2em;
    position: relative;
  }

  .hamburger-list .nav-item_sub li a::before {
    content: '';
    width: 10px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: .5em;
  }

  /*------------
		footer
	------------*/
  #footerArea .inner {
    transform: translateX(-30px);
  }

  #footerArea :is(.address, .menu) {
    width: 100%;
  }

  #footerArea .address {
    margin-bottom: 2em;
  }

  .footerBotomMenu {
    flex-direction: column;
  }

  .footerBotomMenu li {
    margin: 0 0 .5em;
  }

  small {
    align-self: end;
  }

  /*------------
		 コンテンツ
	------------*/
  .tb-on {
    display: block;
  }

  .tb-none {
    display: none;
  }

  /*------------
  カラム
  ------------*/
  :where(.col-2)> :is(div, li) {
    width: 100%;
  }

  :where(.col-3)> :is(div, li) {
    width: 48%;
  }



}



/*==========================================
 sp［540px以下］
===========================================*/
@media screen and (max-width: 540px) {

  /* iOSでのデフォルトスタイルをリセット */
  input[type="submit"],
  input[type="button"] {
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
  }

  input[type="submit"]::-webkit-search-decoration,
  input[type="button"]::-webkit-search-decoration {
    display: none;
  }

  input[type="submit"]:focus,
  input[type="button"]:focus {
    outline-offset: -2px;
  }

  a[href^="tel:"] {
    pointer-events: auto;
    text-decoration: underline;
    color: #065FD4;
  }


  /*------------
		 header
	------------*/
  .headerWrap {
    margin: 0;
    width: 100%;
  }

  .headerInfo {
    margin: 0;
  }

  .headerInner {
    margin: auto;
    border: none;
  }

  .logoArea {
    margin: 15px auto 15px 15px;
    height: 40px;
  }

  .logoArea a {
    width: 200px;
    height: auto;
  }

  .headerWrap.js-fixed .logoArea {
    margin: 15px auto 15px 15px;
  }

  /*hamburger*/

  .hamburger {
    height: 70px;
    width: 70px;
  }

  .hamburgerLine {
    width: 25px;
    top: 30px;
  }

  .hamburgerLine::before {
    top: -10px;
  }

  .hamburgerLine::after {
    top: 10px;
  }

  .hamburger-menu {
    width: 80%;
  }

  .hamburger-menu-list li a {
    font-size: 14px;
  }

  /*------------
		footer
	------------*/
  #footerArea {
    margin-top: 100px;
  }

  #footerArea .inner {
    margin: 0 0 0 5%;
    padding: 3em 0;
    width: calc(90% - 55px);
    transform: translateX(0);
  }

  #footerArea a[href^="tel:"] {
    color: var(--text-color);
  }

  .footerNavList li {
    width: 100%;
  }

  .footerBotomMenu {
    margin-bottom: 2em;
    width: 100%;
  }


  /*------------
		 コンテンツ
	------------*/
  main {
    padding: 0;
  }

  .sp-on {
    display: block;
  }

  .pc-on {
    display: none;
  }

  .asideMenuList li {
    width: 48%;
  }

  /*メニューリスト*/
  .menuList.col-3 {
    margin-bottom: 100px;
  }

  .menuListCat li {
    padding: 4px 5px 2px;
  }
}