@charset "UTF-8";
:root {
  --main-color: #00237D;
  --main-color-hover: #0031b0;
  --sub-color: #BF0E19;
  --sub-color-hover: #ee1220;
  --accent-color1: #0D86DB;
  --accent-color1-hover: #0a69ab;
  --accent-color2: #CD2523;
  --accent-color2-hover: #df4644;
  --link-color: #000;
  --link-color-hover: #262626;
  --text-color: #000;
  --bg-color: #F2F4F8;
  --gothic: "Noto Sans JP","Yu Gothic","Hiragino Kaku Gothic ProN","メイリオ","Meiryo",sans-serif;
  --mincyo: "Noto Serif JP","ヒラギノ明朝 Pro","Hiragino Mincho Pro","Yu Mincho","ＭＳ Ｐ明朝",serif;
  --en: "Roboto","HelveticaNeue",sans-serif;
  --roman: "Georgia","Times New Roman","Times",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: 100px;
  --pc-header-height: 100px;
  --inner-wide: 1240px;
  --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(-6%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes widthIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
* {
  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.75;
  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: 1280px) {
  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 #aaa;
  font-size: 16px;
  line-height: 1.75;
  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: #999;
}
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: #999;
}
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: 12px;
  line-height: 1.75;
}

._s {
  font-size: 14px;
  line-height: 1.75;
}

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

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

._ll {
  font-size: calc(16px + 4 * (100vw - 320px) / 1180);
  line-height: 1.4;
}
@media (min-width: 1500px) {
  ._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;
}

._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);
}

._ac1 {
  color: var(--accent-color1);
}

._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;
}

._mw10 {
  max-width: 10% !important;
}

._mw20 {
  max-width: 20% !important;
}

._mw30 {
  max-width: 30% !important;
}

._mw40 {
  max-width: 40% !important;
}

._mw50 {
  max-width: 50% !important;
}

._mw60 {
  max-width: 60% !important;
}

._mw70 {
  max-width: 70% !important;
}

._mw80 {
  max-width: 80% !important;
}

._mw90 {
  max-width: 90% !important;
}

._mw100 {
  max-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: #fff;
  border-top: 6px solid var(--main-color);
  transition: 0.3s;
  width: 100%;
  z-index: 1001;
  height: var(--sp-header-height);
  position: fixed;
  top: 0;
  left: 0;
  /* スクロールfix 

  &.js-fixed {
  	position: fixed;
  	background: #fff;
  	box-shadow: 0 1px 5px rgba(0,0,0,.2);
  	height: 80px;
  	animation: fadeSlideIn .3s forwards;

  	#site-header-logo {
  	}
  }
  */
}
@media (min-width: 1024px) {
  #site-header {
    position: relative;
    height: auto;
  }
}
#site-header-column {
  display: flex;
  align-items: center;
  height: 70px;
}
@media (min-width: 1024px) {
  #site-header-column {
    height: inherit;
  }
}
#site-header.js-hide {
  top: calc(-1 * var(--sp-header-height));
}
#site-header-logo {
  margin: 0 20px;
  width: 180px;
}
@media (min-width: 1024px) {
  #site-header-logo {
    width: auto;
  }
}
#site-header-desc {
  margin: 0;
  padding: 0 10px;
  background: var(--bg-color);
  font-size: 10px;
  line-height: 1.75;
  font-weight: normal;
  display: flex;
  align-items: center;
  height: 30px;
}
@media (min-width: 1024px) {
  #site-header-desc {
    padding: 0 20px;
    height: 46px;
    font-size: 12px;
    line-height: 1.75;
  }
}
#site-header-info {
  padding: 5px 10px;
  background: #fff;
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
}
@media (min-width: 1024px) {
  #site-header-info {
    padding: 10px 20px;
  }
}
#site-header-info::before {
  content: "";
  background: #fff;
  -webkit-clip-path: polygon(0 100%, 100% 0, 100% 100%);
          clip-path: polygon(0 100%, 100% 0, 100% 100%);
  position: absolute;
  left: -35px;
  top: 0;
  width: 36px;
  height: 30px;
}
@media (min-width: 1024px) {
  #site-header-info::before {
    height: 46px;
  }
}
#site-header-info > .in {
  margin: 3px;
}
#site-header-info > .language-list {
  margin: 0 0 0 10px;
  padding: 0;
}
@media (min-width: 1024px) {
  #site-header-info > .language-list {
    margin: 0 0 0 20px;
    padding: 2px 5px;
  }
}

/* NAVIGATION
------------------------------------ */
#site-menu-btn {
  margin: 0;
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: 2000;
  width: 60px;
  height: 60px;
}
@media (min-width: 1024px) {
  #site-menu-btn {
    width: 80px;
    height: 80px;
    bottom: 10px;
  }
}
#site-menu-btn > .line {
  margin: auto;
  background: var(--main-color);
  border-radius: 2px;
  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: var(--main-color);
  border-radius: 2px;
  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 {
  background: #fff;
  transform: rotate(45deg);
  top: 0;
}
#site-menu-btn.js-open > .line::after {
  background: #fff;
  transform: rotate(-45deg);
  top: 0;
}

#site-nav {
  padding: var(--sp-header-height) 0;
  background: rgba(0, 35, 125, 0.8);
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  z-index: 1000;
  transition: 0.3s;
}
#site-nav-wrap {
  width: 100%;
  height: inherit;
  overflow-y: auto;
  position: relative;
}
#site-nav-list {
  margin: 0 20px;
  font-weight: bold;
}
@media (min-width: 1024px) {
  #site-nav-list {
    display: flex;
    justify-content: space-between;
  }
  #site-nav-list > ul {
    width: 45%;
  }
}
#site-nav-list ul {
  border-top: 1px solid #fff;
}
#site-nav-list li {
  border-bottom: 1px solid #fff;
  color: #fff;
}
#site-nav-list li > a {
  padding: 20px;
  color: #fff;
  display: block;
  text-align: left;
}
#site-nav-list li .sub {
  padding: 0 0 0 40px;
  border-top: none;
}
#site-nav-list li .sub a {
  padding: 3px 10px;
}
#site-nav-list li .sub li {
  border-bottom: none;
}
#site-nav-list .child {
  margin: 0 0 20px 20px;
}
#site-nav-list .child a {
  padding: 3px 0;
  color: var(--text-color);
  display: block;
}
#site-nav-list .trigger-ne {
  padding: 20px;
  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);
}

#site-pc-nav {
  display: none;
}
@media (min-width: 1024px) {
  #site-pc-nav {
    margin: 0 100px 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
  }
}
#site-pc-nav > li > a {
  padding: 20px 10px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--pc-header-height);
}
@media (any-hover: hover) {
  #site-pc-nav > li > a:hover {
    color: var(--main-color-hover);
  }
}
@media (any-hover: none) {
  #site-pc-nav > li > a:active {
    color: var(--main-color-hover);
  }
}
@media (min-width: 1280px) {
  #site-pc-nav > li > a {
    padding: 20px;
  }
}
#site-pc-nav > li > .current,
#site-pc-nav > li > .parents {
  color: var(--main-color);
}
#site-pc-nav > li > .child {
  margin: 0;
  padding: 20px 0;
  background: none;
  display: none;
  position: absolute;
  transition: 0.5s;
}
#site-pc-nav > li > .child::before {
  content: "";
  background: rgba(0, 35, 125, 0.8);
  position: absolute;
  top: 0;
  left: -100vw;
  width: 200vw;
  height: 100%;
  animation: fadeSlideIn 0.5s forwards;
}
#site-pc-nav > li > .child a {
  color: #fff;
}
#site-pc-nav > li > .child > li {
  padding: 5px;
  border: none;
  display: block;
  position: relative;
}

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

/*
===== FOOTER ==========================================
*/
#site-footer a {
  color: var(--text-color);
}
@media (any-hover: hover) {
  #site-footer a:hover {
    color: var(--main-color);
  }
}
@media (any-hover: none) {
  #site-footer a:active {
    color: var(--main-color);
  }
}
#site-footer-column {
  padding: 0;
  display: flex;
}
#site-footer-info {
  padding-top: calc(50px + 30 * (100vw - 320px) / 1180);
  padding-bottom: calc(50px + 30 * (100vw - 320px) / 1180);
  background: var(--bg-color);
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 1500px) {
  #site-footer-info {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  #site-footer-info {
    margin-left: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    width: calc(50% + 50vw - 50%);
  }
}
#site-footer-info .name {
  font-size: 18px;
  line-height: 1.75;
}
#site-footer-info address {
  margin: 0 auto;
  text-align: center;
}
#site-footer-logo {
  margin: 0 auto;
}
#site-footer-nav {
  display: none;
}
@media (min-width: 1024px) {
  #site-footer-nav {
    padding: 80px 0;
    display: block;
    text-align: left;
    flex: 1;
  }
}
#site-footer-nav > .nav-list {
  margin: 0 0 0 80px;
}
#site-footer-nav > .nav-list > li {
  margin: 10px 0;
}
#site-footer .copyright {
  padding: 10px;
  background: var(--main-color);
  color: #fff;
  display: block;
  font-size: calc(10px + 2 * (100vw - 320px) / 1180);
  line-height: 1.75;
  text-align: center;
}
@media (min-width: 1500px) {
  #site-footer .copyright {
    font-size: 12px;
  }
}

#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);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--icon);
  font-size: 24px;
  line-height: 1;
  width: 50px;
  height: 50px;
  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;
  scroll-padding-top: 0;
}

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.-pos {
  position: relative;
  z-index: 2;
}
.inner.-w {
  max-width: 1500px;
}

#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: 0;
  }
}

article {
  margin-bottom: calc(40px + 40 * (100vw - 320px) / 1180);
}
@media (min-width: 1500px) {
  article {
    margin-bottom: 80px;
  }
}

section {
  margin-top: calc(40px + 40 * (100vw - 320px) / 1180);
  margin-bottom: calc(40px + 40 * (100vw - 320px) / 1180);
}
@media (min-width: 1500px) {
  section {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
/*
===== 共通　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: 1500px) {
  .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) / 1180);
  line-height: 1.4;
}
@media (min-width: 1500px) {
  h1, .h1 {
    font-size: 28px;
  }
}

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

h3, .h3 {
  margin-bottom: 20px;
  font-size: calc(18px + 6 * (100vw - 320px) / 1180);
  line-height: 1.5;
}
@media (min-width: 1500px) {
  h3, .h3 {
    font-size: 24px;
  }
}

h4, .h4 {
  margin-bottom: 20px;
  font-size: calc(16px + 5 * (100vw - 320px) / 1180);
  line-height: 1.5;
}
@media (min-width: 1500px) {
  h4, .h4 {
    font-size: 21px;
  }
}

h5, .h5 {
  margin: 1.5em auto;
  font-size: calc(14px + 2 * (100vw - 320px) / 1180);
  line-height: 1.75;
}
@media (min-width: 1500px) {
  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%, #FFFF73 50%);
  font-weight: bold;
  font-style: normal;
}

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

.cat-main {
  margin: 0;
  padding: 4px 10px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  text-align: center;
}

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

.yt-res {
  position: relative;
  width: 100%;
}
.yt-res iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

.proteo-movie {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
}
@media (min-width: 1500px) {
  .proteo-movie {
    margin-bottom: 50px;
  }
}
.proteo-movie video {
  width: 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-left: 1%;
  margin-right: 1%;
}
.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: -2%;
  margin-right: -2%;
  width: 104%;
}
.fix-row.-m2 > .item {
  margin-left: 2%;
  margin-right: 2%;
}
.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: 96%;
}
@media (min-width: 600px) {
  .grid02.-m2 > .item {
    width: 46%;
  }
}
.grid02.-nm > .item {
  width: 100%;
}
@media (min-width: 600px) {
  .grid02.-nm > .item {
    width: 50%;
  }
}

.grid03 > .item {
  width: 98%;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .grid03 > .item {
    width: 31.33%;
    margin-bottom: 10px;
  }
}
.grid03.-m2 > .item {
  width: 96%;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .grid03.-m2 > .item {
    width: 29.33%;
    margin-bottom: 10px;
  }
}
.grid03.-nm > .item {
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .grid03.-nm > .item {
    width: 33.33%;
    margin-bottom: 10px;
  }
}

.grid04 > .item {
  width: 48%;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .grid04 > .item {
    width: 23%;
    margin-bottom: 10px;
  }
}
.grid04.-m2 > .item {
  width: 46%;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .grid04.-m2 > .item {
    width: 21%;
    margin-bottom: 10px;
  }
}
.grid04.-nm > .item {
  width: 50%;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .grid04.-nm > .item {
    width: 25%;
    margin-bottom: 10px;
  }
}

.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: 46%;
}
@media (min-width: 600px) {
  .grid05.-m2 > .item {
    width: 29.33%;
  }
}
@media (min-width: 1024px) {
  .grid05.-m2 > .item {
    width: 16%;
  }
}
.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: 20px 40px 20px 20px;
  background: var(--main-color);
  border-radius: 40px;
  color: #fff;
  cursor: pointer;
  font-size: calc(18px + 6 * (100vw - 320px) / 1180);
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  position: relative;
}
@media (min-width: 1500px) {
  .acr-arrow > .trigger-ne,
.acr-arrow > .trigger-pr,
.is-style-acr-arrow > .trigger-ne,
.is-style-acr-arrow > .trigger-pr {
    font-size: 24px;
  }
}
.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-size: 24px;
  line-height: 1;
  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 > .trigger-ne span,
.acr-arrow > .trigger-pr span,
.is-style-acr-arrow > .trigger-ne span,
.is-style-acr-arrow > .trigger-pr span {
  font-size: calc(15px + 4 * (100vw - 320px) / 1180);
  line-height: 1.75;
}
@media (min-width: 1500px) {
  .acr-arrow > .trigger-ne span,
.acr-arrow > .trigger-pr span,
.is-style-acr-arrow > .trigger-ne span,
.is-style-acr-arrow > .trigger-pr span {
    font-size: 19px;
  }
}
.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 {
  border-bottom: 1px solid #9D9D9D;
  cursor: pointer;
  display: block;
  position: relative;
}
.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: 20px;
  line-height: 1;
  font-family: var(--icon);
  font-weight: normal;
  position: absolute;
  right: 0;
  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 {
  margin: 0;
  padding: 10px;
  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;
}

/*----- アーカイブ記事一覧 -----*/
.archive-entries {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
  padding: 20px 0 0;
  border-top: 3px solid var(--main-color);
}
@media (min-width: 1500px) {
  .archive-entries {
    margin-bottom: 50px;
  }
}
.archive-entries .cat-main {
  margin: 0 0 10px;
}
@media (min-width: 1024px) {
  .archive-entries-column {
    display: flex;
  }
}
.archive-entries-thumb {
  margin: 20px 0 0;
  vertical-align: middle;
}
@media (min-width: 1024px) {
  .archive-entries-thumb {
    margin: 0 0 0 40px;
    flex: 1;
  }
}
.archive-entries-thumb .pd {
  padding: 20px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  line-height: 1;
}
.archive-entries-thumb .-fit {
  width: 100%;
  height: 180px;
}
.archive-entries-txtarea {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .archive-entries-txtarea {
    width: 53%;
  }
}
.archive-entries-txtarea .date {
  margin: auto 0 0;
  display: block;
  font-size: 15px;
  line-height: 1.75;
}
.archive-entries-txtarea > .ttl {
  margin: 0;
  font-size: calc(16px + 2 * (100vw - 320px) / 1180);
  line-height: 1.5;
}
@media (min-width: 1500px) {
  .archive-entries-txtarea > .ttl {
    font-size: 18px;
  }
}
.archive-entries-txtarea > .excerpt {
  margin: 0;
}

.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 {
  padding: 15px;
  background: #fff;
  border-radius: 0;
  font-size: calc(16px + 2 * (100vw - 320px) / 1180);
  line-height: 1.5;
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  min-width: 280px;
}
@media (min-width: 1500px) {
  .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 {
    font-size: 18px;
  }
}

.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-border.-arrow > .btn::before, .btn-border.-arrow > .wp-block-button__link::before,
.is-style-btn-border.-arrow > .btn::before,
.is-style-btn-border.-arrow > .wp-block-button__link::before, .btn-main.-arrow > .btn::before, .btn-main.-arrow > .wp-block-button__link::before,
.is-style-btn-main.-arrow > .btn::before,
.is-style-btn-main.-arrow > .wp-block-button__link::before {
  margin-top: 1px;
  font-family: var(--icon);
  font-size: 24px;
  line-height: 1;
  font-weight: normal;
  position: absolute;
  right: 5px;
  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-left: calc(20px + 20 * (100vw - 320px) / 1180);
  padding-right: calc(20px + 20 * (100vw - 320px) / 1180);
  background: var(--main-color);
  color: #fff;
}
@media (min-width: 1500px) {
  .btn-main .btn,
.btn-main .wp-block-button__link,
.is-style-btn-main .btn,
.is-style-btn-main .wp-block-button__link {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@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.-arrow > .btn::before, .btn-main.-arrow > .wp-block-button__link::before,
.is-style-btn-main.-arrow > .btn::before,
.is-style-btn-main.-arrow > .wp-block-button__link::before {
  content: var(--icon-arrow-right);
}
.btn-main.-l > .btn, .btn-main.-l > .wp-block-button__link,
.is-style-btn-main.-l > .btn,
.is-style-btn-main.-l > .wp-block-button__link {
  padding: 20px;
  font-size: calc(18px + 6 * (100vw - 320px) / 1180);
  line-height: 1.75;
}
@media (min-width: 1500px) {
  .btn-main.-l > .btn, .btn-main.-l > .wp-block-button__link,
.is-style-btn-main.-l > .btn,
.is-style-btn-main.-l > .wp-block-button__link {
    font-size: 24px;
  }
}
.btn-main.-round > .btn, .btn-main.-round > .wp-block-button__link,
.is-style-btn-main.-round > .btn,
.is-style-btn-main.-round > .wp-block-button__link {
  border-radius: 50px;
}
.btn-main.-grey > .btn, .btn-main.-grey > .wp-block-button__link,
.is-style-btn-main.-grey > .btn,
.is-style-btn-main.-grey > .wp-block-button__link {
  background: #7595C7;
}
@media (any-hover: hover) {
  .btn-main.-grey > .btn:hover, .btn-main.-grey > .wp-block-button__link:hover,
.is-style-btn-main.-grey > .btn:hover,
.is-style-btn-main.-grey > .wp-block-button__link:hover {
    background: #99b1d6;
  }
}
@media (any-hover: none) {
  .btn-main.-grey > .btn:active, .btn-main.-grey > .wp-block-button__link:active,
.is-style-btn-main.-grey > .btn:active,
.is-style-btn-main.-grey > .wp-block-button__link:active {
    background: #99b1d6;
  }
}
.btn-main.-red > .btn, .btn-main.-red > .wp-block-button__link,
.is-style-btn-main.-red > .btn,
.is-style-btn-main.-red > .wp-block-button__link {
  background: #D44E4D;
}
@media (any-hover: hover) {
  .btn-main.-red > .btn:hover, .btn-main.-red > .wp-block-button__link:hover,
.is-style-btn-main.-red > .btn:hover,
.is-style-btn-main.-red > .wp-block-button__link:hover {
    background: #de7776;
  }
}
@media (any-hover: none) {
  .btn-main.-red > .btn:active, .btn-main.-red > .wp-block-button__link:active,
.is-style-btn-main.-red > .btn:active,
.is-style-btn-main.-red > .wp-block-button__link:active {
    background: #de7776;
  }
}
.btn-main.-sc > .btn, .btn-main.-sc > .wp-block-button__link,
.is-style-btn-main.-sc > .btn,
.is-style-btn-main.-sc > .wp-block-button__link {
  background: var(--sub-color);
}
@media (any-hover: hover) {
  .btn-main.-sc > .btn:hover, .btn-main.-sc > .wp-block-button__link:hover,
.is-style-btn-main.-sc > .btn:hover,
.is-style-btn-main.-sc > .wp-block-button__link:hover {
    background: var(--sub-color-hover);
  }
}
@media (any-hover: none) {
  .btn-main.-sc > .btn:active, .btn-main.-sc > .wp-block-button__link:active,
.is-style-btn-main.-sc > .btn:active,
.is-style-btn-main.-sc > .wp-block-button__link:active {
    background: var(--sub-color-hover);
  }
}
.btn-main.-download > .btn::before, .btn-main.-download > .wp-block-button__link::before,
.is-style-btn-main.-download > .btn::before,
.is-style-btn-main.-download > .wp-block-button__link::before {
  content: "";
  background: url(../images/icon-download-wh.svg) no-repeat left top/contain;
  width: 30px;
  height: 29px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
}

/*----- ボタンボーダー -----*/
.btn-border .btn,
.btn-border .wp-block-button__link,
.is-style-btn-border .btn,
.is-style-btn-border .wp-block-button__link {
  padding-left: calc(20px + 20 * (100vw - 320px) / 1180);
  padding-right: calc(20px + 20 * (100vw - 320px) / 1180);
  font-size: calc(18px + 6 * (100vw - 320px) / 1180);
  line-height: 1.75;
  border: 1px solid currentColor;
  color: #BF0E19;
}
@media (min-width: 1500px) {
  .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 (min-width: 1500px) {
  .btn-border .btn,
.btn-border .wp-block-button__link,
.is-style-btn-border .btn,
.is-style-btn-border .wp-block-button__link {
    font-size: 24px;
  }
}
@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: #FFE9EB;
  }
}
@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: #FFE9EB;
  }
}
.btn-border.-arrow > .btn::before, .btn-border.-arrow > .wp-block-button__link::before,
.is-style-btn-border.-arrow > .btn::before,
.is-style-btn-border.-arrow > .wp-block-button__link::before {
  content: var(--icon-arrow-right);
}
.btn-border.-round > .btn, .btn-border.-round > .wp-block-button__link,
.is-style-btn-border.-round > .btn,
.is-style-btn-border.-round > .wp-block-button__link {
  border-radius: 50px;
}
.btn-border.-wh > .btn,
.is-style-btn-border.-wh > .btn {
  background: transparent;
  color: #fff;
}
.btn-border.-download > .btn::before, .btn-border.-download > .wp-block-button__link::before,
.is-style-btn-border.-download > .btn::before,
.is-style-btn-border.-download > .wp-block-button__link::before {
  content: "";
  background: url(../images/icon-download.svg) no-repeat left top/contain;
  width: 30px;
  height: 29px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
}

/*----- ボタン 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) / 1180);
  padding-right: calc(30px + 10 * (100vw - 320px) / 1180);
  background: #fff;
  border: 1px solid currentColor;
  color: var(--main-color);
}
@media (min-width: 1500px) {
  .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: 1500px) {
  .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) / 1180);
  padding-right: calc(30px + 10 * (100vw - 320px) / 1180);
  background: #fff;
  border: 1px solid currentColor;
  color: var(--main-color);
}
@media (min-width: 1500px) {
  .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: 1500px) {
  .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) / 1180);
  padding-right: calc(30px + 10 * (100vw - 320px) / 1180);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  color: var(--text-color);
  text-align: left;
}
@media (min-width: 1500px) {
  .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: 1500px) {
  .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;
  }
}

/*----- 画像　2カラム -----*/
.column-02 {
  margin-top: calc(30px + 20 * (100vw - 320px) / 1180);
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
  display: flex;
  flex-direction: column;
  /*----- コンテンツ　2カラム -----*/
}
@media (min-width: 1500px) {
  .column-02 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1024px) {
  .column-02 {
    flex-direction: row;
    justify-content: space-between;
  }
}
.column-02.-sp-rev {
  flex-direction: column-reverse;
}
@media (min-width: 1024px) {
  .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: 1024px) {
  .column-02 > .item {
    width: 48%;
  }
}
@media (min-width: 1024px) {
  .column-02-img {
    margin: 0;
  }
  .column-02-img.-w20 {
    width: 20%;
  }
  .column-02-img.-w30 {
    width: 30%;
  }
  .column-02-img.-w35 {
    width: 35%;
  }
  .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;
}
@media (min-width: 1024px) {
  .column-02-txtarea {
    margin: 0;
    flex: 1;
  }
}
.column-02-txtarea > :last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .column-02.-left .column-02-img {
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .column-02.-left .column-02-txtarea {
    padding-left: 40px;
  }
}
.column-02.-left.-sp-rev .column-02-txtarea {
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .column-02.-left.-sp-rev .column-02-txtarea {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .column-02.-right .column-02-img {
    text-align: right;
  }
}
.column-02.-right .column-02-txtarea {
  margin: 0 0 20px;
}
@media (min-width: 1024px) {
  .column-02.-right .column-02-txtarea {
    margin-bottom: 0;
    padding-right: 40px;
  }
}
.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) / 1180);
  padding-bottom: calc(20px + 10 * (100vw - 320px) / 1180);
  padding-left: calc(15px + 5 * (100vw - 320px) / 1180);
  padding-right: calc(15px + 5 * (100vw - 320px) / 1180);
  background: #fff;
  border: 1px dashed #B0B0B1;
  border-top-color: transparent;
  max-width: 500px;
}
@media (min-width: 1500px) {
  .column-border-item {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 1500px) {
  .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);
}

/*----- 共通お問い合わせエリア -----*/
.contact-area {
  padding-top: calc(50px + 30 * (100vw - 320px) / 1180);
  padding-bottom: calc(50px + 30 * (100vw - 320px) / 1180);
  background: url(../images/contact-bg.jpg) no-repeat left top/cover;
  color: #fff;
  position: relative;
}
@media (min-width: 1500px) {
  .contact-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.contact-area::after {
  content: "";
  background: #fff;
  width: 1px;
  height: 50px;
  position: absolute;
  right: 50%;
  top: 0;
}
@media (min-width: 1024px) {
  .contact-area::after {
    height: 110px;
  }
}
.contact-area-ttl {
  margin-bottom: calc(40px + 50 * (100vw - 320px) / 1180);
  font-size: calc(48px + 51 * (100vw - 320px) / 1180);
  line-height: 1;
  font-weight: 400;
  font-family: var(--en);
  text-align: center;
}
@media (min-width: 1500px) {
  .contact-area-ttl {
    margin-bottom: 90px;
  }
}
@media (min-width: 1500px) {
  .contact-area-ttl {
    font-size: 99px;
  }
}
.contact-area-ttl span {
  font-size: calc(56px + 74 * (100vw - 320px) / 1180);
  line-height: 1;
}
@media (min-width: 1500px) {
  .contact-area-ttl span {
    font-size: 130px;
  }
}
.contact-area .btn-border {
  margin-bottom: 0;
  text-align: center;
}
.contact-area .btn-border .btn {
  margin: auto;
  display: block;
  text-align: center;
  width: 100%;
  max-width: 700px;
}
@media (any-hover: hover) {
  .contact-area .btn-border .btn:hover {
    background: var(--main-color-hover);
  }
}
@media (any-hover: none) {
  .contact-area .btn-border .btn:active {
    background: var(--main-color-hover);
  }
}

/*----- 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) / 1180);
  line-height: 1.4;
  font-weight: bold;
}
@media (min-width: 1500px) {
  .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) / 1180);
  line-height: 1.4;
  font-weight: bold;
}
@media (min-width: 1500px) {
  .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 {
  padding: 5px;
  background: #fff;
}
.entries-block-thumb {
  vertical-align: middle;
}
.entries-block-thumb .pd {
  padding: 20px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  line-height: 1;
}
.entries-block-thumb .-fit {
  width: 100%;
  height: 180px;
}
.entries-block-txtarea {
  padding: 0 10px;
}
.entries-block-txtarea > .meta {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
}
.entries-block-txtarea > .meta .date {
  margin: 0 0 0 auto;
  display: block;
  font-size: 15px;
  line-height: 1.75;
}
.entries-block-txtarea > .meta .cat-main {
  margin: 0;
}
.entries-block-txtarea > .ttl {
  margin: 0;
  font-size: calc(16px + 2 * (100vw - 320px) / 1180);
  line-height: 1.5;
}
@media (min-width: 1500px) {
  .entries-block-txtarea > .ttl {
    font-size: 18px;
  }
}
.entries-block-txtarea > .excerpt {
  margin: 0;
}

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

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

/*----- 上下共通マージン -----*/
.tb-margin,
.is-style-tb-margin {
  margin-top: calc(40px + 40 * (100vw - 320px) / 1180);
  margin-bottom: calc(40px + 40 * (100vw - 320px) / 1180);
}
@media (min-width: 1500px) {
  .tb-margin,
.is-style-tb-margin {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

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

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

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

/*----- 背景カラー -----*/
.bg-color,
.is-style-bg-color {
  padding-top: calc(40px + 30 * (100vw - 320px) / 1180);
  padding-bottom: calc(40px + 30 * (100vw - 320px) / 1180);
  background: var(--bg-color);
}
@media (min-width: 1500px) {
  .bg-color,
.is-style-bg-color {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.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) / 1180);
  padding-bottom: calc(40px + 30 * (100vw - 320px) / 1180);
  background: var(--main-color);
  color: #fff;
}
@media (min-width: 1500px) {
  .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) / 1180);
  background: #fff;
  border-radius: 20px;
}
@media (min-width: 1500px) {
  .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) / 1180);
  padding-bottom: calc(40px + 30 * (100vw - 320px) / 1180);
  background: var(--bg-color);
}
@media (min-width: 1500px) {
  .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(40px + 40 * (100vw - 320px) / 1180);
  margin-bottom: calc(40px + 40 * (100vw - 320px) / 1180);
}
@media (min-width: 1500px) {
  .img-margin,
.wp-block-image.is-style-img-margin {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

/*----- スマホ　横スクロール表示 -----*/
.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) / 1180);
  font-size: calc(16px + 2 * (100vw - 320px) / 1180);
  line-height: 1.75;
  font-weight: bold;
  display: flex;
  justify-content: center;
}
@media (min-width: 1500px) {
  .tab-group {
    margin-bottom: 50px;
  }
}
@media (min-width: 1500px) {
  .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) / 1180);
  line-height: 1.75;
}
@media (min-width: 1500px) {
  table, .wp-block-table table {
    font-size: 16px;
  }
}
table thead, .wp-block-table table thead {
  background: #655E5C;
  border-bottom: 1px solid #918B8A;
  color: #fff;
}
table thead th, .wp-block-table table thead th {
  border: 1px solid #918B8A;
  text-align: center;
}
table th, .wp-block-table table th, table td, .wp-block-table table td {
  padding: 1em 0.5em;
  text-align: left;
  vertical-align: middle;
}
@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 :not(thead) > tr > :first-child, .wp-block-table.is-style-table-main table :not(thead) > tr > :first-child {
  background: var(--bg-color);
  background-clip: padding-box;
  font-weight: bold;
  width: 32%;
}
@media (min-width: 600px) {
  table.-main :not(thead) > tr > :first-child, .wp-block-table.is-style-table-main table :not(thead) > tr > :first-child {
    width: 25%;
  }
}

table.-border, .wp-block-table.is-style-table-border table {
  border-top: 1px solid #918B8A;
}
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;
  border-bottom: 1px solid #918B8A;
}

table.-stripes thead, .wp-block-table.is-style-stripes table thead {
  border-bottom: 1px solid #918B8A;
  color: #fff;
}
table.-stripes thead th, .wp-block-table.is-style-stripes table thead th {
  background: #655E5C !important;
  border: 1px solid #918B8A;
  text-align: center;
}
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: #FBF0EC !important;
}
table.-stripes tr > :last-child, .wp-block-table.is-style-stripes table tr > :last-child {
  border-right: none;
}
table.-stripes tr td, .wp-block-table.is-style-stripes table tr td {
  border-right: 1px solid #918B8A;
}

.wp-block-table .wp-element-caption {
  font-size: 14px;
  line-height: 1.75;
  text-align: right;
}
.wp-block-table.is-style-table-main.-nbg table :not(thead) > tr > :first-child {
  background: #fff;
}
/*----- 見出しメイン -----*/
.ttl-main,
.is-style-ttl-main {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
  padding: 0 0 0 45px;
  background: url(../images/ttl-ribbon.svg) no-repeat left center/41px 29px;
  font-size: calc(22px + 16 * (100vw - 320px) / 1180);
  line-height: 1.4;
}
@media (min-width: 1500px) {
  .ttl-main,
.is-style-ttl-main {
    margin-bottom: 50px;
  }
}
@media (min-width: 1500px) {
  .ttl-main,
.is-style-ttl-main {
    font-size: 38px;
  }
}
@media (min-width: 1024px) {
  .ttl-main,
.is-style-ttl-main {
    padding: 0 0 0 67px;
    background-size: 61px 44px;
  }
}

/*----- 見出しサブ -----*/
.ttl-sub,
.is-style-ttl-sub {
  margin: 0 0 20px;
  font-size: calc(20px + 8 * (100vw - 320px) / 1180);
  line-height: 1.4;
}
@media (min-width: 1500px) {
  .ttl-sub,
.is-style-ttl-sub {
    font-size: 28px;
  }
}

/*----- タイトル　英語タイトル -----*/
.ttl-en {
  margin-bottom: calc(20px + 10 * (100vw - 320px) / 1180);
  display: flex;
  align-items: flex-end;
  font-weight: bold;
  font-family: var(--en);
  position: relative;
}
@media (min-width: 1500px) {
  .ttl-en {
    margin-bottom: 30px;
  }
}
.ttl-en > .ttl {
  margin: 0 0 15px auto;
  color: #4F4644;
  font-size: calc(15px + 4 * (100vw - 320px) / 1180);
  line-height: 1.75;
}
@media (min-width: 1500px) {
  .ttl-en > .ttl {
    font-size: 19px;
  }
}
.ttl-en > .en {
  margin: 0;
  color: #3B3B3B;
  font-size: calc(48px + 37 * (100vw - 320px) / 1180);
  line-height: 1;
  font-weight: 400;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
}
@media (min-width: 1500px) {
  .ttl-en > .en {
    font-size: 85px;
  }
}
.ttl-en > .en.-bg {
  background: #fff;
}
.ttl-en > .en.-l {
  font-size: calc(56px + 54 * (100vw - 320px) / 1180);
  line-height: 1;
}
@media (min-width: 1500px) {
  .ttl-en > .en.-l {
    font-size: 110px;
  }
}
.ttl-en > .en.-l .-blue {
  font-size: calc(68px + 77 * (100vw - 320px) / 1180);
  line-height: 1;
}
@media (min-width: 1500px) {
  .ttl-en > .en.-l .-blue {
    font-size: 145px;
  }
}
.ttl-en > .en.-l .-red {
  font-size: calc(68px + 77 * (100vw - 320px) / 1180);
  line-height: 1;
}
@media (min-width: 1500px) {
  .ttl-en > .en.-l .-red {
    font-size: 145px;
  }
}
.ttl-en > .en .-blue {
  font-size: calc(56px + 42 * (100vw - 320px) / 1180);
  line-height: 1;
  color: var(--accent-color1);
}
@media (min-width: 1500px) {
  .ttl-en > .en .-blue {
    font-size: 98px;
  }
}
.ttl-en > .en .-red {
  font-size: calc(56px + 42 * (100vw - 320px) / 1180);
  line-height: 1;
  color: var(--sub-color);
}
@media (min-width: 1500px) {
  .ttl-en > .en .-red {
    font-size: 98px;
  }
}
.ttl-en.-left::before {
  content: "";
  background: #00237D;
  height: 1px;
  position: absolute;
  bottom: 10px;
  width: calc(50vw - 50%);
  left: calc(50% - 50vw);
}
@media (min-width: 1024px) {
  .ttl-en.-left::before {
    bottom: 15px;
  }
}
.ttl-en.-right::after {
  content: "";
  background: #00237D;
  width: 100vw;
  height: 1px;
  position: absolute;
  bottom: 10px;
}
@media (min-width: 1024px) {
  .ttl-en.-right::after {
    bottom: 15px;
  }
}
.ttl-en.-both {
  display: block;
}
@media (min-width: 1024px) {
  .ttl-en.-both {
    display: flex;
    align-items: flex-end;
  }
}
.ttl-en.-both::before {
  content: "";
  background: #00237D;
  height: 1px;
  position: absolute;
  top: 10px;
  width: calc(50vw - 50%);
  left: calc(50% - 50vw);
}
.ttl-en.-both::after {
  content: "";
  background: #00237D;
  width: 100vw;
  height: 1px;
  position: absolute;
  bottom: 0;
}
@media (min-width: 1024px) {
  .ttl-en.-both::after {
    bottom: 15px;
  }
}

/*----- タイトル　バルーン付 -----*/
.ttl-balloon {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
  font-weight: bold;
}
@media (min-width: 1500px) {
  .ttl-balloon {
    margin-bottom: 50px;
  }
}
.ttl-balloon > .ttl {
  margin: 0;
  color: var(--main-color);
  font-size: calc(24px + 26 * (100vw - 320px) / 1180);
  line-height: 1.3;
}
@media (min-width: 1500px) {
  .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) / 1180);
  line-height: 1;
  text-transform: capitalize;
  position: relative;
}
@media (min-width: 1500px) {
  .ttl-balloon > .balloon {
    font-size: 18px;
  }
}
.ttl-balloon > .balloon::before {
  content: "";
  background: var(--accent-color1);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          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;
  color: #334F97;
  font-size: calc(24px + 18 * (100vw - 320px) / 1180);
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 1500px) {
  .txt-llead,
.is-style-txt-llead {
    font-size: 42px;
  }
}
.txt-llead > .l,
.is-style-txt-llead > .l {
  font-size: calc(48px + 15 * (100vw - 320px) / 1180);
  line-height: 1;
}
@media (min-width: 1500px) {
  .txt-llead > .l,
.is-style-txt-llead > .l {
    font-size: 63px;
  }
}

.txt-lead,
.is-style-txt-lead {
  margin-bottom: 10px;
  font-size: calc(20px + 12 * (100vw - 320px) / 1180);
  line-height: 1.4;
  font-weight: bold;
}
@media (min-width: 1500px) {
  .txt-lead,
.is-style-txt-lead {
    font-size: 32px;
  }
}
.txt-lead .-s,
.is-style-txt-lead .-s {
  font-size: calc(18px + 6 * (100vw - 320px) / 1180);
  line-height: 1.75;
}
@media (min-width: 1500px) {
  .txt-lead .-s,
.is-style-txt-lead .-s {
    font-size: 24px;
  }
}

.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 #918B8A;
  font-size: calc(18px + 6 * (100vw - 320px) / 1180);
  line-height: 1.4;
  position: relative;
  text-align: left;
}
@media (min-width: 1500px) {
  .txt-ul,
.is-style-txt-ul {
    font-size: 24px;
  }
}

/*----- 左線 -----*/
.txt-ll,
.is-style-txt-ll {
  padding-left: 30px;
  font-size: calc(18px + 6 * (100vw - 320px) / 1180);
  line-height: 1.4;
  text-align: left;
  position: relative;
}
@media (min-width: 1500px) {
  .txt-ll,
.is-style-txt-ll {
    font-size: 24px;
  }
}
.txt-ll::before,
.is-style-txt-ll::before {
  content: "";
  background: var(--accent-color1);
  width: 24px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.txt-ll.-sc,
.is-style-txt-ll.-sc {
  font-size: calc(20px + 8 * (100vw - 320px) / 1180);
  line-height: 1.4;
}
@media (min-width: 1500px) {
  .txt-ll.-sc,
.is-style-txt-ll.-sc {
    font-size: 28px;
  }
}
.txt-ll.-sc::before,
.is-style-txt-ll.-sc::before {
  content: "";
  background: #BF0E19;
}

.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-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
  padding: calc(15px + 5 * (100vw - 320px) / 1180);
  border-radius: 30px;
  font-size: calc(16px + 8 * (100vw - 320px) / 1180);
  line-height: 1.4;
  font-weight: bold;
}
@media (min-width: 1500px) {
  .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-bottom: 50px;
  }
}
@media (min-width: 1500px) {
  .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 {
    padding: 20px;
  }
}
@media (min-width: 1500px) {
  .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 {
    font-size: 24px;
  }
}

/*----- 背景グレー -----*/
.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);
}

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

/*----- 背景アクセントカラー -----*/
.txt-abar,
.is-style-txt-abar {
  background: var(--accent-color1);
}

.txt-strs,
.is-style-txt-strs, .txt-strm,
.is-style-txt-strm {
  margin-bottom: 20px;
  font-size: calc(20px + 6 * (100vw - 320px) / 1180);
  line-height: 1.4;
  font-weight: bold;
}
@media (min-width: 1500px) {
  .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) / 1180);
  line-height: 1.5;
}
@media (min-width: 1500px) {
  .txt-f24,
.is-style-txt-f24 {
    font-size: 24px;
  }
}

.txt-f20,
.is-style-txt-f20 {
  font-size: calc(16px + 4 * (100vw - 320px) / 1180);
  line-height: 1.5;
}
@media (min-width: 1500px) {
  .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) / 1180);
  padding: 0 10px;
  display: inline-block;
  font-size: calc(18px + 10 * (100vw - 320px) / 1180);
  line-height: 1.3;
  position: relative;
}
@media (min-width: 1500px) {
  .txt-attn,
.is-style-txt-attn {
    margin-bottom: 40px;
  }
}
@media (min-width: 1500px) {
  .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;
}

/*----- パンクズ -----*/
.topic-path {
  margin: 0;
  padding: 10px 20px;
  background: var(--main-color);
  color: #fff;
  font-size: 14px;
  line-height: 1.75;
  text-align: right;
}
.topic-path a {
  color: #BDB9B8;
}
@media (any-hover: hover) {
  .topic-path a:hover {
    color: #fff;
  }
}
@media (any-hover: none) {
  .topic-path a:active {
    color: #fff;
  }
}

/*----- 黒丸リスト -----*/
.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: #666;
  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;
  border-top: 1px solid #918B8A;
  font-size: calc(16px + 5 * (100vw - 320px) / 1180);
  line-height: 1.5;
}
@media (min-width: 1500px) {
  .list-border,
.is-style-list-border {
    font-size: 21px;
  }
}
.list-border > li,
.is-style-list-border > li {
  padding: 15px 0;
  border-bottom: 1px solid #918B8A;
}
.list-border.-s,
.is-style-list-border.-s {
  font-size: calc(15px + 1 * (100vw - 320px) / 1180);
  line-height: 1.75;
}
@media (min-width: 1500px) {
  .list-border.-s,
.is-style-list-border.-s {
    font-size: 16px;
  }
}
.list-border a,
.is-style-list-border a {
  color: var(--accent-color1);
}

/*----- 数字リスト -----*/
.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;
}

.list-stripe {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
  border-top: 1px solid #918B8A;
  font-size: calc(16px + 5 * (100vw - 320px) / 1180);
  line-height: 1.75;
}
@media (min-width: 1500px) {
  .list-stripe {
    margin-bottom: 50px;
  }
}
@media (min-width: 1500px) {
  .list-stripe {
    font-size: 21px;
  }
}
.list-stripe > li {
  padding: 15px 15px 15px 40px;
  border-bottom: 1px solid #918B8A;
  position: relative;
}
.list-stripe > li:nth-child(odd) {
  background: #F3F9FD;
}
.list-stripe > li::before {
  margin-top: 1px;
  content: var(--icon-arrow-right);
  font-family: var(--icon);
  font-size: 24px;
  line-height: 1;
  font-weight: normal;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.list-stripe > li a {
  display: block;
}

.entries-ul li {
  padding: 15px 0;
  border-bottom: 1px solid #70706F;
}
.entries-ul li a {
  display: block;
  position: relative;
}
.entries-ul li a::before {
  margin-top: 1px;
  font-family: var(--icon);
  font-size: 24px;
  line-height: 1;
  font-weight: normal;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  content: var(--icon-arrow-right);
}

/*
===== 固定ページ 共通 page.php ====================================
*/
.page {
  /*
     h2, .h2 {
         @include font-vw(18, 24, 1.4);
     }
     h3, .h3 {
         @include font-vw(18, 20, 1.5);
     }
     h4, .h4 {
         @include font-vw(16, 18);
     }
  */
}
.page-common-ttl {
  background: url(../images/page-ttl-bg.jpg) no-repeat left top/cover;
  display: flex;
  align-items: center;
  height: 120px;
}
@media (min-width: 600px) {
  .page-common-ttl {
    height: 250px;
  }
}
@media (min-width: 1024px) {
  .page-common-ttl {
    height: 400px;
  }
}
.page-common-ttl .ttl {
  margin: 0 20px 0 20px;
}
@media (min-width: 1024px) {
  .page-common-ttl .ttl {
    margin: 0 auto;
    padding: 0 100px;
    max-width: 1650px;
    width: 100%;
  }
}
.page .bg-corner {
  padding-top: 40px;
  position: relative;
}
.page .bg-corner::before {
  content: "";
  background: #F3F9FD;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  width: 35%;
  position: absolute;
  left: 0;
  top: 0;
  height: calc(200px + 380 * (100vw - 320px) / 1180);
}
@media (min-width: 1500px) {
  .page .bg-corner::before {
    height: 580px;
  }
}
.page .cat-list {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
  display: flex;
  flex-wrap: wrap;
  font-size: calc(14px + 2 * (100vw - 320px) / 1180);
  line-height: 1.75;
}
@media (min-width: 1500px) {
  .page .cat-list {
    margin-bottom: 50px;
  }
}
@media (min-width: 1500px) {
  .page .cat-list {
    font-size: 16px;
  }
}
.page .cat-list > li {
  margin: 0 10px 10px 0;
}
.page .cat-list > li a {
  padding: 5px 10px;
  background: #fff;
  border: 1px solid var(--main-color);
  border-radius: 30px;
  color: var(--main-color);
  display: block;
}
@media (any-hover: hover) {
  .page .cat-list > li a:hover {
    background: var(--main-color-hover);
    color: #fff;
  }
}
@media (any-hover: none) {
  .page .cat-list > li a:active {
    background: var(--main-color-hover);
    color: #fff;
  }
}
@media (min-width: 1024px) {
  .page .cat-list > li a {
    padding: 5px 20px;
  }
}
.page .cat-list > li .current {
  background: var(--main-color);
  color: #fff;
}
.page .archive-column {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
}
@media (min-width: 1500px) {
  .page .archive-column {
    margin-bottom: 50px;
  }
}

/*
===== アーカイブ 共通 archive.php ====================================
*/
.archive .wp-pagenavi {
  margin-top: calc(30px + 20 * (100vw - 320px) / 1180);
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
@media (min-width: 1500px) {
  .archive .wp-pagenavi {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.archive .wp-pagenavi a {
  margin: 0 5px 10px;
  padding: 0;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  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(--main-color-hover);
    color: #fff;
  }
}
@media (any-hover: none) {
  .archive .wp-pagenavi a:active {
    background: var(--main-color-hover);
    color: #fff;
  }
}
.archive .wp-pagenavi span {
  margin: 0 5px 10px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  vertical-align: middle;
}
.archive .wp-pagenavi span.current {
  border: 1px solid transparent;
  background: var(--main-color);
  color: #fff;
  font-weight: bold;
}
.archive .wp-pagenavi .pages,
.archive .wp-pagenavi .first,
.archive .wp-pagenavi .last,
.archive .wp-pagenavi .extend {
  display: none;
}

/*
===== 投稿 共通 single.php ====================================
*/
.single {
  /*
     h2, .h2 {
         @include font-vw(18, 24, 1.4);
     }
     h3, .h3 {
         @include font-vw(18, 20, 1.5);
     }
     h4, .h4 {
         @include font-vw(16, 18, 1.5);
     }
  */
}
.single .inner {
  max-width: 1100px;
}
.single-header {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
  text-align: left;
}
@media (min-width: 1500px) {
  .single-header {
    margin-bottom: 50px;
  }
}
.single-header-ttl {
  font-size: calc(20px + 14 * (100vw - 320px) / 1180);
  line-height: 1.4;
  font-weight: bold;
  text-align: left;
  position: relative;
}
@media (min-width: 1500px) {
  .single-header-ttl {
    font-size: 34px;
  }
}
.single-header-meta {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  position: relative;
}
.single-header-meta::before {
  content: "";
  background: url(../images/ttl-ribbon.svg) no-repeat left center/contain;
  width: 61px;
  height: 44px;
  position: absolute;
  left: -65px;
}
.single-header .date {
  margin: 0 20px 0 0;
  display: block;
  font-size: 14px;
  line-height: 1.75;
}
.single-content a {
  color: var(--accent-color1);
}
@media (any-hover: hover) {
  .single-content a:hover {
    color: var(--accent-color1);
    text-decoration: underline;
  }
}
@media (any-hover: none) {
  .single-content a:active {
    color: var(--accent-color1);
    text-decoration: underline;
  }
}
.single-content .is-style-ttl-main {
  margin: 40px 0 20px;
}
.single-footer {
  margin-top: calc(50px + 30 * (100vw - 320px) / 1180);
  margin-bottom: calc(50px + 30 * (100vw - 320px) / 1180);
}
@media (min-width: 1500px) {
  .single-footer {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.single-footer-nav {
  margin: 20px auto;
  display: flex;
  justify-content: center;
}
.single-footer-nav > .item {
  padding: 0 10px;
  text-align: center;
}
@media (min-width: 600px) {
  .single-footer-nav > .item {
    padding: 0 20px;
  }
}
@media (min-width: 1024px) {
  .single-footer-nav > .item {
    padding: 0 40px;
  }
}
.single-footer-nav > .prev {
  border-right: 1px solid #231815;
}
.single-footer-nav > .next {
  border-left: 1px solid #231815;
}
.single-footer-nav .material-icons {
  color: var(--accent-color1);
}
.single .related-entry-list .item {
  padding: 20px;
  background: var(--bg-color);
}
@media (min-width: 1024px) {
  .single .related-entry-list .item {
    display: flex;
  }
}
.single .related-entry-list .date {
  margin: 0;
  padding: 0 0 0 30px;
  position: relative;
  width: 150px;
}
.single .related-entry-list .date::before {
  content: var(--icon-arrow-right);
  color: var(--accent-color1);
  font-size: 24px;
  line-height: 1;
  font-family: var(--icon);
  font-weight: normal;
  position: absolute;
  left: 0;
  top: 3px;
}
.single .related-entry-list .ttl {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}

/*
===== 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;
}

.top-page-service {
  padding: 40px 0 0;
  position: relative;
}
@media (min-width: 1024px) {
  .top-page-service {
    padding: 80px 0;
  }
}
.top-page-service::before {
  content: "";
  background: var(--bg-color);
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  width: 50%;
  height: 250px;
  position: absolute;
  left: 0;
  top: 0;
}
@media (min-width: 1024px) {
  .top-page-service::before {
    -webkit-clip-path: polygon(0 0, 100% 0, 40% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 40% 100%, 0 100%);
    width: 50%;
    height: 100%;
  }
}
@media (min-width: 1024px) {
  .top-page-service .service-column {
    display: flex;
    position: relative;
  }
}
.top-page-service .service-column-txtarea {
  position: relative;
}
@media (min-width: 1024px) {
  .top-page-service .service-column-txtarea {
    width: 48%;
    font-size: calc(16px + 2 * (100vw - 320px) / 1180);
    line-height: 1.75;
  }
}
@media (min-width: 1024px) and (min-width: 1500px) {
  .top-page-service .service-column-txtarea {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .top-page-service .service-column-links {
    margin-left: 60px;
    flex: 1;
  }
}
.top-page-service .service-column-links .link-list .btn {
  display: block;
}
.top-page-service .service-column-links .link-list li {
  margin: 0 0 15px;
}

.top-page-topics {
  margin-bottom: 0;
  padding-top: calc(40px + 40 * (100vw - 320px) / 1180);
  padding-bottom: calc(40px + 40 * (100vw - 320px) / 1180);
  background: var(--bg-color);
  position: relative;
}
@media (min-width: 1500px) {
  .top-page-topics {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .top-page-topics .topics-column {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .top-page-topics .topics-column-ttl {
    width: 250px;
  }
}
@media (min-width: 1024px) {
  .top-page-topics .topics-column-entries {
    margin-left: 50px;
    flex: 1;
  }
}
@media (min-width: 1024px) {
  .top-page-topics .ttl-en .ttl {
    position: absolute;
    bottom: -3em;
    left: 1em;
  }
}
.top-page-topics .seminar-entries {
  margin-top: calc(30px + 20 * (100vw - 320px) / 1180);
  padding: 5px 15px;
  background: #fff;
  border-top: 5px solid #00237D;
}
@media (min-width: 1500px) {
  .top-page-topics .seminar-entries {
    margin-top: 50px;
  }
}
.top-page-topics .seminar-entries-ttl {
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid #70706F;
}

.top-page-mission {
  margin-top: 0;
  padding: 20px;
  padding-top: calc(50px + 30 * (100vw - 320px) / 1180);
  padding-bottom: calc(50px + 30 * (100vw - 320px) / 1180);
  background: url(../images/top/mission-bg.jpg) no-repeat left top/cover;
  color: #fff;
  position: relative;
}
@media (min-width: 1500px) {
  .top-page-mission {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.top-page-mission::after {
  content: "";
  background: #fff;
  width: 1px;
  height: 50px;
  position: absolute;
  right: 50%;
  top: 0;
}
@media (min-width: 1024px) {
  .top-page-mission::after {
    height: 110px;
  }
}
.top-page-mission .mission-ttl {
  margin-bottom: calc(40px + 40 * (100vw - 320px) / 1180);
  font-size: calc(48px + 51 * (100vw - 320px) / 1180);
  line-height: 1;
  font-weight: 400;
  font-family: var(--en);
  text-align: center;
}
@media (min-width: 1500px) {
  .top-page-mission .mission-ttl {
    margin-bottom: 80px;
  }
}
@media (min-width: 1500px) {
  .top-page-mission .mission-ttl {
    font-size: 99px;
  }
}
.top-page-mission .mission-ttl span {
  font-size: calc(56px + 74 * (100vw - 320px) / 1180);
  line-height: 1;
}
@media (min-width: 1500px) {
  .top-page-mission .mission-ttl span {
    font-size: 130px;
  }
}
.top-page-mission .txt {
  text-align: center;
  font-size: calc(18px + 16 * (100vw - 320px) / 1180);
  line-height: 1.5;
}
@media (min-width: 1500px) {
  .top-page-mission .txt {
    font-size: 34px;
  }
}
.top-page-mission .btn-border {
  margin-bottom: 0;
  text-align: center;
}
.top-page-mission .btn-border .btn {
  min-width: 280px;
}
@media (any-hover: hover) {
  .top-page-mission .btn-border .btn:hover {
    background: var(--main-color-hover);
  }
}
@media (any-hover: none) {
  .top-page-mission .btn-border .btn:active {
    background: var(--main-color-hover);
  }
}

@media (min-width: 1024px) {
  .top-page-tech .tech-column {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .top-page-tech .tech-column-ttl {
    width: 380px;
  }
}
.top-page-tech .tech-column-ttl .ttl {
  padding: 10px;
  background: var(--main-color);
  border-radius: 30px;
  color: #fff;
  font-size: calc(20px + 4 * (100vw - 320px) / 1180);
  line-height: 1.75;
  text-align: center;
}
@media (min-width: 1500px) {
  .top-page-tech .tech-column-ttl .ttl {
    font-size: 24px;
  }
}
.top-page-tech .tech-column-entries {
  border-top: 1px solid #70706F;
}
@media (min-width: 1024px) {
  .top-page-tech .tech-column-entries {
    margin-left: 50px;
    flex: 1;
  }
}

.top-page-company .company-column {
  margin-bottom: calc(40px + 30 * (100vw - 320px) / 1180);
}
@media (min-width: 1500px) {
  .top-page-company .company-column {
    margin-bottom: 70px;
  }
}
@media (min-width: 1024px) {
  .top-page-company .company-column {
    display: flex;
    position: relative;
  }
}
@media (min-width: 1024px) {
  .top-page-company .company-column-txtarea {
    width: 50%;
  }
}
.top-page-company .company-column-txtarea .ttl-en {
  margin: 0;
}
.top-page-company .company-column-txtarea .txtarea {
  margin: -10px 0 0 -20px;
  padding: 40px 20px 20px;
  background: var(--bg-color);
  width: calc(100% + 40px);
}
@media (min-width: 1024px) {
  .top-page-company .company-column-txtarea .txtarea {
    margin: -15px 0 0 calc(50% - 50vw);
    padding: 80px 30px 20px calc(50vw - 50%);
    width: auto;
  }
}
.top-page-company .company-column-txtarea .anchor-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: calc(15px + 4 * (100vw - 320px) / 1180);
  line-height: 1.75;
}
@media (min-width: 1500px) {
  .top-page-company .company-column-txtarea .anchor-list {
    font-size: 19px;
  }
}
.top-page-company .company-column-txtarea .anchor-list li {
  margin: 0 0 15px;
  width: 48%;
}
.top-page-company .company-column-txtarea .anchor-list li a {
  padding: 10px 15px 10px 10px;
  display: block;
  background: #fff;
  border: 1px solid #3B3B3B;
  position: relative;
  text-align: center;
}
.top-page-company .company-column-txtarea .anchor-list li a::before {
  margin-top: 1px;
  font-family: var(--icon);
  font-size: 24px;
  line-height: 1;
  font-weight: normal;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: var(--icon-arrow-right);
}
@media (any-hover: hover) {
  .top-page-company .company-column-txtarea .anchor-list li a:hover {
    background: #eee;
  }
}
@media (any-hover: none) {
  .top-page-company .company-column-txtarea .anchor-list li a:active {
    background: #eee;
  }
}
.top-page-company .company-column-txtarea .address {
  margin-left: -20px;
  padding: 20px;
  background: var(--main-color);
  color: #fff;
  width: calc(100% + 40px);
}
@media (min-width: 1024px) {
  .top-page-company .company-column-txtarea .address {
    margin-left: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    width: auto;
  }
}
@media (min-width: 1024px) {
  .top-page-company .company-column-img {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50vw;
    height: 100%;
  }
}
.top-page-company .company-column-img figure,
.top-page-company .company-column-img img {
  margin: 0;
  width: 100%;
  height: 100%;
}
.top-page-company .company-partner {
  text-align: center;
}
.top-page-company .company-partner-ttl {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
  padding: 10px;
  background: var(--accent-color1);
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  font-size: calc(18px + 6 * (100vw - 320px) / 1180);
  line-height: 1.75;
  text-align: center;
  max-width: 370px;
  width: 100%;
}
@media (min-width: 1500px) {
  .top-page-company .company-partner-ttl {
    margin-bottom: 50px;
  }
}
@media (min-width: 1500px) {
  .top-page-company .company-partner-ttl {
    font-size: 24px;
  }
}

.top-page-recruit {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .top-page-recruit .recruit-column {
    display: flex;
    position: relative;
  }
}
@media (min-width: 1024px) {
  .top-page-recruit .recruit-column-txtarea {
    margin-left: 50%;
  }
}
.top-page-recruit .recruit-column-txtarea .ttl-en {
  margin: 0 0 0 20px;
}
.top-page-recruit .recruit-column-txtarea .txtarea {
  margin: -10px 0 0 -20px;
  padding: 40px 20px 20px;
  background: var(--bg-color);
  position: relative;
  z-index: 2;
  width: calc(100% + 40px);
}
@media (min-width: 1024px) {
  .top-page-recruit .recruit-column-txtarea .txtarea {
    margin: -15px calc(50% - 50vw) 0 0;
    padding: 80px calc(50vw - 50%) 20px 30px;
    width: auto;
  }
}
.top-page-recruit .recruit-column-txtarea .anchor-list {
  font-size: calc(15px + 4 * (100vw - 320px) / 1180);
  line-height: 1.75;
}
@media (min-width: 1500px) {
  .top-page-recruit .recruit-column-txtarea .anchor-list {
    font-size: 19px;
  }
}
.top-page-recruit .recruit-column-txtarea .anchor-list li {
  margin: 0 0 15px;
}
.top-page-recruit .recruit-column-txtarea .anchor-list li a {
  padding: 10px 15px 10px 10px;
  display: block;
  background: #fff;
  border: 1px solid #3B3B3B;
  position: relative;
  text-align: center;
}
.top-page-recruit .recruit-column-txtarea .anchor-list li a::before {
  margin-top: 1px;
  font-family: var(--icon);
  font-size: 24px;
  line-height: 1;
  font-weight: normal;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: var(--icon-arrow-right);
}
@media (any-hover: hover) {
  .top-page-recruit .recruit-column-txtarea .anchor-list li a:hover {
    background: #eee;
  }
}
@media (any-hover: none) {
  .top-page-recruit .recruit-column-txtarea .anchor-list li a:active {
    background: #eee;
  }
}
@media (min-width: 1024px) {
  .top-page-recruit .recruit-column-img {
    position: absolute;
    right: 50%;
    bottom: 0;
    width: 50vw;
    height: 100%;
  }
}
.top-page-recruit .recruit-column-img figure,
.top-page-recruit .recruit-column-img img {
  margin: 0;
  width: 100%;
  height: 100%;
}

/*
===== 会社情報 ==========================================
*/
.page-company-greeting {
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .page-company-greeting .greeting-column {
    display: flex;
    min-height: 782px;
  }
}
.page-company-greeting .greeting-column-txtarea {
  flex: 1;
  font-size: calc(16px + 5 * (100vw - 320px) / 1180);
  line-height: 1.75;
}
@media (min-width: 1500px) {
  .page-company-greeting .greeting-column-txtarea {
    font-size: 21px;
  }
}
@media (min-width: 1024px) {
  .page-company-greeting .greeting-column-txtarea {
    padding: 0 450px 0 0;
    position: relative;
    z-index: 3;
  }
}
.page-company-greeting .greeting-column-img {
  text-align: center;
}
@media (min-width: 1024px) {
  .page-company-greeting .greeting-column-img {
    position: absolute;
    top: 0;
    right: -240px;
    width: 786px;
    z-index: -1;
  }
}
.page-company-message .message-column {
  margin-top: calc(40px + 40 * (100vw - 320px) / 1180);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 1500px) {
  .page-company-message .message-column {
    margin-top: 80px;
  }
}
.page-company-message .message-column .link-btn {
  width: 48%;
  cursor: pointer;
  font-size: calc(20px + 4 * (100vw - 320px) / 1180);
  line-height: 1.75;
  font-weight: bold;
}
@media (min-width: 1500px) {
  .page-company-message .message-column .link-btn {
    font-size: 24px;
  }
}
.page-company-message .message-column .link-btn a,
.page-company-message .message-column .link-btn span {
  padding: 20px;
  background: var(--main-color);
  border-radius: 40px;
  color: #fff;
  display: block;
  text-align: center;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .page-company-message .message-column .link-btn a:hover,
.page-company-message .message-column .link-btn span:hover {
    background: var(--main-color-hover);
  }
}
@media (any-hover: none) {
  .page-company-message .message-column .link-btn a:active,
.page-company-message .message-column .link-btn span:active {
    background: var(--main-color-hover);
  }
}
.page-company-message .message-column .content {
  margin-top: calc(20px + 40 * (100vw - 320px) / 1180);
  padding: calc(20px + 20 * (100vw - 320px) / 1180);
  background: #fff;
  font-size: calc(16px + 5 * (100vw - 320px) / 1180);
  line-height: 1.75;
  width: 100%;
}
@media (min-width: 1500px) {
  .page-company-message .message-column .content {
    margin-top: 60px;
  }
}
@media (min-width: 1500px) {
  .page-company-message .message-column .content {
    padding: 40px;
  }
}
@media (min-width: 1500px) {
  .page-company-message .message-column .content {
    font-size: 21px;
  }
}
.page-company-message .message-column .content > :last-child {
  margin-bottom: 0;
}
.page-company-message .message-column .content .is-style-list-disc-mc {
  font-size: calc(18px + 6 * (100vw - 320px) / 1180);
  line-height: 1.75;
  font-weight: bold;
}
@media (min-width: 1500px) {
  .page-company-message .message-column .content .is-style-list-disc-mc {
    font-size: 24px;
  }
}

.page-company-outline .venture-column {
  padding: calc(20px + 20 * (100vw - 320px) / 1180);
  border: 8px solid var(--main-color);
}
@media (min-width: 1500px) {
  .page-company-outline .venture-column {
    padding: 40px;
  }
}
.page-company-outline .venture-column-bar {
  margin-top: calc(20px + 20 * (100vw - 320px) / 1180);
  margin-bottom: 0;
  padding: 20px;
  background: #F2F4F8;
  font-weight: bold;
}
@media (min-width: 1500px) {
  .page-company-outline .venture-column-bar {
    margin-top: 40px;
  }
}

.page-company-history .history-table table tr > :first-child {
  width: 4em;
  padding: 0;
}
@media (min-width: 1024px) {
  .page-company-history .history-table table tr > :first-child {
    width: 5.5em;
  }
}
.page-company-history .history-table table tr > :nth-child(2) {
  font-weight: bold;
  text-align: right;
  width: 3.5em;
}
@media (min-width: 1024px) {
  .page-company-history .history-table table tr > :nth-child(2) {
    width: 4.5em;
  }
}

.page-company-recruit {
  padding: 20px 0;
  background: var(--bg-color) url(../images/company/recruit-bg@sp.png) no-repeat center 80px/100% auto;
}
@media (min-width: 600px) {
  .page-company-recruit {
    padding: 40px 0;
    background-position: center 100px;
  }
}
@media (min-width: 1024px) {
  .page-company-recruit {
    padding: 70px 0;
    background: var(--bg-color) url(../images/company/recruit-bg.png) no-repeat center top;
  }
}
.page-company-recruit .recruit-column-ttl {
  position: relative;
}
@media (min-width: 1024px) {
  .page-company-recruit .recruit-column-txtarea {
    padding-left: 25%;
  }
}
.page-company-recruit .recruit-column-txtarea table tr > :first-child {
  font-weight: bold;
  display: block;
}
@media (min-width: 1024px) {
  .page-company-recruit .recruit-column-txtarea table tr > :first-child {
    display: table-cell;
    width: 25%;
  }
}
.page-company-recruit .recruit-column-txtarea table td {
  background: #fff;
  border: 1px solid var(--bg-color);
  display: block;
}
@media (min-width: 1024px) {
  .page-company-recruit .recruit-column-txtarea table td {
    display: table-cell;
    border: 3px solid var(--bg-color);
  }
}
.page-company-recruit .details {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
  padding-top: 350px;
}
@media (min-width: 1500px) {
  .page-company-recruit .details {
    margin-bottom: 50px;
  }
}
@media (min-width: 600px) {
  .page-company-recruit .details {
    padding-top: 660px;
  }
}
@media (min-width: 1024px) {
  .page-company-recruit .details {
    padding-top: 760px;
  }
}
@media (min-width: 1024px) {
  .page-company-recruit .details .recruit-column-ttl figure {
    position: absolute;
    left: -50px;
    width: 274px;
  }
}
@media (min-width: 1024px) {
  .page-company-recruit .flow .recruit-column-ttl figure {
    position: absolute;
    top: -135px;
    left: -165px;
    width: 391px;
  }
}
.page-company-recruit .flow .recruit-column-txtarea .flow-column {
  margin-bottom: 2px;
  padding: 30px;
  background: #fff;
  position: relative;
}
@media (min-width: 1024px) {
  .page-company-recruit .flow .recruit-column-txtarea .flow-column {
    padding: 80px 120px;
    display: flex;
  }
}
.page-company-recruit .flow .recruit-column-txtarea .flow-column::before {
  content: "";
  background: url(../images/icon-circle-arrow.svg) no-repeat left top/contain;
  height: 42px;
  width: 42px;
  position: absolute;
  bottom: -21px;
  right: 20px;
  z-index: 3;
}
@media (min-width: 1024px) {
  .page-company-recruit .flow .recruit-column-txtarea .flow-column::before {
    height: 83px;
    width: 83px;
    bottom: -41px;
    right: auto;
    left: 120px;
  }
}
.page-company-recruit .flow .recruit-column-txtarea .flow-column:last-child::before {
  background: none;
}
.page-company-recruit .flow .recruit-column-txtarea .flow-column-num {
  color: var(--accent-color1);
  font-size: 21px;
  line-height: 1.75;
  font-weight: bold;
  width: 85px;
}
.page-company-recruit .flow .recruit-column-txtarea .flow-column-num p {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .page-company-recruit .flow .recruit-column-txtarea .flow-column-num p {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .page-company-recruit .flow .recruit-column-txtarea .flow-column-txtarea {
    padding-left: 40px;
    flex: 1;
  }
}
.page-company-recruit .flow .recruit-column-txtarea .flow-column-txtarea > :last-child {
  margin-bottom: 0;
}

.page-company-policy {
  max-width: 1000px;
}
.page-company-policy .is-style-txt-ul {
  margin-top: 30px;
}
.page-company-policy .is-style-txt-ul {
  font-size: calc(18px + 3 * (100vw - 320px) / 1180);
  line-height: 1.75;
}
@media (min-width: 1500px) {
  .page-company-policy .is-style-txt-ul {
    font-size: 21px;
  }
}
.page-company-policy ._pl40 {
  padding-left: 20px !important;
}
@media (min-width: 1024px) {
  .page-company-policy ._pl40 {
    padding-left: 40px !important;
  }
}

/*
===== お問い合わせ ==========================================
*/
.page-contact .required {
  margin: 0 10px 0 0;
  padding: 6px;
  background: #fff;
  color: var(--sub-color);
  display: inline-block;
  font-size: 12px;
  line-height: 1;
}
@media (min-width: 600px) {
  .page-contact .required {
    margin: 0;
    position: absolute;
    right: 20px;
    top: 22px;
    text-align: center;
  }
}
.page-contact .wpcf7-list-item {
  margin: 5px 0;
  display: block;
}
.page-contact .form-area {
  border: 1px solid #ccc;
}
.page-contact .inquiry-form tr {
  border-bottom: 20px solid var(--bg-color);
}
.page-contact .inquiry-form th {
  padding: 10px;
  background: var(--main-color);
  color: #fff;
  display: block;
  position: relative;
}
.page-contact .inquiry-form th p {
  margin: 0;
}
@media (min-width: 1024px) {
  .page-contact .inquiry-form th {
    text-align: right;
    width: 30%;
  }
}
.page-contact .inquiry-form td {
  margin: 0 0 5px;
  padding: 10px;
  background: #fff;
  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: 600px) {
  .page-contact .inquiry-form th {
    padding: 20px 100px 20px 15px;
    display: table-cell;
    vertical-align: top;
  }
  .page-contact .inquiry-form td {
    padding: 10px 15px;
    display: table-cell;
    vertical-align: middle;
  }
}
.page-contact .form-btn {
  text-align: center;
}
.page-contact .form-btn > li {
  margin: 0 5px 10px;
  display: inline-block;
  font-size: 18px;
  line-height: 1.75;
  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: 30px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1.75;
  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 th, .page-contact .mw_wp_form_confirm .inquiry-form td {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.page-contact .mw_wp_form_confirm .s {
  display: none;
}

/*
===== お問い合わせ ==========================================
*/
.page-hupex-form .required {
  margin: 0 10px 0 0;
  padding: 6px;
  background: #fff;
  color: var(--sub-color);
  display: inline-block;
  font-size: 12px;
  line-height: 1;
}
@media (min-width: 600px) {
  .page-hupex-form .required {
    margin: 0;
    position: absolute;
    right: 20px;
    top: 22px;
    text-align: center;
  }
}
.page-hupex-form .wpcf7-list-item {
  margin: 5px 0;
  display: block;
}
.page-hupex-form .form-area {
  border: 1px solid #ccc;
}
.page-hupex-form .inquiry-form tr {
  border-bottom: 20px solid var(--bg-color);
}
.page-hupex-form .inquiry-form th {
  padding: 10px;
  background: var(--sub-color);
  color: #fff;
  display: block;
  position: relative;
}
.page-hupex-form .inquiry-form th p {
  margin: 0;
}
@media (min-width: 1024px) {
  .page-hupex-form .inquiry-form th {
    text-align: right;
    width: 30%;
  }
}
.page-hupex-form .inquiry-form td {
  margin: 0 0 5px;
  padding: 10px;
  background: #fff;
  display: block;
}
.page-hupex-form .inquiry-form td input[type=radio] {
  margin: 0;
}
.page-hupex-form .inquiry-form td p {
  margin-bottom: 5px;
}
.page-hupex-form .inquiry-form td p:last-child {
  margin: 0;
}
@media (min-width: 600px) {
  .page-hupex-form .inquiry-form th {
    padding: 20px 100px 20px 15px;
    display: table-cell;
    vertical-align: top;
  }
  .page-hupex-form .inquiry-form td {
    padding: 10px 15px;
    display: table-cell;
    vertical-align: middle;
  }
}
.page-hupex-form .inquiry-form .option-list {
  margin: 20px 0 0;
  display: flex;
}
.page-hupex-form .inquiry-form .option-list-ttl {
  padding-right: 20px;
}
.page-hupex-form .form-btn {
  text-align: center;
}
.page-hupex-form .form-btn > li {
  margin: 0 5px 10px;
  display: inline-block;
  font-size: 18px;
  line-height: 1.75;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.page-hupex-form .form-btn > li::before {
  font-family: var(--icon);
  font-size: 20px;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.page-hupex-form .form-btn > li input {
  padding: 15px 0;
  border-radius: 30px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1.75;
  font-family: var(--gothic);
  font-weight: bold;
  text-align: center;
  transition: 0.3s;
  width: 280px;
}
.page-hupex-form .form-btn > .submit::before {
  content: var(--icon-arrow-right);
  color: #fff;
  right: 20px;
}
.page-hupex-form .form-btn > .submit input {
  border: 0;
  background: var(--main-color);
  color: #FFF;
}
@media (any-hover: hover) {
  .page-hupex-form .form-btn > .submit input:hover {
    background: var(--main-color-hover);
  }
}
@media (any-hover: none) {
  .page-hupex-form .form-btn > .submit input:active {
    background: var(--main-color-hover);
  }
}
.page-hupex-form .form-btn > .back {
  display: none;
}
.page-hupex-form .form-btn > .back::before {
  content: var(--icon-arrow-left);
  color: #333;
  left: 20px;
}
.page-hupex-form .form-btn > .back input {
  border: 1px solid #888;
  background: #fff;
  color: #333;
}
@media (any-hover: hover) {
  .page-hupex-form .form-btn > .back input:hover {
    background: #eee;
  }
}
@media (any-hover: none) {
  .page-hupex-form .form-btn > .back input:active {
    background: #eee;
  }
}
.page-hupex-form .mw_wp_form_preview .form-btn .back {
  display: inline-block;
}
.page-hupex-form .mw_wp_form .horizontal-item {
  margin: 0 20px 5px 0 !important;
  display: inline-block;
}
.page-hupex-form .mw_wp_form .error {
  padding: 2px 5px;
  color: #ff7f00;
  font-weight: bold;
}
@media (min-width: 600px) {
  .page-hupex-form .mw_wp_form_confirm .inquiry-form th, .page-hupex-form .mw_wp_form_confirm .inquiry-form td {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.page-hupex-form .mw_wp_form_confirm .s {
  display: none;
}
.option-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.option-list-ttl {
    font-size: 20px;
    font-weight: bold;
}

.option-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.option-box {
  flex: 1;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.option-group-ttl {
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.option-list-check {
    margin-top: 10px;
}

.service-separator {
  margin: 20px 0;
}

.service-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 10px;
}

.custom-details {
  font-size: 1em;
  padding-left: 15px;
}
.custom-box {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  background-color: #f9f9f9;
  margin-top: 10px;
}
.red{
color: #ee1220;
}


/*
===== お問い合わせ２ ==========================================
*/
.page-hupex-form2 .required {
  margin: 0 10px 0 0;
  padding: 6px;
  background: #fff;
  color: var(--sub-color);
  display: inline-block;
  font-size: 12px;
  line-height: 1;
}
@media (min-width: 600px) {
  .page-hupex-form2 .required {
    margin: 0;
    position: absolute;
    right: 20px;
    top: 22px;
    text-align: center;
  }
}
.page-hupex-form2 .wpcf7-list-item {
  margin: 5px 0;
  display: block;
}
.page-hupex-form2 .form-area {
  border: 1px solid #ccc;
}
.page-hupex-form2 .inquiry-form tr {
  border-bottom: 20px solid var(--bg-color);
}
.page-hupex-form2 .inquiry-form th {
  padding: 10px;
  background: var(--sub-color);
  color: #fff;
  display: block;
  position: relative;
}
.page-hupex-form2 .inquiry-form th p {
  margin: 0;
}
@media (min-width: 1024px) {
  .page-hupex-form2 .inquiry-form th {
    text-align: right;
    width: 30%;
  }
}
.page-hupex-form2 .inquiry-form td {
  margin: 0 0 5px;
  padding: 10px;
  background: #fff;
  display: block;
}
.page-hupex-form2 .inquiry-form td input[type=radio] {
  margin: 0;
}
.page-hupex-form2 .inquiry-form td p {
  margin-bottom: 5px;
}
.page-hupex-form2 .inquiry-form td p:last-child {
  margin: 0;
}
@media (min-width: 600px) {
  .page-hupex-form2 .inquiry-form th {
    padding: 20px 100px 20px 15px;
    display: table-cell;
    vertical-align: top;
  }
  .page-hupex-form2 .inquiry-form td {
    padding: 10px 15px;
    display: table-cell;
    vertical-align: middle;
  }
}
.page-hupex-form2 .inquiry-form .option-list {
  margin: 20px 0 0;
  display: flex;
}
.page-hupex-form2 .inquiry-form .option-list-ttl {
  padding-right: 20px;
}
.page-hupex-form2 .form-btn {
  text-align: center;
}
.page-hupex-form2 .form-btn > li {
  margin: 0 5px 10px;
  display: inline-block;
  font-size: 18px;
  line-height: 1.75;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.page-hupex-form2 .form-btn > li::before {
  font-family: var(--icon);
  font-size: 20px;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.page-hupex-form2 .form-btn > li input {
  padding: 15px 0;
  border-radius: 30px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1.75;
  font-family: var(--gothic);
  font-weight: bold;
  text-align: center;
  transition: 0.3s;
  width: 280px;
}
.page-hupex-form2 .form-btn > .submit::before {
  content: var(--icon-arrow-right);
  color: #fff;
  right: 20px;
}
.page-hupex-form2 .form-btn > .submit input {
  border: 0;
  background: var(--main-color);
  color: #FFF;
}
@media (any-hover: hover) {
  .page-hupex-form2 .form-btn > .submit input:hover {
    background: var(--main-color-hover);
  }
}
@media (any-hover: none) {
  .page-hupex-form2 .form-btn > .submit input:active {
    background: var(--main-color-hover);
  }
}
.page-hupex-form2 .form-btn > .back {
  display: none;
}
.page-hupex-form2 .form-btn > .back::before {
  content: var(--icon-arrow-left);
  color: #333;
  left: 20px;
}
.page-hupex-form2 .form-btn > .back input {
  border: 1px solid #888;
  background: #fff;
  color: #333;
}
@media (any-hover: hover) {
  .page-hupex-form2 .form-btn > .back input:hover {
    background: #eee;
  }
}
@media (any-hover: none) {
  .page-hupex-form2 .form-btn > .back input:active {
    background: #eee;
  }
}
.page-hupex-form2 .mw_wp_form_preview .form-btn .back {
  display: inline-block;
}
.page-hupex-form2 .mw_wp_form .horizontal-item {
  margin: 0 20px 5px 0 !important;
  display: inline-block;
}
.page-hupex-form2 .mw_wp_form .error {
  padding: 2px 5px;
  color: #ff7f00;
  font-weight: bold;
}
@media (min-width: 600px) {
  .page-hupex-form2 .mw_wp_form_confirm .inquiry-form th, .page-hupex-form .mw_wp_form_confirm .inquiry-form td {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.page-hupex-form2 .mw_wp_form_confirm .s {
  display: none;
}
.option-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.option-list-ttl {
    font-size: 20px;
    font-weight: bold;
}

.option-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.option-box {
  flex: 1;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.option-group-ttl {
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.option-list-check {
    margin-top: 10px;
}

.service-separator {
  margin: 20px 0;
}

.service-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 10px;
}

.custom-details {
  font-size: 1em;
  padding-left: 15px;
}
.custom-box {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  background-color: #f9f9f9;
  margin-top: 10px;
}
.red{
color: #ee1220;
}

._w100 {
    width: 100% !important;
}
.formdesign01{
    padding: 10px;
    border: 1px solid #aaa;
    font-size: 16px;
    line-height: 1.75;
    font-family: var(--gothic);
    max-width: 100%;
}


@media (max-width: 768px) {
    .option-group {
        flex-direction: column; /* A群、B群、C群が縦に並ぶようにする */
        align-items: flex-start;
    }

    .option-box {
        width: 100%; /* 幅を100%にして、縦に並ぶように調整 */
    }

    .vs-text {
        position: relative;
        transform: none; /* 中央配置を解除 */
        margin-top: 10px; /* 少し余白を調整 */
    }
}


/*
===== お問い合わせ hupexcontent-confirmation用==========================================
*/
.page-hupexcontent-confirmation .required {
  margin: 0 10px 0 0;
  padding: 6px;
  background: #fff;
  color: var(--sub-color);
  display: inline-block;
  font-size: 12px;
  line-height: 1;
}
@media (min-width: 600px) {
  .page-hupexcontent-confirmation .required {
    margin: 0;
    position: absolute;
    right: 20px;
    top: 22px;
    text-align: center;
  }
}
.page-hupexcontent-confirmation .wpcf7-list-item {
  margin: 5px 0;
  display: block;
}
.page-hupexcontent-confirmation .form-area {
  border: 1px solid #ccc;
}
.page-hupexcontent-confirmation .inquiry-form tr {
  border-bottom: 20px solid var(--bg-color);
}
.page-hupexcontent-confirmation .inquiry-form th {
  padding: 10px;
  background: var(--main-color);
  color: #fff;
  display: block;
  position: relative;
}
.page-hupexcontent-confirmation .inquiry-form th p {
  margin: 0;
}
@media (min-width: 1024px) {
  .page-hupexcontent-confirmation .inquiry-form th {
    text-align: right;
    width: 30%;
  }
}
.page-hupexcontent-confirmation .inquiry-form td {
  margin: 0 0 5px;
  padding: 10px;
  background: #fff;
  display: block;
}
.page-hupexcontent-confirmation .inquiry-form td input[type=radio] {
  margin: 0;
}
.page-hupexcontent-confirmation .inquiry-form td p {
  margin-bottom: 5px;
}
.page-hupexcontent-confirmation .inquiry-form td p:last-child {
  margin: 0;
}
@media (min-width: 600px) {
  .page-hupexcontent-confirmation .inquiry-form th {
    padding: 20px 100px 20px 15px;
    display: table-cell;
    vertical-align: top;
  }
  .page-hupexcontent-confirmation .inquiry-form td {
    padding: 10px 15px;
    display: table-cell;
    vertical-align: middle;
  }
}
.page-hupexcontent-confirmation .form-btn {
  text-align: center;
}
.page-hupexcontent-confirmation .form-btn > li {
  margin: 0 5px 10px;
  display: inline-block;
  font-size: 18px;
  line-height: 1.75;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.page-hupexcontent-confirmation .form-btn > li::before {
  font-family: var(--icon);
  font-size: 20px;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.page-hupexcontent-confirmation .form-btn > li input {
  padding: 15px 0;
  border-radius: 30px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1.75;
  font-family: var(--gothic);
  font-weight: bold;
  text-align: center;
  transition: 0.3s;
  width: 280px;
}
.page-hupexcontent-confirmation .form-btn > .submit::before {
  content: var(--icon-arrow-right);
  color: #fff;
  right: 20px;
}
.page-hupexcontent-confirmation .form-btn > .submit input {
  border: 0;
  background: var(--main-color);
  color: #FFF;
}
@media (any-hover: hover) {
  .page-hupexcontent-confirmation .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-hupexcontent-confirmation .form-btn > .back {
  display: none;
}
.page-hupexcontent-confirmation .form-btn > .back::before {
  content: var(--icon-arrow-left);
  color: #333;
  left: 20px;
}
.page-hupexcontent-confirmation .form-btn > .back input {
  border: 1px solid #888;
  background: #fff;
  color: #333;
}
@media (any-hover: hover) {
  .page-hupexcontent-confirmation .form-btn > .back input:hover {
    background: #eee;
  }
}
@media (any-hover: none) {
  .page-hupexcontent-confirmation .form-btn > .back input:active {
    background: #eee;
  }
}
.page-hupexcontent-confirmation .mw_wp_form_preview .form-btn .back {
  display: inline-block;
}
.page-hupexcontent-confirmation .mw_wp_form .horizontal-item {
  margin: 0 20px 5px 0 !important;
  display: inline-block;
}
.page-hupexcontent-confirmation .mw_wp_form .error {
  padding: 2px 5px;
  color: #ff7f00;
  font-weight: bold;
}
@media (min-width: 600px) {
  .page-hupexcontent-confirmation .mw_wp_form_confirm .inquiry-form th, .page-contact .mw_wp_form_confirm .inquiry-form td {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.page-hupexcontent-confirmation .mw_wp_form_confirm .s {
  display: none;
}




/*
===== SERVICE ==========================================
*/
.page-mission .ttl-mission {
  letter-spacing: 4px;
  text-align: center;
}
.page-mission .ttl-mission .en {
  margin: 0 0 10px;
  color: #334F97;
  font-size: calc(32px + 28 * (100vw - 320px) / 1180);
  line-height: 1;
}
@media (min-width: 1500px) {
  .page-mission .ttl-mission .en {
    font-size: 60px;
  }
}
.page-mission .ttl-mission .ttl {
  font-size: calc(17px + 4 * (100vw - 320px) / 1180);
  line-height: 1;
  color: var(--sub-color);
  text-align: center;
}
@media (min-width: 1500px) {
  .page-mission .ttl-mission .ttl {
    font-size: 21px;
  }
}

.page-mission-background {
  padding: 20px;
  padding-top: calc(40px + 40 * (100vw - 320px) / 1180);
  padding-bottom: calc(40px + 40 * (100vw - 320px) / 1180);
  background: url(../images/mission/background-bg.jpg) no-repeat center center/cover;
  color: #fff;
  text-align: center;
}
@media (min-width: 1500px) {
  .page-mission-background {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.page-mission-background .txt {
  margin: 40px auto 0;
  max-width: 860px;
}

.page-mission-vision {
  margin-bottom: calc(40px + 30 * (100vw - 320px) / 1180);
  padding: 40px 20px;
  background: #0045BD;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1500px) {
  .page-mission-vision {
    margin-bottom: 70px;
  }
}
@media (min-width: 1024px) {
  .page-mission-vision {
    flex-direction: row;
  }
}
.page-mission-vision > .item {
  margin: 0 auto 20px;
  padding: 40px;
  background: #fff;
  border-radius: 50%;
  font-size: calc(16px + 12 * (100vw - 320px) / 1180);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 300px;
  height: 300px;
}
@media (min-width: 1500px) {
  .page-mission-vision > .item {
    font-size: 28px;
  }
}
@media (min-width: 600px) {
  .page-mission-vision > .item {
    padding: 40px 60px;
    width: 450px;
    height: 450px;
  }
}
@media (min-width: 1024px) {
  .page-mission-vision > .item {
    margin: 0 20px;
    width: 550px;
    height: 550px;
  }
}

.page-mission-value .value-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.page-mission-value .value-column > .item {
  margin: 0 4% 20px;
  border: 1px solid var(--main-color);
  border-radius: 80px;
  display: flex;
  flex-direction: column;
  font-size: calc(16px + 5 * (100vw - 320px) / 1180);
  line-height: 1.5;
  width: 92%;
}
@media (min-width: 1500px) {
  .page-mission-value .value-column > .item {
    font-size: 21px;
  }
}
@media (min-width: 600px) {
  .page-mission-value .value-column > .item {
    margin: 0 1% 20px;
    width: 48%;
  }
}
@media (min-width: 1024px) {
  .page-mission-value .value-column > .item {
    max-width: 360px;
    width: 23%;
  }
}
.page-mission-value .value-column > .item .num {
  margin: 20px 0 0;
  color: var(--sub-color);
  font-size: 21px;
  line-height: 1.75;
  font-weight: 700;
  text-align: center;
}
.page-mission-value .value-column > .item .txt {
  padding: 15px;
}
.page-mission-value .value-column > .item .example {
  margin: 0;
  padding: 40px;
  background: var(--main-color);
  border-radius: 0 0 79px 79px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: calc(15px + 3 * (100vw - 320px) / 1180);
  line-height: 1.75;
  flex: 1;
}
@media (min-width: 1500px) {
  .page-mission-value .value-column > .item .example {
    font-size: 18px;
  }
}

/*
===== SERVICE ==========================================
*/
.page-seminar .cat-list {
  justify-content: center;
  font-size: calc(16px + 3 * (100vw - 320px) / 1180);
  line-height: 1.75;
}
@media (min-width: 1500px) {
  .page-seminar .cat-list {
    font-size: 19px;
  }
}
.page-seminar .cat-list > li {
  margin: 0 10px 10px;
}
.page-seminar .cat-list > li a {
  background: var(--main-color);
  color: #fff;
  display: block;
  min-width: 140px;
  text-align: center;
}
.page-seminar .cat-list > li .current {
  background: var(--main-color-hover);
  color: #fff;
}
.page-seminar-lastn .lastn-ttl {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
}
.page-seminar-lastn .lastn-ttl .ttl {
  margin: 0 0 0 20px;
  font-size: calc(20px + 12 * (100vw - 320px) / 1180);
  line-height: 1.5;
}
@media (min-width: 1500px) {
  .page-seminar-lastn .lastn-ttl .ttl {
    font-size: 32px;
  }
}
.page-seminar-lastn .yt-res {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
}
@media (min-width: 1500px) {
  .page-seminar-lastn .yt-res {
    margin-bottom: 50px;
  }
}
.page-seminar-lastn .movie-info-column {
  margin: 0 0 2px;
  padding: 20px;
  background: #fff;
}
@media (min-width: 1024px) {
  .page-seminar-lastn .movie-info-column {
    padding: 20px 40px;
    display: flex;
    align-items: center;
  }
}
.page-seminar-lastn .movie-info-ttl {
  font-weight: bold;
}
@media (min-width: 1024px) {
  .page-seminar-lastn .movie-info-ttl {
    width: 140px;
  }
}
.page-seminar-lastn .movie-info-txt {
  flex: 1;
}
.page-seminar-lastn .movie-info-txt .doc {
  margin: 10px 0;
}

/*
===== SERVICE ==========================================
*/
.page-service .column-02 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.page-service .column-02 .is-layout-flex {
  justify-content: center;
}
@media (min-width: 1024px) {
  .page-service .column-02 .is-layout-flex {
    justify-content: flex-start;
  }
}
.page-service .column-02 .wp-image-47 {
  width: 30px !important;
}
@media (min-width: 1024px) {
  .page-service .column-02 .wp-image-47 {
    width: 55px !important;
  }
}

.page-service-faq .acr-block {
  border: 1px solid #918B8A;
}
.page-service-faq .acr-plus {
  border-bottom: 1px solid #918B8A;
}
.page-service-faq .acr-plus:last-child {
  border-bottom: none;
}
.page-service-faq .acr-plus > .trigger-ne {
  margin: 0;
  padding: 20px 40px 20px 50px;
  border: none;
  cursor: pointer;
  display: block;
  position: relative;
  transition: 0.3s;
}
.page-service-faq .acr-plus > .trigger-ne::before {
  content: "Q. ";
  color: var(--accent-color1);
  font-size: 19px;
  line-height: 1;
  font-weight: bold;
  position: absolute;
  left: 20px;
  top: 23px;
}
.page-service-faq .acr-plus > .trigger-ne::after {
  color: var(--accent-color1);
  right: 20px;
}
.page-service-faq .acr-plus > .trigger-ne.js-active {
  background: #E6F3FB;
}
.page-service-faq .acr-plus > .content {
  margin: 0;
  padding: 20px 20px 20px 50px;
  position: relative;
}
.page-service-faq .acr-plus > .content::before {
  content: "A. ";
  color: var(--accent-color2);
  font-size: 19px;
  line-height: 1;
  font-weight: bold;
  position: absolute;
  left: 20px;
  top: 23px;
}
.page-service-faq .acr-plus > .content a {
  color: var(--accent-color1);
}
@media (any-hover: hover) {
  .page-service-faq .acr-plus > .content a:hover {
    text-decoration: underline;
  }
}
@media (any-hover: none) {
  .page-service-faq .acr-plus > .content a:active {
    text-decoration: underline;
  }
}
.page-service-faq .acr-plus > .content :last-child {
  margin: 0;
}

.page-service-others .table-column {
  margin: 40px auto;
  max-width: 1000px;
}
.page-service-others .is-style-btn-main > .wp-block-button__link {
  max-width: 1000px;
}
.page-service-others .wp-block-buttons > .wp-block-button {
  text-align: center;
}
.page-service-others .wp-element-caption {
  text-align: left;
}
.page-service-others .tanpaku-block {
  margin: 0;
  padding-top: calc(40px + 30 * (100vw - 320px) / 1180);
  padding-bottom: calc(40px + 30 * (100vw - 320px) / 1180);
  background: url(../images/service/others-tanpaku-bg.jpg) no-repeat center center/cover;
}
@media (min-width: 1500px) {
  .page-service-others .tanpaku-block {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media (min-width: 1024px) {
  .page-service-others .tanpaku-block {
    background-size: 50% 100%;
    background-position: right center;
  }
}
.page-service-others .tanpaku-block .is-style-ttl-main {
  margin-bottom: 10px;
}
.page-service-others .tanpaku-block .bg {
  padding: 20px;
  background: #fff;
}
@media (min-width: 1024px) {
  .page-service-others .tanpaku-block .bg {
    padding: 40px 80px 0 0;
  }
}
.page-service-others .tanpaku-block .is-style-list-border {
  margin-top: calc(30px + 20 * (100vw - 320px) / 1180);
}
@media (min-width: 1500px) {
  .page-service-others .tanpaku-block .is-style-list-border {
    margin-top: 50px;
  }
}

.page-service-a-cube .a-cube-kougen .wp-element-caption {
  text-align: right;
}
.page-service-a-cube .a-cube-relation {
  margin-bottom: 0;
}
.page-service-a-cube .a-cube-relation .wp-element-caption {
  text-align: left;
}
.page-service-a-cube .a-cube-story {
  margin: 0;
  padding-top: calc(40px + 30 * (100vw - 320px) / 1180);
  padding-bottom: calc(40px + 30 * (100vw - 320px) / 1180);
  background: #F3F9FD url(../images/service/a-cube-story-bg.jpg) no-repeat center top/100% auto;
  border-top: 10px solid #577EBC;
}
@media (min-width: 1500px) {
  .page-service-a-cube .a-cube-story {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.page-service-a-cube .a-cube-story .bg {
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
}
@media (min-width: 1024px) {
  .page-service-a-cube .a-cube-story .bg {
    padding: 70px 100px;
  }
}
.page-service-a-cube .a-cube-story .story-ttl {
  margin: 0 0 10px;
  font-size: calc(24px + 26 * (100vw - 320px) / 1180);
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 1500px) {
  .page-service-a-cube .a-cube-story .story-ttl {
    font-size: 50px;
  }
}
.page-service-a-cube .a-cube-story .story-block {
  margin-top: calc(30px + 20 * (100vw - 320px) / 1180);
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
}
@media (min-width: 1500px) {
  .page-service-a-cube .a-cube-story .story-block {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.page-service-a-cube .a-cube-story .story-origin {
  padding: 40px 0 0;
  border-top: 1px dotted #707070;
}
.page-service-a-cube .a-cube-results .acr-plus .trigger-ne {
  margin: 0 0 5px;
  padding: 20px 50px;
  background: #F3F9FD;
  border-bottom: none;
  font-size: calc(16px + 5 * (100vw - 320px) / 1180);
  line-height: 1.5;
  font-weight: bold;
  display: flex;
  align-items: center;
  min-height: 110px;
  position: relative;
}
@media (min-width: 1500px) {
  .page-service-a-cube .a-cube-results .acr-plus .trigger-ne {
    font-size: 21px;
  }
}
@media (min-width: 1024px) {
  .page-service-a-cube .a-cube-results .acr-plus .trigger-ne {
    padding: 20px 50px 20px 130px;
  }
}
.page-service-a-cube .a-cube-results .acr-plus .trigger-ne::after {
  font-size: 32px;
  line-height: 1;
  right: 20px;
}
.page-service-a-cube .a-cube-results .acr-plus .trigger-ne.-se {
  background: #F7F8FB;
}
.page-service-a-cube .a-cube-results .acr-plus .trigger-ne .num {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translate(0, -50%);
  width: 36px;
  height: 36px;
}
@media (min-width: 1024px) {
  .page-service-a-cube .a-cube-results .acr-plus .trigger-ne .num {
    width: 73px;
    height: 73px;
    left: 40px;
  }
}
.page-service-a-cube .a-cube-results .acr-plus .trigger-ne p {
  margin: 0;
}
.page-service-a-cube .a-cube-results .content {
  padding: 30px 10px 60px;
}
.page-service-a-cube .a-cube-results .ttl-method {
  padding: 10px 10px 10px 90px;
  background: url(../images/service/icon-method.svg) no-repeat left center;
  border: 1px solid #577EBC;
  border-radius: 50px;
  color: #577EBC;
  display: flex;
  align-items: center;
  font-size: calc(18px + 10 * (100vw - 320px) / 1180);
  line-height: 1.5;
  font-weight: bold;
  height: 78px;
}
@media (min-width: 1500px) {
  .page-service-a-cube .a-cube-results .ttl-method {
    font-size: 28px;
  }
}
.page-service-a-cube .a-cube-results .ttl-results {
  padding: 10px 10px 10px 90px;
  background: #577EBC url(../images/service/icon-results.svg) no-repeat 20px center;
  border-radius: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: calc(18px + 10 * (100vw - 320px) / 1180);
  line-height: 1.5;
  font-weight: bold;
  height: 78px;
}
@media (min-width: 1500px) {
  .page-service-a-cube .a-cube-results .ttl-results {
    font-size: 28px;
  }
}
.page-service-a-cube .a-cube-results .flow-block {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
  padding: 0 0 0 20px;
}
@media (min-width: 1500px) {
  .page-service-a-cube .a-cube-results .flow-block {
    margin-bottom: 50px;
  }
}
@media (min-width: 1024px) {
  .page-service-a-cube .a-cube-results .flow-block {
    padding: 0 0 0 80px;
  }
}
.page-service-a-cube .a-cube-results .flow-block .item {
  padding: 0 0 20px;
}
.page-service-a-cube .a-cube-results .flow-block .next {
  text-align: left;
}
.page-service-a-cube .a-cube-results .flow-block .supplement {
  padding: 20px;
  background: #F3F9FD;
}
.page-service-a-cube .a-cube-results .docs {
  padding: 20px;
  background: #F4F3F3;
}
@media (min-width: 1024px) {
  .page-service-a-cube .a-cube-results .docs {
    padding: 20px 40px;
  }
}
.page-service-a-cube .a-cube-results .docs > :last-child {
  margin-bottom: 0;
}

.a-cube-paper .paper-list {
  border-top: 1px solid #918B8A;
  font-size: calc(15px + 1 * (100vw - 320px) / 1180);
  line-height: 1.75;
}
@media (min-width: 1500px) {
  .a-cube-paper .paper-list {
    font-size: 16px;
  }
}
.a-cube-paper .paper-list-item {
  padding: 15px 0;
  border-bottom: 1px solid #918B8A;
}
.a-cube-paper .paper-list-item .ttl {
  margin: 0;
}
.a-cube-paper .paper-list-item .txt {
  margin: 0;
  color: var(--main-color);
}
.a-cube-paper .paper-details {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
  border-top: 1px solid #918B8A;
}
@media (min-width: 1500px) {
  .a-cube-paper .paper-details {
    margin-bottom: 50px;
  }
}
.a-cube-paper .paper-details-item {
  padding: 15px 0;
  border-bottom: 1px solid #918B8A;
}
.a-cube-paper .paper-details-item a {
  color: var(--main-color);
}
.a-cube-paper .paper-btn {
  margin-top: calc(30px + 20 * (100vw - 320px) / 1180);
  display: flex;
}
@media (min-width: 1500px) {
  .a-cube-paper .paper-btn {
    margin-top: 50px;
  }
}
.a-cube-paper .paper-btn .btn-main {
  width: 100%;
  max-width: 580px;
}
@media (min-width: 1024px) {
  .a-cube-paper .paper-btn .btn-main {
    padding: 0 20px;
  }
}
.a-cube-paper .paper-btn .btn-main .btn {
  width: 100%;
  text-align: center;
}

.page-service-hupex .ttl-main,
.page-service-hupex .is-style-ttl-main {
  background-image: url(../images/ttl-ribbon-sc.svg);
}
.page-service-hupex .hupex-disease-block .ttl {
  margin: 0;
  padding: 10px;
  background: #CD2523;
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-size: calc(18px + 3 * (100vw - 320px) / 1180);
  line-height: 1.5;
  width: 250px;
  text-align: center;
}
@media (min-width: 1500px) {
  .page-service-hupex .hupex-disease-block .ttl {
    font-size: 21px;
  }
}
.page-service-hupex .hupex-disease-block .txtarea {
  padding: 20px;
  background: #fff;
}
@media (min-width: 1024px) {
  .page-service-hupex .hupex-service-docs {
    display: flex;
    justify-content: center;
  }
}
.page-service-hupex .hupex-service-docs .img {
  padding: 0 20px;
}
.page-service-hupex .hupex-service-docs .btn {
  padding: 0 20px 20px;
}
@media (min-width: 1024px) {
  .page-service-hupex .hupex-service-docs .btn .wp-block-button__link {
    min-width: 480px;
  }
}
.page-service-hupex .hupex-service-option {
  margin-bottom: 20px;
}
.page-service-hupex .hupex-service-option .item {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #918B8A;
}
.page-service-hupex .hupex-service-option .item .wp-block-image {
  margin-bottom: 0;
}
.page-service-hupex .hupex-service .txt-caution {
  font-size: calc(18px + 3 * (100vw - 320px) / 1180);
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
@media (min-width: 1500px) {
  .page-service-hupex .hupex-service .txt-caution {
    font-size: 21px;
  }
}
.page-service-hupex .hupex-service .txt-caution span {
  padding: 5px 20px;
  display: inline-block;
  background: #CD2523;
  font-weight: bold;
}
.page-service-hupex .hupex-service-excel {
  margin-bottom: calc(20px + 20 * (100vw - 320px) / 1180);
}
@media (min-width: 1500px) {
  .page-service-hupex .hupex-service-excel {
    margin-bottom: 40px;
  }
}
.page-service-hupex .hupex-service-excel .item {
  margin-bottom: 10px;
  padding: 15px;
  border: 1px solid #918B8A;
  display: flex;
  align-items: center;
}
.page-service-hupex .hupex-service-excel .item p {
  margin: 0;
}
.page-service-hupex .hupex-service-excel .item .wp-block-image {
  margin: 0 0 0 auto !important;
}
.page-service-hupex .hupex-principle-step > li {
  margin: 0 0 20px;
  padding: 10px 20px 10px 100px;
  background: #fff url(../images/service/hupex-step01.svg) no-repeat left center;
  border-radius: 50px;
  font-size: calc(16px + 2 * (100vw - 320px) / 1180);
  line-height: 1.75;
  position: relative;
  min-height: 82px;
}
@media (min-width: 1500px) {
  .page-service-hupex .hupex-principle-step > li {
    font-size: 18px;
  }
}
@media (min-width: 600px) {
  .page-service-hupex .hupex-principle-step > li {
    border: 2px solid #CD2523;
    border-radius: 50px;
    display: flex;
    align-items: center;
  }
}
.page-service-hupex .hupex-principle-step .step02 {
  background-image: url(../images/service/hupex-step02.svg);
}
.page-service-hupex .hupex-principle-step .step03 {
  background-image: url(../images/service/hupex-step03.svg);
}
.page-service-hupex .hupex-order-column {
  margin-bottom: calc(60px + 50 * (100vw - 320px) / 1180);
}
@media (min-width: 1500px) {
  .page-service-hupex .hupex-order-column {
    margin-bottom: 110px;
  }
}
@media (min-width: 1024px) {
  .page-service-hupex .hupex-order-column {
    display: flex;
    justify-content: space-between;
  }
}
.page-service-hupex .hupex-order-column .item {
  margin-bottom: 50px;
  border: 2px solid #231815;
  position: relative;
}
@media (min-width: 1024px) {
  .page-service-hupex .hupex-order-column .item {
    margin: 0;
    width: 45%;
  }
}
.page-service-hupex .hupex-order-column .item:first-child::before {
  content: "";
  background: url(../images/icon-plus.svg) no-repeat left top/contain;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translate(-50%, 0);
}
@media (min-width: 1024px) {
  .page-service-hupex .hupex-order-column .item:first-child::before {
    width: 53px;
    height: 53px;
    left: auto;
    right: -90px;
    top: 200px;
    transform: translate(0, 0);
  }
}
.page-service-hupex .hupex-order-column .item:last-child::before {
  content: "";
  background: url(../images/icon-down.svg) no-repeat left top/contain;
  width: 41px;
  height: 36px;
  position: absolute;
  left: 50%;
  bottom: -55px;
  transform: translate(-50%, 0);
}
@media (min-width: 1024px) {
  .page-service-hupex .hupex-order-column .item:last-child::before {
    left: -100px;
    bottom: -90px;
    width: 82px;
    height: 62px;
    transform: translate(0, 0);
  }
}
.page-service-hupex .hupex-order-column .item-ttl {
  padding: 10px;
  background: #231815;
  color: #fff;
  font-size: calc(18px + 10 * (100vw - 320px) / 1180);
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 1500px) {
  .page-service-hupex .hupex-order-column .item-ttl {
    font-size: 28px;
  }
}
.page-service-hupex .hupex-order-column .item .wp-block-image {
  padding: 10px;
}
.page-service-hupex .hupex-order-column .item .wp-block-buttons {
  padding: 10px;
}
.page-service-hupex .hupex-order-column .item .wp-block-button__link {
  font-size: calc(16px + 4 * (100vw - 320px) / 1180);
  line-height: 1.75;
}
@media (min-width: 1500px) {
  .page-service-hupex .hupex-order-column .item .wp-block-button__link {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .page-service-hupex .hupex-order-column .item .wp-block-button__link {
    min-width: 400px;
  }
}
.page-service-hupex .hupex-order-block {
  border: 2px solid #231815;
}
.page-service-hupex .hupex-order-block .ttl {
  padding: 10px;
  background: #231815;
  color: #fff;
  font-size: calc(18px + 10 * (100vw - 320px) / 1180);
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 1500px) {
  .page-service-hupex .hupex-order-block .ttl {
    font-size: 28px;
  }
}
.page-service-hupex .hupex-order-block .txtarea {
  padding: 10px 20px;
}
.page-service-hupex .hupex-results .acr-plus .trigger-ne {
  margin: 0 0 5px;
  padding: 20px 50px;
  background: #FFFFFF;
  border-bottom: none;
  font-size: calc(16px + 5 * (100vw - 320px) / 1180);
  line-height: 1.5;
  font-weight: bold;
  display: flex;
  align-items: center;
  min-height: 110px;
  position: relative;
}
@media (min-width: 1500px) {
  .page-service-hupex .hupex-results .acr-plus .trigger-ne {
    font-size: 21px;
  }
}
@media (min-width: 1024px) {
  .page-service-hupex .hupex-results .acr-plus .trigger-ne {
    padding: 20px 50px 20px 130px;
  }
}
.page-service-hupex .hupex-results .acr-plus .trigger-ne::after {
  font-size: 32px;
  line-height: 1;
  right: 20px;
}
.page-service-hupex .hupex-results .acr-plus .trigger-ne.-se {
  background: #FBF0EC;
}
.page-service-hupex .hupex-results .acr-plus .trigger-ne .num {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translate(0, -50%);
  width: 36px;
  height: 36px;
}
@media (min-width: 1024px) {
  .page-service-hupex .hupex-results .acr-plus .trigger-ne .num {
    width: 73px;
    height: 73px;
    left: 40px;
  }
}
.page-service-hupex .hupex-results .acr-plus .trigger-ne p {
  margin: 0;
}
.page-service-hupex .hupex-results .content {
  padding: 30px 10px 60px;
}
.page-service-hupex .hupex-results .ttl-method {
  padding: 10px 10px 10px 90px;
  background: #fff url(../images/service/icon-method-red.svg) no-repeat left center;
  border: 1px solid var(--sub-color);
  border-radius: 50px;
  color: var(--sub-color);
  display: flex;
  align-items: center;
  font-size: calc(18px + 10 * (100vw - 320px) / 1180);
  line-height: 1.5;
  font-weight: bold;
  height: 78px;
}
@media (min-width: 1500px) {
  .page-service-hupex .hupex-results .ttl-method {
    font-size: 28px;
  }
}
.page-service-hupex .hupex-results .ttl-results {
  padding: 10px 10px 10px 90px;
  background: var(--sub-color) url(../images/service/icon-results.svg) no-repeat 20px center;
  border-radius: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: calc(18px + 10 * (100vw - 320px) / 1180);
  line-height: 1.5;
  font-weight: bold;
  height: 78px;
}
@media (min-width: 1500px) {
  .page-service-hupex .hupex-results .ttl-results {
    font-size: 28px;
  }
}
.page-service-hupex .hupex-results .flow-block {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
  padding: 0 0 0 20px;
}
@media (min-width: 1500px) {
  .page-service-hupex .hupex-results .flow-block {
    margin-bottom: 50px;
  }
}
@media (min-width: 1024px) {
  .page-service-hupex .hupex-results .flow-block {
    padding: 0 0 0 80px;
  }
}
.page-service-hupex .hupex-results .flow-block .item {
  padding: 0 0 20px;
}
.page-service-hupex .hupex-results .flow-block .next {
  text-align: left;
}
.page-service-hupex .hupex-results .flow-block .supplement {
  padding: 20px;
  background: #F3F9FD;
}
.page-service-hupex .hupex-results .docs {
  padding: 20px;
  background: #fff;
}
@media (min-width: 1024px) {
  .page-service-hupex .hupex-results .docs {
    padding: 20px 40px;
  }
}
.page-service-hupex .hupex-results .docs > :last-child {
  margin-bottom: 0;
}
.page-service-hupex .hupex-contact {
  justify-content: center;
}
.page-service-hupex .hupex-contact-btn {
  margin-top: calc(30px + 20 * (100vw - 320px) / 1180);
}
@media (min-width: 1500px) {
  .page-service-hupex .hupex-contact-btn {
    margin-top: 50px;
  }
}
.page-service-hupex .hupex-contact-btn .is-style-btn-main {
  width: 100%;
  max-width: 580px;
}
@media (min-width: 1024px) {
  .page-service-hupex .hupex-contact-btn .is-style-btn-main {
    padding: 0 20px;
  }
}
.page-service-hupex .hupex-contact-btn .is-style-btn-main .wp-block-button__link {
  width: 100%;
}

.hupex-paper .ttl-main,
.hupex-paper .is-style-ttl-main {
  background-image: url(../images/ttl-ribbon-sc.svg);
}
.hupex-paper .paper-list {
  border-top: 1px solid #918B8A;
  font-size: calc(15px + 1 * (100vw - 320px) / 1180);
  line-height: 1.75;
}
@media (min-width: 1500px) {
  .hupex-paper .paper-list {
    font-size: 16px;
  }
}
.hupex-paper .paper-list-item {
  padding: 15px 0;
  border-bottom: 1px solid #918B8A;
}
.hupex-paper .paper-list-item .ttl {
  margin: 0;
}
.hupex-paper .paper-list-item .txt {
  margin: 0;
  color: var(--main-color);
}
.hupex-paper .paper-details {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
  border-top: 1px solid #918B8A;
}
@media (min-width: 1500px) {
  .hupex-paper .paper-details {
    margin-bottom: 50px;
  }
}
.hupex-paper .paper-details-item {
  padding: 15px 0;
  border-bottom: 1px solid #918B8A;
}
.hupex-paper .paper-details-item a {
  color: var(--main-color);
}
.hupex-paper .paper-btn {
  margin-top: calc(30px + 20 * (100vw - 320px) / 1180);
  display: flex;
}
@media (min-width: 1500px) {
  .hupex-paper .paper-btn {
    margin-top: 50px;
  }
}
.hupex-paper .paper-btn .btn-main {
  margin: auto;
  width: 100%;
  max-width: 580px;
}
@media (min-width: 1024px) {
  .hupex-paper .paper-btn .btn-main {
    padding: 0 20px;
  }
}
.hupex-paper .paper-btn .btn-main .btn {
  width: 100%;
  text-align: center;
}

/* 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: 40px;
  width: 40px;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  z-index: 100;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
  color: var(--main-color);
}
.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: 40px;
  line-height: 1;
  color: var(--main-color);
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -5px;
}
@media (min-width: 1024px) {
  .slick-prev {
    left: -20px;
  }
}
.slick-prev:before {
  content: "\e314";
}

.slick-next {
  right: -5px;
}
@media (min-width: 1024px) {
  .slick-next {
    right: -20px;
  }
}
.slick-next:before {
  content: "\e315";
}

/* 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 5px;
  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.75;
}

.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;
  }
}
/*
===== お問い合わせ（Contact Form 7） ==========================================
※ 上部の .page-contact ブロックは旧スラッグ用でページに当たらないため、
   実際に出力される .page-support-desk-2026 で作り直したもの
*/
.page-support-desk-2026 .wpcf7 {
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  width: 100%;
  max-width: var(--inner-wide);
  min-width: 320px;
}
.page-support-desk-2026 .confirm_area,
.page-support-desk-2026 .thanks_area {
  display: none;
}
.page-support-desk-2026 .wpcf7 form.sent .wpcf7-response-output {
  display: none;
}
/* ※ をぶら下げて、折り返し行の頭を本文に揃える */
.page-support-desk-2026 .form-note {
  padding-left: 1em;
  text-indent: -1em;
}
.page-support-desk-2026 .required {
  margin: 0 10px 0 0;
  padding: 6px;
  background: #fff;
  color: var(--sub-color);
  display: inline-block;
  /* 「必須」(2文字) を「確認用」(3文字) の幅に合わせる */
  min-width: 48px;
  font-size: 12px;
  line-height: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .page-support-desk-2026 .required {
    margin: 0;
    position: absolute;
    right: 20px;
    top: 22px;
    text-align: center;
  }
}
.page-support-desk-2026 .wpcf7-checkbox .wpcf7-list-item {
  margin: 5px 0;
  display: block;
}
.page-support-desk-2026 .wpcf7-radio .wpcf7-list-item {
  margin: 0 20px 5px 0;
  display: inline-block;
}
.page-support-desk-2026 .wpcf7-list-item label {
  margin-bottom: 0;
  cursor: pointer;
  font-weight: normal;
}
.page-support-desk-2026 .wpcf7-list-item input {
  margin-right: 5px;
}
.page-support-desk-2026 .wpcf7-not-valid-tip {
  padding: 2px 5px;
  color: #ff7f00;
  font-weight: bold;
}
.page-support-desk-2026 .inquiry-form tr {
  border-bottom: 20px solid var(--bg-color);
}
.page-support-desk-2026 .inquiry-form th {
  padding: 10px;
  background: var(--main-color);
  color: #fff;
  display: block;
  position: relative;
}
.page-support-desk-2026 .inquiry-form th p {
  margin: 0;
  /* 全体の p ルールが text-align: left を当てるため、セルの寄せを引き継がせる */
  text-align: inherit;
}
@media (min-width: 1024px) {
  .page-support-desk-2026 .inquiry-form th {
    text-align: right;
    width: 30%;
  }
}
.page-support-desk-2026 .inquiry-form td {
  margin: 0 0 5px;
  padding: 10px;
  background: #fff;
  display: block;
}
.page-support-desk-2026 .inquiry-form td input[type=radio] {
  margin: 0;
}
.page-support-desk-2026 .inquiry-form td p {
  margin-bottom: 5px;
}
.page-support-desk-2026 .inquiry-form td p:last-child {
  margin: 0;
}
@media (min-width: 768px) {
  .page-support-desk-2026 .inquiry-form th {
    /* バッジの有無にかかわらず右の逃げを揃える（ラベルの右端を一致させる） */
    padding: 20px 80px 20px 15px;
    display: table-cell;
    vertical-align: top;
    white-space: nowrap;
  }
  .page-support-desk-2026 .inquiry-form td {
    padding: 10px 15px;
    display: table-cell;
    vertical-align: middle;
  }
  .page-support-desk-2026 .confirm_area .inquiry-form th,
  .page-support-desk-2026 .confirm_area .inquiry-form td {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.page-support-desk-2026 .form-btn {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.page-support-desk-2026 .form-btn > li {
  margin: 0 5px 10px;
  display: inline-block;
  font-size: 18px;
  line-height: 1.75;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.page-support-desk-2026 .form-btn > li p {
  margin: 0;
}
.page-support-desk-2026 .form-btn .wpcf7-spinner {
  display: none;
}
.page-support-desk-2026 .form-btn > li::before {
  font-family: var(--icon);
  font-size: 20px;
  line-height: 1;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}
.page-support-desk-2026 .form-btn > li input {
  padding: 15px 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1.75;
  font-family: var(--gothic);
  font-weight: bold;
  text-align: center;
  transition: 0.3s;
  width: 280px;
}
.page-support-desk-2026 .form-btn > .submit::before {
  content: var(--icon-arrow-right);
  color: #fff;
  right: 20px;
}
.page-support-desk-2026 .form-btn > .submit input {
  border: 0;
  background: var(--main-color);
  color: #FFF;
}
@media (any-hover: hover) {
  .page-support-desk-2026 .form-btn > .submit input:not([disabled]):hover {
    background: var(--main-color-hover);
  }
}
@media (any-hover: none) {
  .page-support-desk-2026 .form-btn > .submit input:not([disabled]):active {
    background: var(--main-color-hover);
  }
}
.page-support-desk-2026 .form-btn > .back::before {
  content: var(--icon-arrow-left);
  color: #333;
  left: 20px;
}
.page-support-desk-2026 .form-btn > .back input {
  border: 1px solid #888;
  background: #fff;
  color: #333;
}
@media (any-hover: hover) {
  .page-support-desk-2026 .form-btn > .back input:hover {
    background: #eee;
  }
}
@media (any-hover: none) {
  .page-support-desk-2026 .form-btn > .back input:active {
    background: #eee;
  }
}
.page-support-desk-2026 .form-btn > .submit input[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
  transition: none;
}
/* 無効なフォーム部品はブラウザによってマウスイベントを拾わないため、親側にも指定する */
.page-support-desk-2026 .form-btn > .submit:has(input[disabled]) {
  cursor: not-allowed;
}
/* SP：ボタンは縦積みで全幅にする（280px固定だと狭い端末ではみ出すため） */
@media (max-width: 767px) {
  .page-support-desk-2026 .form-btn > li {
    margin: 0 0 10px;
    display: block;
  }
  .page-support-desk-2026 .form-btn > li input {
    width: 100%;
  }
}
.page-support-desk-2026 .thanks_area .btn-main {
  margin-top: 30px;
  text-align: center;
}

/*
===== HuPEX ProtiXplorer 自己抗体データ利用サービス ==========================================
*/
.page-service-hupex .hupex-protix {
  margin-top: 40px;
  margin-bottom: 40px;
}
.page-service-hupex .hupex-protix.-detail {
  scroll-margin-top: var(--sp-header-height);
}
.page-service-hupex .hupex-protix-panel {
  padding: 30px calc(20px + 20 * (100vw - 320px) / 1180);
  background: #275a9a;
  color: #fff;
}
@media (min-width: 768px) {
  .page-service-hupex .hupex-protix-panel {
    padding-top: 41px;
    padding-bottom: 50px;
  }
  .page-service-hupex .hupex-protix.-detail .hupex-protix-panel {
    padding-top: 53px;
  }
}
@media (min-width: 1500px) {
  .page-service-hupex .hupex-protix-panel {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.page-service-hupex .hupex-protix-panel .ttl {
  margin: 0;
  /* .ai の指定は ヒラギノ明朝 W5。明朝系で組む */
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  font-size: calc(22px + 16 * (100vw - 320px) / 1180);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (min-width: 1500px) {
  .page-service-hupex .hupex-protix-panel .ttl {
    font-size: 38px;
  }
}
.page-service-hupex .hupex-protix-panel .ttl .tm {
  font-size: 0.55em;
  vertical-align: super;
}
.page-service-hupex .hupex-protix-panel .lead {
  margin: 12px 0 0;
  font-size: calc(14px + 3 * (100vw - 320px) / 1180);
  line-height: 1.71;
}
@media (min-width: 1500px) {
  .page-service-hupex .hupex-protix-panel .lead {
    font-size: 17px;
  }
}
.page-service-hupex .hupex-protix-panel .lead + .lead {
  margin-top: 11px;
}
.page-service-hupex .hupex-protix.-detail .hupex-protix-panel .lead {
  margin-top: 21px;
}
@media (min-width: 768px) {
  .page-service-hupex .hupex-protix.-detail .hupex-protix-docs {
    margin-top: 48px;
  }
}
.page-service-hupex .hupex-protix.-detail .hupex-protix-panel .lead + .lead {
  margin-top: 11px;
}
/* ® はフォント側で上付き位置に描かれるため、文字の上下中央まで下げる（サイト全体） */
.reg {
  position: relative;
  top: 0.18em;
}
.page-service-hupex .hupex-protix-panel .lead a {
  color: #fff;
  text-decoration: underline;
}

/*----- 3カラムのカード（クリックで検体一覧へ） -----*/
.page-service-hupex .hupex-protix-cards {
  margin: 20px 0 0;
  display: grid;
  /* 1枚あたり280pxを下回るなら次の段へ送る */
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: calc(20px + 25 * (100vw - 320px) / 1180);
  color: #fff;
}
@media (min-width: 768px) {
  .page-service-hupex .hupex-protix-cards {
    margin-top: 32px;
  }
}
@media (min-width: 1500px) {
  .page-service-hupex .hupex-protix-cards {
    gap: 45px;
  }
}
.page-service-hupex .hupex-protix-cards .item {
  padding: 20px;
  border-radius: 10px;
  background: #061e44;
}
@media (min-width: 768px) {
  .page-service-hupex .hupex-protix-cards .item {
    padding: 20px 26px;
  }
}
.page-service-hupex .hupex-protix-cards .num-ttl {
  margin: 0 0 19px;
  font-size: calc(18px + 8 * (100vw - 320px) / 1180);
  line-height: 1.2;
  font-weight: bold;
}
@media (min-width: 1500px) {
  .page-service-hupex .hupex-protix-cards .num-ttl {
    font-size: 26px;
  }
}
.page-service-hupex .hupex-protix-cards .num-ttl .num {
  margin-right: 23px;
  font-size: 1.42em;
  vertical-align: -0.04em;
}
.page-service-hupex .hupex-protix-cards .sub {
  margin: 30px 0 0;
  padding-left: 20px;
  font-size: calc(15px + 3 * (100vw - 320px) / 1180);
  line-height: 1.56;
  font-weight: bold;
  position: relative;
}
@media (min-width: 1500px) {
  .page-service-hupex .hupex-protix-cards .sub {
    font-size: 18px;
  }
}
.page-service-hupex .hupex-protix-cards .sub::before {
  content: "";
  background: #fff;
  width: 11px;
  height: 11px;
  position: absolute;
  left: 0;
  /* 1行目の行ボックス中央（line-height 1.56 の半分）に合わせる */
  top: calc(1.56em / 2);
  transform: translateY(-50%);
}
.page-service-hupex .hupex-protix-cards .num-ttl + .sub {
  margin-top: 21px;
}
.page-service-hupex .hupex-protix-cards .txt {
  margin: 2px 0 0;
  font-size: calc(15px + 3 * (100vw - 320px) / 1180);
  line-height: 1.56;
}
@media (min-width: 1500px) {
  .page-service-hupex .hupex-protix-cards .txt {
    font-size: 18px;
  }
}

/*----- 資料ボタン2つ -----*/
.page-service-hupex .hupex-protix-docs {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  /* 1列あたり400pxを下回るなら次の段へ送る（2列化を遅らせて幅の落差を小さくする） */
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: calc(12px + 13 * (100vw - 320px) / 1180);
}
/* 1列になったときに間延びしないよう、デザイン実測の528pxで頭打ちにして中央寄せ */
.page-service-hupex .hupex-protix-docs > li {
  margin: 0 auto;
  width: 100%;
  max-width: 528px;
}
@media (min-width: 768px) {
  .page-service-hupex .hupex-protix-docs {
    margin-top: 50px;
  }
}
@media (min-width: 1500px) {
  .page-service-hupex .hupex-protix-docs {
    gap: 25px;
  }
}
.page-service-hupex .hupex-protix-docs .btn {
  /* 幅が狭いほど左右の余白を詰める（アイコン分の逃げも一緒に縮める） */
  padding: 16px calc(44px + 16 * (100vw - 320px) / 1180) 16px calc(14px + 6 * (100vw - 320px) / 1180);
  border: 1px solid #000;
  /* 既存の .is-style-btn-pdf（白背景＋枠線の資料ボタン）と同じ角丸 */
  border-radius: 10px;
  background: #fff no-repeat right calc(10px + 6 * (100vw - 320px) / 1180) center;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 74px;
  font-size: calc(14px + 4 * (100vw - 320px) / 1180);
  line-height: 1.33;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  /* 単語の途中で折り返さない。改行は本文の <wbr> の位置だけで起こす
     （収まらない場合の保険として overflow-wrap を併用） */
  word-break: keep-all;
  overflow-wrap: anywhere;
  text-wrap: balance;
  transition: 0.3s;
}
@media (min-width: 1500px) {
  .page-service-hupex .hupex-protix-docs .btn {
    padding: 16px 60px 16px 20px;
    background-position: right 16px center;
    font-size: 18px;
  }
}
.page-service-hupex .hupex-protix-docs .btn.-pdf {
  background-image: url(../images/service/hupex-doc-pdf.png);
  background-size: 34px auto;
}
.page-service-hupex .hupex-protix-docs .btn.-word {
  background-image: url(../images/service/hupex-doc-word.png);
  background-size: 31px auto;
}
@media (any-hover: hover) {
  .page-service-hupex .hupex-protix-docs .btn:hover {
    background-color: #eee;
  }
}

/*----- 検体一覧 -----*/
.page-service-hupex .hupex-protix .is-style-txt-ll::before {
  background: #275a9a;
}
.page-service-hupex .hupex-protix-label {
  /* デザイン実測（描画ピクセル）：見出し下端→37px→ラベル→11px→表 */
  margin: 27px 0 9px;
  color: #4f4644;
  /* .ai は ヒラギノ角ゴシック W6（セミボールド）指定 */
  font-weight: 600;
  /* 描画実測で合わせた値（.aiのfontSizeは15だが、実際の描画は18px相当） */
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.page-service-hupex .hupex-protix-table {
  overflow-x: auto;
}
.page-service-hupex .hupex-protix-table table {
  margin: 0;
  border: 0;
  border-collapse: collapse;
  min-width: 900px;
  font-size: calc(13px + 5 * (100vw - 320px) / 1180);
  line-height: 1.4;
}
@media (min-width: 1500px) {
  .page-service-hupex .hupex-protix-table table {
    font-size: 18px;
  }
}
.page-service-hupex .hupex-protix-table th,
.page-service-hupex .hupex-protix-table td {
  /* 行の高さをデザイン実測 58.9px に合わせる（罫線1px込み） */
  padding: 16.5px 8px;
  /* 罫線は既定で無し。デザインどおり必要な辺だけ下で引く */
  border: 0;
  text-align: center;
  vertical-align: middle;
}
.page-service-hupex .hupex-protix-table thead tr + tr th {
  padding-top: 10px;
  padding-bottom: 10px;
}

/*----- 罫線（デザイン実測どおりの作り分け） -----*/
/* ヘッダは白い縦罫線。下辺だけ黒 */
.page-service-hupex .hupex-protix-table thead th + th {
  border-left: 1px solid #fff;
}
/* ヘッダ下辺の黒罫線は右4列だけ（左の「対象群/疾患群」側には入らない） */
.page-service-hupex .hupex-protix-table thead tr:last-child th + th {
  border-bottom: 1px solid #000;
}
/* 右側4列（人種・HuPEX・統合セット・SjDセット）は黒の格子 */
.page-service-hupex .hupex-protix-table tbody td:not([class]) {
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}
/* 表の右外周と下外周 */
.page-service-hupex .hupex-protix-table tbody td:last-child {
  border-right: 1px solid #000;
}
.page-service-hupex .hupex-protix-table tbody tr:last-child td {
  border-bottom: 1px solid #000;
}
/* 縦結合していて最終行に含まれないセルにも下外周を引く */
.page-service-hupex .hupex-protix-table .-disease,
.page-service-hupex .hupex-protix-table .-cancer {
  border-bottom: 1px solid #000;
}
/* 左3列は罫線なし。疾患名列だけ「がん」3行の上辺に細い区切りが入る */
.page-service-hupex .hupex-protix-table .-name:not([rowspan]) {
  border-top: 1px solid #3e3e3f;
}
/* 列幅はデザイン（1204.8px基準）の比率に合わせる */
.page-service-hupex .hupex-protix-table .-c1 { width: 34.26%; }
.page-service-hupex .hupex-protix-table .-c2 { width: 17.4%; }
.page-service-hupex .hupex-protix-table .-c3 { width: 18.38%; }
.page-service-hupex .hupex-protix-table .-c4 { width: 14.48%; }
.page-service-hupex .hupex-protix-table .-c5 { width: 15.49%; }
.page-service-hupex .hupex-protix-table thead th {
  border-color: #fff;
  background: #0e3459;
  color: #fff;
  font-weight: normal;
}
.page-service-hupex .hupex-protix-table thead tr + tr th {
  background: #194f8f;
}
/* 左3列の幅・色はデザイン実測値（表幅1204.8px比 65 / 44 / 303px）に合わせる */
.page-service-hupex .hupex-protix-table .-group {
  background: #e4ebf3;
}
.page-service-hupex .hupex-protix-table .-disease {
  width: 5.39%;
  background: #1c4b81;
  color: #fff;
}
.page-service-hupex .hupex-protix-table .-collagen {
  width: 3.65%;
  background: #57749e;
  color: #fff;
}
.page-service-hupex .hupex-protix-table .-cancer {
  width: 3.65%;
  background: #a9d3df;
  color: #fff;
}
.page-service-hupex .hupex-protix-table .-vertical {
  writing-mode: vertical-rl;
  white-space: nowrap;
  /* デザイン実測：送り19px / 本文18px → 約0.06em */
  letter-spacing: 0.06em;
}
/* 「がん」だけ字間が広い（デザイン実測：送り39px / 本文18px → 約1.17em）。
   末尾に付く字間ぶん下にずれるので、その半分を戻して上下中央を保つ */
.page-service-hupex .hupex-protix-table .-cancer.-vertical {
  letter-spacing: 1.17em;
  /* 字間は最後の文字の後ろにも付き、その半分だけ上に寄るので上側で相殺する */
  padding-top: calc(16.5px + 1.17em);
}
.page-service-hupex .hupex-protix-table .-name {
  width: 25.15%;
  background: #f7f8fa;
}
@media (min-width: 768px) {
  .page-service-hupex .hupex-protix.-detail .hupex-protix-panel {
    padding-bottom: 63px;
  }
}
.page-service-hupex .hupex-protix.-detail .is-style-txt-ll {
  /* デザイン実測（描画ピクセル）：パネル下端→見出しの文字上端 59px */
  margin-top: 53px;
  margin-bottom: 0;
  /* .ai は ヒラギノ角ゴシック W6（セミボールド）指定 */
  color: #231815;
  font-weight: 600;
}

/*----- ページ上部のボタン2つ：600px未満は縦積み（横にはみ出すため） -----*/
@media (max-width: 599px) {
  .hupex-topbtn.is-nowrap {
    padding-left: 20px;
    padding-right: 20px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }
  .hupex-topbtn .wp-block-buttons {
    width: 100%;
  }
  .hupex-topbtn .wp-block-button {
    width: 100%;
  }
  .hupex-topbtn .wp-block-button .wp-block-button__link {
    width: 100%;
    min-width: 0;
  }
}
/* 既存の swipe-scroll は600px以上でヒントを隠すが、この表は min-width 900px のため
   940px 未満まで横スクロールが発生する。その範囲はヒントを出したままにする */
@media (min-width: 600px) and (max-width: 939px) {
  .page-service-hupex .hupex-protix-table.is-style-swipe-scroll::before {
    display: block;
  }
}

/*----- ダウンロードボタン：アイコン(右20px・幅30px)ぶんの逃げが無く、
        文字が重なっていたので右余白を確保する（塗り・線の両方） -----*/
.btn-main.-download > .btn,
.btn-main.-download > .wp-block-button__link,
.is-style-btn-main.-download > .btn,
.is-style-btn-main.-download > .wp-block-button__link,
.btn-border.-download > .btn,
.btn-border.-download > .wp-block-button__link,
.is-style-btn-border.-download > .btn,
.is-style-btn-border.-download > .wp-block-button__link {
  /* アイコン右20px＋幅30px＋文字とのアキ8px = 58px。画面幅で増やすと文字が入らないので固定 */
  padding-right: 58px;
}
@media (min-width: 1500px) {
  .btn-main.-download > .btn,
.btn-main.-download > .wp-block-button__link,
.is-style-btn-main.-download > .btn,
.is-style-btn-main.-download > .wp-block-button__link,
.btn-border.-download > .btn,
.btn-border.-download > .wp-block-button__link,
.is-style-btn-border.-download > .btn,
.is-style-btn-border.-download > .wp-block-button__link {
    padding-right: 58px;
  }
}

/*----- エクセル資料ボタン：767px以下は1カラムあたりの幅が足りず
        「における」等が途中で割れるため、1カラムにして直書きの改行も無効化する -----*/
@media (max-width: 767px) {
  .page-service-hupex .hupex-service-excel > .item {
    width: 100%;
  }
  .page-service-hupex .hupex-service-excel .item br {
    display: none;
  }
}
/* 768〜1023px は4カラムだと1件171pxで3行に割れるため2カラムにする */
@media (min-width: 768px) and (max-width: 1023px) {
  .page-service-hupex .hupex-service-excel > .item {
    width: 48%;
  }
}
/* 単語の途中で折り返さない（改行は本文の <wbr> の位置だけ） */
.btn-main.-download > .btn,
.btn-main.-download > .wp-block-button__link,
.is-style-btn-main.-download > .btn,
.is-style-btn-main.-download > .wp-block-button__link,
.btn-border.-download > .btn,
.btn-border.-download > .wp-block-button__link,
.is-style-btn-border.-download > .btn,
.is-style-btn-border.-download > .wp-block-button__link {
  word-break: keep-all;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

/* パネルを上下2ブロックに分割している。
   上＝タイトル／リード文／カード群をまとめた下段へのアンカー、下＝資料ボタン。
   分割しても1枚の青いパネルに見えるよう、上は padding-bottom:0、
   下は旧 .hupex-protix-docs の margin-top を padding-top に移して隙間を作らない
   （padding:0 のままだと子の margin が親の外へ抜けて青が途切れるため） */
.page-service-hupex .hupex-protix-panel.-link {
  display: block;
  padding-bottom: 0;
  /* a要素になったぶん .hupex-protix-panel の color:#fff より詳細度が上がるので明示する */
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.page-service-hupex .hupex-protix-panel.-link .item {
  transition: background 0.3s ease;
}
@media (hover: hover) {
  .page-service-hupex .hupex-protix-panel.-link:hover .item {
    background: #0d3266;
  }
}
.page-service-hupex .hupex-protix-panel.-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
}
.page-service-hupex .hupex-protix-panel.-docs {
  padding-top: 24px;
}
.page-service-hupex .hupex-protix-panel.-docs .hupex-protix-docs {
  margin-top: 0;
}
@media (min-width: 768px) {
  .page-service-hupex .hupex-protix-panel.-docs {
    padding-top: 50px;
  }
}
