@charset "UTF-8";
:root {
  --main-color: #184350;
  --main-color-hover: #246477;
  --sub-color: #C75857;
  --sub-color-hover: #b03c3b;
  --accent-color1: #D9EA4C;
  --accent-color1-hover: #cfe51e;
  --accent-color2: #0481EB;
  --accent-color2-hover: #279afb;
  --link-color: #333;
  --link-color-hover: #4d4d4d;
  --text-color: #333;
  --bg-color: #F5F5F5;
  --gothic: "Noto Sans JP","Yu Gothic","Hiragino Kaku Gothic ProN","メイリオ","Meiryo",sans-serif;
  --mincyo: "Noto Serif JP","ヒラギノ明朝 Pro","Hiragino Mincho Pro","Yu Mincho","ＭＳ Ｐ明朝",serif;
  --roman: "Cormorant Garamond","Georgia","Times New Roman","Times",serif;
  --tel: "Roboto Condensed",serif;
  --icon: "Material Icons";
  --icon-arrow-up: "";
  --icon-arrow-down: "";
  --icon-arrow-right: "";
  --icon-arrow-left: "";
  --icon-mail: "";
  --icon-ex: "";
  --icon-check: "";
  --icon-plus: "";
  --icon-minus: "";
  --sp-header-height: 60px;
  --pc-header-height: 110px;
  --inner-wide: 1080px;
  --inner-vh: calc(var(--vh, 1vh) * 100);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
* {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, summary, time, mark, audio, video, picture {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

html {
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  font-size: 62.5%;
}

body {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.8;
  font-family: var(--gothic);
  overflow-x: hidden;
  position: relative;
  word-wrap: break-word;
}
@media (min-width: 600px) {
  body {
    margin: 0;
  }
}
@media (min-width: 1024px) {
  body {
    margin: 0;
  }
}
@media (min-width: 1440px) {
  body {
    margin: 0;
  }
}
body input, body select {
  vertical-align: middle;
}
body table {
  border-collapse: collapse;
  width: 100%;
}
body address {
  font-style: normal;
  display: block;
}
body img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
body button {
  padding: 0;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  font-family: var(--gothic);
}
body a {
  color: var(--link-color);
  text-decoration: none;
  transition: 0.5s;
}
body a.-line {
  text-decoration: underline;
}
body a.-line:hover {
  text-decoration: none;
}

form input[type=text],
form input[type=password],
form input[type=datetime],
form input[type=datetime-local],
form input[type=date],
form input[type=month],
form input[type=time],
form input[type=week],
form input[type=number],
form input[type=email],
form input[type=url],
form input[type=search],
form input[type=tel],
form input[type=color],
select,
textarea {
  padding: 10px;
  border: 1px solid #D7D7D7;
  font-size: 16px;
  line-height: 1.8;
  font-family: var(--gothic);
  max-width: 100%;
}
form input[type=text]:focus,
form input[type=password]:focus,
form input[type=datetime]:focus,
form input[type=datetime-local]:focus,
form input[type=date]:focus,
form input[type=month]:focus,
form input[type=time]:focus,
form input[type=week]:focus,
form input[type=number]:focus,
form input[type=email]:focus,
form input[type=url]:focus,
form input[type=search]:focus,
form input[type=tel]:focus,
form input[type=color]:focus,
select:focus,
textarea:focus {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) inset;
  border: 1px solid #137af3;
  outline: none;
}
form input[type=text]::-moz-placeholder, form input[type=password]::-moz-placeholder, form input[type=datetime]::-moz-placeholder, form input[type=datetime-local]::-moz-placeholder, form input[type=date]::-moz-placeholder, form input[type=month]::-moz-placeholder, form input[type=time]::-moz-placeholder, form input[type=week]::-moz-placeholder, form input[type=number]::-moz-placeholder, form input[type=email]::-moz-placeholder, form input[type=url]::-moz-placeholder, form input[type=search]::-moz-placeholder, form input[type=tel]::-moz-placeholder, form input[type=color]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #ccc;
}
form input[type=text]::placeholder,
form input[type=password]::placeholder,
form input[type=datetime]::placeholder,
form input[type=datetime-local]::placeholder,
form input[type=date]::placeholder,
form input[type=month]::placeholder,
form input[type=time]::placeholder,
form input[type=week]::placeholder,
form input[type=number]::placeholder,
form input[type=email]::placeholder,
form input[type=url]::placeholder,
form input[type=search]::placeholder,
form input[type=tel]::placeholder,
form input[type=color]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #ccc;
}
form input[type=text]:-moz-placeholder-shown, form input[type=password]:-moz-placeholder-shown, form input[type=datetime]:-moz-placeholder-shown, form input[type=datetime-local]:-moz-placeholder-shown, form input[type=date]:-moz-placeholder-shown, form input[type=month]:-moz-placeholder-shown, form input[type=time]:-moz-placeholder-shown, form input[type=week]:-moz-placeholder-shown, form input[type=number]:-moz-placeholder-shown, form input[type=email]:-moz-placeholder-shown, form input[type=url]:-moz-placeholder-shown, form input[type=search]:-moz-placeholder-shown, form input[type=tel]:-moz-placeholder-shown, form input[type=color]:-moz-placeholder-shown, select:-moz-placeholder-shown, textarea:-moz-placeholder-shown {
  background: #F9FAFB;
}
form input[type=text]:placeholder-shown,
form input[type=password]:placeholder-shown,
form input[type=datetime]:placeholder-shown,
form input[type=datetime-local]:placeholder-shown,
form input[type=date]:placeholder-shown,
form input[type=month]:placeholder-shown,
form input[type=time]:placeholder-shown,
form input[type=week]:placeholder-shown,
form input[type=number]:placeholder-shown,
form input[type=email]:placeholder-shown,
form input[type=url]:placeholder-shown,
form input[type=search]:placeholder-shown,
form input[type=tel]:placeholder-shown,
form input[type=color]:placeholder-shown,
select:placeholder-shown,
textarea:placeholder-shown {
  background: #F9FAFB;
}

input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

/*
===== Utility ====================================
*/
._cf:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

._cf {
  display: inline-block;
}

._m00 {
  margin: 0 !important;
}

._m0 {
  margin: 0 !important;
}

._mt00 {
  margin-top: 0 !important;
}

._mt05 {
  margin-top: 5px !important;
}

._mt10 {
  margin-top: 10px !important;
}

._mt15 {
  margin-top: 15px !important;
}

._mt20 {
  margin-top: 20px !important;
}

._mt25 {
  margin-top: 25px !important;
}

._mt30 {
  margin-top: 30px !important;
}

._mt35 {
  margin-top: 35px !important;
}

._mt40 {
  margin-top: 40px !important;
}

._mt45 {
  margin-top: 45px !important;
}

._mt50 {
  margin-top: 50px !important;
}

@media (min-width: 1024px) {
  ._mtpc05 {
    margin-top: 5px !important;
  }
  ._mtpc10 {
    margin-top: 10px !important;
  }
  ._mtpc15 {
    margin-top: 15px !important;
  }
  ._mtpc20 {
    margin-top: 20px !important;
  }
  ._mtpc25 {
    margin-top: 25px !important;
  }
  ._mtpc30 {
    margin-top: 30px !important;
  }
  ._mtpc35 {
    margin-top: 35px !important;
  }
  ._mtpc40 {
    margin-top: 40px !important;
  }
  ._mtpc45 {
    margin-top: 45px !important;
  }
  ._mtpc50 {
    margin-top: 50px !important;
  }
}
._mb00 {
  margin-bottom: 0 !important;
}

._mb05 {
  margin-bottom: 5px !important;
}

._mb10 {
  margin-bottom: 10px !important;
}

._mb15 {
  margin-bottom: 15px !important;
}

._mb20 {
  margin-bottom: 20px !important;
}

._mb25 {
  margin-bottom: 25px !important;
}

._mb30 {
  margin-bottom: 30px !important;
}

._mb35 {
  margin-bottom: 35px !important;
}

._mb40 {
  margin-bottom: 40px !important;
}

._mb45 {
  margin-bottom: 45px !important;
}

._mb50 {
  margin-bottom: 50px !important;
}

@media (min-width: 1024px) {
  ._mbpc00 {
    margin-bottom: 0 !important;
  }
  ._mbpc05 {
    margin-bottom: 5px !important;
  }
  ._mbpc10 {
    margin-bottom: 10px !important;
  }
  ._mbpc15 {
    margin-bottom: 15px !important;
  }
  ._mbpc20 {
    margin-bottom: 20px !important;
  }
  ._mbpc25 {
    margin-bottom: 25px !important;
  }
  ._mbpc30 {
    margin-bottom: 30px !important;
  }
  ._mbpc35 {
    margin-bottom: 35px !important;
  }
  ._mbpc40 {
    margin-bottom: 40px !important;
  }
  ._mbpc45 {
    margin-bottom: 45px !important;
  }
  ._mbpc50 {
    margin-bottom: 50px !important;
  }
}
._mr00 {
  margin-right: 0 !important;
}

._mr05 {
  margin-right: 5px !important;
}

._mr10 {
  margin-right: 10px !important;
}

._mr15 {
  margin-right: 15px !important;
}

._mr20 {
  margin-right: 20px !important;
}

._mr25 {
  margin-right: 25px !important;
}

._mr30 {
  margin-right: 30px !important;
}

._mr35 {
  margin-right: 35px !important;
}

._mr40 {
  margin-right: 40px !important;
}

._mr45 {
  margin-right: 45px !important;
}

._mr50 {
  margin-right: 50px !important;
}

@media (min-width: 1024px) {
  ._mrpc00 {
    margin-right: 0 !important;
  }
  ._mrpc05 {
    margin-right: 5px !important;
  }
  ._mrpc10 {
    margin-right: 10px !important;
  }
  ._mrpc15 {
    margin-right: 15px !important;
  }
  ._mrpc20 {
    margin-right: 20px !important;
  }
  ._mrpc25 {
    margin-right: 25px !important;
  }
  ._mrpc30 {
    margin-right: 30px !important;
  }
  ._mrpc35 {
    margin-right: 35px !important;
  }
  ._mrpc40 {
    margin-right: 40px !important;
  }
  ._mrpc45 {
    margin-right: 45px !important;
  }
  ._mrpc50 {
    margin-right: 50px !important;
  }
}
._ml00 {
  margin-left: 0 !important;
}

._ml05 {
  margin-left: 5px !important;
}

._ml10 {
  margin-left: 10px !important;
}

._ml15 {
  margin-left: 15px !important;
}

._ml20 {
  margin-left: 20px !important;
}

._ml25 {
  margin-left: 25px !important;
}

._ml30 {
  margin-left: 30px !important;
}

._ml35 {
  margin-left: 35px !important;
}

._ml40 {
  margin-left: 40px !important;
}

._ml45 {
  margin-left: 45px !important;
}

._ml50 {
  margin-left: 50px !important;
}

@media (min-width: 1024px) {
  ._mlpc00 {
    margin-left: 0 !important;
  }
  ._mlpc05 {
    margin-left: 5px !important;
  }
  ._mlpc10 {
    margin-left: 10px !important;
  }
  ._mlpc15 {
    margin-left: 15px !important;
  }
  ._mlpc20 {
    margin-left: 20px !important;
  }
  ._mlpc25 {
    margin-left: 25px !important;
  }
  ._mlpc30 {
    margin-left: 30px !important;
  }
  ._mlpc35 {
    margin-left: 35px !important;
  }
  ._mlpc40 {
    margin-left: 40px !important;
  }
  ._mlpc45 {
    margin-left: 45px !important;
  }
  ._mlpc50 {
    margin-left: 50px !important;
  }
}
._p0 {
  padding: 0 !important;
}

._pt00 {
  padding-top: 0 !important;
}

._pt05 {
  padding-top: 5px !important;
}

._pt10 {
  padding-top: 10px !important;
}

._pt15 {
  padding-top: 15px !important;
}

._pt20 {
  padding-top: 20px !important;
}

._pt25 {
  padding-top: 25px !important;
}

._pt30 {
  padding-top: 30px !important;
}

._pt35 {
  padding-top: 35px !important;
}

._pt40 {
  padding-top: 40px !important;
}

._pt45 {
  padding-top: 45px !important;
}

._pt50 {
  padding-top: 50px !important;
}

._pb00 {
  padding-bottom: 0 !important;
}

._pb05 {
  padding-bottom: 5px !important;
}

._pb10 {
  padding-bottom: 10px !important;
}

._pb15 {
  padding-bottom: 15px !important;
}

._pb20 {
  padding-bottom: 20px !important;
}

._pb25 {
  padding-bottom: 25px !important;
}

._pb30 {
  padding-bottom: 30px !important;
}

._pb35 {
  padding-bottom: 35px !important;
}

._pb40 {
  padding-bottom: 40px !important;
}

._pb45 {
  padding-bottom: 45px !important;
}

._pb50 {
  padding-bottom: 50px !important;
}

._pr00 {
  padding-right: 0 !important;
}

._pr05 {
  padding-right: 5px !important;
}

._pr10 {
  padding-right: 10px !important;
}

._pr15 {
  padding-right: 15px !important;
}

._pr20 {
  padding-right: 20px !important;
}

._pr25 {
  padding-right: 25px !important;
}

._pr30 {
  padding-right: 30px !important;
}

._pr35 {
  padding-right: 35px !important;
}

._pr40 {
  padding-right: 40px !important;
}

._pr45 {
  padding-right: 45px !important;
}

._pr50 {
  padding-right: 50px !important;
}

._pl00 {
  padding-left: 0 !important;
}

._pl05 {
  padding-left: 5px !important;
}

._pl10 {
  padding-left: 10px !important;
}

._pl15 {
  padding-left: 15px !important;
}

._pl20 {
  padding-left: 20px !important;
}

._pl25 {
  padding-left: 25px !important;
}

._pl30 {
  padding-left: 30px !important;
}

._pl35 {
  padding-left: 35px !important;
}

._pl40 {
  padding-left: 40px !important;
}

._pl45 {
  padding-left: 45px !important;
}

._pl50 {
  padding-left: 50px !important;
}

._roman {
  font-family: var(--roman);
}

._mincyo {
  font-family: var(--mincyo);
}

._ss {
  font-size: 10px;
  line-height: 1.8;
}

._s {
  font-size: 12px;
  line-height: 1.8;
}

._m {
  font-size: calc(14px + 2 * (100vw - 320px) / 1120);
  line-height: 1.8;
}
@media (min-width: 1440px) {
  ._m {
    font-size: 16px;
  }
}

._l {
  font-size: calc(16px + 2 * (100vw - 320px) / 1120);
  line-height: 1.5;
}
@media (min-width: 1440px) {
  ._l {
    font-size: 18px;
  }
}

._ll {
  font-size: calc(16px + 4 * (100vw - 320px) / 1120);
  line-height: 1.4;
}
@media (min-width: 1440px) {
  ._ll {
    font-size: 20px;
  }
}

._bold {
  font-weight: bold !important;
}

._normal {
  font-weight: normal !important;
}

._tl {
  text-align: left !important;
}

._tr {
  text-align: right !important;
}

._tc {
  text-align: center !important;
}

@media (min-width: 1024px) {
  ._tcpc {
    text-align: center !important;
  }
  ._trpc {
    text-align: right !important;
  }
}
._vt {
  vertical-align: top !important;
}

._vm {
  vertical-align: middle !important;
}

._vb {
  vertical-align: bottom !important;
}

._ib {
  display: inline-block;
}

._mc {
  color: var(--main-color);
}

._sc {
  color: var(--sub-color);
}

._w10 {
  width: 10% !important;
}

._w20 {
  width: 20% !important;
}

._w30 {
  width: 30% !important;
}

._w40 {
  width: 40% !important;
}

._w50 {
  width: 50% !important;
}

._w60 {
  width: 60% !important;
}

._w70 {
  width: 70% !important;
}

._w80 {
  width: 80% !important;
}

._w90 {
  width: 90% !important;
}

._w100 {
  width: 100% !important;
}

._fl {
  padding: 0;
  float: none !important;
}
@media (min-width: 1024px) {
  ._fl {
    padding: 0 20px 10px 0;
    float: left !important;
  }
}

._fr {
  padding: 0;
  float: none !important;
}
@media (min-width: 1024px) {
  ._fr {
    padding: 0 0 10px 20px;
    float: right !important;
  }
}

._sp-show.-il {
  display: inline-block;
}
._sp-show.-fl {
  display: flex;
}
@media (min-width: 600px) {
  ._sp-show {
    display: none;
  }
}

._tab-show {
  display: none;
}
@media (min-width: 600px) {
  ._tab-show {
    display: block;
  }
  ._tab-show.-il {
    display: inline-block;
  }
  ._tab-show.-fl {
    display: flex;
  }
}

._pc-show {
  display: none;
}
@media (min-width: 1024px) {
  ._pc-show {
    display: block;
  }
  ._pc-show.-il {
    display: inline-block;
  }
  ._pc-show.-fl {
    display: flex;
  }
}

._indent {
  padding-left: 1em;
  text-indent: -1em;
}

@media (min-width: 1024px) {
  ._sp-link {
    pointer-events: none;
  }
}

/*
===== HEADER ==========================================
*/
#site-header {
  background: var(--bg-color);
  transition: 0.3s;
  width: 100%;
  z-index: 1001;
  height: var(--sp-header-height);
  position: fixed;
  top: 0;
  left: 0;
}
@media (min-width: 1024px) {
  #site-header {
    height: var(--pc-header-height);
  }
}
#site-header-column {
  display: flex;
  align-items: center;
  height: inherit;
}
#site-header.js-hide {
  top: calc(-1 * var(--sp-header-height));
}
#site-header-logo {
  margin: 0 20px;
  width: 160px;
}
@media (min-width: 1024px) {
  #site-header-logo {
    width: auto;
  }
}

/* NAVIGATION
------------------------------------ */
#site-menu-btn {
  margin: 0;
  background: #fff;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2000;
  width: var(--sp-header-height);
  height: var(--sp-header-height);
}
@media (min-width: 1024px) {
  #site-menu-btn {
    display: none;
  }
}
#site-menu-btn > .line {
  margin: auto;
  background: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 27px;
  height: 3px;
  transition: 0.3s;
  transform: translate(-50%, -50%);
}
#site-menu-btn > .line::before, #site-menu-btn > .line::after {
  content: "";
  background: #333;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: inherit;
}
#site-menu-btn > .line::before {
  top: -10px;
}
#site-menu-btn > .line::after {
  top: 10px;
}
#site-menu-btn .hidden {
  visibility: hidden;
}
#site-menu-btn.js-open > .line {
  background: none;
}
#site-menu-btn.js-open > .line::before {
  transform: rotate(45deg);
  top: 0;
}
#site-menu-btn.js-open > .line::after {
  transform: rotate(-45deg);
  top: 0;
}

#site-nav {
  margin: var(--sp-header-height) 0 0;
  padding: 0 0 var(--sp-header-height);
  background: var(--bg-color);
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  z-index: 1000;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  #site-nav {
    margin: 0 0 0 auto;
    padding: 0;
    background: none;
    position: static;
    width: auto;
    height: auto;
  }
}
#site-nav-wrap {
  width: 100%;
  height: inherit;
  overflow-y: auto;
}
@media (min-width: 1024px) {
  #site-nav-wrap {
    overflow: visible;
  }
}
#site-nav-list {
  margin: 20px 20px 0;
  font-weight: bold;
}
@media (min-width: 1024px) {
  #site-nav-list {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
#site-nav-list > li {
  margin: 0 20px;
}
#site-nav-list > li > a,
#site-nav-list > li > span {
  padding: 20px 0;
  color: var(--text-color);
  cursor: pointer;
  display: block;
  position: relative;
}
@media (min-width: 1024px) {
  #site-nav-list > li > a,
#site-nav-list > li > span {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
#site-nav-list > li > a::before,
#site-nav-list > li > span::before {
  content: "";
  width: 100%;
  height: 4px;
  background: transparent;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  #site-nav-list > li > a::before,
#site-nav-list > li > span::before {
    bottom: 30px;
  }
}
@media (min-width: 1024px) {
  #site-nav-list > li > a,
#site-nav-list > li > span {
    height: var(--pc-header-height);
  }
}
@media (min-width: 1024px) and (any-hover: hover) {
  #site-nav-list > li > a:hover::before,
#site-nav-list > li > span:hover::before {
    background: var(--main-color);
  }
}
@media (min-width: 1024px) and (any-hover: none) {
  #site-nav-list > li > a:active::before,
#site-nav-list > li > span:active::before {
    background: var(--main-color);
  }
}
@media (min-width: 1024px) {
  #site-nav-list > li > .current::before,
#site-nav-list > li > .parents::before {
    background: var(--main-color);
  }
}
@media (min-width: 1024px) {
  #site-nav-list > li .service-menu {
    background: #333;
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1500;
    width: 100vw;
  }
}
#site-nav-list > li .service-menu-list {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
#site-nav-list > li .service-menu-list > li {
  background: transparent no-repeat center center/cover;
  width: 16.66%;
  text-align: center;
  position: relative;
}
#site-nav-list > li .service-menu-list > li::before {
  content: "";
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.5s;
}
@media (any-hover: hover) {
  #site-nav-list > li .service-menu-list > li:hover::before {
    background: rgba(0, 0, 0, 0);
  }
}
@media (any-hover: none) {
  #site-nav-list > li .service-menu-list > li:active::before {
    background: rgba(0, 0, 0, 0);
  }
}
#site-nav-list > li .service-menu-list > li a {
  padding: 60px 20px;
  color: #fff;
  display: block;
  position: relative;
}
#site-nav-list > li .service-menu-list > .stage_setting {
  background-image: url(../images/menu_stage_setting.jpg);
}
#site-nav-list > li .service-menu-list > .pa {
  background-image: url(../images/menu_pa.jpg);
}
#site-nav-list > li .service-menu-list > .sound_measure {
  background-image: url(../images/menu_sound_measure.jpg);
}
#site-nav-list > li .service-menu-list > .speech_privacy {
  background-image: url(../images/menu_speech_privacy.jpg);
}
#site-nav-list > li .service-menu-list > .system_maintenance {
  background-image: url(../images/menu_system_maintenance.jpg);
}
#site-nav-list > li .service-menu-list > .maintenance {
  background-image: url(../images/menu_maintenance.jpg);
}
#site-nav-list > .tel {
  padding: 20px 0;
}
@media (min-width: 1024px) {
  #site-nav-list > .tel {
    padding: 0;
    display: none;
  }
}
@media (min-width: 1440px) {
  #site-nav-list > .tel {
    margin: 0 20px;
    display: block;
  }
}
#site-nav-list > .contact {
  margin: 20px 0;
}
@media (min-width: 1024px) {
  #site-nav-list > .contact {
    margin: 0 0 0 20px;
  }
}
#site-nav-list > .contact > a {
  padding: 20px 50px;
  background: #333;
  color: #fff;
  text-align: center;
}
@media (any-hover: hover) {
  #site-nav-list > .contact > a:hover {
    background: var(--main-color-hover);
    color: #fff;
  }
  #site-nav-list > .contact > a:hover::before {
    background: none;
  }
}
@media (any-hover: none) {
  #site-nav-list > .contact > a:active {
    background: var(--main-color-hover);
    color: #fff;
  }
  #site-nav-list > .contact > a:active::before {
    background: none;
  }
}
#site-nav-list > .contact > .current::before,
#site-nav-list > .contact > .parents::before {
  background: none;
}
#site-nav-list .child {
  margin: 0 0 0 20px;
}
#site-nav-list .child a {
  padding: 5px 0;
  color: var(--text-color);
  display: block;
}
#site-nav-list .trigger-ne {
  padding: 20px 0;
  display: block;
  position: relative;
}
#site-nav-list .trigger-ne::after {
  content: var(--icon-plus);
  font-size: 24px;
  line-height: 1;
  font-family: var(--icon);
  font-weight: normal;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
#site-nav-list .trigger-ne.js-active::after {
  content: var(--icon-minus);
}

.menu-open #site-nav {
  right: 0;
}

/*
===== FOOTER ==========================================
*/
.footer-office {
  padding-top: calc(40px + 30 * (100vw - 320px) / 1120);
  padding-bottom: calc(50px + 130 * (100vw - 320px) / 1120);
  background: var(--bg-color);
}
@media (min-width: 1440px) {
  .footer-office {
    padding-top: 70px;
  }
}
@media (min-width: 1440px) {
  .footer-office {
    padding-bottom: 180px;
  }
}
.footer-office .office-network {
  margin-bottom: calc(30px + 40 * (100vw - 320px) / 1120);
  font-size: 12px;
  line-height: 1.8;
}
@media (min-width: 1440px) {
  .footer-office .office-network {
    margin-bottom: 70px;
  }
}
@media (min-width: 1024px) {
  .footer-office .office-network {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.footer-office .office-network p {
  margin: 0;
}
.footer-office .office-network-address {
  margin: 0 0 10px;
}
@media (min-width: 1024px) {
  .footer-office .office-network-address {
    margin: 0;
  }
}
.footer-office .office-network-address .ttl {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.8;
}
.footer-office .office-network-tel {
  margin: 0 0 20px;
}
@media (min-width: 1024px) {
  .footer-office .office-network-tel {
    margin: 0;
    padding: 0 40px;
  }
}
.footer-office .office-network-tel .tel {
  font-size: 30px;
  line-height: 1.4;
  font-family: var(--tel);
  font-weight: bold;
  letter-spacing: 1px;
}
@media (min-width: 1024px) {
  .footer-office .office-area {
    display: flex;
  }
}
.footer-office .office-area-block {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.8;
}
@media (min-width: 1024px) {
  .footer-office .office-area-block {
    margin: 0;
    padding: 0 40px;
    border-left: 1px solid #ccc;
    width: 25%;
  }
}
.footer-office .office-area-block:first-child {
  padding-left: 0;
  border: none;
}
.footer-office .office-area-block .ttl {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.8;
}

#site-footer {
  background: var(--main-color);
  color: #fff;
}
#site-footer a {
  color: #fff;
}
#site-footer-column {
  padding-top: calc(40px + 40 * (100vw - 320px) / 1120);
  padding-bottom: calc(40px + 40 * (100vw - 320px) / 1120);
  display: flex;
  justify-content: center;
}
@media (min-width: 1440px) {
  #site-footer-column {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
#site-footer-logo {
  width: 200px;
}
@media (min-width: 1024px) {
  #site-footer-logo {
    width: auto;
  }
}
#site-footer-nav {
  display: none;
}
@media (min-width: 1024px) {
  #site-footer-nav {
    margin: 0 0 0 auto;
    display: flex;
    font-size: 14px;
    line-height: 1.8;
  }
}
@media (any-hover: hover) {
  #site-footer-nav a:hover {
    text-decoration: underline;
  }
}
@media (any-hover: none) {
  #site-footer-nav a:active {
    text-decoration: underline;
  }
}
#site-footer-nav > .nav-list {
  margin: 0 0 0 30px;
  padding: 0 0 0 30px;
  border-left: 1px solid #52727C;
}
#site-footer-nav > .nav-list:first-child {
  border-left: none;
}
#site-footer-nav > .nav-list .nav {
  margin: 0;
}
#site-footer-nav > .nav-list li {
  margin: 0 0 10px;
}
#site-footer-nav > .nav-list .child {
  padding: 10px 0 0 1em;
}
#site-footer .copyright {
  padding: 20px;
  background: #000;
  color: #fff;
  display: block;
  font-size: calc(10px + 2 * (100vw - 320px) / 1120);
  line-height: 1.8;
  text-align: center;
}
@media (min-width: 1440px) {
  #site-footer .copyright {
    font-size: 12px;
  }
}

/*
#scroll {
margin: 0 auto;
text-align: right;
clear: both;
}
*/
#page-scroll {
  margin: 0;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 500;
  opacity: 0;
  transition: 0.3s;
}
#page-scroll > .totop {
  background: var(--main-color);
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--icon);
  font-size: 32px;
  line-height: 1;
  width: 60px;
  height: 60px;
  text-decoration: none;
}
@media (any-hover: hover) {
  #page-scroll > .totop:hover {
    background: var(--main-color-hover);
  }
}
@media (any-hover: none) {
  #page-scroll > .totop:active {
    background: var(--main-color-hover);
  }
}
#page-scroll.js-show {
  opacity: 1;
}

/*
===== MAIN CONTENT ====================================
*/
html {
  animation: fadeIn 1s forwards;
  scroll-behavior: smooth;
}
@media (min-width: 1024px) {
  html {
    scroll-padding-top: 110px;
  }
}

body.menu-open {
  overflow: hidden;
  width: 100vw;
}
body.menu-open::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  animation: fadeIn 0.5s forwards;
}
.inner {
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  width: 100%;
  max-width: var(--inner-wide);
  min-width: 320px;
}
.inner.-w {
  max-width: 1170px;
}

#main-column {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  #main-column {
    flex-direction: row;
  }
  #main-column > #sidebar-l {
    margin-right: 40px;
    width: 200px;
    order: 1;
  }
  #main-column > #main-content {
    flex: 1;
    order: 2;
  }
  #main-column > #sidebar-r {
    margin-left: 40px;
    width: 200px;
    order: 3;
  }
}

#main-content {
  padding-top: var(--sp-header-height);
  overflow: hidden;
}
@media (min-width: 1024px) {
  #main-content {
    padding-top: var(--pc-header-height);
  }
}

article {
  margin-bottom: calc(50px + 130 * (100vw - 320px) / 1120);
}
@media (min-width: 1440px) {
  article {
    margin-bottom: 180px;
  }
}

section {
  margin-top: calc(50px + 130 * (100vw - 320px) / 1120);
  margin-bottom: calc(50px + 130 * (100vw - 320px) / 1120);
}
@media (min-width: 1440px) {
  section {
    margin-top: 180px;
    margin-bottom: 180px;
  }
}
/*
===== 共通　Style ====================================
*/
html .material-icons {
  visibility: hidden;
  vertical-align: middle;
}

html.wf-active .material-icons {
  visibility: visible;
}

.slick-slider {
  opacity: 0;
  transition: opacity 1s linear;
}
.slick-slider.slick-initialized {
  opacity: 1;
}

/* reCAPTCHA */
.grecaptcha-badge {
  bottom: 80px !important;
}

@media (min-width: 1440px) {
  .grecaptcha-badge {
    bottom: 100px !important;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-feature-settings: "pkna";
}

h1, .h1 {
  margin-bottom: 1.4em;
  font-size: calc(20px + 8 * (100vw - 320px) / 1120);
  line-height: 1.4;
}
@media (min-width: 1440px) {
  h1, .h1 {
    font-size: 28px;
  }
}

h2, .h2 {
  margin-bottom: 1.4em;
  font-size: calc(18px + 6 * (100vw - 320px) / 1120);
  line-height: 1.4;
}
@media (min-width: 1440px) {
  h2, .h2 {
    font-size: 24px;
  }
}

h3, .h3 {
  margin-bottom: 1.5em;
  font-size: calc(16px + 4 * (100vw - 320px) / 1120);
  line-height: 1.5;
}
@media (min-width: 1440px) {
  h3, .h3 {
    font-size: 20px;
  }
}

h4, .h4 {
  margin: 1.5em auto;
  font-size: calc(16px + 2 * (100vw - 320px) / 1120);
  line-height: 1.5;
}
@media (min-width: 1440px) {
  h4, .h4 {
    font-size: 18px;
  }
}

h5, .h5 {
  margin: 1.5em auto;
  font-size: calc(14px + 2 * (100vw - 320px) / 1120);
  line-height: 1.8;
}
@media (min-width: 1440px) {
  h5, .h5 {
    font-size: 16px;
  }
}

p {
  margin: 0 auto 1.5em;
  text-align: left;
}

ul {
  margin: 0 auto 1.5em;
  list-style: none;
  text-align: left;
}

ol {
  margin: 0 0 1.5em 1.5em;
  text-align: left;
}

dl {
  text-align: left;
}

/*----- ハイライト WPエディター イタリック -----*/
em {
  background: linear-gradient(180deg, transparent 50%, var(--accent-color1) 50%);
  font-weight: bold;
  font-style: normal;
}

figure {
  margin: 0 auto 1em;
}
figcaption {
  margin-top: 0.5em;
}

.cat-main {
  margin: 0;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
.cat-main a {
  padding: 12px 20px;
  background: #EAEAEA;
  display: block;
}
@media (any-hover: hover) {
  .cat-main a:hover {
    background: #ccc;
  }
}
@media (any-hover: none) {
  .cat-main a:active {
    background: #ccc;
  }
}

.gmap-res {
  line-height: 1;
}
.gmap-res > iframe {
  width: 100%;
}

.yt-res {
  margin: 40px auto;
  position: relative;
  max-width: 800px;
  width: 100%;
  aspect-ratio: 16/9;
}
.yt-res .wp-block-embed__wrapper {
  width: 100%;
  aspect-ratio: 16/9;
}
.yt-res iframe {
  width: 100%;
  height: 100%;
}

.alignfull {
  margin-left: calc(50% - 50vw);
  width: 100vw;
  max-width: none;
}
.alignfull img {
  width: 100%;
}

.alignwide {
  clear: both;
  width: 100%;
  max-width: 100%;
}

/*
===== Flexbox サイズ固定 ====================================
*/
.fix-row {
  margin: 0 -1%;
  display: flex;
  flex-wrap: wrap;
  width: 102%;
}
.fix-row.-ai-ct {
  align-items: center;
}
.fix-row > .item {
  margin: 0 1% 20px;
}
.fix-row > .item.-o-1 {
  order: -1;
}
.fix-row > .item.-o1 {
  order: 1;
}
.fix-row > .item.-o2 {
  order: 2;
}
.fix-row > .item.-o3 {
  order: 3;
}
.fix-row > .item.-o4 {
  order: 4;
}
.fix-row > .item.-o5 {
  order: 5;
}
.fix-row > .item > p:last-child {
  margin-bottom: 0;
}
.fix-row.-m2 {
  margin-left: -4%;
  margin-right: -4%;
  width: 108%;
}
.fix-row.-m2 > .item {
  margin-left: 4%;
  margin-right: 4%;
}
.fix-row.-nm {
  margin: 0;
  width: 100%;
}
.fix-row.-nm > .item {
  margin: 0;
}

.grid02 > .item {
  width: 98%;
}
@media (min-width: 600px) {
  .grid02 > .item {
    width: 48%;
  }
}
.grid02.-m2 > .item {
  width: 92%;
}
@media (min-width: 600px) {
  .grid02.-m2 > .item {
    width: 42%;
  }
}
.grid02.-nm > .item {
  width: 100%;
}
@media (min-width: 600px) {
  .grid02.-nm > .item {
    width: 50%;
  }
}

.grid03 > .item {
  width: 98%;
}
@media (min-width: 600px) {
  .grid03 > .item {
    width: 31.33%;
  }
}
.grid03.-m2 > .item {
  width: 92%;
}
@media (min-width: 600px) {
  .grid03.-m2 > .item {
    width: 25.33%;
  }
}
.grid03.-nm > .item {
  width: 100%;
}
@media (min-width: 600px) {
  .grid03.-nm > .item {
    width: 33.33%;
  }
}

.grid04 > .item {
  width: 48%;
}
@media (min-width: 600px) {
  .grid04 > .item {
    width: 23%;
  }
}
.grid04.-m2 > .item {
  width: 42%;
}
@media (min-width: 600px) {
  .grid04.-m2 > .item {
    width: 17%;
  }
}
.grid04.-nm > .item {
  width: 50%;
}
@media (min-width: 600px) {
  .grid04.-nm > .item {
    width: 25%;
  }
}

.grid05 > .item {
  width: 48%;
}
@media (min-width: 600px) {
  .grid05 > .item {
    width: 31.33%;
  }
}
@media (min-width: 1024px) {
  .grid05 > .item {
    width: 18%;
  }
}
.grid05.-m2 > .item {
  width: 42%;
}
@media (min-width: 600px) {
  .grid05.-m2 > .item {
    width: 25.33%;
  }
}
@media (min-width: 1024px) {
  .grid05.-m2 > .item {
    width: 12%;
  }
}
.grid05.-nm > .item {
  width: 50%;
}
@media (min-width: 600px) {
  .grid05.-nm > .item {
    width: 33.33%;
  }
}
@media (min-width: 1024px) {
  .grid05.-nm > .item {
    width: 20%;
  }
}

/*----- アコーディオン 矢印 -----*/
.acr-arrow > .trigger-ne,
.acr-arrow > .trigger-pr,
.is-style-acr-arrow > .trigger-ne,
.is-style-acr-arrow > .trigger-pr {
  padding: 12px;
  background: #01182e;
  color: #fff;
  cursor: pointer;
  text-align: center;
  position: relative;
}
.acr-arrow > .trigger-ne::before,
.acr-arrow > .trigger-pr::before,
.is-style-acr-arrow > .trigger-ne::before,
.is-style-acr-arrow > .trigger-pr::before {
  content: var(--icon-arrow-down);
  font-family: var(--icon);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.acr-arrow > .trigger-ne.js-active::before,
.acr-arrow > .trigger-pr.js-active::before,
.is-style-acr-arrow > .trigger-ne.js-active::before,
.is-style-acr-arrow > .trigger-pr.js-active::before {
  transform: translateY(-50%) rotate(-180deg);
}
.acr-arrow > .content,
.is-style-acr-arrow > .content {
  padding: 12px;
}

/*----- アコーディオン + -  -----*/
.acr-plus > .trigger-ne,
.acr-plus > .trigger-pr,
.is-style-acr-plus > .trigger-ne,
.is-style-acr-plus > .trigger-pr {
  padding: 25px;
  cursor: pointer;
  font-size: calc(16px + 4 * (100vw - 320px) / 1120);
  line-height: 1.4;
  font-weight: bold;
  position: relative;
}
@media (min-width: 1440px) {
  .acr-plus > .trigger-ne,
.acr-plus > .trigger-pr,
.is-style-acr-plus > .trigger-ne,
.is-style-acr-plus > .trigger-pr {
    font-size: 20px;
  }
}
.acr-plus > .trigger-ne::after,
.acr-plus > .trigger-pr::after,
.is-style-acr-plus > .trigger-ne::after,
.is-style-acr-plus > .trigger-pr::after {
  content: var(--icon-plus);
  color: var(--text-color);
  font-size: 24px;
  line-height: 1;
  font-family: var(--icon);
  font-weight: normal;
  position: absolute;
  right: calc(10px + 70 * (100vw - 320px) / 1120);
  top: 70%;
}
@media (min-width: 1440px) {
  .acr-plus > .trigger-ne::after,
.acr-plus > .trigger-pr::after,
.is-style-acr-plus > .trigger-ne::after,
.is-style-acr-plus > .trigger-pr::after {
    right: 80px;
  }
}
@media (min-width: 600px) {
  .acr-plus > .trigger-ne::after,
.acr-plus > .trigger-pr::after,
.is-style-acr-plus > .trigger-ne::after,
.is-style-acr-plus > .trigger-pr::after {
    top: 50%;
    transform: translateY(-50%);
  }
}
.acr-plus > .trigger-ne.js-active::after,
.acr-plus > .trigger-pr.js-active::after,
.is-style-acr-plus > .trigger-ne.js-active::after,
.is-style-acr-plus > .trigger-pr.js-active::after {
  content: var(--icon-minus);
}
.acr-plus > .content,
.is-style-acr-plus > .content {
  padding: 25px;
  position: relative;
}
.acr-plus > .content :last-child,
.is-style-acr-plus > .content :last-child {
  margin: 0;
}

._eff._in {
  animation: fadeIn 1s forwards;
}
._eff._widthin {
  animation: widthIn 0.3s forwards;
}

/*----- ハイライト　アニメーション -----*/
.js-highlight > .highlight,
.is-style-js-highlight > .highlight {
  background: linear-gradient(to right, transparent 50%, rgb(255, 255, 0) 50%);
  background-repeat: repeat-x;
  background-size: 200% 90%;
  transition: 1s;
}
.js-highlight > .highlight.js-animated,
.is-style-js-highlight > .highlight.js-animated {
  background-position: -100% 5px;
}

.btn-list > .item > .btn, .btn-pdf .btn,
.btn-pdf .wp-block-button__link,
.is-style-btn-pdf .btn,
.is-style-btn-pdf .wp-block-button__link, .btn-ex .btn,
.btn-ex .wp-block-button__link,
.is-style-btn-ex .btn,
.is-style-btn-ex .wp-block-button__link, .btn-mail .btn,
.btn-mail .wp-block-button__link,
.is-style-btn-mail .btn,
.is-style-btn-mail .wp-block-button__link, .btn-border .btn,
.btn-border .wp-block-button__link,
.is-style-btn-border .btn,
.is-style-btn-border .wp-block-button__link, .btn-main .btn,
.btn-main .wp-block-button__link,
.is-style-btn-main .btn,
.is-style-btn-main .wp-block-button__link {
  border-radius: 0;
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}

.btn-ex .btn::before,
.btn-ex .wp-block-button__link::before,
.is-style-btn-ex .btn::before,
.is-style-btn-ex .wp-block-button__link::before, .btn-mail .btn::before,
.btn-mail .wp-block-button__link::before,
.is-style-btn-mail .btn::before,
.is-style-btn-mail .wp-block-button__link::before, .btn-main .btn::before,
.btn-main .wp-block-button__link::before,
.is-style-btn-main .btn::before,
.is-style-btn-main .wp-block-button__link::before {
  margin-top: 1px;
  font-family: var(--icon);
  font-size: 24px;
  line-height: 1;
  font-weight: normal;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

/*----- メイン ボタン -----*/
.btn-main .btn,
.btn-main .wp-block-button__link,
.is-style-btn-main .btn,
.is-style-btn-main .wp-block-button__link {
  padding: 20px;
  padding-left: calc(20px + 10 * (100vw - 320px) / 1120);
  padding-right: calc(30px + 10 * (100vw - 320px) / 1120);
  background: var(--main-color);
  border-radius: 40px;
  color: #fff;
  position: relative;
}
@media (min-width: 1440px) {
  .btn-main .btn,
.btn-main .wp-block-button__link,
.is-style-btn-main .btn,
.is-style-btn-main .wp-block-button__link {
    padding-left: 30px;
  }
}
@media (min-width: 1440px) {
  .btn-main .btn,
.btn-main .wp-block-button__link,
.is-style-btn-main .btn,
.is-style-btn-main .wp-block-button__link {
    padding-right: 40px;
  }
}
.btn-main .btn::before,
.btn-main .wp-block-button__link::before,
.is-style-btn-main .btn::before,
.is-style-btn-main .wp-block-button__link::before {
  content: var(--icon-arrow-right);
}
@media (any-hover: hover) {
  .btn-main .btn:hover,
.btn-main .wp-block-button__link:hover,
.is-style-btn-main .btn:hover,
.is-style-btn-main .wp-block-button__link:hover {
    background: var(--main-color-hover);
  }
}
@media (any-hover: none) {
  .btn-main .btn:active,
.btn-main .wp-block-button__link:active,
.is-style-btn-main .btn:active,
.is-style-btn-main .wp-block-button__link:active {
    background: var(--main-color-hover);
  }
}
.btn-main.-w470 > .btn, .btn-main.-w470 > .wp-block-button__link,
.is-style-btn-main.-w470 > .btn,
.is-style-btn-main.-w470 > .wp-block-button__link {
  width: 100%;
  max-width: 470px;
}

/*----- ボタンボーダー -----*/
.btn-border .btn,
.btn-border .wp-block-button__link,
.is-style-btn-border .btn,
.is-style-btn-border .wp-block-button__link {
  padding: 15px;
  padding-left: calc(20px + 20 * (100vw - 320px) / 1120);
  padding-right: calc(20px + 20 * (100vw - 320px) / 1120);
  font-size: 14px;
  line-height: 1.8;
  background: #fff;
  border: 1px solid #333;
}
@media (min-width: 1440px) {
  .btn-border .btn,
.btn-border .wp-block-button__link,
.is-style-btn-border .btn,
.is-style-btn-border .wp-block-button__link {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (any-hover: hover) {
  .btn-border .btn:hover,
.btn-border .wp-block-button__link:hover,
.is-style-btn-border .btn:hover,
.is-style-btn-border .wp-block-button__link:hover {
    background: var(--main-color-hover);
    border-color: transparent;
    color: #fff;
  }
}
@media (any-hover: none) {
  .btn-border .btn:active,
.btn-border .wp-block-button__link:active,
.is-style-btn-border .btn:active,
.is-style-btn-border .wp-block-button__link:active {
    background: var(--main-color-hover);
    border-color: transparent;
    color: #fff;
  }
}

/*----- ボタン email -----*/
.btn-mail .btn,
.btn-mail .wp-block-button__link,
.is-style-btn-mail .btn,
.is-style-btn-mail .wp-block-button__link {
  padding-left: calc(20px + 10 * (100vw - 320px) / 1120);
  padding-right: calc(30px + 10 * (100vw - 320px) / 1120);
  background: #fff;
  border: 1px solid currentColor;
  color: var(--main-color);
}
@media (min-width: 1440px) {
  .btn-mail .btn,
.btn-mail .wp-block-button__link,
.is-style-btn-mail .btn,
.is-style-btn-mail .wp-block-button__link {
    padding-left: 30px;
  }
}
@media (min-width: 1440px) {
  .btn-mail .btn,
.btn-mail .wp-block-button__link,
.is-style-btn-mail .btn,
.is-style-btn-mail .wp-block-button__link {
    padding-right: 40px;
  }
}
.btn-mail .btn::before,
.btn-mail .wp-block-button__link::before,
.is-style-btn-mail .btn::before,
.is-style-btn-mail .wp-block-button__link::before {
  content: var(--icon-mail);
}
@media (any-hover: hover) {
  .btn-mail .btn:hover,
.btn-mail .wp-block-button__link:hover,
.is-style-btn-mail .btn:hover,
.is-style-btn-mail .wp-block-button__link:hover {
    border-color: transparent;
    background: var(--main-color);
    color: #fff;
  }
}
@media (any-hover: none) {
  .btn-mail .btn:active,
.btn-mail .wp-block-button__link:active,
.is-style-btn-mail .btn:active,
.is-style-btn-mail .wp-block-button__link:active {
    border-color: transparent;
    background: var(--main-color);
    color: #fff;
  }
}

/*----- ボタン外部リンク -----*/
.btn-ex .btn,
.btn-ex .wp-block-button__link,
.is-style-btn-ex .btn,
.is-style-btn-ex .wp-block-button__link {
  padding-left: calc(20px + 10 * (100vw - 320px) / 1120);
  padding-right: calc(30px + 10 * (100vw - 320px) / 1120);
  background: #fff;
  border: 1px solid currentColor;
  color: var(--main-color);
}
@media (min-width: 1440px) {
  .btn-ex .btn,
.btn-ex .wp-block-button__link,
.is-style-btn-ex .btn,
.is-style-btn-ex .wp-block-button__link {
    padding-left: 30px;
  }
}
@media (min-width: 1440px) {
  .btn-ex .btn,
.btn-ex .wp-block-button__link,
.is-style-btn-ex .btn,
.is-style-btn-ex .wp-block-button__link {
    padding-right: 40px;
  }
}
.btn-ex .btn::before,
.btn-ex .wp-block-button__link::before,
.is-style-btn-ex .btn::before,
.is-style-btn-ex .wp-block-button__link::before {
  content: var(--icon-ex);
}
@media (any-hover: hover) {
  .btn-ex .btn:hover,
.btn-ex .wp-block-button__link:hover,
.is-style-btn-ex .btn:hover,
.is-style-btn-ex .wp-block-button__link:hover {
    border-color: transparent;
    background: var(--main-color);
    color: #fff;
  }
}
@media (any-hover: none) {
  .btn-ex .btn:active,
.btn-ex .wp-block-button__link:active,
.is-style-btn-ex .btn:active,
.is-style-btn-ex .wp-block-button__link:active {
    border-color: transparent;
    background: var(--main-color);
    color: #fff;
  }
}

/*----- ボタンPDF -----*/
.btn-pdf .btn,
.btn-pdf .wp-block-button__link,
.is-style-btn-pdf .btn,
.is-style-btn-pdf .wp-block-button__link {
  padding-left: calc(20px + 10 * (100vw - 320px) / 1120);
  padding-right: calc(30px + 10 * (100vw - 320px) / 1120);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  color: var(--text-color);
  text-align: left;
}
@media (min-width: 1440px) {
  .btn-pdf .btn,
.btn-pdf .wp-block-button__link,
.is-style-btn-pdf .btn,
.is-style-btn-pdf .wp-block-button__link {
    padding-left: 30px;
  }
}
@media (min-width: 1440px) {
  .btn-pdf .btn,
.btn-pdf .wp-block-button__link,
.is-style-btn-pdf .btn,
.is-style-btn-pdf .wp-block-button__link {
    padding-right: 40px;
  }
}
.btn-pdf .btn::before,
.btn-pdf .wp-block-button__link::before,
.is-style-btn-pdf .btn::before,
.is-style-btn-pdf .wp-block-button__link::before {
  content: "";
  background: url(../images/icon-pdf.svg) no-repeat left top/contain;
  width: 15px;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
}
@media (any-hover: hover) {
  .btn-pdf .btn:hover,
.btn-pdf .wp-block-button__link:hover,
.is-style-btn-pdf .btn:hover,
.is-style-btn-pdf .wp-block-button__link:hover {
    border-color: transparent;
    background: var(--main-color);
    color: #fff;
  }
}
@media (any-hover: none) {
  .btn-pdf .btn:active,
.btn-pdf .wp-block-button__link:active,
.is-style-btn-pdf .btn:active,
.is-style-btn-pdf .wp-block-button__link:active {
    border-color: transparent;
    background: var(--main-color);
    color: #fff;
  }
}

/*----- ボタン横並び -----*/
.btn-list {
  display: flex;
  justify-content: center;
}
.btn-list > .item {
  margin: 0 0.5em 0.1em;
  display: inline-block;
}
.btn-list > .item > .btn {
  padding-left: calc(20px + 20 * (100vw - 320px) / 1120);
  padding-right: calc(20px + 20 * (100vw - 320px) / 1120);
  background: var(--main-color);
  color: #fff;
  display: block;
}
@media (min-width: 1440px) {
  .btn-list > .item > .btn {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (any-hover: hover) {
  .btn-list > .item > .btn:hover {
    background: var(--main-color-hover);
  }
}
@media (any-hover: none) {
  .btn-list > .item > .btn:active {
    background: var(--main-color-hover);
  }
}

/*----- 画像　2カラム -----*/
.column-02 {
  margin-top: calc(50px + 130 * (100vw - 320px) / 1120);
  margin-bottom: calc(50px + 130 * (100vw - 320px) / 1120);
  display: flex;
  flex-direction: column;
  /*----- コンテンツ　2カラム -----*/
}
@media (min-width: 1440px) {
  .column-02 {
    margin-top: 180px;
    margin-bottom: 180px;
  }
}
@media (min-width: 600px) {
  .column-02 {
    flex-direction: row;
    justify-content: space-between;
  }
}
.column-02.-mt80 {
  margin-top: calc(40px + 40 * (100vw - 320px) / 1120);
}
@media (min-width: 1440px) {
  .column-02.-mt80 {
    margin-top: 80px;
  }
}
.column-02.-mb80 {
  margin-bottom: calc(40px + 40 * (100vw - 320px) / 1120);
}
@media (min-width: 1440px) {
  .column-02.-mb80 {
    margin-bottom: 80px;
  }
}
.column-02.-sp-rev {
  flex-direction: column-reverse;
}
@media (min-width: 600px) {
  .column-02.-sp-rev {
    flex-direction: row;
  }
}
.column-02.-jc {
  justify-content: center;
}
.column-02.-jc .item {
  flex: initial;
  width: auto;
}
.column-02.-ac {
  align-items: center;
}
.column-02 > .item {
  text-align: left;
}
.column-02 > .item > :last-child {
  margin-bottom: 0;
}
@media (min-width: 600px) {
  .column-02 > .item {
    width: 48%;
  }
}
@media (min-width: 600px) {
  .column-02-img {
    margin: 0;
    width: 48.1%;
  }
  .column-02-img.-w20 {
    width: 20%;
  }
  .column-02-img.-w30 {
    width: 30%;
  }
  .column-02-img.-w40 {
    width: 40%;
  }
  .column-02-img.-w45 {
    width: 45%;
  }
  .column-02-img.-w50 {
    width: 50%;
  }
  .column-02-img.-w60 {
    width: 60%;
  }
  .column-02-img.-w70 {
    width: 70%;
  }
}
.column-02-img.-cover {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.column-02-img.-cover img {
  width: 100%;
  height: 100%;
  max-width: none;
}
.column-02-txtarea {
  margin-top: 30px;
  width: 100%;
}
@media (min-width: 600px) {
  .column-02-txtarea {
    margin: 0;
    width: 42.3%;
  }
}
.column-02-txtarea > :last-child {
  margin-bottom: 0;
}
.column-02-txtarea .ttl {
  font-size: calc(22px + 8 * (100vw - 320px) / 1120);
  line-height: 1.8;
  letter-spacing: 3px;
  text-align: center;
}
@media (min-width: 1440px) {
  .column-02-txtarea .ttl {
    font-size: 30px;
  }
}
@media (min-width: 1024px) {
  .column-02-txtarea .ttl {
    text-align: left;
  }
}
.column-02-txtarea .mb {
  margin-bottom: calc(30px + 50 * (100vw - 320px) / 1120);
}
@media (min-width: 1440px) {
  .column-02-txtarea .mb {
    margin-bottom: 80px;
  }
}
@media (min-width: 600px) {
  .column-02.-left .column-02-img {
    text-align: left;
  }
}
@media (min-width: 600px) {
  .column-02.-left .column-02-txtarea {
    margin-left: 100px;
  }
}
.column-02.-left .column-02-txtarea.-ml {
  margin-left: 0;
}
.column-02.-left.-sp-rev .column-02-txtarea {
  margin-top: 0;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .column-02.-left.-sp-rev .column-02-txtarea {
    margin-bottom: 0;
  }
}
@media (min-width: 600px) {
  .column-02.-right .column-02-img {
    text-align: right;
  }
}
.column-02.-right .column-02-txtarea {
  margin: 0 0 20px;
}
@media (min-width: 600px) {
  .column-02.-right .column-02-txtarea {
    margin-bottom: 0;
    margin-right: 100px;
  }
}
.column-02.-right.-sp-rev .column-02-txtarea {
  margin: 30px 0 0;
}

/*----- ボーダー　カラム -----*/
.column-border {
  gap: 0 !important;
}
@media (min-width: 1024px) {
  .column-border {
    display: flex;
  }
}
.column-border-item {
  margin: 0 auto;
  padding-top: calc(20px + 10 * (100vw - 320px) / 1120);
  padding-bottom: calc(20px + 10 * (100vw - 320px) / 1120);
  padding-left: calc(15px + 5 * (100vw - 320px) / 1120);
  padding-right: calc(15px + 5 * (100vw - 320px) / 1120);
  background: #fff;
  border: 1px dashed #B0B0B1;
  border-top-color: transparent;
  max-width: 500px;
}
@media (min-width: 1440px) {
  .column-border-item {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 1440px) {
  .column-border-item {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1024px) {
  .column-border-item {
    margin: 0;
    border-top-color: #B0B0B1;
    border-left-color: transparent;
    flex: 1;
    max-width: none;
  }
}
.column-border-item:first-child {
  border-top-color: #B0B0B1;
}
@media (min-width: 1024px) {
  .column-border-item:first-child {
    border-left-color: #B0B0B1;
  }
}
.column-border-item.-bg {
  background: var(--bg-color);
}

/*----- 2カラム -----*/
.dl-column > dt,
.is-style-dl-column > dt {
  margin: 15px 0 5px;
}
.dl-column > dd,
.is-style-dl-column > dd {
  padding: 0 0 15px;
  border-bottom: 1px solid #ccc;
}
@media (min-width: 1024px) {
  .dl-column > dt,
.is-style-dl-column > dt {
    margin: 15px 0 0;
    float: left;
  }
  .dl-column > dd,
.is-style-dl-column > dd {
    padding: 15px 0 15px 18em;
  }
}

/*----- dt メインカラー -----*/
.dl-mc dt,
.is-style-dl-mc dt {
  margin: 0 0 5px;
  color: var(--main-color);
  font-size: calc(18px + 2 * (100vw - 320px) / 1120);
  line-height: 1.4;
  font-weight: bold;
}
@media (min-width: 1440px) {
  .dl-mc dt,
.is-style-dl-mc dt {
    font-size: 20px;
  }
}
.dl-mc dd,
.is-style-dl-mc dd {
  margin: 0 0 20px;
}

/*----- dt 背景サブカラー -----*/
.dl-bg dt,
.is-style-dl-bg dt {
  margin: 0 0 10px;
  padding: 5px 10px;
  background: var(--sub-color);
  font-size: calc(18px + 2 * (100vw - 320px) / 1120);
  line-height: 1.4;
  font-weight: bold;
}
@media (min-width: 1440px) {
  .dl-bg dt,
.is-style-dl-bg dt {
    font-size: 20px;
  }
}
.dl-bg dd,
.is-style-dl-bg dd {
  margin: 0 0 20px;
}

/*----- サムネイル記事一覧 -----*/
.entries-block-thumb {
  background: #fafafa;
  vertical-align: middle;
}
.entries-block-thumb .pd {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  line-height: 1;
}
.entries-block-thumb .-fit {
  width: 100%;
  height: 200px;
}
.entries-block-txtarea > .cat > li {
  margin: 0 5px 5px 0;
}
.entries-block-txtarea > .date {
  margin-bottom: 10px;
  display: block;
  font-size: calc(16px + 2 * (100vw - 320px) / 1120);
  line-height: 1.8;
  font-family: var(--tel);
}
@media (min-width: 1440px) {
  .entries-block-txtarea > .date {
    font-size: 18px;
  }
}
.entries-block-txtarea > .ttl {
  margin: 0 0 20px;
  font-size: calc(15px + 1 * (100vw - 320px) / 1120);
  line-height: 1.8;
}
@media (min-width: 1440px) {
  .entries-block-txtarea > .ttl {
    font-size: 16px;
  }
}
@media (any-hover: hover) {
  .entries-block-txtarea > .ttl a:hover {
    color: #286476;
  }
}
@media (any-hover: none) {
  .entries-block-txtarea > .ttl a:active {
    color: #286476;
  }
}

/*----- タイトル記事一覧 -----*/
.entries-dl {
  margin-bottom: 50px;
  border-top: 1px solid #52727C;
}
.entries-dl > dt {
  margin: 15px 0 5px;
}
.entries-dl > dd {
  padding: 0 0 15px;
  border-bottom: 1px solid #52727C;
}
@media (min-width: 1024px) {
  .entries-dl > dt {
    margin: 20px 0 0;
    padding: 0 0 0 50px;
    float: left;
  }
  .entries-dl > dd {
    padding: 20px 0 20px 12em;
  }
}

/*----- 非表示 -----*/
.dp-none,
.is-style-dp-none {
  display: none;
}

/*----- 上下共通マージン -----*/
.tb-margin,
.is-style-tb-margin {
  margin-top: calc(50px + 130 * (100vw - 320px) / 1120);
  margin-bottom: calc(50px + 130 * (100vw - 320px) / 1120);
}
@media (min-width: 1440px) {
  .tb-margin,
.is-style-tb-margin {
    margin-top: 180px;
    margin-bottom: 180px;
  }
}

/*----- テキスト左揃え -----*/
.is-style-txt-left {
  text-align: left;
}

/*----- テキスト左揃え -----*/
.is-style-txt-right {
  text-align: right;
}

/*----- ボーダーブロック -----*/
.is-style-border-block {
  padding: calc(20px + 10 * (100vw - 320px) / 1120);
  border: 1px solid #ccc;
}
@media (min-width: 1440px) {
  .is-style-border-block {
    padding: 30px;
  }
}

/*----- 背景カラー -----*/
.bg-color,
.is-style-bg-color {
  padding-top: calc(50px + 130 * (100vw - 320px) / 1120);
  padding-bottom: calc(50px + 130 * (100vw - 320px) / 1120);
  background: var(--bg-color);
}
@media (min-width: 1440px) {
  .bg-color,
.is-style-bg-color {
    padding-top: 180px;
    padding-bottom: 180px;
  }
}
.bg-color > :first-child,
.is-style-bg-color > :first-child {
  margin-top: 0;
}
.bg-color > :last-child,
.is-style-bg-color > :last-child {
  margin-bottom: 0;
}

/*----- 背景メインカラー -----*/
.bg-mc,
.is-style-bg-mc {
  padding-top: calc(40px + 30 * (100vw - 320px) / 1120);
  padding-bottom: calc(40px + 30 * (100vw - 320px) / 1120);
  background: var(--main-color);
  color: #fff;
}
@media (min-width: 1440px) {
  .bg-mc,
.is-style-bg-mc {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.bg-mc > :first-child,
.is-style-bg-mc > :first-child {
  margin-top: 0;
}
.bg-mc > :last-child,
.is-style-bg-mc > :last-child {
  margin-bottom: 0;
}

/*----- 背景白 -----*/
.bg-wh,
.is-style-bg-wh {
  padding: calc(15px + 65 * (100vw - 320px) / 1120);
  background: #fff;
  border-radius: 20px;
}
@media (min-width: 1440px) {
  .bg-wh,
.is-style-bg-wh {
    padding: 80px;
  }
}
.bg-wh > :first-child,
.is-style-bg-wh > :first-child {
  margin-top: 0;
}
.bg-wh > :last-child,
.is-style-bg-wh > :last-child {
  margin-bottom: 0;
}

/*----- 背景全画面 -----*/
.bg-full,
.is-style-bg-full {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: calc(40px + 30 * (100vw - 320px) / 1120);
  padding-bottom: calc(40px + 30 * (100vw - 320px) / 1120);
  background: var(--bg-color);
}
@media (min-width: 1440px) {
  .bg-full,
.is-style-bg-full {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.bg-full > :first-child,
.is-style-bg-full > :first-child {
  margin-top: 0;
}
.bg-full > :last-child,
.is-style-bg-full > :last-child {
  margin-bottom: 0;
}

/*----- コンテンツ全画面 -----*/
.contents-full,
.is-style-contents-full {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

/*----- 左寄せ -----*/
.wp-block-image.is-style-img-left {
  text-align: left;
}

/*----- 右寄せ -----*/
.wp-block-image.is-style-img-right {
  text-align: right;
}

/*----- センター -----*/
.wp-block-image.is-style-img-center {
  text-align: center;
}

/*----- ボーダー -----*/
.img-border,
.wp-block-image.is-style-img-border {
  padding: 10px;
  border: 1px solid #B3B3B3;
  text-align: center;
}

/*----- 画像上下マージン -----*/
.img-margin,
.wp-block-image.is-style-img-margin {
  margin-top: calc(50px + 130 * (100vw - 320px) / 1120);
  margin-bottom: calc(50px + 130 * (100vw - 320px) / 1120);
}
@media (min-width: 1440px) {
  .img-margin,
.wp-block-image.is-style-img-margin {
    margin-top: 180px;
    margin-bottom: 180px;
  }
}

/*----- スマホ　横スクロール表示 -----*/
.swipe-scroll,
.is-style-swipe-scroll {
  margin: 0 0 20px;
  overflow-x: scroll;
  position: relative;
  width: 100%;
}
.swipe-scroll::before,
.is-style-swipe-scroll::before {
  content: "";
  background: url(../images/swipe-btn.svg) no-repeat center center/contain;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  transition: 0.3s;
}
.swipe-scroll.js-hide::before,
.is-style-swipe-scroll.js-hide::before {
  opacity: 0;
}
.swipe-scroll::-webkit-scrollbar,
.is-style-swipe-scroll::-webkit-scrollbar {
  height: 5px;
}
.swipe-scroll::-webkit-scrollbar-track,
.is-style-swipe-scroll::-webkit-scrollbar-track {
  border-radius: 5px;
  background: #eee;
}
.swipe-scroll::-webkit-scrollbar-thumb,
.is-style-swipe-scroll::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #666;
}
.swipe-scroll > .wrap,
.swipe-scroll table,
.is-style-swipe-scroll > .wrap,
.is-style-swipe-scroll table {
  margin: 0;
  width: 640px;
}
@media (min-width: 600px) {
  .swipe-scroll,
.is-style-swipe-scroll {
    margin: 0;
    overflow-x: auto;
  }
  .swipe-scroll::before,
.is-style-swipe-scroll::before {
    display: none;
  }
  .swipe-scroll > .wrap,
.swipe-scroll table,
.is-style-swipe-scroll > .wrap,
.is-style-swipe-scroll table {
    margin: 0 auto 1.5em;
    width: 100%;
  }
}

/*----- タブ -----*/
.tab-group {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1120);
  font-size: calc(16px + 2 * (100vw - 320px) / 1120);
  line-height: 1.8;
  font-weight: bold;
  display: flex;
  justify-content: center;
}
@media (min-width: 1440px) {
  .tab-group {
    margin-bottom: 50px;
  }
}
@media (min-width: 1440px) {
  .tab-group {
    font-size: 18px;
  }
}
.tab-group > .tab {
  padding: 20px 10px;
  background: var(--main-color);
  color: #fff;
  cursor: pointer;
  flex: 1;
  text-align: center;
  transition: 0.3s;
}
.tab-group > .js-active {
  background: #fff;
  color: var(--text-color);
}

.panel-group > .panel {
  display: none;
}
.panel-group .js-show {
  animation: fadeIn 1s forwards;
  display: block;
}

table, .wp-block-table table {
  margin: 0 auto 1.5em;
  font-size: calc(14px + 2 * (100vw - 320px) / 1120);
  line-height: 1.8;
}
@media (min-width: 1440px) {
  table, .wp-block-table table {
    font-size: 16px;
  }
}
table thead, .wp-block-table table thead {
  background: var(--bg-color);
}
table thead th, .wp-block-table table thead th {
  vertical-align: middle;
  text-align: center;
}
table th, .wp-block-table table th, table td, .wp-block-table table td {
  padding: 1em 0.5em;
  text-align: left;
}
@media (min-width: 600px) {
  table th, .wp-block-table table th, table td, .wp-block-table table td {
    padding: 1em;
  }
}

table.-sp-block th, .wp-block-table.-sp-block table th, .wp-block-table.is-style-sp-block table th {
  padding: 15px 0 5px;
  display: block;
}
table.-sp-block td, .wp-block-table.-sp-block table td, .wp-block-table.is-style-sp-block table td {
  padding: 0 0 15px;
  display: block;
}
@media (min-width: 600px) {
  table.-sp-block th, .wp-block-table.-sp-block table th, .wp-block-table.is-style-sp-block table th, table.-sp-block td, .wp-block-table.-sp-block table td, .wp-block-table.is-style-sp-block table td {
    padding: 0.5em 1em;
    display: table-cell;
  }
}

table.-main, .wp-block-table.is-style-table-main table {
  border-top: 1px solid #D7D7D7;
}
table.-main tr, .wp-block-table.is-style-table-main table tr {
  border-bottom: 1px solid #D7D7D7;
}
table.-main tr > :first-child, .wp-block-table.is-style-table-main table tr > :first-child {
  background-clip: padding-box;
  font-weight: bold;
  width: 32%;
}
@media (min-width: 600px) {
  table.-main tr > :first-child, .wp-block-table.is-style-table-main table tr > :first-child {
    padding: 1em 1em 1em 50px;
    width: 25%;
  }
}
table.-main th, .wp-block-table.is-style-table-main table th, table.-main td, .wp-block-table.is-style-table-main table td {
  border: none;
}

table.-border, .wp-block-table.is-style-table-border table {
  border-top: 1px solid #999;
}
table.-border tr, .wp-block-table.is-style-table-border table tr {
  border-bottom: 1px solid #999;
}
table.-border tr > :first-child, .wp-block-table.is-style-table-border table tr > :first-child {
  font-weight: bold;
}
table.-border th, .wp-block-table.is-style-table-border table th, table.-border td, .wp-block-table.is-style-table-border table td {
  border: none;
}

table.-stripes tr, .wp-block-table.is-style-stripes table tr {
  background: #fff !important;
}
table.-stripes tr:nth-child(even), .wp-block-table.is-style-stripes table tr:nth-child(even) {
  background: #F3F3F3 !important;
}
table.-stripes thead, .wp-block-table.is-style-stripes table thead {
  border: none;
}
table.-stripes thead tr, .wp-block-table.is-style-stripes table thead tr {
  background: #D3EDED !important;
}

.wp-block-table .wp-element-caption {
  font-size: 14px;
  line-height: 1.8;
  text-align: right;
}
.wp-block-table.is-style-stripes {
  margin: 0;
  border: none !important;
}
/*----- 見出しメイン -----*/
.ttl-main,
.is-style-ttl-main {
  margin-bottom: calc(40px + 40 * (100vw - 320px) / 1120);
  font-size: calc(22px + 8 * (100vw - 320px) / 1120);
  line-height: 1.8;
  letter-spacing: 3px;
  text-align: center;
}
@media (min-width: 1440px) {
  .ttl-main,
.is-style-ttl-main {
    margin-bottom: 80px;
  }
}
@media (min-width: 1440px) {
  .ttl-main,
.is-style-ttl-main {
    font-size: 30px;
  }
}

/*----- 見出しサブ -----*/
.ttl-sub,
.is-style-ttl-sub {
  margin-bottom: calc(25px + 15 * (100vw - 320px) / 1120);
  font-size: calc(22px + 8 * (100vw - 320px) / 1120);
  line-height: 1.8;
  letter-spacing: 3px;
  text-align: center;
}
@media (min-width: 1440px) {
  .ttl-sub,
.is-style-ttl-sub {
    margin-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .ttl-sub,
.is-style-ttl-sub {
    font-size: 30px;
  }
}

/*----- タイトル　英語サブタイトル -----*/
.ttl-en {
  margin-bottom: calc(40px + 40 * (100vw - 320px) / 1120);
  font-weight: bold;
  text-align: center;
}
@media (min-width: 1440px) {
  .ttl-en {
    margin-bottom: 80px;
  }
}
.ttl-en > .ttl {
  margin: 0;
  display: block;
  font-size: calc(18px + 4 * (100vw - 320px) / 1120);
  line-height: 1.5;
}
@media (min-width: 1440px) {
  .ttl-en > .ttl {
    font-size: 22px;
  }
}
.ttl-en > .en {
  margin: 0 0 10px;
  display: inline-block;
  font-size: calc(28px + 16 * (100vw - 320px) / 1120);
  line-height: 1;
  font-family: var(--roman);
}
@media (min-width: 1440px) {
  .ttl-en > .en {
    font-size: 44px;
  }
}
.ttl-en.-l {
  margin-bottom: calc(30px + 10 * (100vw - 320px) / 1120);
}
@media (min-width: 1440px) {
  .ttl-en.-l {
    margin-bottom: 40px;
  }
}
.ttl-en.-l > .ttl {
  font-size: calc(42px + 9 * (100vw - 320px) / 1120);
  line-height: 1.2;
}
@media (min-width: 1440px) {
  .ttl-en.-l > .ttl {
    font-size: 51px;
  }
}
.ttl-en.-wh > .en {
  background: #fff;
}

/*----- タイトル　バルーン付 -----*/
.ttl-balloon {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1120);
  font-weight: bold;
}
@media (min-width: 1440px) {
  .ttl-balloon {
    margin-bottom: 50px;
  }
}
.ttl-balloon > .ttl {
  margin: 0;
  color: var(--main-color);
  font-size: calc(24px + 26 * (100vw - 320px) / 1120);
  line-height: 1.3;
}
@media (min-width: 1440px) {
  .ttl-balloon > .ttl {
    font-size: 50px;
  }
}
.ttl-balloon > .balloon {
  margin: 0 0 10px;
  padding: 10px 20px;
  background: var(--accent-color1);
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  font-size: calc(14px + 4 * (100vw - 320px) / 1120);
  line-height: 1;
  text-transform: capitalize;
  position: relative;
}
@media (min-width: 1440px) {
  .ttl-balloon > .balloon {
    font-size: 18px;
  }
}
.ttl-balloon > .balloon::before {
  content: "";
  background: var(--accent-color1);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  width: 24px;
  height: 8px;
  position: absolute;
  left: 50%;
  bottom: -7px;
  transform: translate(-50%, 0);
}

.txt-llead,
.is-style-txt-llead {
  margin-bottom: 10px;
  font-size: calc(20px + 14 * (100vw - 320px) / 1120);
  line-height: 1.4;
  font-weight: bold;
}
@media (min-width: 1440px) {
  .txt-llead,
.is-style-txt-llead {
    font-size: 34px;
  }
}
.txt-llead > .l,
.is-style-txt-llead > .l {
  font-size: calc(48px + 15 * (100vw - 320px) / 1120);
  line-height: 1;
}
@media (min-width: 1440px) {
  .txt-llead > .l,
.is-style-txt-llead > .l {
    font-size: 63px;
  }
}

.txt-lead,
.is-style-txt-lead {
  margin-bottom: 10px;
  font-size: calc(18px + 10 * (100vw - 320px) / 1120);
  line-height: 1.5;
  font-weight: bold;
}
@media (min-width: 1440px) {
  .txt-lead,
.is-style-txt-lead {
    font-size: 28px;
  }
}

.txt-m00,
.is-style-txt-m00 {
  margin: 0;
}

/*----- 下線 -----*/
.txt-ul,
.is-style-txt-ul {
  margin-bottom: 20px;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--sub-color);
  color: var(--sub-color);
  font-size: calc(18px + 10 * (100vw - 320px) / 1120);
  line-height: 1.3;
  position: relative;
  text-align: left;
}
@media (min-width: 1440px) {
  .txt-ul,
.is-style-txt-ul {
    font-size: 28px;
  }
}

/*----- 左線 -----*/
.txt-ll,
.is-style-txt-ll {
  padding-left: 1em;
  border-left: 5px solid var(--main-color);
  text-align: left;
}

.txt-abar,
.is-style-txt-abar, .txt-sbar,
.is-style-txt-sbar, .txt-mbar,
.is-style-txt-mbar, .txt-whbar,
.is-style-txt-whbar, .txt-bgbar,
.is-style-txt-bgbar {
  margin: 0 0 20px;
  padding: 14px 20px;
  font-weight: bold;
}

/*----- 背景グレー -----*/
.txt-bgbar,
.is-style-txt-bgbar {
  background: var(--bg-color);
}

/*----- 背景白 -----*/
.txt-whbar,
.is-style-txt-whbar {
  background: #fff;
}

/*----- 背景メインカラー -----*/
.txt-mbar,
.is-style-txt-mbar {
  background: var(--main-color);
  color: #fff;
}

/*----- 背景サブカラー -----*/
.txt-sbar,
.is-style-txt-sbar {
  background: var(--sub-color);
}

/*----- 背景アクセントカラー -----*/
.txt-abar,
.is-style-txt-abar {
  background: #333;
  color: #fff;
}

.txt-strs,
.is-style-txt-strs, .txt-strm,
.is-style-txt-strm {
  margin-bottom: 20px;
  font-size: calc(20px + 6 * (100vw - 320px) / 1120);
  line-height: 1.4;
  font-weight: bold;
}
@media (min-width: 1440px) {
  .txt-strs,
.is-style-txt-strs, .txt-strm,
.is-style-txt-strm {
    font-size: 26px;
  }
}

/*----- 強調 メインカラー -----*/
.txt-strm,
.is-style-txt-strm {
  color: var(--main-color);
}

/*----- 強調 サブカラー -----*/
.txt-strs,
.is-style-txt-strs {
  color: var(--sub-color);
}

.txt-f24,
.is-style-txt-f24 {
  font-size: calc(18px + 6 * (100vw - 320px) / 1120);
  line-height: 1.5;
}
@media (min-width: 1440px) {
  .txt-f24,
.is-style-txt-f24 {
    font-size: 24px;
  }
}

.txt-f20,
.is-style-txt-f20 {
  font-size: calc(16px + 4 * (100vw - 320px) / 1120);
  line-height: 1.5;
}
@media (min-width: 1440px) {
  .txt-f20,
.is-style-txt-f20 {
    font-size: 20px;
  }
}

/*----- 吹き出し -----*/
.txt-speech,
.is-style-txt-speech {
  padding: 16px;
  border: 3px solid #999;
  border-radius: 20px;
  position: relative;
  width: 30%;
}
.txt-speech::before, .txt-speech::after,
.is-style-txt-speech::before,
.is-style-txt-speech::after {
  content: "";
  border: 10px solid transparent;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}
.txt-speech::before,
.is-style-txt-speech::before {
  border-top-color: #999;
  bottom: -20px;
}
.txt-speech::after,
.is-style-txt-speech::after {
  border-top-color: #fff;
  bottom: -17px;
}

/*----- 注目 -----*/
.txt-attn,
.is-style-txt-attn {
  margin-bottom: calc(20px + 20 * (100vw - 320px) / 1120);
  padding: 0 10px;
  display: inline-block;
  font-size: calc(18px + 10 * (100vw - 320px) / 1120);
  line-height: 1.3;
  position: relative;
}
@media (min-width: 1440px) {
  .txt-attn,
.is-style-txt-attn {
    margin-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .txt-attn,
.is-style-txt-attn {
    font-size: 28px;
  }
}
.txt-attn::before, .txt-attn::after,
.is-style-txt-attn::before,
.is-style-txt-attn::after {
  content: "";
  background: #333;
  border-radius: 2px;
  display: inline-block;
  height: 1.5em;
  width: 2px;
  position: absolute;
  top: 50%;
}
.txt-attn::before,
.is-style-txt-attn::before {
  transform: rotate(-30deg) translate(0, -50%);
  left: 0;
}
.txt-attn::after,
.is-style-txt-attn::after {
  transform: rotate(30deg) translate(0, -50%);
  right: 0;
}

/*----- 黒丸リスト -----*/
.list-disc,
.is-style-list-disc {
  list-style: none;
}
.list-disc > li,
.is-style-list-disc > li {
  padding: 0 0 0 1em;
  position: relative;
}
.list-disc > li::before,
.is-style-list-disc > li::before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  background-color: #333;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.6em;
}
.list-disc.-inline > li,
.is-style-list-disc.-inline > li {
  display: inline-block;
  padding: 0 1em;
}
.list-disc.-inline > li:last-child,
.is-style-list-disc.-inline > li:last-child {
  padding-right: 0;
}

/*----- カラー丸リスト -----*/
.list-disc-mc,
.is-style-list-disc-mc {
  list-style: none;
}
.list-disc-mc > li,
.is-style-list-disc-mc > li {
  padding: 0 0 0 1em;
  position: relative;
}
.list-disc-mc > li::before,
.is-style-list-disc-mc > li::before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  background-color: var(--main-color);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.6em;
}
.list-disc-mc.-inline > li,
.is-style-list-disc-mc.-inline > li {
  display: inline-block;
  padding: 0 1em;
}
.list-disc-mc.-inline > li:last-child,
.is-style-list-disc-mc.-inline > li:last-child {
  padding-right: 0;
}

/*----- ボーダー -----*/
.list-border,
.is-style-list-border {
  margin-bottom: 10px;
  list-style-type: none;
}
.list-border > li,
.is-style-list-border > li {
  padding: 15px 0;
  border-bottom: 1px dashed #B0B0B1;
  font-size: calc(16px + 6 * (100vw - 320px) / 1120);
  line-height: 1.5;
}
@media (min-width: 1440px) {
  .list-border > li,
.is-style-list-border > li {
    font-size: 22px;
  }
}
@media (min-width: 600px) {
  .list-border > li,
.is-style-list-border > li {
    text-align: center;
  }
}

/*----- 数字リスト -----*/
.list-number,
.is-style-list-number {
  counter-reset: item;
  list-style-type: none;
}
.list-number > li,
.is-style-list-number > li {
  margin: 0 0 10px;
  padding: 0 0 0 1.5em;
  position: relative;
}
.list-number > li::before,
.is-style-list-number > li::before {
  counter-increment: item;
  content: counter(item) ".";
  color: var(--main-color);
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/*----- チェックリスト -----*/
.list-check,
.is-style-list-check {
  list-style: none;
}
.list-check > li,
.is-style-list-check > li {
  padding: 0 0 0 1em;
  position: relative;
}
.list-check > li::before,
.is-style-list-check > li::before {
  content: var(--icon-check);
  font-family: var(--icon);
  font-size: 20px;
  line-height: 1;
  font-weight: normal;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/*----- インライン　背景カラー -----*/
.list-ilbg,
.is-style-list-ilbg {
  margin-bottom: 10px;
  list-style-type: none;
}
.list-ilbg > li,
.is-style-list-ilbg > li {
  margin: 0 10px 10px 0;
  padding: 12px 20px;
  background: var(--bg-color);
  border-radius: 25px;
  color: var(--main-color);
  display: inline-block;
  font-weight: bold;
  position: relative;
}

/*
===== 固定ページ 共通 page.php ====================================
*/
.page-common-ttl {
  margin-bottom: calc(50px + 130 * (100vw - 320px) / 1120);
  background: url(../images/ttl-bg.jpg) no-repeat center center/cover;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: calc(24px + 22 * (100vw - 320px) / 1120);
  line-height: 1.4;
  font-weight: bold;
  font-family: var(--mincyo);
  letter-spacing: 4px;
  height: 200px;
}
@media (min-width: 1440px) {
  .page-common-ttl {
    margin-bottom: 180px;
  }
}
@media (min-width: 1440px) {
  .page-common-ttl {
    font-size: 46px;
  }
}
@media (min-width: 1024px) {
  .page-common-ttl {
    letter-spacing: 12px;
    height: 422px;
  }
}
.page-common-results {
  padding-top: 40px;
  border-top: 1px solid #707070;
}

/*
===== アーカイブ 共通 archive.php ====================================
*/
.archive .entries-dl {
  margin-bottom: calc(50px + 130 * (100vw - 320px) / 1120);
  border-top: 1px solid #EAEAEA;
}
@media (min-width: 1440px) {
  .archive .entries-dl {
    margin-bottom: 180px;
  }
}
.archive .entries-dl > dd {
  border-bottom: 1px solid #EAEAEA;
}
.archive .wp-pagenavi {
  margin-bottom: calc(50px + 130 * (100vw - 320px) / 1120);
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
@media (min-width: 1440px) {
  .archive .wp-pagenavi {
    margin-bottom: 180px;
  }
}
.archive .wp-pagenavi a {
  margin: 0 5px 10px;
  padding: 0;
  background: #fff;
  border: none;
  border-radius: 50%;
  color: #111;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-decoration: none;
  vertical-align: middle;
}
@media (any-hover: hover) {
  .archive .wp-pagenavi a:hover {
    background: var(--bg-color);
  }
}
@media (any-hover: none) {
  .archive .wp-pagenavi a:active {
    background: var(--bg-color);
  }
}
.archive .wp-pagenavi a.previouspostslink, .archive .wp-pagenavi a.nextpostslink {
  border: none;
}
.archive .wp-pagenavi span {
  margin: 0 5px 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  vertical-align: middle;
}
.archive .wp-pagenavi span.current {
  border: none;
  background: var(--bg-color);
  font-weight: bold;
}
.archive .wp-pagenavi .pages,
.archive .wp-pagenavi .first,
.archive .wp-pagenavi .last,
.archive .wp-pagenavi .extend {
  display: none;
}

/*
===== 投稿 共通 single.php ====================================
*/
.single .inner {
  max-width: 840px;
}
.single-header {
  margin-bottom: calc(40px + 40 * (100vw - 320px) / 1120);
  text-align: left;
}
@media (min-width: 1440px) {
  .single-header {
    margin-bottom: 80px;
  }
}
.single-header-ttl {
  margin: 0;
  font-size: calc(20px + 10 * (100vw - 320px) / 1120);
  line-height: 1.8;
  font-weight: bold;
  text-align: left;
  position: relative;
}
@media (min-width: 1440px) {
  .single-header-ttl {
    font-size: 30px;
  }
}
.single-header .date {
  margin: 0 0 20px;
  display: block;
  font-size: 18px;
  line-height: 1.8;
}
.single-footer {
  margin-top: calc(30px + 20 * (100vw - 320px) / 1120);
  margin-bottom: calc(50px + 130 * (100vw - 320px) / 1120);
  border-top: 1px solid #EAEAEA;
}
@media (min-width: 1440px) {
  .single-footer {
    margin-top: 50px;
  }
}
@media (min-width: 1440px) {
  .single-footer {
    margin-bottom: 180px;
  }
}
.single-footer-nav {
  margin: 20px auto;
  display: table;
  table-layout: fixed;
  width: 100%;
}
.single-footer-nav > .item {
  display: table-cell;
  text-align: center;
}
.single-footer-nav > .prev {
  text-align: left;
}
.single-footer-nav > .next {
  text-align: right;
}
/*
===== TOP ====================================
*/
#main-visual {
  overflow: hidden;
  width: 100%;
  position: relative;
}
#main-visual .sl-fade {
  margin-bottom: 0;
  opacity: 0;
  transition: opacity 1s linear;
}
#main-visual .sl-fade.slick-initialized {
  opacity: 1;
}
#main-visual .sl-fade .slick-slide {
  padding: 0;
}
#main-visual .sl-fade .slick-slide img {
  width: 100%;
  height: calc(100vh - 60px) !important;
  animation: zoomIn 8s linear;
}
@media (min-width: 1024px) {
  #main-visual .sl-fade .slick-slide img {
    height: calc(100vh - 110px) !important;
  }
}
#main-visual-txt {
  color: #fff;
  font-family: var(--mincyo);
  font-size: calc(25px + 15 * (100vw - 320px) / 1120);
  line-height: 1;
  letter-spacing: 4px;
  position: absolute;
  right: 50%;
  top: 30%;
  transform: translate(50%, 0);
  text-align: center;
  width: 100%;
}
@media (min-width: 1440px) {
  #main-visual-txt {
    font-size: 40px;
  }
}
@media (min-width: 1024px) {
  #main-visual-txt {
    right: 10%;
    top: 50%;
    transform: translate(0, -50%);
    width: auto;
  }
}
#main-visual-scroll {
  position: absolute;
  color: #fff;
  font-size: 12px;
  line-height: 1.8;
  right: 50%;
  bottom: 30%;
  transform: translate(50%, 0);
}
@media (min-width: 1024px) {
  #main-visual-scroll {
    display: none;
  }
}
#main-visual-scroll::before {
  animation: scroll 3s infinite;
  background-color: #fff;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.top-page-outline .column-02-txtarea .btn-border {
  text-align: center;
}
@media (min-width: 1024px) {
  .top-page-outline .column-02-txtarea .btn-border {
    text-align: left;
  }
}

.top-page-services {
  margin-bottom: 0;
}
.top-page-services .service-links {
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top-page-services .service-links > li {
  margin: 0 0 2px;
  background: transparent no-repeat center center/cover;
  position: relative;
  width: 100%;
  height: 120px;
}
@media (min-width: 600px) {
  .top-page-services .service-links > li {
    margin: 0;
    width: 50%;
    height: 300px;
  }
}
@media (min-width: 1024px) {
  .top-page-services .service-links > li {
    width: 33.33%;
    height: 400px;
  }
}
@media (min-width: 1440px) {
  .top-page-services .service-links > li {
    height: 520px;
  }
}
.top-page-services .service-links > li::before {
  content: "";
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.5s;
}
@media (any-hover: hover) {
  .top-page-services .service-links > li:hover::before {
    background: rgba(0, 0, 0, 0);
  }
}
@media (any-hover: none) {
  .top-page-services .service-links > li:active::before {
    background: rgba(0, 0, 0, 0);
  }
}
.top-page-services .service-links > li a {
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.top-page-services .service-links > li .ttl {
  margin: 0;
  font-size: calc(16px + 6 * (100vw - 320px) / 1120);
  line-height: 1.8;
  font-weight: bold;
}
@media (min-width: 1440px) {
  .top-page-services .service-links > li .ttl {
    font-size: 22px;
  }
}
.top-page-services .service-links > .stage_setting {
  background-image: url(../images/top/service01.jpg);
}
.top-page-services .service-links > .pa {
  background-image: url(../images/top/service02.jpg);
}
.top-page-services .service-links > .sound_measure {
  background-image: url(../images/top/service03.jpg);
}
.top-page-services .service-links > .speech_privacy {
  background-image: url(../images/top/service04.jpg);
}
.top-page-services .service-links > .system_maintenance {
  background-image: url(../images/top/service05.jpg);
}
.top-page-services .service-links > .maintenance {
  background-image: url(../images/top/service06.jpg);
}

.top-page-topics {
  margin: 0 auto;
  padding-top: calc(40px + 40 * (100vw - 320px) / 1120);
  padding-bottom: calc(40px + 40 * (100vw - 320px) / 1120);
  background: var(--main-color);
  color: #fff;
}
@media (min-width: 1440px) {
  .top-page-topics {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.top-page-topics dd a {
  color: #fff;
}
@media (any-hover: hover) {
  .top-page-topics dd a:hover {
    color: #fff;
  }
}
@media (any-hover: none) {
  .top-page-topics dd a:active {
    color: #fff;
  }
}

.top-page-about {
  margin-bottom: 0;
}
.top-page-about .about-links {
  margin: 0;
}
@media (min-width: 600px) {
  .top-page-about .about-links {
    display: flex;
    justify-content: space-between;
  }
}
.top-page-about .about-links > li {
  margin: 0 0 2px;
  background: transparent no-repeat center center/cover;
  position: relative;
  width: 100%;
  height: 120px;
}
@media (min-width: 600px) {
  .top-page-about .about-links > li {
    margin: 0;
    height: 300px;
  }
}
@media (min-width: 1024px) {
  .top-page-about .about-links > li {
    width: 50%;
    height: 500px;
  }
}
@media (min-width: 1440px) {
  .top-page-about .about-links > li {
    height: 760px;
  }
}
.top-page-about .about-links > li::before {
  content: "";
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.5s;
}
@media (any-hover: hover) {
  .top-page-about .about-links > li:hover::before {
    background: rgba(0, 0, 0, 0);
  }
}
@media (any-hover: none) {
  .top-page-about .about-links > li:active::before {
    background: rgba(0, 0, 0, 0);
  }
}
.top-page-about .about-links > li a {
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.top-page-about .about-links > li .ttl {
  margin: 0;
  font-size: calc(16px + 6 * (100vw - 320px) / 1120);
  line-height: 1.8;
  font-weight: bold;
}
@media (min-width: 1440px) {
  .top-page-about .about-links > li .ttl {
    font-size: 22px;
  }
}
.top-page-about .about-links > .company {
  background-image: url(../images/top/link-company.jpg);
}
.top-page-about .about-links > .recruit {
  background-image: url(../images/top/link-recruit.jpg);
}

/*
===== 事業内容-記事 ==========================================
*/
.achivements-anchor a {
  margin: 0 10px 10px 0;
  padding: 5px 10px;
  background: #eaeaea;
  display: inline-block;
}
@media (any-hover: hover) {
  .achivements-anchor a:hover {
    background: #ccc;
  }
}
@media (any-hover: none) {
  .achivements-anchor a:active {
    background: #ccc;
  }
}

.page-achivements-header {
  margin-bottom: calc(40px + 40 * (100vw - 320px) / 1120);
  background: var(--bg-color);
}
@media (min-width: 1440px) {
  .page-achivements-header {
    margin-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .page-achivements-header {
    display: flex;
    height: 690px;
  }
}
.page-achivements-header-txtarea {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
@media (min-width: 1024px) {
  .page-achivements-header-txtarea {
    padding: 80px;
  }
}
.page-achivements-header-txtarea .ttl {
  font-size: calc(20px + 10 * (100vw - 320px) / 1120);
  line-height: 1.8;
  letter-spacing: 3px;
}
@media (min-width: 1440px) {
  .page-achivements-header-txtarea .ttl {
    font-size: 30px;
  }
}
.page-achivements-header-txtarea .date {
  margin-bottom: calc(20px + 20 * (100vw - 320px) / 1120);
  font-size: calc(16px + 2 * (100vw - 320px) / 1120);
  line-height: 1.8;
  font-family: var(--tel);
}
@media (min-width: 1440px) {
  .page-achivements-header-txtarea .date {
    margin-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .page-achivements-header-txtarea .date {
    font-size: 18px;
  }
}
.page-achivements-header-txtarea .cat {
  margin: 0;
}
.page-achivements-header-txtarea .cat > li {
  margin: 0 5px 5px 0;
}
@media (min-width: 1024px) {
  .page-achivements-header-mv {
    width: 48%;
  }
}
.page-achivements-header-mv img {
  width: 100%;
}
@media (min-width: 1024px) {
  .page-achivements-header-mv img {
    height: 690px;
  }
}
@media (min-width: 1024px) {
  .page-achivements-content {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .page-achivements-content .content-area {
    padding-right: 100px;
    flex: 1;
  }
}
@media (min-width: 1024px) {
  .page-achivements-content .sidebar {
    width: 280px;
  }
}
.page-achivements-content .sidebar-ttl {
  margin: 0 0 10px;
  padding: 0 0 10px;
  border-bottom: 1px solid #EAEAEA;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
}
.page-achivements-content .sidebar-cat {
  font-size: 14px;
  line-height: 1.8;
}
.page-achivements-content .sidebar-cat > li {
  margin: 0 0 10px;
  padding: 0 0 10px;
  border-bottom: 1px solid #EAEAEA;
}
@media (any-hover: hover) {
  .page-achivements-content .sidebar-cat > li a:hover {
    text-decoration: underline;
  }
}
@media (any-hover: none) {
  .page-achivements-content .sidebar-cat > li a:active {
    text-decoration: underline;
  }
}
.page-achivements-content .sidebar-btn a {
  padding: 20px;
  background: #EAEAEA;
  display: block;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}
@media (any-hover: hover) {
  .page-achivements-content .sidebar-btn a:hover {
    background: #ccc;
  }
}
@media (any-hover: none) {
  .page-achivements-content .sidebar-btn a:active {
    background: #ccc;
  }
}
.page-achivements .page-common-results {
  margin-top: calc(50px + 130 * (100vw - 320px) / 1120);
  margin-bottom: calc(40px + 40 * (100vw - 320px) / 1120);
}
@media (min-width: 1440px) {
  .page-achivements .page-common-results {
    margin-top: 180px;
  }
}
@media (min-width: 1440px) {
  .page-achivements .page-common-results {
    margin-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .page-achivements-footer-nav {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .page-achivements-footer-nav li {
    width: 46%;
  }
}

/*
===== 会社情報 ==========================================
*/
.page-company .page-common-ttl {
  background-image: url(../images/company/ttl-bg.jpg);
}

.page-company-office .office-column {
  padding: 20px 0 0;
  border-top: 1px solid #EAEAEA;
}
@media (min-width: 1024px) {
  .page-company-office .office-column {
    padding: 40px;
    display: flex;
  }
}
.page-company-office .office-column:last-child {
  border-bottom: 1px solid #EAEAEA;
}
.page-company-office .office-column-txtarea {
  flex: 1;
}
.page-company-office .office-column-txtarea .link a {
  padding: 5px 20px;
  background: #EAEAEA;
  display: inline-block;
  font-size: 14px;
  line-height: 1.8;
}
@media (any-hover: hover) {
  .page-company-office .office-column-txtarea .link a:hover {
    background: #ccc;
  }
}
@media (any-hover: none) {
  .page-company-office .office-column-txtarea .link a:active {
    background: #ccc;
  }
}
.page-company-office .office-column-map {
  margin: 0 0 20px;
}
@media (min-width: 1024px) {
  .page-company-office .office-column-map {
    margin: 0;
    width: 54%;
  }
}

/*
===== お問い合わせ ==========================================
*/
.page-contact .page-common-ttl {
  background-image: url(../images/contact/ttl-bg.jpg);
}
.page-contact .item-type {
  margin-left: 10px;
  padding: 6px 10px;
  background: #ccc;
  border-radius: 2px;
  display: inline-block;
  font-size: 12px;
  line-height: 1;
}
.page-contact .item-type.-required {
  background: #CE2224;
  color: #fff;
}
.page-contact .wpcf7-list-item {
  margin: 5px 0;
  display: block;
}
.page-contact .form-area {
  border: 1px solid #ccc;
}
.page-contact .inquiry-form {
  margin-top: calc(40px + 40 * (100vw - 320px) / 1120);
}
@media (min-width: 1440px) {
  .page-contact .inquiry-form {
    margin-top: 80px;
  }
}
.page-contact .inquiry-form th {
  padding: 10px 0;
  display: block;
}
.page-contact .inquiry-form th p {
  margin: 0;
}
.page-contact .inquiry-form td {
  margin: 0 0 5px;
  padding: 0 0 10px;
  display: block;
}
.page-contact .inquiry-form td input[type=radio] {
  margin: 0;
}
.page-contact .inquiry-form td p {
  margin-bottom: 5px;
}
.page-contact .inquiry-form td p:last-child {
  margin: 0;
}
@media (min-width: 1024px) {
  .page-contact .inquiry-form .column {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .page-contact .inquiry-form .column th {
    width: 23%;
  }
}
@media (min-width: 1024px) {
  .page-contact .inquiry-form .column td {
    padding: 10px 0;
  }
}
.page-contact .form-btn {
  margin-top: calc(50px + 130 * (100vw - 320px) / 1120);
  text-align: center;
}
@media (min-width: 1440px) {
  .page-contact .form-btn {
    margin-top: 180px;
  }
}
.page-contact .form-btn > li {
  margin: 0 5px 10px;
  display: inline-block;
  font-size: 18px;
  line-height: 1.8;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.page-contact .form-btn > li::before {
  font-family: var(--icon);
  font-size: 20px;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.page-contact .form-btn > li input {
  padding: 15px 0;
  border-radius: 40px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.8;
  font-family: var(--gothic);
  font-weight: bold;
  text-align: center;
  transition: 0.3s;
  width: 280px;
}
.page-contact .form-btn > .submit::before {
  content: var(--icon-arrow-right);
  color: #fff;
  right: 20px;
}
.page-contact .form-btn > .submit input {
  border: 0;
  background: var(--main-color);
  color: #FFF;
}
@media (any-hover: hover) {
  .page-contact .form-btn > .submit input:hover {
    background: var(--main-color-hover);
  }
}
@media (any-hover: none) {
  .page-contact .form-btn > .submit input:active {
    background: var(--main-color-hover);
  }
}
.page-contact .form-btn > .back {
  display: none;
}
.page-contact .form-btn > .back::before {
  content: var(--icon-arrow-left);
  color: #333;
  left: 20px;
}
.page-contact .form-btn > .back input {
  border: 1px solid #888;
  background: #fff;
  color: #333;
}
@media (any-hover: hover) {
  .page-contact .form-btn > .back input:hover {
    background: #eee;
  }
}
@media (any-hover: none) {
  .page-contact .form-btn > .back input:active {
    background: #eee;
  }
}
.page-contact .mw_wp_form_preview .form-btn .back {
  display: inline-block;
}
.page-contact .mw_wp_form .horizontal-item {
  margin: 0 20px 5px 0 !important;
  display: inline-block;
}
.page-contact .mw_wp_form .error {
  padding: 2px 5px;
  color: #ff7f00;
  font-weight: bold;
}
@media (min-width: 600px) {
  .page-contact .mw_wp_form_confirm .inquiry-form td {
    padding-bottom: 20px;
    padding-left: 20px;
  }
}
.page-contact .mw_wp_form_confirm .s {
  display: none;
}
.page-contact #privacy-policy .scroll-block {
  margin-bottom: 20px;
  padding: 20px;
  background: #F9FAFB;
  border: 1px solid #ccc;
  height: 250px;
  overflow-y: scroll;
  outline: none;
  text-align: left;
}
@media (min-width: 1024px) {
  .page-contact #privacy-policy .scroll-block {
    padding: 50px 60px;
    height: 300px;
  }
}
.page-contact #privacy-policy .pp-ttl {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.8;
}

/*
===== 保守・メンテ ==========================================
*/
.page-maintenance .page-common-ttl {
  background-image: url(../images/maintenance/ttl-bg.jpg);
}

/*
===== 音響設備 ==========================================
*/
.page-pa .page-common-ttl {
  background-image: url(../images/pa/ttl-bg.jpg);
}

.page-pa-flow .step-column {
  margin-bottom: calc(40px + 40 * (100vw - 320px) / 1120);
  display: flex;
  align-items: center;
  height: 80px;
}
@media (min-width: 1440px) {
  .page-pa-flow .step-column {
    margin-bottom: 80px;
  }
}
.page-pa-flow .step-column .step {
  margin: 0;
  background: #C75857;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  font-size: calc(16px + 2 * (100vw - 320px) / 1120);
  line-height: 1.8;
  font-family: var(--tel);
}
@media (min-width: 1440px) {
  .page-pa-flow .step-column .step {
    font-size: 18px;
  }
}
.page-pa-flow .step-column .txt {
  margin: 0 0 0 20px;
  flex: 1;
}

/*
===== 採用情報 ==========================================
*/
.page-recruit .page-common-ttl {
  background-image: url(../images/recruit/ttl-bg.jpg);
}
.page-recruit .wp-block-buttons > .wp-block-button {
  width: 100%;
  max-width: 470px;
}

/*
===== 音響測定 ==========================================
*/
.page-sound_measure .page-common-ttl {
  background-image: url(../images/sound_measure/ttl-bg.jpg);
}

/*
===== スピーチプライバシー ==========================================
*/
.page-speech_privacy .page-common-ttl {
  background-image: url(../images/speech_privacy/ttl-bg.jpg);
}

/*
===== 劇場設備 ==========================================
*/
.page-stage_setting .page-common-ttl {
  background-image: url(../images/stage_setting/ttl-bg.jpg);
}

/*
===== web会議システム ==========================================
*/
.page-system_maintenance .page-common-ttl {
  background-image: url(../images/system_maintenance/ttl-bg.jpg);
}

.page-system_maintenance-flow {
  margin-top: calc(30px + 50 * (100vw - 320px) / 1120);
}
@media (min-width: 1440px) {
  .page-system_maintenance-flow {
    margin-top: 80px;
  }
}
.page-system_maintenance-flow .flow-column {
  margin: 0 0 40px;
  padding: 0 0 40px;
  border-bottom: 1px solid #333;
}
@media (min-width: 1024px) {
  .page-system_maintenance-flow .flow-column {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .page-system_maintenance-flow .flow-column-img {
    width: 64.4%;
  }
}
.page-system_maintenance-flow .flow-column-img .wp-block-image {
  margin: 0;
}
@media (min-width: 1024px) {
  .page-system_maintenance-flow .flow-column-txtarea {
    padding-right: 40px;
    flex: 1;
  }
}
.page-system_maintenance-flow .flow-column-txtarea .ttl {
  margin: 0 0 20px;
  padding: 14px 20px;
  background: #333;
  color: #fff;
}
.page-system_maintenance-flow .notes-list {
  margin-top: 0;
  margin-bottom: calc(40px + 40 * (100vw - 320px) / 1120);
}
@media (min-width: 1440px) {
  .page-system_maintenance-flow .notes-list {
    margin-bottom: 80px;
  }
}
.page-system_maintenance-flow .wp-block-buttons > .wp-block-button {
  width: 100%;
  max-width: 470px;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../images/ajax-loader.gif") center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 60px;
  width: 60px;
  line-height: 1;
  cursor: pointer;
  background: var(--main-color);
  border-radius: 50%;
  border: 1px solid #fff;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  outline: none;
  z-index: 100;
  transition: 0.3s;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: var(--main-color-hover);
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.8;
}
.slick-prev:before,
.slick-next:before {
  font-family: "Material Icons";
  font-size: 32px;
  line-height: 1;
  color: #fff;
  opacity: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.slick-prev {
  left: 20px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: 20px;
}
.slick-prev:before {
  content: "\e314";
}
[dir=rtl] .slick-prev:before {
  content: "\e315";
}

.slick-next {
  right: 20px;
}
[dir=rtl] .slick-next {
  left: 20px;
  right: auto;
}
.slick-next:before {
  content: "\e315";
}
[dir=rtl] .slick-next:before {
  content: "\e314";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  margin: 0 5px;
  cursor: pointer;
  display: inline-block;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 25px;
  width: 25px;
  outline: none;
  line-height: 1;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  position: relative;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "\e3fa";
  font-family: "Material Icons";
  font-size: 12px;
  line-height: 1;
  color: #eee;
  opacity: 0.8;
  transform: translate(-50%, -50%);
}
.slick-dots li.slick-active button:before {
  color: var(--main-color);
  opacity: 0.8;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  touch-action: pan-y;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  padding: 0 10px;
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  margin: auto;
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*
===== ブロックエディタ スタイル ====================================
*/
.edit-post-sidebar {
  text-align: left;
}
.edit-post-sidebar ul {
  margin: 1em auto;
}
.edit-post-sidebar .components-button {
  height: auto;
  min-height: 36px;
  white-space: normal !important;
}

.block-editor__container,
.components-popover {
  font-size: 14px;
  line-height: 1.8;
}

.editor-styles-wrapper {
  background: #fff;
  font-family: var(--gothic);
}
.editor-styles-wrapper ul {
  list-style: none;
}
.editor-styles-wrapper .dl-mc dt, .editor-styles-wrapper .is-style-dl-mc dt {
  float: none;
}
.editor-styles-wrapper .panel-group .panel {
  margin-bottom: 20px;
  display: block;
}

@media (min-width: 1024px) {
  .wp-block-spacer.-pc10 {
    height: 10px !important;
  }
  .wp-block-spacer.-pc20 {
    height: 20px !important;
  }
  .wp-block-spacer.-pc30 {
    height: 30px !important;
  }
  .wp-block-spacer.-pc40 {
    height: 40px !important;
  }
  .wp-block-spacer.-pc50 {
    height: 50px !important;
  }
  .wp-block-spacer.-pc60 {
    height: 60px !important;
  }
  .wp-block-spacer.-pc70 {
    height: 70px !important;
  }
  .wp-block-spacer.-pc80 {
    height: 80px !important;
  }
  .wp-block-spacer.-pc90 {
    height: 90px !important;
  }
  .wp-block-spacer.-pc100 {
    height: 100px !important;
  }
}