@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

input,
textarea,
select {
  outline: none;
  margin: 0;
  color: #000;
}

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

img {
  display: block;
}

html {
  font-size: 62.5%;
  width: 100%;
  overflow-y: scroll;
}

body {
  color: #000;
  font-family: 'Noto Sans JP', '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', 'メイリオ', sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 3.5897435897vw, 16px);
  font-size: clamp(1.4rem, 3.5897435897vw, 1.6rem);
  line-height: 1.5;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;

  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar {
  display: none;
}
body.F00,
body.F01 {
  background-color: #fafafa;
}
body.F21 {
  /* background-color: #000; */
}
body.is-menu-opened {
  overflow: hidden;
}

.inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
  max-width: 1000px;
  padding: 0 12px;
}
.inner._max-w300 {
  max-width: 300px;
}
.inner._max-w320 {
  max-width: 320px;
}
.inner._max-w420 {
  max-width: 420px;
}
.inner._max-w660 {
  max-width: 660px;
}
.inner._w1000 {
  width: 1000px;
}

.header {
  background-color: #fff;
  border-bottom: solid 1px #707070;
}
.header__inner {
  height: clamp(60px, 15.3846153846vw, 80px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: none;
  padding: 0 40px;
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__menu .username {
  font-weight: 400;
}
.header__menu .username__san {
  padding-left: 0.5em;
  font-size: 12px;
  font-size: 1.2rem;
}
.header .nav-global {
  display: none;
}
.header.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
}
.header.header-fixed.is-show {
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}
.header.header-fixed.is-hide {
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
}

.footer {
  border-top: 1px solid #888;
}
.footer__inner {
  position: relative;
  padding: 12px;
}
.footer .copyright {
  font-size: 12px;
  font-size: 1.2rem;
  font-family: Arial, Helvetica, sans-serif;
}

.drawer-menu {
  position: fixed;
  height: 100vh;
  width: 85vw;
  top: 0;
  right: 0;
  background-color: #fafafa;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  opacity: 0;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.drawer-menu.is-open {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
}

.sect-cmn {
  margin-top: clamp(100px, 25vw, 140px);
}

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

.btn {
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  line-height: 1;
  caret-color: transparent;
  display: inline-block;
  position: relative;
  color: #000;
  background-color: transparent;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.btn._logout {
  font-size: 14px;
  font-size: 1.4rem;
  border: solid 1px #000;
  padding: 1em;
}
.btn._logout:hover {
  opacity: 0.8;
}
.btn._back2menu {
  border: solid 1px #000;
  background-color: #fff;
  max-width: 240px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.btn._back2menu .icon {
  height: 1.5em;
  width: auto;
}
.btn._back2menu:hover .icon {
  -webkit-animation: kf_rotate_return 2s ease infinite;
  animation: kf_rotate_return 2s ease infinite;
}
@-webkit-keyframes kf_rotate_return {
  15% {
    rotate: -360deg;
  }
  100% {
    rotate: -360deg;
  }
}
@keyframes kf_rotate_return {
  15% {
    rotate: -360deg;
  }
  100% {
    rotate: -360deg;
  }
}
.btn._size-ss {
  width: 100%;
  border-radius: 8px;
  padding: 10px 0;
  font-size: 14px;
  font-size: 1.4rem;
}
.btn._size-s {
  width: 100%;
  border-radius: 8px;
  padding: 13px 0;
  font-size: 15px;
  font-size: 1.5rem;
}
.btn._size-m {
  width: 100%;
  border-radius: 8px;
  padding: 20px 0;
  font-size: 20px;
  font-size: 2rem;
}
.btn._size-l {
  width: 100%;
  border-radius: 8px;
  padding: 30px 0;
  font-size: 20px;
  font-size: 2rem;
  text-align: center;
}
.btn._green {
  color: #fff;
  background-color: #009aab;
  border: solid 2px #009aab;
}
.btn._green:hover {
  background-color: #05bcc6;
  border-color: #05bcc6;
}
.btn._green-frame {
  color: #009aab;
  border: solid 2px #009aab;
  background-color: transparent;
}
.btn._green-frame:hover {
  color: #fff;
  background-color: #05bcc6;
  border-color: #05bcc6;
}
.btn._gray {
  color: #fff;
  background-color: #555;
}
.btn._gray:hover {
  background-color: #666;
}
.btn._black {
  color: #fff;
  background-color: #000;
  border: solid 2px #000;
}
.btn._black:hover {
  background-color: #333;
  background-color: #333;
}
.btn._frame {
  border: solid 2px #333;
  background-color: #fff;
  color: #333;
}
.btn._frame:hover {
  opacity: 0.8;
}
.btn._red {
  color: #fff;
  background-color: #d00101;
}
.btn._red:hover {
  background-color: #f60000;
}
.btn._red-frame {
  color: #d00101;
  border: solid 2px #d00101;
  background-color: transparent;
}
.btn._red-frame:hover {
  color: #fff;
  background-color: #f60000;
  border-color: #f60000;
}
.btn-menu-open {
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  line-height: 1;
  caret-color: transparent;
  display: inline-block;
  position: relative;
  color: #000;
  background-color: #fff;
  border-radius: 0;
  cursor: pointer;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  aspect-ratio: 1/1;
  width: 44px;
  height: auto;
  display: grid;
  place-content: center;
}

.btn-menu-close {
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  line-height: 1;
  caret-color: transparent;
  display: inline-block;
  position: relative;
  color: #000;
  background-color: #fff;
  border-radius: 0;
  cursor: pointer;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  width: 44px;
  height: auto;
  aspect-ratio: 1/1;
  display: grid;
  place-content: center;
}

.btn-goto-head {
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  line-height: 1;
  caret-color: transparent;
  display: inline-block;
  position: relative;
  color: #000;
  background-color: #fff;
  border-radius: 0;
  cursor: pointer;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.nav-global__list {
  line-height: 1;
}
.nav-global__list__item {
  display: inline-block;
}
.nav-global__list__item a {
  text-decoration: none;
  color: #000;
  display: block;
}
.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 2.5em;
  -moz-column-gap: 2.5em;
  column-gap: 2.5em;
}
.breadcrumbs > span {
  position: relative;
}
.breadcrumbs > span a {
  color: #000;
}
.breadcrumbs > span:not(:last-of-type)::after {
  content: '';
  display: block;
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  background: url('../img/_ui_parts/arrow_kakumaru_s.svg') no-repeat center center;
  background-size: contain;
  top: 50%;
  left: calc(100% + 1em);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.ttl-section {
  text-align: center;
  font-size: clamp(24px, 6.1538461538vw, 32px);
  font-size: clamp(2.4rem, 6.1538461538vw, 3.2rem);
  position: relative;
  -webkit-font-feature-settings: 'palt' 1;
  font-feature-settings: 'palt' 1;
  /* プロポーショナルメトリクス有効化 */
}
#msgDialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
}
#msgDialog .dialog {
  z-index: 999;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 80vw;
  min-width: 300px;
  max-width: 600px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}
#msgDialog .dialog__head {
  height: 60px;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 16px;
}
#msgDialog .dialog__head .title {
  color: #ddd;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#msgDialog .dialog__head .title .icon-ng {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background: url('../img/_icons/icon_ng2.svg') no-repeat center center;
  background-size: contain;
}
#msgDialog .dialog__body {
  background-color: #fff;
  padding: 24px;
  line-height: 2;
}
#msgDialog .dialog__foot {
  padding: 24px 24px 32px;
}
#msgDialog .dialog__foot .buttons {
  display: none;
  gap: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-wrap: wrap;
}
#msgDialog .dialog__foot .buttons .btn {
  max-width: 200px;
}
#msgDialog .dialog .rotating-cirlce {
  display: inline-block;
  margin-left: 30px;
  width: 75px;
  height: 75px;
  border: dashed 4px #009d90;
  border-radius: 25px;
  translate: 0 20px;
  -webkit-animation: kf_rotating 5s linear infinite;
  animation: kf_rotating 5s linear infinite;
}

@-webkit-keyframes kf_rotating {
  to {
    translate: 0 20px;
    rotate: 360deg;
  }
}
@keyframes kf_rotating {
  to {
    translate: 0 20px;
    rotate: 360deg;
  }
}
#msgDialog .dialog .rotating-cirlce._reverse {
  /* border: dashed 4px #555; */
  -webkit-animation: kf_rotating2 5s linear infinite;
  animation: kf_rotating2 5s linear infinite;
}
@-webkit-keyframes kf_rotating2 {
  to {
    translate: 0 20px;
    rotate: -360deg;
  }
}
@keyframes kf_rotating2 {
  to {
    translate: 0 20px;
    rotate: -360deg;
  }
}

#msgDialog .dialog .msg-loading {
  position: relative;
  display: inline-block;
}

#msgDialog .dialog .msg-loading .icon-loading {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  display: inline-block;
  width: 120px;
  height: 120px;
  translate: 0 -50%;
  background-size: contain;
}
#msgDialog .dialog .msg-loading .icon-loading._proceed {
  background: url(../img/icon_proceed.gif) no-repeat;
  background-size: contain;
}
#msgDialog .dialog .msg-loading .icon-loading._reverse {
  background: url(../img/icon_reverse.gif) no-repeat;
  background-size: contain;
}

#msgDialog .bg-dialog {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
}

.box-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
}
.box-modal-container .box-modal {
  background-color: #fff;
  border-radius: 3px;
  min-width: 280px;
  max-width: 500px;
  padding: 20px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 999;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.box-modal-container .box-modal-bg {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
}
.box-modal-container.is-open {
  opacity: 1;
  pointer-events: inherit;
}

.ico-cmn {
  width: clamp(32px, 8.2051282051vw, 44px);
  height: clamp(32px, 8.2051282051vw, 44px);
  fill: #000;
}
.ico-cmn:hover {
  fill: #000;
}
.ico-cmn.size-l {
  width: 48px;
  height: 48px;
}
.ico-cmn.size-s {
  width: 28px;
  height: 28px;
}

.gridlist {
  display: grid;
  gap: 20px;
}
.gridlist__item {
  border: solid 1px #707070;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gridlist__item > a {
  text-decoration: none;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gridlist__item > a:hover * {
  opacity: 0.8;
}
.gridlist__item .block-image {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.gridlist__item .block-image .thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.gridlist__item .block-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.gridlist__item .block-text .title-container .title {
  font-size: clamp(16px, 4.1025641026vw, 20px);
  font-size: clamp(1.6rem, 4.1025641026vw, 2rem);
}
.gridlist__item .block-text .title-container .label {
  display: inline-block;
  font-size: clamp(12px, 3.0769230769vw, 16px);
  font-size: clamp(1.2rem, 3.0769230769vw, 1.6rem);
  border: solid 1px #707070;
}
.gridlist__item .block-text .text {
  font-size: clamp(12px, 3.0769230769vw, 16px);
  font-size: clamp(1.2rem, 3.0769230769vw, 1.6rem);
  font-weight: 400;
  line-height: 1.5;
}
.gridlist__item.dummy {
  height: 0;
  border: none;
}

.carousel {
  border-bottom: solid 1px #707070;
  border-top: solid 1px #707070;
  position: relative;
  line-height: 1;
}
.carousel__list__item {
  background-color: #fafafa;
  position: relative;
  height: clamp(540px, 1600px - 100vw, 700px);
  overflow: hidden;
}
.carousel__ui {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.tab-head {
  display: table;
  border-collapse: collapse;
  width: 100%;
}
.tab-head .tab {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  border: solid 2px #707070;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(12px, 3.0769230769vw, 16px);
  font-size: clamp(1.2rem, 3.0769230769vw, 1.6rem);
  height: clamp(56px, 14.358974359vw, 80px);
  cursor: pointer;
}
.tab-head .tab.is-active {
  border-bottom: none;
}
.tab-head .tab:hover {
  background-color: #fafafa;
}

.tab-body .tab-contents {
  display: none;
  background-color: #fafafa;
  border: solid 1px #707070;
  padding: clamp(16px, 4.1025641026vw, 32px);
  line-height: 2;
  font-weight: 400;
}
.tab-body .tab-contents.is-active {
  display: block;
}

.js-has-accordion {
  cursor: pointer;
  position: relative;
  display: block;
}
.js-has-accordion::after {
  content: '';
  display: block;
  position: absolute;
  width: 1em;
  height: 1em;
  background: url('../img/_ui_parts/icon_accordion_open.svg') no-repeat center center;
  background-size: contain;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.js-has-accordion.is-open::after {
  background-image: url('../img/_ui_parts/icon_accordion_close.svg');
}
.js-has-accordion__contents {
  height: 0;
  overflow: hidden;
}
.js-has-accordion__contents li a {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.js-has-accordion__contents.is-open {
  height: auto;
}

.sns-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.logo-corporate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: clamp(18px, 4.6153846154vw, 20px);
  font-size: clamp(1.8rem, 4.6153846154vw, 2rem);
  font-weight: 500;
}
.logo-corporate a {
  color: #000;
}
.logo-corporate a:hover {
  opacity: 0.8;
}
.logo-corporate .logo {
  width: 44px;
  aspect-ratio: 1/1;
}
.logo-corporate .name {
  display: none;
}
.logo-corporate .name._gray {
  color: #aaa;
}
.logo-corporate .deco-3sq {
  display: inline-block;
  height: 3px;
  width: 3px;
  background-color: #aaa;
  position: relative;
}
.logo-corporate .deco-3sq::after,
.logo-corporate .deco-3sq::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: inherit;
}
.logo-corporate .deco-3sq::before {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
}
.logo-corporate .deco-3sq::after {
  -webkit-transform: translateY(6px);
  transform: translateY(6px);
}
.logo-corporate img {
  width: 50px;
  display: block;
  margin-top: 8px;
}
input[type='text'],
input[type='number'],
input[type='time'],
input[type='email'],
input[type='password'],
select,
textarea {
  font-size: 16px;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0 0.5em;
  border: solid 1px #555;
  border-radius: 4px;
  width: 100%;
  background-color: #fff;
  caret-color: auto;
  resize: none;
}
input[type='text']:focus,
input[type='number']:focus,
input[type='time']:focus,
input[type='email']:focus,
input[type='password']:focus,
select:focus,
textarea:focus {
  background-color: #fffae5;
}
input[type='text']::-webkit-input-placeholder,
input[type='number']::-webkit-input-placeholder,
input[type='time']::-webkit-input-placeholder,
input[type='email']::-webkit-input-placeholder,
input[type='password']::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #c7c7c7;
}
input[type='text']::-moz-placeholder,
input[type='number']::-moz-placeholder,
input[type='time']::-moz-placeholder,
input[type='email']::-moz-placeholder,
input[type='password']::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  color: #c7c7c7;
}
input[type='text']::-ms-input-placeholder,
input[type='number']::-ms-input-placeholder,
input[type='time']::-ms-input-placeholder,
input[type='email']::-ms-input-placeholder,
input[type='password']::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #c7c7c7;
}
input[type='text']::placeholder,
input[type='number']::placeholder,
input[type='time']::placeholder,
input[type='email']::placeholder,
input[type='password']::placeholder,
select::placeholder,
textarea::placeholder {
  color: #c7c7c7;
}

input[type='text'],
input[type='number'],
input[type='time'],
input[type='email'],
input[type='password'],
select {
  height: 44px;
  line-height: 44px;
}

input:disabled {
  color: #000;
  background-color: #f0f0f0;
}

input[type='number'] {
  -moz-appearance: textfield;
}
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='time'] {
  position: relative;
}
input[type='time']::-webkit-calendar-picker-indicator {
  position: absolute;
  opacity: 0;
}

textarea {
  line-height: 1.5;
  height: 4.5em;
  padding: 0.5em;
}

.select-wrap {
  position: relative;
}
.select-wrap::after {
  content: '';
  display: block;
  position: absolute;
  width: 13px;
  height: 8px;
  background: url('../img/_ui_parts/icon_arrow_down.svg') no-repeat center center;
  background-size: contain;
  top: 50%;
  right: 0.75em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
}

#cntBento {
  visibility: hidden;
}

#fldTime {
  padding: 0.5em;
}

.field-set .yyyymm-wrap {
  display: flex;
  gap: 6px;
  align-items: flex-end;
}
.field-set .yyyymm-wrap .label {
  font-size: 1.4rem;
}

.lbl-field {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
}
.lbl-field .comment {
  font-weight: 400;
  padding-left: 1em;
  display: inline-block;
}

.unit-button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.flex-2field-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.flex-2field-container > .w80 {
  width: 80px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.flex-2field-container > .w210 {
  width: 210px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.flex-chkbox-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.custom-check {
  display: block;
  display: inline-block;
  line-height: 1.5;
}
.custom-check input[type='checkbox'] {
  opacity: 0;
  position: absolute;
}
.custom-check input[type='checkbox']:checked ~ span::after {
  content: '';
  display: block;
  width: 16.5px;
  height: 8.1px;
  border-left: solid 4.5px #fff;
  border-bottom: solid 4.5px #fff;
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-60%) rotate(-45deg);
  transform: translateY(-60%) rotate(-45deg);
  left: 6.6px;
}
.custom-check span {
  padding-left: calc(30px + 0.5em);
  display: block;
  position: relative;
}
.custom-check span::before {
  content: '';
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: solid 1px #009aab;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
.custom-check input[type='checkbox']:checked ~ span::before {
  background-color: #009aab;
}
.custom-check input[type='checkbox']:checked ~ span::after {
  border-width: 4px;
}
.custom-check span::before {
  border-radius: 4px;
}

.now-date {
  font-size: 30px;
  font-size: 3rem;
  text-align: center;
  line-height: 1;
  -webkit-transform: translateX(0.4em);
  transform: translateX(0.4em);
}
.now-date .num {
  font-family: 'Roboto', sans-serif;
  font-size: 40px;
  font-size: 4rem;
  font-weight: 700;
  padding-right: 0.1em;
}
.now-date .youbi {
  font-weight: 700;
}

.now-time {
  font-family: 'Roboto', sans-serif;
  text-align: center;
  line-height: 1;
  font-weight: 500;
  margin: 0 calc(50% - 50vw);
  -webkit-transform: translateX(-0.5em);
  transform: translateX(-0.5em);
}
.now-time .num {
  font-size: 130px;
  font-size: 13rem;
}
.now-time .colon {
  display: inline-block;
  width: 1.75em;
  height: 56px;
  position: relative;
  -webkit-transform: translateY(-25%);
  transform: translateY(-25%);
  -webkit-animation: kf-time 2s steps(1) infinite;
  animation: kf-time 2s steps(1) infinite;
}
.now-time .colon::before,
.now-time .colon::after {
  content: '';
  display: block;
  position: absolute;
  width: 14px;
  height: 14px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #000;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}
.now-time .colon::before {
  top: 0;
}
.now-time .colon::after {
  bottom: 0;
}
@-webkit-keyframes kf-time {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@keyframes kf-time {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

.biz-calendar-custom #biz_calendar {
  max-width: none;
  font-family: 'Noto Sans JP', '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', 'メイリオ', sans-serif;
  font-weight: 700;
}
.biz-calendar-custom #biz_calendar table.bizcal {
  border: none;
  border-collapse: separate;
  border-spacing: 4px;
  font-size: clamp(14px, 4.1025641026vw, 24px);
  font-size: clamp(1.4rem, 4.1025641026vw, 2.4rem);
  margin: 0;
}
.biz-calendar-custom #biz_calendar table.bizcal th {
  background-color: transparent;
  color: #666666;
}
.biz-calendar-custom #biz_calendar table.bizcal th:first-child {
  color: #fb7f22;
}
.biz-calendar-custom #biz_calendar table.bizcal th:nth-last-of-type(1) {
  color: #469de2;
}
.biz-calendar-custom #biz_calendar table.bizcal td {
  background-color: #f7f7f7;
  color: #666666;
  padding: 0.75em 0;
}
.biz-calendar-custom #biz_calendar table.bizcal td:empty {
  background-color: #ededed;
}
.biz-calendar-custom #biz_calendar table.bizcal td.today {
  color: #000;
  text-decoration: none;
  font-weight: 900;
  position: relative;
}
.biz-calendar-custom #biz_calendar table.bizcal td.today::after {
  content: '';
  display: block;
  position: absolute;
  width: 0.25em;
  height: 0.25em;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #000;
  top: 75%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 50%;
}
.biz-calendar-custom #biz_calendar table.bizcal td.today.holiday::after {
  background-color: #fff;
}
.biz-calendar-custom #biz_calendar table.bizcal td.holiday {
  background-color: #fb7f22;
  color: #f7f7f7;
}
.biz-calendar-custom #biz_calendar table.bizcal td.eventday {
  background-color: #000;
  color: #f7f7f7;
}
.biz-calendar-custom #biz_calendar table.bizcal .calmonth {
  color: #000;
  background-color: transparent;
  font-size: clamp(18px, 4.6153846154vw, 22px);
  font-size: clamp(1.8rem, 4.6153846154vw, 2.2rem);
  padding-left: 0.5em;
}
.biz-calendar-custom #biz_calendar table.bizcal .calbtn {
  background-color: transparent;
  position: relative;
}
.biz-calendar-custom #biz_calendar table.bizcal .calbtn img {
  display: none;
}
.biz-calendar-custom #biz_calendar table.bizcal .calbtn.down-img::after {
  content: '';
  display: block;
  position: absolute;
  width: 2.5em;
  height: 2.5em;
  background: url('../img/_ui_parts/btn_calendar_prev.svg') no-repeat center center;
  background-size: contain;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.biz-calendar-custom #biz_calendar table.bizcal .calbtn.today-img::after {
  content: '';
  display: block;
  position: absolute;
  width: 2.5em;
  height: 2.5em;
  background: url('../img/_ui_parts/btn_calendar_home.svg') no-repeat center center;
  background-size: contain;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.biz-calendar-custom #biz_calendar table.bizcal .calbtn.up-img::after {
  content: '';
  display: block;
  position: absolute;
  width: 2.5em;
  height: 2.5em;
  background: url('../img/_ui_parts/btn_calendar_next.svg') no-repeat center center;
  background-size: contain;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.biz-calendar-custom #biz_calendar p {
  padding-left: 4px;
  font-weight: 500;
  margin-top: 20px;
  margin-right: 1.5em;
  display: inline-block;
}
.biz-calendar-custom #biz_calendar p span.boxholiday {
  background-color: #fb7f22;
}
.biz-calendar-custom #biz_calendar p span.boxeventday {
  background-color: #000;
}
.biz-calendar-custom__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.biz-calendar-custom__body > li.widget {
  list-style: none;
}
.biz-calendar-custom__body > li.widget::marker {
  content: none;
}
.biz-calendar-custom__body .widgettitle {
  display: none;
}

.mw_wp_form .form-fields .horizontal-item + .horizontal-item {
  margin-left: 0;
}
.mw_wp_form .form-fields .vertical-item + .vertical-item {
  margin-top: 10px;
}
.mw_wp_form .text-top {
  font-size: clamp(14px, 3.5897435897vw, 16px);
  font-size: clamp(1.4rem, 3.5897435897vw, 1.6rem);
  font-weight: 700;
  line-height: 1.5;
}
.mw_wp_form.mw_wp_form_input .only-confirm {
  display: none !important;
}
.mw_wp_form.mw_wp_form_confirm .only-input {
  display: none !important;
}
.mw_wp_form.mw_wp_form_confirm .label._required::after {
  content: none !important;
}
.mw_wp_form.mw_wp_form_confirm .custom-select {
  width: auto !important;
}
.mw_wp_form.mw_wp_form_confirm .custom-select::after {
  content: none;
}
.mw_wp_form.mw_wp_form_confirm .flex-wrap {
  -webkit-column-gap: 0 !important;
  -moz-column-gap: 0 !important;
  column-gap: 0 !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}
.mw_wp_form .form-fields {
  font-size: 14px;
  font-size: 1.4rem;
}
.mw_wp_form .form-fields__item {
  margin-top: clamp(10px, 2.5641025641vw, 15px);
  position: relative;
}
.mw_wp_form .form-fields__item._flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mw_wp_form .form-fields__item._flex._ai-flex-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.mw_wp_form .form-fields__item__name {
  width: 100%;
}
.mw_wp_form .form-fields__item__name__sei {
  margin-top: clamp(6px, 1.5384615385vw, 10px);
}
.mw_wp_form .form-fields__item__name__mei {
  margin-top: clamp(6px, 1.5384615385vw, 10px);
}
.mw_wp_form .form-fields__item .sama {
  text-align: right;
  width: 3em;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.mw_wp_form .form-fields__item._post-code .error:nth-of-type(2) {
  display: none;
}
.mw_wp_form .form-fields__item .post-code-wrap {
  display: inline-block;
  position: relative;
}
.mw_wp_form .form-fields__item .post-code-wrap .error {
  display: block;
  position: absolute;
  left: calc(100% + 1em);
  bottom: 5px;
  width: 8em;
}
.mw_wp_form .form-fields__item .post-code-wrap .hyphen {
  display: inline-block;
  width: 0.7em;
  margin: 0 0.4em;
}
.mw_wp_form .form-fields__item._privacy .error {
  display: block;
  position: absolute;
  top: calc(100% + 1em);
  left: 0;
  width: 8em;
}
.mw_wp_form .label {
  position: relative;
  display: inline-block;
  font-weight: 700;
}
.mw_wp_form .label._required::after {
  content: '必須';
  display: inline-block;
  color: #000;
  padding-left: 1em;
  font-weight: 500;
}
.mw_wp_form .label._lv2 {
  display: block;
  font-weight: 400;
}
.mw_wp_form .message._red {
  font-size: clamp(10px, 2.5641025641vw, 12px);
  font-size: clamp(1rem, 2.5641025641vw, 1.2rem);
  color: #000;
}
.mw_wp_form .link-to-privacy {
  margin-left: -0.5em;
}
.mw_wp_form .link-to-privacy a {
  text-decoration: underline;
}
.mw_wp_form input[type='text'],
.mw_wp_form input[type='email'],
.mw_wp_form select,
.mw_wp_form textarea {
  font-size: 16px;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 1em 1em;
  border: solid 1px #c7c7c7;
  border-radius: 5px;
  width: 100%;
  background-color: #fff;
  caret-color: auto;
}
.mw_wp_form input[type='text']:focus,
.mw_wp_form input[type='email']:focus,
.mw_wp_form select:focus,
.mw_wp_form textarea:focus {
  background-color: #fff;
}
.mw_wp_form input[type='text']::-webkit-input-placeholder,
.mw_wp_form input[type='email']::-webkit-input-placeholder,
.mw_wp_form select::-webkit-input-placeholder,
.mw_wp_form textarea::-webkit-input-placeholder {
  color: #c7c7c7;
}
.mw_wp_form input[type='text']::-moz-placeholder,
.mw_wp_form input[type='email']::-moz-placeholder,
.mw_wp_form select::-moz-placeholder,
.mw_wp_form textarea::-moz-placeholder {
  color: #c7c7c7;
}
.mw_wp_form input[type='text']::-ms-input-placeholder,
.mw_wp_form input[type='email']::-ms-input-placeholder,
.mw_wp_form select::-ms-input-placeholder,
.mw_wp_form textarea::-ms-input-placeholder {
  color: #c7c7c7;
}
.mw_wp_form input[type='text']::placeholder,
.mw_wp_form input[type='email']::placeholder,
.mw_wp_form select::placeholder,
.mw_wp_form textarea::placeholder {
  color: #c7c7c7;
}
.mw_wp_form textarea {
  resize: none;
  line-height: 1.5;
  height: 15em;
}
.mw_wp_form .custom-select {
  position: relative;
  max-width: 190px;
}
.mw_wp_form .custom-select::after {
  content: '';
  display: block;
  position: absolute;
  width: 12px;
  height: 7px;
  background: url('../img/_ui_parts/icon_arrowdown_for_select.svg') no-repeat center center;
  background-size: contain;
  top: 50%;
  right: 1.5em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
}
.mw_wp_form .custom-select .error {
  position: absolute;
  bottom: 5px;
  left: calc(100% + 1em);
  line-height: 1;
  width: 6em;
  display: inline-block;
}
.mw_wp_form .mwform-radio-field {
  display: block;
  margin: 0;
}
.mw_wp_form .mwform-radio-field.horizontal-item {
  margin: 0;
}
.mw_wp_form .mwform-radio-field.horizontal-item + .horizontal-item {
  margin-top: 10px;
}
.mw_wp_form .mwform-radio-field > label {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  position: relative;
}
.mw_wp_form .mwform-radio-field > label input[type='radio'] {
  opacity: 0;
  position: absolute;
}
.mw_wp_form .mwform-radio-field > label input[type='radio']:checked ~ span::after {
  content: '';
  display: block;
  width: 12px;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 4px;
}
.mw_wp_form .mwform-radio-field > label input[type='radio']:checked ~ span::before {
  border-color: #000;
}
.mw_wp_form .mwform-radio-field > label span {
  display: inline-block;
  position: relative;
  padding-left: calc(20px + 0.8em);
}
.mw_wp_form .mwform-radio-field > label span::before {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: auto;
  aspect-ratio: 1/1;
  border: solid 1px #c8c8c8;
  background-color: #fff;
  border-radius: 50%;
  z-index: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
.mw_wp_form .mwform-checkbox-field {
  position: relative;
}
.mw_wp_form .mwform-checkbox-field > label {
  display: block;
  display: inline-block;
}
.mw_wp_form .mwform-checkbox-field > label input[type='checkbox'] {
  opacity: 0;
  position: absolute;
}
.mw_wp_form .mwform-checkbox-field > label input[type='checkbox']:checked ~ span::after {
  content: '';
  display: block;
  width: 0.77em;
  height: 0.378em;
  border-left: solid 0.21em #fff;
  border-bottom: solid 0.21em #fff;
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-60%) rotate(-45deg);
  transform: translateY(-60%) rotate(-45deg);
  left: 0.308em;
}
.mw_wp_form .mwform-checkbox-field > label span {
  padding-left: 2.4em;
  display: block;
  position: relative;
}
.mw_wp_form .mwform-checkbox-field > label span::before {
  content: '';
  display: block;
  position: absolute;
  width: 1.4em;
  height: 1.4em;
  background-color: #fff;
  border: solid 1px #000;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
.mw_wp_form .mwform-checkbox-field > label input[type='checkbox']:checked ~ span::before {
  background-color: #000;
}
.mw_wp_form .mwform-checkbox-field > label span::before {
  border-radius: 5px;
}
.mw_wp_form .check-box-wrap {
  position: relative;
  font-size: 0.9em;
}
.mw_wp_form .check-box-wrap > .error {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.mw_wp_form input[name='txt_postcode1'] {
  width: 4em;
}
.mw_wp_form input[name='txt_postcode2'] {
  width: 4.75em;
}
.mw_wp_form input[name='txt_telno'] {
  max-width: 240px;
}
.mw_wp_form #chk_privacy-1 + .mwform-checkbox-field-text {
  color: #fff;
}
.mw_wp_form .form-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: clamp(20px, 5.1282051282vw, 40px);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.u-none {
  display: none;
}

.u-none--important {
  display: none !important;
}

.u-screen-reader-text {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

.u-clearfix::after {
  content: '';
  display: block;
  clear: both;
}

.u-only-sp,
br.u-only-sp,
img.u-only-sp {
  display: block;
}

.u-only-pc,
br.u-only-pc,
img.u-only-pc {
  display: none;
}

.u-fs-u1 {
  font-size: clamp(16px, 4.6153846154vw, 18px) !important;
  font-size: clamp(1.6rem, 4.6153846154vw, 1.8rem) !important;
}

.u-tc-red {
  color: #ff0000;
  font-weight: 500;
}

.u-tc-orange {
  color: #ff6b00;
}

.u-kakumaru-wrap {
  overflow: hidden;
  border-radius: 1em;
  isolation: isolate;
}
.u-kakumaru-wrap._br20 {
  border-radius: 20px;
}
.u-kakumaru-wrap._br40 {
  border-radius: 40px;
}
.u-kakumaru-wrap._br20_40 {
  border-radius: clamp(20px, 5.1282051282vw, 40px);
}

.u-tal {
  text-align: left !important;
}

.u-tac {
  text-align: center !important;
}

.u-tar {
  text-align: right !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

.u-pt0 {
  padding-top: 0 !important;
}

.u-pt60_100 {
  padding-top: clamp(60px, 15.3846153846vw, 100px) !important;
}

.u-pt60_120 {
  padding-top: clamp(60px, 15.3846153846vw, 120px) !important;
}

.u-pt80_120 {
  padding-top: clamp(80px, 20.5128205128vw, 120px) !important;
}

.u-mt1em {
  margin-top: 1em !important;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt5_10 {
  margin-top: clamp(5px, 1.2820512821vw, 10px) !important;
}

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

.u-mt10_15 {
  margin-top: clamp(10px, 2.5641025641vw, 15px) !important;
}

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

.u-mt15_20 {
  margin-top: clamp(15px, 3.8461538462vw, 20px) !important;
}

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

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

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

.u-mt20_30 {
  margin-top: clamp(20px, 5.1282051282vw, 30px) !important;
}

.u-mt20_60 {
  margin-top: clamp(20px, 5.1282051282vw, 60px) !important;
}

.u-mt30_60 {
  margin-top: clamp(30px, 7.6923076923vw, 60px) !important;
}

.u-mt30_40 {
  margin-top: clamp(30px, 7.6923076923vw, 40px) !important;
}

.u-mt40_60 {
  margin-top: clamp(40px, 10.2564102564vw, 60px) !important;
}

.u-mt40_60sp {
  margin-top: clamp(40px, 15.3846153846vw, 60px) !important;
}

.u-mt50_70 {
  margin-top: clamp(50px, 12.8205128205vw, 70px) !important;
}

.u-mt40_80 {
  margin-top: clamp(40px, 10.2564102564vw, 80px) !important;
}

.u-mt40_100 {
  margin-top: clamp(40px, 10.2564102564vw, 100px) !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mt60_80 {
  margin-top: clamp(60px, 15.3846153846vw, 80px) !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mt60_100 {
  margin-top: clamp(60px, 15.3846153846vw, 100px) !important;
}

.u-mt60_120 {
  margin-top: clamp(60px, 15.3846153846vw, 120px) !important;
}

.u-mt40_120 {
  margin-top: clamp(40px, 10.2564102564vw, 120px) !important;
}

.u-mt80_120 {
  margin-top: clamp(80px, 20.5128205128vw, 120px) !important;
}

.u-mt80_160 {
  margin-top: clamp(80px, 20.5128205128vw, 160px) !important;
}

.u-mt50_100 {
  margin-top: clamp(50px, 12.8205128205vw, 100px) !important;
}

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

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

.u-mt-onlysp10 {
  margin-top: 10px;
}

.u-mt-onlysp20 {
  margin-top: 20px;
}

.u-w70 {
  width: 70px !important;
}

.with-shadow {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.with-shadow:hover {
  -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.carousel__ui__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
}
.carousel__ui__dots li button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  text-indent: -999px;
  overflow: hidden;
  padding: 0;
  width: 12px;
  height: 12px;
  background-image: url(../img/_ui_parts/dot_slider_inactive.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.carousel__ui__dots li.slick-active button {
  background-image: url(../img/_ui_parts/dot_slider_active.svg);
}
.carousel__ui__dots li:hover {
  opacity: 0.8;
}

.carousel__arrow {
  width: clamp(24px, 4.1025641026vw, 36px);
  height: clamp(48px, 11.2820512821vw, 90px);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: transparent;
  border: solid 1px #707070;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  border-radius: 3px;
  z-index: 999;
}
.carousel__arrow:hover {
  opacity: 0.8;
}
.carousel__arrow.prev {
  left: 0;
  background-image: url(../img/ui_parts/arrow_slider_left.svg);
}
.carousel__arrow.next {
  right: 0;
  background-image: url(../img/ui_parts/arrow_slider_right.svg);
}

* {
  min-height: 0;
  min-width: 0;
}

.featherlight:last-of-type {
  background-color: rgba(0, 0, 0, 0.5);
}

.fl-custom .featherlight-content {
  background-color: transparent;
  padding: 0;
  overflow: visible;
  border: none;
  position: relative;
}
.fl-custom .featherlight-close {
  display: block;
  height: clamp(40px, 10.2564102564vw, 60px);
  width: clamp(40px, 10.2564102564vw, 60px);
  background-color: transparent;
  background-image: url(../img/ui_parts/btn_menu_close_white.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
  position: absolute;
  top: -48px;
  right: -48px;
}
.fl-custom .featherlight-close.drawer-menu-close {
  position: fixed;
  top: 12px;
  right: 24px;
}
.fl-custom .drawer-menu .featherlight-close {
  background-image: url(../img/ui_parts/btn_menu_close.svg);
}

@-webkit-keyframes kf_fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes kf_fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes kf_fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes kf_fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes kf_fadein_and_out {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes kf_fadein_and_out {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes kf_fadein_up {
  from {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes kf_fadein_up {
  from {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes kf_pause_scroll {
  from {
    overflow: hidden;
  }
  to {
    overflow: auto;
  }
}
@keyframes kf_pause_scroll {
  from {
    overflow: hidden;
  }
  to {
    overflow: auto;
  }
}
.map-container {
  width: 960px;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main {
  background-color: #fafafa;
  padding-top: clamp(40px, 10.2564102564vw, 60px);
  padding-bottom: clamp(60px, 15.3846153846vw, 80px);
  min-height: 500px;
  /* padding-left: 12px;
  padding-right: 12px; */
}

.menu-group-name {
  padding-left: 2.5em;
  position: relative;
}
.menu-group-name._daily::before {
  content: '';
  display: block;
  position: absolute;
  width: 1.75em;
  height: 1.75em;
  background: url('../img/_icons/icon_menu_daily.svg') no-repeat center center;
  background-size: contain;
  left: 0;
  top: 0;
}
.menu-group-name._monthly::before {
  content: '';
  display: block;
  position: absolute;
  width: 1.75em;
  height: 1.75em;
  background: url('../img/_icons/icon_menu_monthly.svg') no-repeat center center;
  background-size: contain;
  left: 0;
  top: 0;
}
.menu-group-name._setup::before {
  content: '';
  display: block;
  position: absolute;
  width: 1.75em;
  height: 1.75em;
  background: url('../img/_icons/icon_menu_setup.svg') no-repeat center center;
  background-size: contain;
  left: 0;
  top: 0;
}

.menu-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px 20px;
}
.menu-buttons > .btn._size-l {
  width: 100%;
}

.shori-ym {
  text-align: center;
  translate: -0.35em 0;
  font-size: 18px;
  font-size: 1.8rem;
}
.shori-ym input,
.shori-ym .select-wrap {
  display: inline-block;
  margin: 0 6px;
  width: 70px;
}
.shori-ym select {
  padding-left: 1em;
}

.seach-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.seach-box__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.seach-box .select-wrap._ym {
  width: 120px;
}
.seach-box .select-wrap._m {
  width: 60px;
}
.seach-box .select-wrap._staff {
  width: 340px;
}
.seach-box .btn {
  width: 120px;
}

.msg-complete {
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
  opacity: 0;
  padding-left: 30px;
  position: relative;
}
.msg-complete::before {
  content: '';
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background: url('../img/_icons/icon_check_green.svg') no-repeat center center;
  background-size: contain;
  left: -0.25em;
  bottom: 0;
  opacity: 0;
}
.msg-complete.is-played {
  -webkit-animation: kf_complete_msg 5s ease forwards;
  animation: kf_complete_msg 5s ease forwards;
}
@-webkit-keyframes kf_complete_msg {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  10% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  90% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
}
@keyframes kf_complete_msg {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  10% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  90% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
}
.msg-complete.is-played::before {
  -webkit-animation: kf_check_green 0.4s 0.75s ease forwards;
  animation: kf_check_green 0.4s 0.75s ease forwards;
}
@-webkit-keyframes kf_check_green {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    scale: 1.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes kf_check_green {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    scale: 1.5;
  }
  100% {
    opacity: 1;
  }
}

.work-records {
  width: 100%;
  caret-color: transparent;
  border-collapse: separate;
  border-bottom: solid 1px #aaa;
}
.work-records thead {
  font-size: 14px;
  font-size: 1.4rem;
}
.work-records thead th {
  border-top: 1px solid #aaa;
  padding: 14px 0;
  text-align: center;
  background-color: #e5e5e5;
  position: sticky;
  top: -1px;
  z-index: 100;
}
.work-records .record {
  /* display: none; */
  transition: all 0.8s ease-out;
}
/* .work-records .record tr {
  transition: all 0.3s linear;
} */
.work-records tbody {
  font-weight: 400;
  background-color: #fff;
  border-bottom: 1px solid #aaa;
}
.work-records tbody td {
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #aaa;
}
.work-records tbody .button td {
  border-top: none;
}
.work-records tbody .worked-times td {
  text-align: left;
  padding: 0;
}
.work-records tbody td .val-worked-times {
  /* display: inline-block; */
  display: block;
  color: #555;
  font-size: 1.4rem;
  line-height: 2;
  /* padding-bottom: 8px; */
  /* padding-left: 18px; */
}
.work-records tbody td .val-worked-times .ttl-worktime {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 0 6px 1px;
  margin-right: 4px;
  /* border: solid 1px #888; */
  color: #fff;
  border-radius: 3px;
  background-color: #888;
}
.work-records tbody td .val-worked-times .ttl-worktime.over {
  /* background-color: #d8572c; */
}
.work-records tbody td .val-worked-times .ttl-worktime.midnight {
  /* background-color: #4f3191; */
}
.val-bikou {
  display: block;
}
.val-bikou + .infos-worked-times {
  /* padding-top: 8px; */
}

.work-records tbody td .btn {
  width: 60px;
  display: inline-block;
}
.work-records tbody td .container-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 10px;
  padding-right: 10px;
}
.work-records tbody td .container-btn.enabled {
  opacity: 0.6;
  pointer-events: none;
  filter: grayscale(50%);
}
.work-records tbody td.has-input {
  padding: 10px;
}
.work-records tbody tr.button td .btn {
  width: 100px;
}

.table-maintenance {
  font-size: 1.4rem;
  width: 100%;
}
.table-maintenance thead {
  position: sticky;
  background-color: #fafafa;
  top: -1px;
  z-index: 100;
}
.table-maintenance thead tr {
  border-bottom: 1px solid #555;
}
.table-maintenance tbody tr {
  border-bottom: 1px solid #aaa;
}
.table-maintenance td {
  padding: 12px 4px;
  vertical-align: top;
}
.table-maintenance td.btn-column {
  width: 100px;
}
.table-maintenance td span {
  display: inline-block;
  max-width: 180px;
}
.table-maintenance th {
  padding: 8px 4px;
}

.result-message {
  /* color: #009d90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px; */
  line-height: 2;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.result-message .success {
  /* padding-left: 24px; */
  position: relative;
}
.result-message .success::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url('../img/_icons/icon_check_green.svg') no-repeat center center;
  background-size: contain;
  translate: 0 6px;
  margin-right: 4px;
}
.result-message .error {
  /* padding-left: 24px; */
  position: relative;
}
.result-message .error::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url('../img/_icons/icon_ng3.svg') no-repeat center center;
  background-size: contain;
  translate: 0 6px;
  margin-right: 4px;
}
.result-message .btn {
  width: auto;
  padding: 10px 12px;
  /* font-weight: 400; */
  margin-left: 10px;
  display: inline-block;
}
.with-icon-plus {
  position: relative;
  padding-left: 24px;
}
.with-icon-plus::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  background: url('../img/_icons/icon_plus.svg') no-repeat center center;
  background-size: contain;
  top: 3%;
  left: 0;
}
.delete-btn-container {
  display: flex;
  justify-content: flex-end;
}
.delete-btn-container #btnDeleteMaintenance {
  max-width: 100px;
  color: #d00101;
  border-color: #d00101;
}
.login-error-message {
  color: #d00101;
  font-size: 1.4rem;
  line-height: 2;
}
.logo-welcome {
  translate: -1.5% 0;
}
.ok-in-msg {
  color: #009d90;
  font-weight: 700;
}
.logo-corporate .name-sub__text {
  display: none;
}
.search-result-message {
  display: inline-block;
  margin: 80px 0 20px;
  font-size: 1.4rem;
  font-weight: 400;
}
.search-result-message .label {
  display: inline-block;
  font-size: 1.2rem;
  padding: 0px 4px;
  border: 1px solid #555;
  color: #555;
  border-radius: 2px;
  margin-right: 4px;
}
.btn_icon_delete {
  aspect-ratio: 1/1;
  width: 24px;
  translate: 0 -6px;
  cursor: pointer;
  transition: all 0.1s linear;
  fill: #555;
}
.btn_icon_delete.enabled {
  pointer-events: none;
  fill: #aaa;
}
.btn_icon_delete._large {
  width: 32px;
}
.btn_icon_delete:hover {
  fill: #ee0000;
}

@media screen and (min-width: 768px) {
  .main {
    padding-left: 0px;
    padding-right: 0px;
  }
  .inner {
    padding: 0;
  }
  .header__inner {
    padding: 0 40px;
  }
  .header.header-fixed {
    display: none;
  }
  .footer__inner {
    padding: 16px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .btn-menu-open {
    display: none;
  }
  .btn-menu-close {
    display: none;
  }
  .nav-global {
    display: block;
  }
  .gridlist {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px 30px;
  }
  .gridlist__item {
    display: block;
  }
  .gridlist__item > a {
    display: block;
  }
  .gridlist__item .block-image .thumbnail {
    height: 230px;
  }
  .gridlist__item .block-text .title-container .title {
    margin-top: 0;
    float: left;
  }
  .gridlist__item .block-text .title-container .label {
    float: right;
  }
  .logo-corporate .name {
    display: inline-block;
  }
  .logo-corporate .name-sub__text {
    display: inline-block;
  }
  .biz-calendar-custom #biz_calendar table.bizcal {
    padding: 0.8em;
  }
  .biz-calendar-custom #biz_calendar table.bizcal td {
    padding: 1.5em 0;
  }
  .biz-calendar-custom #biz_calendar table.bizcal td.today::after {
    top: 65%;
  }
  .biz-calendar-custom #biz_calendar table.bizcal .calbtn {
    -webkit-transform: translateX(55%);
    transform: translateX(55%);
  }
  .mw_wp_form .form-fields__item__name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .mw_wp_form textarea {
    height: 15em;
  }
  .mw_wp_form .check-box-wrap {
    font-size: 1em;
  }
  .u-only-sp,
  br.u-only-sp,
  img.u-only-sp {
    display: none;
  }
  .u-only-pc,
  br.u-only-pc,
  img.u-only-pc {
    display: block;
  }
  .u-mt-onlysp10 {
    margin-top: 0;
  }
  .u-mt-onlysp20 {
    margin-top: 0;
  }
  .carousel__arrow.prev {
    left: 0;
  }
  .carousel__arrow.next {
    right: 0;
  }
  .menu-buttons > .btn._size-l {
    width: calc(50% - 10px);
  }
}

.icon-warning {
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
  padding: 0.1em 0.85em;
  margin-right: 0.5em;
  background-color: #c9107c;
  border-radius: 0.2em;
}
