@charset "UTF-8";
:root {
  --main-color: #2F8A46;
  --main-color-hover: #3cb059;
  --sub-color: #B65929;
  --sub-color-hover: #8c4520;
  --accent-color1: #D9EA4C;
  --accent-color1-hover: #cfe51e;
  --accent-color2: #0481EB;
  --accent-color2-hover: #279afb;
  --link-color: #2F8A46;
  --link-color-hover: #46c065;
  --text-color: #000;
  --bg-color: #F3F1EB;
  --gothic: "Zen Maru Gothic","Yu Gothic","Hiragino Kaku Gothic ProN","メイリオ","Meiryo",sans-serif;
  --mincyo: "Noto Serif JP","ヒラギノ明朝 Pro","Hiragino Mincho Pro","Yu Mincho","ＭＳ Ｐ明朝",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: 80px;
  --pc-header-height: 100px;
  --inner-wide: 1400px;
  --inner-vh: calc(var(--vh, 1vh) * 100);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes 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.8;
  font-family: var(--gothic);
  overflow-x: hidden;
  position: relative;
  word-wrap: break-word;
}
@media (min-width: 600px) {
  body {
    margin: 0;
  }
}
@media (min-width: 1024px) {
  body {
    margin: 0;
  }
}
@media (min-width: 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:hover {
  color: var(--link-color-hover);
}
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.8;
  font-family: var(--gothic);
  max-width: 100%;
}
form input[type=text]:focus,
form input[type=password]:focus,
form input[type=datetime]:focus,
form input[type=datetime-local]:focus,
form input[type=date]:focus,
form input[type=month]:focus,
form input[type=time]:focus,
form input[type=week]:focus,
form input[type=number]:focus,
form input[type=email]:focus,
form input[type=url]:focus,
form input[type=search]:focus,
form input[type=tel]:focus,
form input[type=color]:focus,
select:focus,
textarea:focus {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) inset;
  border: 1px solid #137af3;
  outline: none;
}
form input[type=text]::-moz-placeholder, form input[type=password]::-moz-placeholder, form input[type=datetime]::-moz-placeholder, form input[type=datetime-local]::-moz-placeholder, form input[type=date]::-moz-placeholder, form input[type=month]::-moz-placeholder, form input[type=time]::-moz-placeholder, form input[type=week]::-moz-placeholder, form input[type=number]::-moz-placeholder, form input[type=email]::-moz-placeholder, form input[type=url]::-moz-placeholder, form input[type=search]::-moz-placeholder, form input[type=tel]::-moz-placeholder, form input[type=color]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #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: 10px;
  line-height: 1.8;
}

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

._m {
  font-size: calc(14px + 2 * (100vw - 320px) / 1180);
  line-height: 1.8;
}
@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);
}

._w10 {
  width: 10% !important;
}

._w20 {
  width: 20% !important;
}

._w30 {
  width: 30% !important;
}

._w40 {
  width: 40% !important;
}

._w50 {
  width: 50% !important;
}

._w60 {
  width: 60% !important;
}

._w70 {
  width: 70% !important;
}

._w80 {
  width: 80% !important;
}

._w90 {
  width: 90% !important;
}

._w100 {
  width: 100% !important;
}

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

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

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

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

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

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

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

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

/* NAVIGATION
------------------------------------ */
#site-menu-btn {
  margin: 0;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2000;
  width: var(--sp-header-height);
  height: var(--sp-header-height);
}
@media (min-width: 1024px) {
  #site-menu-btn {
    display: none;
  }
}
#site-menu-btn > .line {
  margin: auto;
  background: var(--main-color);
  border-radius: 2px;
  position: absolute;
  top: 43%;
  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: -9px;
}
#site-menu-btn > .line::after {
  top: 9px;
}
#site-menu-btn .hidden {
  color: var(--main-color);
  display: block;
  font-size: 11px;
  line-height: 1;
  position: absolute;
  left: 50%;
  bottom: -22px;
  letter-spacing: 1px;
  transform: translate(-50%, 0);
}
#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-menu-btn.js-open .hidden {
  color: #fff;
}

#site-nav {
  margin: 0;
  padding: var(--sp-header-height) 0 0;
  background: var(--main-color);
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  z-index: 1000;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  #site-nav {
    margin: 0 0 0 auto;
    padding: 0;
    background: none;
    position: static;
    width: auto;
    height: auto;
  }
}
#site-nav-wrap {
  width: 100%;
  height: inherit;
  overflow-y: auto;
  position: relative;
}
#site-nav-list {
  margin: 0 20px;
  font-weight: bold;
}
@media (min-width: 1024px) {
  #site-nav-list {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: normal;
  }
}
@media (min-width: 1024px) {
  #site-nav-list > li {
    background: #F3F1EB;
  }
  #site-nav-list > li:first-child {
    padding-left: 25px;
    border-radius: 10px 0 0 10px;
  }
  #site-nav-list > li:nth-child(6) {
    padding-right: 25px;
    border-radius: 0 10px 10px 0;
  }
}
#site-nav-list > li > a {
  padding: 15px 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  #site-nav-list > li > a {
    color: var(--text-color);
  }
}
@media (any-hover: hover) {
  #site-nav-list > li > a:hover {
    color: var(--sub-color);
  }
}
@media (any-hover: none) {
  #site-nav-list > li > a:active {
    color: var(--sub-color);
  }
}
#site-nav-list > .contact {
  margin: 20px 0;
  background: none;
}
@media (min-width: 1024px) {
  #site-nav-list > .contact {
    margin: 0 0 0 20px;
  }
}
#site-nav-list > .contact > a {
  padding: 15px 30px;
  background: var(--main-color);
  border-radius: 10px;
  color: #fff;
}
@media (any-hover: hover) {
  #site-nav-list > .contact > a:hover {
    background: var(--main-color-hover);
    color: #fff;
  }
}
@media (any-hover: none) {
  #site-nav-list > .contact > a:active {
    background: var(--main-color-hover);
    color: #fff;
  }
}

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

/*
===== FOOTER ==========================================
*/
#site-footer {
  padding-top: calc(40px + 10 * (100vw - 320px) / 1180);
  padding-bottom: calc(40px + 10 * (100vw - 320px) / 1180);
  background: #F6F5F0;
  font-weight: 500;
}
@media (min-width: 1500px) {
  #site-footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
#site-footer .inner {
  padding: 0 30px;
}
@media (min-width: 1024px) {
  #site-footer-column {
    display: flex;
  }
}
#site-footer-info {
  margin: 0;
  display: flex;
}
#site-footer-info .logo {
  margin: 0 20px 20px 0;
  width: 70px;
}
@media (min-width: 1024px) {
  #site-footer-info .logo {
    margin: 0 20px 0 0;
    width: auto;
  }
}
#site-footer-info .txtarea .site-name {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
}
#site-footer-info .txtarea .site-name > span {
  font-size: 28px;
  line-height: 1.5;
  font-weight: bold;
}
#site-footer-nav {
  display: none;
}
@media (min-width: 1024px) {
  #site-footer-nav {
    margin: 0 0 0 auto;
    font-size: 15px;
    line-height: 1.8;
    display: flex;
    text-align: left;
  }
}
#site-footer-nav a {
  color: #000;
}
@media (any-hover: hover) {
  #site-footer-nav a:hover {
    text-decoration: underline;
  }
}
@media (any-hover: none) {
  #site-footer-nav a:active {
    text-decoration: underline;
  }
}
#site-footer-nav .name {
  margin: 0;
}
#site-footer-nav > .nav-list {
  margin: 0 0 0 50px;
}
#site-footer-nav > .nav-list .nav {
  margin: 0;
}
#site-footer-nav > .nav-list li {
  margin: 2px 0;
}
#site-footer .copyright {
  padding: 10px;
  display: block;
  font-size: calc(11px + 2 * (100vw - 320px) / 1180);
  line-height: 1.8;
  text-align: center;
}
@media (min-width: 1500px) {
  #site-footer .copyright {
    font-size: 13px;
  }
}
@media (min-width: 1024px) {
  #site-footer .copyright {
    text-align: left;
  }
}

#page-scroll {
  margin: 0;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 500;
  opacity: 0;
  transition: 0.3s;
}
#page-scroll > .totop {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
#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.-s {
  max-width: 1140px;
}
.inner.-m {
  max-width: 1220px;
}
.inner.-l {
  max-width: 1640px;
}

#main-column {
  display: flex;
  flex-direction: column;
}
#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;
}

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

h4, .h4 {
  margin: 0 0 20px;
  font-size: calc(16px + 2 * (100vw - 320px) / 1180);
  line-height: 1.8;
}
@media (min-width: 1500px) {
  h4, .h4 {
    font-size: 18px;
  }
}
h4 > .s, .h4 > .s {
  font-size: calc(14px + 1 * (100vw - 320px) / 1180);
  line-height: 1.8;
}
@media (min-width: 1500px) {
  h4 > .s, .h4 > .s {
    font-size: 15px;
  }
}

h5, .h5 {
  margin: 1.5em auto;
  font-size: calc(14px + 2 * (100vw - 320px) / 1180);
  line-height: 1.8;
}
@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%, var(--accent-color1) 50%);
  font-weight: bold;
  font-style: normal;
}

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

.cat-main {
  margin: 0;
  padding: 4px 8px;
  background: var(--main-color);
  border-radius: 6px;
  color: #FFF;
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  min-width: 7.5em;
}
.cat-main.info {
  background: #ED7C33;
}
.cat-main.izumi-news {
  background: #58A533;
}
.cat-main.izumi-event {
  background: #A27B4C;
}

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

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

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

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

/*
===== Flexbox サイズ固定 ====================================
*/
.fix-row {
  margin: 0 -1%;
  display: flex;
  flex-wrap: wrap;
  width: 102%;
}
.fix-row.-ai-ct {
  align-items: center;
}
.fix-row > .item {
  margin: 0 1% 20px;
}
.fix-row > .item.-o-1 {
  order: -1;
}
.fix-row > .item.-o1 {
  order: 1;
}
.fix-row > .item.-o2 {
  order: 2;
}
.fix-row > .item.-o3 {
  order: 3;
}
.fix-row > .item.-o4 {
  order: 4;
}
.fix-row > .item.-o5 {
  order: 5;
}
.fix-row > .item > p:last-child {
  margin-bottom: 0;
}
.fix-row.-m2 {
  margin-left: -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%;
}
@media (min-width: 600px) {
  .grid03 > .item {
    width: 31.33%;
  }
}
.grid03.-m2 > .item {
  width: 96%;
}
@media (min-width: 600px) {
  .grid03.-m2 > .item {
    width: 29.33%;
  }
}
.grid03.-nm > .item {
  width: 100%;
}
@media (min-width: 600px) {
  .grid03.-nm > .item {
    width: 33.33%;
  }
}

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

.grid05 > .item {
  width: 48%;
}
@media (min-width: 600px) {
  .grid05 > .item {
    width: 31.33%;
  }
}
@media (min-width: 1024px) {
  .grid05 > .item {
    width: 18%;
  }
}
.grid05.-m2 > .item {
  width: 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: 12px;
  background: #01182e;
  color: #fff;
  cursor: pointer;
  text-align: center;
  position: relative;
}
.acr-arrow > .trigger-ne::before,
.acr-arrow > .trigger-pr::before,
.is-style-acr-arrow > .trigger-ne::before,
.is-style-acr-arrow > .trigger-pr::before {
  content: var(--icon-arrow-down);
  font-family: var(--icon);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.acr-arrow > .trigger-ne.js-active::before,
.acr-arrow > .trigger-pr.js-active::before,
.is-style-acr-arrow > .trigger-ne.js-active::before,
.is-style-acr-arrow > .trigger-pr.js-active::before {
  transform: translateY(-50%) rotate(-180deg);
}
.acr-arrow > .content,
.is-style-acr-arrow > .content {
  padding: 12px;
}

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

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

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

.btn-list > .item > .btn, .btn-pdf .btn,
.btn-pdf .wp-block-button__link,
.is-style-btn-pdf .btn,
.is-style-btn-pdf .wp-block-button__link, .btn-ex .btn,
.btn-ex .wp-block-button__link,
.is-style-btn-ex .btn,
.is-style-btn-ex .wp-block-button__link, .btn-mail .btn,
.btn-mail .wp-block-button__link,
.is-style-btn-mail .btn,
.is-style-btn-mail .wp-block-button__link, .btn-border .btn,
.btn-border .wp-block-button__link,
.is-style-btn-border .btn,
.is-style-btn-border .wp-block-button__link, .btn-main .btn,
.btn-main .wp-block-button__link,
.is-style-btn-main .btn,
.is-style-btn-main .wp-block-button__link {
  padding: 15px;
  background: #fff;
  border-radius: 40px;
  font-size: 16px;
  line-height: 1.8;
  display: inline-block;
  font-weight: bold;
  min-width: 220px;
  text-align: center;
  text-decoration: none;
  position: relative;
}

.btn-ex .btn::before,
.btn-ex .wp-block-button__link::before,
.is-style-btn-ex .btn::before,
.is-style-btn-ex .wp-block-button__link::before, .btn-mail .btn::before,
.btn-mail .wp-block-button__link::before,
.is-style-btn-mail .btn::before,
.is-style-btn-mail .wp-block-button__link::before, .btn-main.-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: 15px;
  top: 50%;
  transform: translateY(-50%);
}

/*----- メイン ボタン -----*/
.btn-main .btn,
.btn-main .wp-block-button__link,
.is-style-btn-main .btn,
.is-style-btn-main .wp-block-button__link {
  padding-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, .btn-main.-arrow > .wp-block-button__link,
.is-style-btn-main.-arrow > .btn,
.is-style-btn-main.-arrow > .wp-block-button__link {
  padding-left: calc(20px + 10 * (100vw - 320px) / 1180);
  padding-right: calc(30px + 10 * (100vw - 320px) / 1180);
}
@media (min-width: 1500px) {
  .btn-main.-arrow > .btn, .btn-main.-arrow > .wp-block-button__link,
.is-style-btn-main.-arrow > .btn,
.is-style-btn-main.-arrow > .wp-block-button__link {
    padding-left: 30px;
  }
}
@media (min-width: 1500px) {
  .btn-main.-arrow > .btn, .btn-main.-arrow > .wp-block-button__link,
.is-style-btn-main.-arrow > .btn,
.is-style-btn-main.-arrow > .wp-block-button__link {
    padding-right: 40px;
  }
}
.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-down);
}
.btn-main.-s > .btn, .btn-main.-s > .wp-block-button__link,
.is-style-btn-main.-s > .btn,
.is-style-btn-main.-s > .wp-block-button__link {
  font-size: 13px;
  line-height: 1.8;
}

/*----- ボタンボーダー -----*/
.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(16px + 2 * (100vw - 320px) / 1180);
  line-height: 1.5;
  border: 1px solid currentColor;
  color: var(--main-color);
}
@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: 18px;
  }
}
@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 {
    border-color: transparent;
    background: var(--main-color);
    color: #fff;
  }
}
@media (any-hover: none) {
  .btn-border .btn:active,
.btn-border .wp-block-button__link:active,
.is-style-btn-border .btn:active,
.is-style-btn-border .wp-block-button__link:active {
    border-color: transparent;
    background: var(--main-color);
    color: #fff;
  }
}

/*----- ボタン email -----*/
.btn-mail .btn,
.btn-mail .wp-block-button__link,
.is-style-btn-mail .btn,
.is-style-btn-mail .wp-block-button__link {
  padding-left: calc(20px + 10 * (100vw - 320px) / 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(40px + 10 * (100vw - 320px) / 1180);
  background: #fff;
  border: 1px solid var(--main-color);
  border-radius: 40px;
  color: var(--main-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: 50px;
  }
}
.btn-pdf .btn::before,
.btn-pdf .wp-block-button__link::before,
.is-style-btn-pdf .btn::before,
.is-style-btn-pdf .wp-block-button__link::before {
  content: "";
  background: url(../images/icon-pdf.svg) no-repeat left top/contain;
  width: 15px;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
}
@media (any-hover: hover) {
  .btn-pdf .btn:hover,
.btn-pdf .wp-block-button__link:hover,
.is-style-btn-pdf .btn:hover,
.is-style-btn-pdf .wp-block-button__link:hover {
    border-color: transparent;
    background: var(--main-color);
    color: #fff;
  }
}
@media (any-hover: none) {
  .btn-pdf .btn:active,
.btn-pdf .wp-block-button__link:active,
.is-style-btn-pdf .btn:active,
.is-style-btn-pdf .wp-block-button__link:active {
    border-color: transparent;
    background: var(--main-color);
    color: #fff;
  }
}

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

/*----- 画像　2カラム -----*/
.column-02 {
  margin-top: calc(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: 600px) {
  .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: 600px) {
  .column-02-img {
    margin: 0;
  }
  .column-02-img.-w20 {
    width: 20%;
  }
  .column-02-img.-w30 {
    width: 30%;
  }
  .column-02-img.-w40 {
    width: 40%;
  }
  .column-02-img.-w45 {
    width: 45%;
  }
  .column-02-img.-w50 {
    width: 50%;
  }
  .column-02-img.-w60 {
    width: 60%;
  }
  .column-02-img.-w70 {
    width: 70%;
  }
}
.column-02-img.-cover {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.column-02-img.-cover img {
  width: 100%;
  height: 100%;
  max-width: none;
}
.column-02-txtarea {
  margin-top: 30px;
}
@media (min-width: 600px) {
  .column-02-txtarea {
    margin: 0;
    flex: 1;
  }
}
.column-02-txtarea > :last-child {
  margin-bottom: 0;
}
@media (min-width: 600px) {
  .column-02.-left .column-02-img {
    text-align: left;
  }
}
@media (min-width: 600px) {
  .column-02.-left .column-02-txtarea {
    padding-left: 60px;
  }
}
.column-02.-left.-sp-rev .column-02-txtarea {
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .column-02.-left.-sp-rev .column-02-txtarea {
    margin-bottom: 0;
  }
}
@media (min-width: 600px) {
  .column-02.-right .column-02-img {
    text-align: right;
  }
}
.column-02.-right .column-02-txtarea {
  margin: 0 0 20px;
}
@media (min-width: 600px) {
  .column-02.-right .column-02-txtarea {
    margin-bottom: 0;
    padding-right: 60px;
  }
}
.column-02.-right.-sp-rev .column-02-txtarea {
  margin: 30px 0 0;
}

/*----- 共通お問い合わせエリア -----*/
.contact-area {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: calc(30px + 30 * (100vw - 320px) / 1180);
  padding-bottom: calc(30px + 30 * (100vw - 320px) / 1180);
  background: #5AC18E;
  background: linear-gradient(180deg, rgb(90, 193, 142) 0%, rgb(14, 137, 102) 50%, rgb(0, 127, 95) 100%);
  color: #fff;
  font-size: calc(15px + 3 * (100vw - 320px) / 1180);
  line-height: 1.8;
  text-align: left;
}
@media (min-width: 1500px) {
  .contact-area {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 1500px) {
  .contact-area {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .contact-area {
    background: linear-gradient(90deg, rgb(90, 193, 142) 0%, rgb(55, 167, 123) 30%, rgb(14, 137, 102) 50%, rgb(0, 127, 95) 100%);
  }
}
.contact-area-ttl {
  margin: 0 0 20px;
  font-size: calc(24px + 16 * (100vw - 320px) / 1180);
  line-height: 1.5;
}
@media (min-width: 1500px) {
  .contact-area-ttl {
    font-size: 40px;
  }
}
@media (min-width: 1024px) {
  .contact-area-column {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
}
.contact-area-column > .item {
  margin: 0;
}
@media (min-width: 1024px) {
  .contact-area-column > .item {
    width: 50%;
  }
}
.contact-area-column > .item.recruit {
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .contact-area-column > .item.recruit {
    margin-bottom: 0;
    padding-right: 150px;
  }
}
.contact-area-column > .item.contact {
  padding: 20px 0 0;
  border-top: 1px solid #fff;
}
@media (min-width: 1024px) {
  .contact-area-column > .item.contact {
    padding: 0 0 0 150px;
    border: none;
    border-left: 1px solid #fff;
  }
}
.contact-area-column .btn-border .btn {
  display: block;
  text-align: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .contact-area-column .btn-border .btn {
    margin: 40px 0 0;
    padding: 20px;
  }
}

.bnr-list {
  margin: 40px 0;
}
@media (min-width: 600px) {
  .bnr-list {
    margin: 50px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.bnr-list > li {
  margin: 20px 0 0;
  text-align: center;
}
@media (min-width: 600px) {
  .bnr-list > li {
    margin: 0 0 0 20px;
  }
}
.bnr-list > li:first-child {
  margin: 0;
}
@media (min-width: 600px) {
  .bnr-list > li:first-child {
    margin: 0;
  }
}

/*----- 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-dl {
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .entries-dl {
    margin-bottom: 20px;
  }
}
.entries-dl a {
  color: #000;
}
.entries-dl > dt {
  margin: 15px 0 5px;
}
.entries-dl > dt time {
  display: inline-block;
  width: 5.5em;
}
.entries-dl > dd {
  padding: 0 0 15px;
  border-bottom: 1px solid #ccc;
}
@media (min-width: 1024px) {
  .entries-dl > dt {
    margin: 15px 0 0;
    float: left;
  }
  .entries-dl > dd {
    padding: 15px 0 15px 13em;
  }
}

/*----- 非表示 -----*/
.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.8;
  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.8;
}
@media (min-width: 1500px) {
  table, .wp-block-table table {
    font-size: 16px;
  }
}
table thead, .wp-block-table table thead {
  background: var(--bg-color);
}
table thead th, .wp-block-table table thead th {
  vertical-align: middle;
  text-align: center;
}
table th, .wp-block-table table th, table td, .wp-block-table table td {
  padding: 1em 0.5em;
  text-align: left;
}
@media (min-width: 600px) {
  table th, .wp-block-table table th, table td, .wp-block-table table td {
    padding: 1em;
  }
}

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

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

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

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

.wp-block-table .wp-element-caption {
  font-size: 14px;
  line-height: 1.8;
  text-align: right;
}
.wp-block-table.is-style-stripes {
  margin: 0;
  border: none !important;
}
/*----- 見出しメイン -----*/
.ttl-main,
.is-style-ttl-main {
  margin-bottom: 20px;
  color: var(--main-color);
  font-size: calc(22px + 11 * (100vw - 320px) / 1180);
  line-height: 1.5;
}
@media (min-width: 1500px) {
  .ttl-main,
.is-style-ttl-main {
    font-size: 33px;
  }
}

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

/*----- タイトル　英語サブタイトル -----*/
.ttl-en {
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}
.ttl-en > .ttl {
  margin: 0;
  display: block;
  font-size: calc(24px + 9 * (100vw - 320px) / 1180);
  line-height: 1.5;
}
@media (min-width: 1500px) {
  .ttl-en > .ttl {
    font-size: 33px;
  }
}
.ttl-en > .en {
  margin: 0 0 5px;
  color: var(--main-color);
  display: inline-block;
  font-size: calc(14px + 4 * (100vw - 320px) / 1180);
  line-height: 1;
  text-transform: capitalize;
}
@media (min-width: 1500px) {
  .ttl-en > .en {
    font-size: 18px;
  }
}
.ttl-en.-mc {
  text-align: left;
}
.ttl-en.-mc > .ttl {
  color: var(--main-color);
  font-size: calc(22px + 8 * (100vw - 320px) / 1180);
  line-height: 1.5;
}
@media (min-width: 1500px) {
  .ttl-en.-mc > .ttl {
    font-size: 30px;
  }
}
.ttl-en.-wh > .en {
  background: #fff;
}

/*----- タイトル　バルーン付 -----*/
.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;
  font-size: calc(20px + 14 * (100vw - 320px) / 1180);
  line-height: 1.4;
  font-weight: bold;
}
@media (min-width: 1500px) {
  .txt-llead,
.is-style-txt-llead {
    font-size: 34px;
  }
}
.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: 25px;
  font-size: calc(18px + 8 * (100vw - 320px) / 1180);
  line-height: 1.5;
  font-weight: bold;
}
@media (min-width: 1500px) {
  .txt-lead,
.is-style-txt-lead {
    font-size: 26px;
  }
}

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

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

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

.txt-abar,
.is-style-txt-abar, .txt-sbar,
.is-style-txt-sbar, .txt-mbar,
.is-style-txt-mbar, .txt-whbar,
.is-style-txt-whbar, .txt-bgbar,
.is-style-txt-bgbar {
  margin-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;
}

/*----- 黒丸リスト -----*/
.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;
}
.list-border > li,
.is-style-list-border > li {
  padding: 15px 0;
  border-bottom: 1px dashed #B0B0B1;
  font-size: calc(16px + 6 * (100vw - 320px) / 1180);
  line-height: 1.5;
}
@media (min-width: 1500px) {
  .list-border > li,
.is-style-list-border > li {
    font-size: 22px;
  }
}
@media (min-width: 600px) {
  .list-border > li,
.is-style-list-border > li {
    text-align: center;
  }
} /*----- 数字リスト -----*/
.list-number,
.is-style-list-number {
  counter-reset: item;
  list-style-type: none;
}
.list-number > li,
.is-style-list-number > li {
  margin: 0 0 10px;
  padding: 0 0 0 1.5em;
  position: relative;
}
.list-number > li::before,
.is-style-list-number > li::before {
  counter-increment: item;
  content: counter(item) ".";
  color: var(--main-color);
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

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

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

/*
===== 固定ページ 共通 page.php ====================================
*/
.page-common-ttl {
  margin-bottom: calc(40px + 40 * (100vw - 320px) / 1180);
  padding: 0 10px;
  text-align: center;
}
@media (min-width: 1500px) {
  .page-common-ttl {
    margin-bottom: 80px;
  }
}
.page-common-anchor {
  display: flex;
  justify-content: center;
}
.page-common-anchor > li > a {
  padding: 8px 8px;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  display: block;
  text-align: center;
  text-decoration: none;
}
@media (any-hover: hover) {
  .page-common-anchor > li > a:hover {
    background: var(--main-color-hover);
    color: #fff;
  }
}
@media (any-hover: none) {
  .page-common-anchor > li > a:active {
    background: var(--main-color-hover);
    color: #fff;
  }
}
.page-common-anchor > li > .current {
  background: var(--main-color-hover);
  color: #fff;
}

/*
===== アーカイブ 共通 archive.php ====================================
*/
.archive .inner {
  max-width: 1140px;
}
.archive .entries-dl {
  margin-bottom: calc(40px + 40 * (100vw - 320px) / 1180);
}
@media (min-width: 1500px) {
  .archive .entries-dl {
    margin-bottom: 80px;
  }
}
.archive-cat {
  margin-bottom: calc(25px + 25 * (100vw - 320px) / 1180);
  display: flex;
  font-weight: bold;
  overflow-x: auto;
}
@media (min-width: 1500px) {
  .archive-cat {
    margin-bottom: 50px;
  }
}
.archive-cat > li {
  margin: 0 1px;
  flex: 1;
  white-space: nowrap;
}
.archive-cat > li > a {
  padding: 15px;
  color: #000;
  background: #E5F5ED;
  border-radius: 4px;
  display: block;
  text-align: center;
  text-decoration: none;
}
@media (any-hover: hover) {
  .archive-cat > li > a:hover {
    background: var(--main-color-hover);
    color: #fff;
  }
}
@media (any-hover: none) {
  .archive-cat > li > a:active {
    background: var(--main-color-hover);
    color: #fff;
  }
}
.archive-cat > li > .current {
  background: var(--main-color);
  color: #fff;
}
.archive .wp-pagenavi {
  margin-top: calc(40px + 30 * (100vw - 320px) / 1180);
  margin-bottom: calc(40px + 30 * (100vw - 320px) / 1180);
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
@media (min-width: 1500px) {
  .archive .wp-pagenavi {
    margin-top: 70px;
    margin-bottom: 70px;
  }
}
.archive .wp-pagenavi a {
  margin: 0 5px 10px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--main-color);
  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 var(--main-color);
  border-radius: 4px;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  vertical-align: middle;
}
.archive .wp-pagenavi span.current {
  border: 1px solid var(--main-color);
  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: 940px;
}
.single-header {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
  border-bottom: 2px dotted #000;
  text-align: left;
}
@media (min-width: 1500px) {
  .single-header {
    margin-bottom: 50px;
  }
}
.single-header-ttl {
  margin: 20px 0;
  font-size: calc(20px + 13 * (100vw - 320px) / 1180);
  line-height: 1.5;
  font-weight: bold;
  text-align: left;
  position: relative;
}
@media (min-width: 1500px) {
  .single-header-ttl {
    font-size: 33px;
  }
}
.single-header-meta {
  display: flex;
  align-items: center;
}
.single-header .date {
  margin: 0 20px 0 0;
  display: block;
  font-size: 14px;
  line-height: 1.8;
}
.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: table;
  table-layout: fixed;
  width: 100%;
}
.single-footer-nav > .item {
  display: table-cell;
  text-align: center;
}
.single-footer-nav > .prev {
  text-align: left;
}
.single-footer-nav > .next {
  text-align: right;
}
/*
===== TOP ====================================
*/
#main-visual {
  margin-bottom: calc(20px + 20 * (100vw - 320px) / 1180);
  overflow: hidden;
  width: 100%;
  position: relative;
}
@media (min-width: 1500px) {
  #main-visual {
    margin-bottom: 40px;
  }
}
#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;
}

@media (min-width: 1024px) {
  .top-page-about .about-column {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .top-page-about .about-column-img {
    width: 53%;
    max-width: 720px;
  }
}
@media (min-width: 1024px) {
  .top-page-about .about-column-txtarea {
    padding: 0 5% 0 8%;
    flex: 1;
  }
}
.top-page-about .about-column-txtarea .btn-main {
  text-align: center;
}
@media (min-width: 1024px) {
  .top-page-about .about-column-txtarea .btn-main {
    margin-top: 40px;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .top-page-bakery .bakery-column {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .top-page-bakery .bakery-column-img {
    width: 53%;
    max-width: 720px;
  }
}
@media (min-width: 1024px) {
  .top-page-bakery .bakery-column-txtarea {
    padding: 0 8% 0 5%;
    flex: 1;
    order: -1;
  }
}
.top-page-bakery .bakery-column-txtarea .btn-main {
  text-align: center;
}
@media (min-width: 1024px) {
  .top-page-bakery .bakery-column-txtarea .btn-main {
    margin-top: 40px;
    text-align: left;
  }
}

.top-page-izumi {
  padding-top: calc(40px + 30 * (100vw - 320px) / 1180);
  padding-bottom: calc(40px + 30 * (100vw - 320px) / 1180);
  background: var(--bg-color);
}
@media (min-width: 1500px) {
  .top-page-izumi {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.top-page-izumi .ttl-en {
  margin-bottom: calc(40px + 30 * (100vw - 320px) / 1180);
}
@media (min-width: 1500px) {
  .top-page-izumi .ttl-en {
    margin-bottom: 70px;
  }
}
.top-page-izumi .izumi-bnr {
  margin: 0 0 30px -20px;
  width: calc(100% + 40px);
}
@media (min-width: 1024px) {
  .top-page-izumi .izumi-bnr {
    margin: 0 0 50px;
  }
}
.top-page-izumi .izumi-pickup {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.top-page-izumi .izumi-pickup .item {
  padding: 0 2%;
  position: relative;
  width: 46%;
}
@media (min-width: 1024px) {
  .top-page-izumi .izumi-pickup .item {
    padding: 0 20px;
    width: auto;
  }
}
.top-page-izumi .izumi-pickup .item .flag {
  background: var(--sub-color);
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: calc(14px + 2 * (100vw - 320px) / 1180);
  line-height: 1.8;
  position: absolute;
  left: -10px;
  top: -10px;
  width: 45px;
  height: 45px;
}
@media (min-width: 1500px) {
  .top-page-izumi .izumi-pickup .item .flag {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .top-page-izumi .izumi-pickup .item .flag {
    left: 0;
    top: -30px;
    width: 80px;
    height: 80px;
  }
}

.top-page-topics {
  position: relative;
}
@media (min-width: 1024px) {
  .top-page-topics .topics-column {
    display: flex;
    justify-content: space-between;
  }
}
.top-page-topics .topics-column-item {
  position: relative;
}
@media (min-width: 1024px) {
  .top-page-topics .topics-column-item {
    width: 48%;
  }
}
.top-page-topics .topics-column-item .ttl-en {
  text-align: left;
}
.top-page-topics .topics-column-item .ttl-en > .ttl {
  font-size: calc(22px + 8 * (100vw - 320px) / 1180);
  line-height: 1.5;
}
@media (min-width: 1500px) {
  .top-page-topics .topics-column-item .ttl-en > .ttl {
    font-size: 30px;
  }
}
.top-page-topics .go-list {
  text-align: center;
}
@media (min-width: 1024px) {
  .top-page-topics .go-list {
    position: absolute;
    top: 10px;
    right: 0;
  }
}

/*
===== 事業所紹介 ==========================================
*/
.page-about .border-block {
  padding-top: calc(30px + 20 * (100vw - 320px) / 1180);
  border-top: 3px dotted #000;
}
@media (min-width: 1500px) {
  .page-about .border-block {
    padding-top: 50px;
  }
}
.page-about .monthly-table table {
  margin: 10px 0;
  max-width: 500px;
}

.page-about-contents {
  padding: 20px 0;
  background: #F2FAF6;
}
@media (min-width: 1024px) {
  .page-about-contents {
    padding: 50px 0;
  }
}
.page-about-contents .inner {
  position: relative;
}
@media (min-width: 1024px) {
  .page-about-contents .contents-column {
    display: flex;
    align-items: center;
    height: 670px;
  }
}
.page-about-contents .contents-column-txtarea {
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  position: relative;
  z-index: 3;
}
@media (min-width: 1024px) {
  .page-about-contents .contents-column-txtarea {
    padding: 65px 70px;
    border-radius: 40px;
    width: 51%;
  }
}
.page-about-contents .contents-column-txtarea .wp-block-buttons {
  justify-content: center;
}
@media (min-width: 1024px) {
  .page-about-contents .contents-column-txtarea .wp-block-buttons {
    justify-content: flex-start;
  }
}
@media (min-width: 1024px) {
  .page-about-contents .contents-column-img {
    width: 61%;
  }
}
@media (min-width: 1024px) {
  .page-about-contents .contents-column-img img {
    border-radius: 40px;
    height: 670px;
  }
}
@media (min-width: 1024px) {
  .page-about-contents .contents-column.img-right .contents-column-img {
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media (min-width: 1024px) {
  .page-about-contents .contents-column.img-left {
    justify-content: flex-end;
  }
}
@media (min-width: 1024px) {
  .page-about-contents .contents-column.img-left .contents-column-img {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.page-about-flow {
  padding-top: calc(40px + 40 * (100vw - 320px) / 1180);
  padding-bottom: calc(40px + 40 * (100vw - 320px) / 1180);
  background: #F4F5F8;
}
@media (min-width: 1500px) {
  .page-about-flow {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.page-about-flow .flow-column {
  display: flex;
}
.page-about-flow .flow-column-num {
  position: relative;
}
.page-about-flow .flow-column-num::before {
  content: "";
  background: var(--main-color);
  height: 100%;
  width: 1px;
  position: absolute;
  left: 32px;
  top: 0;
}
.page-about-flow .flow-column-num.-nb::before {
  content: "";
  background: none;
}
.page-about-flow .flow-column-num > .num {
  margin: 0;
  background: var(--main-color);
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  line-height: 1;
  font-weight: bold;
  width: 64px;
  height: 64px;
  position: relative;
  z-index: 3;
}
.page-about-flow .flow-column-txtarea {
  padding: 10px 0 0 30px;
  flex: 1;
}
.page-about-flow .border-block {
  margin: 30px 0 0;
  padding: 30px 0 0;
}
.page-about-flow .border-block > p {
  text-align: center;
}

@media (min-width: 600px) {
  .page-about-faciliity .facility-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.page-about-faciliity .facility-column-item {
  margin-bottom: calc(30px + 20 * (100vw - 320px) / 1180);
}
@media (min-width: 1500px) {
  .page-about-faciliity .facility-column-item {
    margin-bottom: 50px;
  }
}
@media (min-width: 600px) {
  .page-about-faciliity .facility-column-item {
    width: 48%;
  }
}
.page-about-faciliity .facility-column-item .img {
  margin-bottom: 30px;
}
.page-about-faciliity .facility-column-item .outline-table table tr > :first-child {
  width: 25%;
}
@media (min-width: 1024px) {
  .page-about-faciliity .facility-column-item .outline-table table tr > :first-child {
    width: 18%;
  }
}

/*
===== パン工房いずみ ==========================================
*/
.page-bakery .border-block {
  padding-top: calc(30px + 20 * (100vw - 320px) / 1180);
  border-top: 3px dotted #000;
}
@media (min-width: 1500px) {
  .page-bakery .border-block {
    padding-top: 50px;
  }
}

.page-bakery-res {
  margin-bottom: 0;
  padding-top: calc(40px + 40 * (100vw - 320px) / 1180);
  padding-bottom: calc(40px + 40 * (100vw - 320px) / 1180);
  background: #F2FAF6;
}
@media (min-width: 1500px) {
  .page-bakery-res {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.page-bakery-res .res-contact {
  padding: 20px;
  background: #5AC18E;
  background: linear-gradient(0deg, rgb(90, 193, 142) 0%, rgb(14, 137, 102) 50%, rgb(0, 127, 95) 100%);
  border-radius: 20px;
  color: #fff;
}
@media (min-width: 1024px) {
  .page-bakery-res .res-contact {
    padding: 50px 80px;
    border-radius: 30px;
  }
}
@media (min-width: 1024px) {
  .page-bakery-res .res-contact-column {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .page-bakery-res .res-contact-column > .item {
    padding: 0 20px;
    width: 48%;
    flex: 1;
  }
  .page-bakery-res .res-contact-column > .item:first-child {
    border-right: 1px solid #fff;
  }
}
.page-bakery-res .res-contact-column > .item > h4, .page-bakery-res .res-contact-column > .item p {
  text-align: center;
}
.page-bakery-res .res-contact-column > .item .wp-block-image {
  margin: 0 0 5px;
  text-align: center;
}
.page-bakery-res .res-contact-column > .item .wp-block-buttons > .wp-block-button {
  display: block;
  width: 80%;
}

.page-bakery-menu {
  margin-top: 0;
  padding-top: calc(40px + 40 * (100vw - 320px) / 1180);
  padding-bottom: calc(40px + 40 * (100vw - 320px) / 1180);
  background: #F0EEE8;
}
@media (min-width: 1500px) {
  .page-bakery-menu {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.page-bakery-menu .fax-column {
  margin-bottom: calc(40px + 40 * (100vw - 320px) / 1180);
  padding: 20px;
  background: #fff;
  border-radius: 30px;
}
@media (min-width: 1500px) {
  .page-bakery-menu .fax-column {
    margin-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .page-bakery-menu .fax-column {
    padding: 40px;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .page-bakery-menu .fax-column-item {
    padding: 0 20px;
    flex: 1;
  }
}
.page-bakery-menu .fax-column-item > :last-child {
  margin-bottom: 0;
}
.page-bakery-menu .fax-column-item > .ttl {
  padding: 0 0 20px;
  border-bottom: 2px dotted #000;
}
.page-bakery-menu .fax-column-item .download-link {
  margin-top: 20px;
  display: flex;
  font-size: calc(14px + 4 * (100vw - 320px) / 1180);
  line-height: 1.8;
  font-weight: bold;
  height: 70px;
}
@media (min-width: 1500px) {
  .page-bakery-menu .fax-column-item .download-link {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .page-bakery-menu .fax-column-item .download-link {
    margin: 0;
    height: 100px;
  }
}
.page-bakery-menu .fax-column-item .download-link-btn {
  flex: 1;
  text-align: center;
}
.page-bakery-menu .fax-column-item .download-link-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.page-bakery-menu .fax-column-item .download-link-btn .material-icons {
  margin: 5px 5px 0 0;
}
@media (min-width: 1024px) {
  .page-bakery-menu .fax-column-item .download-link-btn .material-icons {
    margin: 5px 10px 0 0;
  }
}
.page-bakery-menu .fax-column-item .download-link-btn.menu a {
  border: 2px solid var(--main-color);
  border-radius: 60px 0 0 60px;
}
@media (min-width: 1024px) {
  .page-bakery-menu .fax-column-item .download-link-btn.menu a {
    padding: 0 0 0 20px;
  }
}
.page-bakery-menu .fax-column-item .download-link-btn.fax a {
  background: var(--main-color);
  border-radius: 0 60px 60px 0;
  color: #fff;
}
@media (min-width: 1024px) {
  .page-bakery-menu .fax-column-item .download-link-btn.fax a {
    padding: 0 20px 0 0;
  }
}
.page-bakery-menu .bread-menu {
  display: flex;
  flex-wrap: wrap;
}
.page-bakery-menu .bread-menu-item {
  margin-bottom: 40px;
  padding: 0 5px;
  width: 50%;
}
@media (min-width: 1024px) {
  .page-bakery-menu .bread-menu-item {
    padding: 0 10px;
    width: 25%;
  }
}
.page-bakery-menu .bread-menu-item > .ttl {
  margin: 0 0 10px;
  padding: 0 0 10px;
  border-bottom: 2px dotted #000;
}
.page-bakery-menu .bread-menu-item > :last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .page-bakery-access .access-column {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .page-bakery-access .access-column-txtarea {
    margin-right: 60px;
    flex: 1;
  }
}
@media (min-width: 1024px) {
  .page-bakery-access .access-column-map {
    width: 650px;
  }
}
.page-bakery-access .access-column-map .gmap-res iframe {
  height: 300px;
}
@media (min-width: 1024px) {
  .page-bakery-access .access-column-map .gmap-res iframe {
    height: 580px;
  }
}

/*
===== お問い合わせ ==========================================
*/
.page-contact input[type=text],
.page-contact input[type=password],
.page-contact input[type=datetime],
.page-contact input[type=datetime-local],
.page-contact input[type=date],
.page-contact input[type=month],
.page-contact input[type=time],
.page-contact input[type=week],
.page-contact input[type=number],
.page-contact input[type=email],
.page-contact input[type=url],
.page-contact input[type=search],
.page-contact input[type=tel],
.page-contact input[type=color],
.page-contact select,
.page-contact textarea {
  width: 100%;
}
.page-contact .inner {
  max-width: 1140px;
}
@media (min-width: 1024px) {
  .page-contact .pc-tc {
    text-align: center;
  }
}
.page-contact .tel-block {
  padding: 20px;
  background: #F4F5F8;
  border-radius: 15px;
}
@media (min-width: 1024px) {
  .page-contact .tel-block {
    padding: 50px;
  }
}
@media (min-width: 1024px) {
  .page-contact .tel-block-number {
    display: flex;
    justify-content: center;
  }
}
.page-contact .tel-block-number .wp-block-image {
  margin: 0;
  text-align: center;
}
.page-contact .tel-block-number .fax {
  font-size: calc(18px + 7 * (100vw - 320px) / 1180);
  line-height: 1.5;
  font-weight: bold;
}
@media (min-width: 1500px) {
  .page-contact .tel-block-number .fax {
    font-size: 25px;
  }
}
@media (min-width: 1024px) {
  .page-contact .tel-block-number .fax {
    margin: 0 0 20px 40px;
  }
}
.page-contact .tel-block p {
  margin: 0;
  text-align: center;
}
.page-contact .required {
  padding: 6px 10px;
  background: #F55554;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  font-size: 11px;
  line-height: 1;
}
@media (min-width: 600px) {
  .page-contact .required {
    position: absolute;
    right: 0;
    top: 25px;
  }
}
.page-contact .wpcf7-list-item {
  margin: 5px 0;
  display: block;
}
.page-contact .form-area {
  border: 1px solid #ccc;
}
.page-contact .inquiry-form tr {
  border-top: 1px solid #CCC;
}
.page-contact .inquiry-form th {
  padding: 10px 0;
  display: block;
  position: relative;
}
.page-contact .inquiry-form th p {
  margin: 0;
}
@media (min-width: 1024px) {
  .page-contact .inquiry-form th {
    width: 30%;
  }
}
.page-contact .inquiry-form td {
  margin: 0 0 5px;
  padding: 0 0 10px;
  display: block;
}
.page-contact .inquiry-form td input[type=radio] {
  margin: 0;
}
.page-contact .inquiry-form td p {
  margin-bottom: 5px;
}
.page-contact .inquiry-form td p:last-child {
  margin: 0;
}
@media (min-width: 600px) {
  .page-contact .inquiry-form th {
    padding: 20px 15px 0;
    display: table-cell;
  }
  .page-contact .inquiry-form td {
    padding: 10px 15px;
    display: table-cell;
    vertical-align: middle;
  }
}
.page-contact .submit {
  margin: 10px 0 0;
  text-align: center;
  position: relative;
}
.page-contact .submit .ajax-loader,
.page-contact .submit .wpcf7-spinner {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.page-contact .submit input {
  padding: 15px 0;
  border: 0;
  border-radius: 40px;
  background: var(--main-color);
  color: #FFF;
  cursor: pointer;
  font-family: var(--gothic);
  font-size: 16px;
  line-height: 1.8;
  font-weight: bold;
  text-align: center;
  transition-duration: 0.3s;
  width: 280px;
}
@media (any-hover: hover) {
  .page-contact .submit input:hover {
    background: var(--main-color-hover);
  }
}
@media (any-hover: none) {
  .page-contact .submit input:active {
    background: var(--main-color-hover);
  }
}
.page-contact #privacy-policy {
  margin-bottom: 20px;
  padding: 20px;
  background: #F5F8FB;
  height: 300px;
  overflow-y: scroll;
  outline: none;
  text-align: left;
}
@media (min-width: 1024px) {
  .page-contact #privacy-policy {
    padding: 50px 60px;
    height: 380px;
  }
}
.page-contact #privacy-policy .pp-ttl {
  margin: 0 0 20px;
  font-size: calc(18px + 2 * (100vw - 320px) / 1180);
  line-height: 1.5;
}
@media (min-width: 1500px) {
  .page-contact #privacy-policy .pp-ttl {
    font-size: 20px;
  }
}
.page-contact #privacy-policy dl {
  margin: 0 0 20px;
  font-size: calc(14px + 1 * (100vw - 320px) / 1180);
  line-height: 1.8;
}
@media (min-width: 1500px) {
  .page-contact #privacy-policy dl {
    font-size: 15px;
  }
}
.page-contact #privacy-policy dl > dt {
  font-weight: bold;
}
.page-contact #privacy-policy dl > dd {
  margin: 0 0 10px;
}

/*
===== 法人概要 ==========================================
*/
@media (min-width: 1024px) {
  .page-profile-access .access-column {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .page-profile-access .access-column-txtarea {
    margin-right: 60px;
    flex: 1;
  }
}
@media (min-width: 1024px) {
  .page-profile-access .access-column-map {
    width: 650px;
  }
}
.page-profile-access .access-column-map .gmap-res iframe {
  height: 300px;
}
@media (min-width: 1024px) {
  .page-profile-access .access-column-map .gmap-res iframe {
    height: 580px;
  }
}

.page-profile-recruit {
  padding-top: calc(40px + 40 * (100vw - 320px) / 1180);
  padding-bottom: calc(40px + 40 * (100vw - 320px) / 1180);
  background: #F8F9FB;
}
@media (min-width: 1500px) {
  .page-profile-recruit {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* 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: #fff;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

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

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

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

.slick-slide {
  padding: 0 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.8;
}

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

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