@charset "UTF-8";
/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* FLOCSS
----------------------------------------------------- */
#js-pagetop {
  position: fixed;
  right: 0px;
  bottom: 50px;
  z-index: 40;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 120px;
  height: 120px;
  background-color: #ffbc5f;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
#js-pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

.pagetop {
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
}
.pagetop .pagetop__arrow {
  display: block;
  font-size: 20px;
}
.pagetop .pagetop__text {
  display: block;
  font-size: 14px;
}

.top {
  max-width: 2000px;
  margin-inline: auto;
  background-color: #fff;
}

.inner {
  padding-inline: 15px;
  max-width: 1230px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.top-inner {
  padding-inline: 15px;
  max-width: calc(1470px + 30px);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

/* =====================================================
# 領域アニメーション
===================================================== */
.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in-down {
  opacity: 0;
  -webkit-transform: translateY(-24px);
          transform: translateY(-24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-down.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.fade-in.is-in-view {
  opacity: 1;
}

/* =====================================
/* header
---------------------------- */
.header {
  height: 100px;
  position: fixed;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
  width: 100%;
  z-index: 100;
  background-color: #fffeee;
  max-width: 2000px;
  margin-inline: auto;
}

.is-active {
  color: #ffbc5f;
}
.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
  padding-inline: 40px 0px;
}
.header__inner .button {
  font-size: 17px;
}

.header__left {
  display: contents;
}
.header__logo a img {
  width: min(19.9475065617vw, 380px);
  display: block;
}

.header__nav {
  height: inherit;
}

.header__lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}

.header__contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  background: #ffbc5f;
  height: 60px;
  width: 220px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 17px;
  color: #fff;
  border-bottom-left-radius: 30px;
  border-top-left-radius: 30px;
}

.header__link {
  font-size: 17px;
  letter-spacing: 0.1em;
}

/* =====================================================
# footer
===================================================== */
.footer {
  padding-block: 70px 50px;
  background-color: #fffeee;
}
.footer .address-area__text {
  margin-top: 20px;
  text-align: center;
}
.footer__nav-area {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.copyright {
  background-color: #fffeee;
  font-size: 13px;
  text-align: center;
  padding-bottom: 30px;
}

.footer__logo {
  text-align: center;
}
.footer__logo img {
  width: 350px;
}

.footer__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.footer__link {
  font-size: 15px;
  font-weight: 500;
}
.footer__link.is-active {
  background: #ffbc5f;
}

/* =====================================================
# メインヴィジュアル
===================================================== */
.slide {
  position: relative;
  width: 100%;
  height: min(41.9947506562vw, 800px);
  overflow: hidden;
  border-bottom-right-radius: 30px;
}

.slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-animation: slider-1 24s linear infinite;
          animation: slider-1 24s linear infinite;
}
.slide-image:nth-child(1) {
  background-image: url(../img/common/main1.webp);
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}
.slide-image:nth-child(2) {
  background-image: url(../img/common/main2.webp);
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}
.slide-image:nth-child(3) {
  background-image: url(../img/common/main3.webp);
  -webkit-animation-delay: 11s;
          animation-delay: 11s;
}
.slide-image:nth-child(4) {
  background-image: url(../img/common/main4.webp);
  -webkit-animation-delay: 16s;
          animation-delay: 16s;
}

@-webkit-keyframes slider-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 0;
  }
}

@keyframes slider-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 0;
  }
}
.fv {
  background-color: white;
  padding-top: 100px;
  position: relative;
  z-index: 5;
}
.fv .top-fv__decoration {
  position: absolute;
  top: 13%;
  right: 2%;
  z-index: 1;
}
.fv .top-fv__decoration img {
  opacity: 0.4;
  width: min(13.1233595801vw, 250px);
}
.fv .top-fv__decoration2 {
  position: absolute;
  bottom: 10%;
  right: 15%;
  z-index: 3;
}
.fv .top-fv__decoration2 img {
  opacity: 0.2;
  width: min(7.874015748vw, 150px);
}

.fv__inner {
  position: relative;
  z-index: 2;
}

.fv__bg-grad {
  position: absolute;
  top: min(20.9973753281vw, 400px);
  width: 100%;
  height: min(20.9973753281vw, 400px);
  background: #fffee2;
}

.picture {
  margin-right: 25%;
  position: relative;
  z-index: 4;
}

.picture-copy {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: 5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.picture-copy__title {
  font-size: min(3.937007874vw, 75px);
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: white;
  text-shadow: 0 0 5px #ff945f, 0 0 10px #ff945f, 0 0 15px #ff945f, 0 0 20px #ff945f; /* 4つ目の影（ぼかし多め） */
}

/* =====================================================
# 下層ページ メインビジュアル
===================================================== */
.mv {
  padding-top: 90px;
  background-color: #ffe45f;
  position: relative;
  z-index: 1;
}
.mv-jumbotron {
  background-color: #999;
  background-size: cover;
  background-position: center center;
  height: 350px;
  position: relative;
  z-index: -1;
}
.mv-jumbotron.is-contact {
  background-position: center right;
}
.mv-jumbotron::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.25);
  pointer-events: none; /* フィルターの下の画像をクリック可能にする */
}
.mv-jumbotron__inner {
  padding-top: 102px;
}
.mv .mv-h2 {
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.1em;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px 40px 30px;
  border-radius: 30px;
}
.mv .mv-h2__en {
  display: inline-block;
  font-weight: 600;
  font-size: 55px;
  font-family: "Fredoka", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  text-transform: uppercase;
  color: #ffbc5f;
  border-bottom: 1px solid #ffbc5f;
  line-height: 1.2;
}
.mv .mv-h2__ja {
  display: block;
  color: #222;
  font-size: 25px;
  font-family: "Zen Maru Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  line-height: 1.2;
  padding-top: 10px;
}

.top-heading-en {
  display: inline-block;
  font-family: "Fredoka", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 80px;
  font-weight: 600;
  line-height: 1.3;
  color: #ffbc5f;
}

.top-heading-ja {
  display: block;
  font-size: 20px;
  font-weight: bold;
  padding-left: 50px;
  position: relative;
}
.top-heading-ja::after {
  content: "";
  position: absolute;
  top: 55%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 35px;
  height: 2px;
  background-color: #ffbc5f;
}

/* =====================================================
# top-about
===================================================== */
.top-about {
  background-color: #fffee2;
}

.top-about__media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: min(5.249343832vw, 100px);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  padding: 50px;
  border-radius: 30px;
}

.top-about__image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 45%;
      -ms-flex: 0 1 45%;
          flex: 0 1 45%;
}
.top-about__image img {
  border-radius: 30px;
  -webkit-box-shadow: 0 0 16px rgba(67, 67, 67, 0.1);
          box-shadow: 0 0 16px rgba(67, 67, 67, 0.1);
}

.top-about__body {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 55%;
      -ms-flex: 0 1 55%;
          flex: 0 1 55%;
}

.top-about__text {
  margin-top: 30px;
  font-size: 20px;
  line-height: 2;
  text-align: justify;
}

/* =====================================================
# top-recruit
===================================================== */
.top-recruit {
  position: relative;
}
.top-recruit .top-recruit__decoration {
  position: absolute;
  top: 10%;
  left: 5%;
  z-index: 1;
}
.top-recruit .top-recruit__decoration img {
  opacity: 0.2;
  width: min(10.498687664vw, 200px);
}

.top-recruit__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 2;
}

.top-recruit__body {
  width: 54%;
  padding-block: 50px;
}

.top-recruit__catch {
  display: inline-block;
  margin-top: 40px;
  font-size: 24px;
  font-weight: 600;
  border-bottom: 7px solid #ffe45f;
}

.top-recruit__text {
  font-size: 18px;
  margin-top: 15px;
}

.top-recruit__btn {
  margin-top: 50px;
}
.top-recruit__btn .button {
  font-size: 24px;
  color: #fff;
}

.top-recruit__image {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: calc(50% - 50vw);
}
.top-recruit__image img {
  width: 100%;
  max-width: 1000px;
}

/* =====================================================
# top-business
===================================================== */
.top-business {
  background-color: #fff1f1;
  position: relative;
}
.top-business .top-business__decoration {
  position: absolute;
  top: 3%;
  left: 5%;
  z-index: 1;
}
.top-business .top-business__decoration img {
  opacity: 0.2;
  width: min(10.498687664vw, 200px);
}
.top-business .top-business__decoration2 {
  position: absolute;
  top: 20%;
  right: 5%;
  z-index: 1;
}
.top-business .top-business__decoration2 img {
  opacity: 0.2;
  width: min(10.498687664vw, 200px);
}

.top-business__description {
  margin-top: 50px;
  background-color: #fff;
  padding: 40px min(3.1496062992vw, 60px);
  border-radius: 30px;
  font-size: 21px;
  line-height: 2;
  border: none;
  position: relative;
  text-align: justify;
  max-width: 1100px;
  margin-inline: auto;
}
.top-business__description .strong {
  font-weight: bold;
  color: #ff92db;
}
.top-business__description::before, .top-business__description::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
}
.top-business__description::before {
  border-top: 6px solid rgba(255, 197, 222, 0.5);
  border-bottom: 6px solid rgba(255, 197, 222, 0.5);
  -webkit-clip-path: inset(0 50% 0 50%);
          clip-path: inset(0 50% 0 50%);
}
.top-business__description::after {
  border-left: 6px solid rgba(255, 197, 222, 0.5);
  border-right: 6px solid rgba(255, 197, 222, 0.5);
  -webkit-clip-path: inset(50% 0 50% 0);
          clip-path: inset(50% 0 50% 0);
}
.top-business__description.is-stroke::before {
  -webkit-animation: stroke-x 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: stroke-x 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 1;
}
.top-business__description.is-stroke::after {
  -webkit-animation: stroke-y 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
          animation: stroke-y 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
  opacity: 1;
}

@-webkit-keyframes stroke-x {
  0% {
    opacity: 1;
    -webkit-clip-path: inset(0 50% 0 50%);
            clip-path: inset(0 50% 0 50%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}

@keyframes stroke-x {
  0% {
    opacity: 1;
    -webkit-clip-path: inset(0 50% 0 50%);
            clip-path: inset(0 50% 0 50%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes stroke-y {
  0% {
    opacity: 1;
    -webkit-clip-path: inset(50% 0 50% 0);
            clip-path: inset(50% 0 50% 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes stroke-y {
  0% {
    opacity: 1;
    -webkit-clip-path: inset(50% 0 50% 0);
            clip-path: inset(50% 0 50% 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
.top-business__content {
  margin-top: 100px;
  display: grid;
  gap: 100px min(5.249343832vw, 100px);
  grid-template-columns: repeat(2, 1fr);
}

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

.top-business__image img {
  border-radius: 50%;
  width: 100%;
  max-width: 450px;
  -webkit-box-shadow: 0 0 20px rgba(255, 188, 95, 0.2);
          box-shadow: 0 0 20px rgba(255, 188, 95, 0.2);
}

.top-business__button {
  margin-top: 30px;
}
.top-business__button .button {
  font-size: 19px;
  letter-spacing: 0 !important;
}
.top-business__button .button.is-type1 {
  background-color: #ff92db;
}
.top-business__button .button.is-type2 {
  background-color: #ffb753;
}
.top-business__button .button.is-type3 {
  background-color: #ffcd00;
}
.top-business__button .button.is-type4 {
  background-color: #8cca0f;
}

/* =====================================================
# top-news
===================================================== */
.top-news {
  background-color: #fffee2;
  padding-block: 100px;
}

.top-news__new {
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  color: #ea5405;
}

.top-news__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: 140px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-news__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6px;
}

.top-news__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}

.top-news__content {
  margin-top: 30px;
  background: #fff;
  border-radius: 30px;
  padding-block: 40px;
  padding-inline: min(4.7244094488vw, 90px);
  border: 6px solid #fff1f1;
  position: relative;
  z-index: 2;
}
.is-news-category .top-news__content {
  margin-top: 60px;
  height: auto;
  overflow-y: unset;
}

.top-news-item {
  border-bottom: solid 2px #f0f0f0;
  padding-block: 20px;
}
.top-news-item:last-child {
  border-bottom: none;
}

.top-news-itemLink {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #3e3e3e;
  display: block;
  letter-spacing: 0.025em;
  position: relative;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.top-news-itemDate {
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  color: #888;
}

.top-news__pdf {
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  padding: 9px 20px;
  white-space: nowrap;
  background-color: #f06565;
  border-radius: 5px;
}

.top-news__title {
  font-weight: 500;
  overflow-wrap: anywhere;
}
/* =====================================================
# top-company
===================================================== */
.top-company,
.top-news {
  position: relative;
}
.top-company .top-company__decoration,
.top-news .top-company__decoration {
  position: absolute;
  top: 10%;
  right: 5%;
  z-index: 1;
}
.top-company .top-company__decoration img,
.top-news .top-company__decoration img {
  opacity: 0.2;
  width: min(10.498687664vw, 200px);
}
.top-company .top-about__text,
.top-news .top-about__text {
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
}

.top-company__media {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/* =====================================================
# top-contact
===================================================== */
.top-contact {
  background: transparent url(../img/common/top-contact-bg.webp) no-repeat center center/cover;
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
  padding-block: 100px;
  position: relative;
}
.top-contact .button {
  width: 220px;
  text-transform: uppercase;
  font-size: 18px;
}
.top-contact__items {
  margin-top: 50px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.top-contact__item {
  padding: 0px 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-contact__item:nth-child(1), .top-contact__item:nth-child(2) {
  border-right: 1px solid #434343;
}
.top-contact__item .number {
  margin-top: 8px;
  text-align: center;
}
.top-contact__item .number .tel {
  margin-top: 10px;
  font-size: 35px;
  font-weight: bold;
  color: #454545;
}
.top-contact__item .number .tel-small {
  font-size: 24px;
  color: #454545;
}
.top-contact__item .number a {
  cursor: default;
}
.top-contact__item .number .hour-text {
  display: block;
  font-size: 14px;
}
.top-contact__btn-wrap {
  margin-top: 20px;
}
.top-contact__icon-wrap {
  width: 70px;
  margin-top: 20px;
  background-color: #fff;
  padding: 12px;
  text-align: center;
  border-radius: 5px;
  -webkit-box-shadow: 0 0px 16px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0px 16px rgba(0, 0, 0, 0.16);
}

/* =====================================================
# business
===================================================== */
.daily__content {
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.daily__title-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.daily {
  background-color: #fffee2;
}
.daily .daily__medias {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 50%;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.daily .daily__medias .media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.daily .daily__medias .media.is-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.daily .daily__medias .media__body {
  width: 53%;
  margin-top: 7%;
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  z-index: 2;
}
.daily .daily__medias .is-reverse .media__body {
  margin-left: -5%;
}
.daily .daily__medias .media__title {
  position: relative;
  font-size: 21px;
  font-weight: 600;
  color: #333;
}
.daily .daily__medias .media__title::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: #ffc5de;
}
.daily .daily__medias .media__text {
  margin-top: 30px;
  text-align: justify;
}
.daily .daily__medias .media__image {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: -5%;
}
.daily .daily__medias .media__image img {
  display: block;
  border-radius: 20px;
  width: 100%;
  max-height: 244px;
}
.daily .daily__medias .is-reverse .media__image {
  margin-left: 0;
}

.daily__flow .flow__item {
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  background-color: #fff;
  padding: 50px;
  border-radius: 20px;
}
.daily__flow .flow_design03 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 20px;
}
.daily__flow .flow_design03 ul {
  padding: 0;
}
.daily__flow .flow_design03 li {
  list-style-type: none;
}
.daily__flow .flow_design03 dd {
  margin-left: 0;
}
.daily__flow .flow03 {
  position: relative;
}
.daily__flow .flow03::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #eee;
  margin-left: -129px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
  border-radius: 20px;
}
.daily__flow .flow03 > li {
  position: relative;
}
.daily__flow .flow03 > li:not(:last-child) {
  margin-bottom: 60px;
}
.daily__flow .flow03 > li .icon03 {
  text-align: center;
  width: 75px;
  height: 30px;
  line-height: 28px;
  font-weight: bold;
  border-radius: 5px;
  color: #fff;
  background: #ffbc5f;
  display: inline-block;
  margin-right: 15px;
}
.daily__flow .flow03 > li dl {
  padding-left: 70px;
  position: relative;
}
.daily__flow .flow03 > li dl::before,
.daily__flow .flow03 > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}
.daily__flow .flow03 > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #8eb83c;
  border-radius: 50%;
  left: -4px;
}
.daily__flow .flow03 > li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}
.daily__flow .flow03 > li dl dt {
  font-weight: 500;
  margin-bottom: 0.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5;
}

.top-h2 {
  font-size: 35px;
  font-weight: 600;
  display: inline-block;
  line-height: 1.2;
  position: relative;
}
.top-h2:first-letter {
  color: #ffbc5f;
}
.top-h2 span {
  margin-top: -35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 0.54px;
}
.top-h2::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -20px;
  left: 0;
  width: min(8.9238845144vw, 170px);
  height: 2px;
  background-color: #ffbc5f;
}

.business__intro {
  background-color: #fff;
  overflow: hidden; /*横スクロールの発生を防止*/
}

.business__wide {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.business__transparent {
  position: relative; /* 基準位置とする */
}
.business__transparent img {
  width: 100%;
  max-width: 1100px;
}

.business__transparent::before {
  content: ""; /* 疑似要素に必須 */
  width: 100%; /* 幅いっぱい */
  height: 100%; /* 高さいっぱい */
  display: block; /* 高さを指定するためにブロック要素にする */
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(99%, #fff));
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 50%, #fff 99%); /* 徐々に透明にする */
  position: absolute; /*  */
  top: 0;
  left: 0;
}
.is-case2 .business__transparent::before {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(99%, #fff));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, #fff 99%);
}

.business__text {
  display: block;
  margin-top: 50px;
  font-size: 18px;
  padding: 30px;
  background-color: #fffee2;
  border-radius: 30px;
  letter-spacing: 0.06em;
  text-align: justify;
}

/* =====================================================
# recruit
===================================================== */
.company.recruit {
  background-color: #fffee2;
}
.company.recruit .horizontal-table {
  padding: 50px;
}
.company.recruit .horizontal-table__header {
  border-bottom: 1px solid #ffc5de;
  background-color: rgba(255, 228, 95, 0.1) !important;
}
.company.recruit .horizontal-table__header:first-child {
  border-top: 1px solid #ffc5de;
}

/* =====================================================
# company
===================================================== */
.vision {
  padding-block: 100px;
  background-color: white;
}

.greeting {
  background-color: #fffee2;
}
.greeting .media {
  background-color: #fff;
  padding: 50px;
  border-radius: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: min(4.1994750656vw, 80px);
  -webkit-box-shadow: 0 0px 16px rgba(136, 136, 136, 0.1);
          box-shadow: 0 0px 16px rgba(136, 136, 136, 0.1);
}
.greeting .media__body {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.greeting .media__title {
  position: relative;
  font-size: 27px;
  font-weight: 600;
  color: #333;
}
.greeting .media__title::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: #ffbc5f;
}
.greeting .media__text {
  margin-top: 30px;
  line-height: 2;
}
.greeting .media__image {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.greeting .media__image img {
  display: block;
  width: 400px;
  border-radius: 20px;
  border: 7px solid #fff;
}

.company-map__inner iframe {
  margin-top: 60px;
  width: 100%;
}

.company-map__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
}

#company {
  padding-top: 110px;
  margin-top: -110px;
}

.company {
  background-color: rgba(255, 241, 241, 0.5);
}
.company .profile {
  padding-top: 100px;
  padding-bottom: 100px;
}
.company .profile .horizontal-table {
  margin-top: 50px;
  background-color: #fff;
  border-radius: 20px;
  padding: 50px;
}
.company .profile .horizontal-table__header {
  background-color: #fff;
}

.horizontal-table {
  padding-top: 30px;
}
.horizontal-table__inner {
  width: 100%;
  background-color: #fff;
}
.horizontal-table__header {
  width: 25%;
  background-color: #ebf7db;
  padding: 15px;
  border-bottom: 1px solid #ffe45f;
  vertical-align: middle;
}
.horizontal-table__header:last-child {
  border-right-width: 0;
}
.horizontal-table__header:first-child {
  border-top: 1px solid #ffe45f;
}
.horizontal-table__text {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
}
.horizontal-table__text:first-of-type {
  border-top: 1px solid #ddd;
}
.horizontal-table .center {
  margin: 0 auto;
}

/* =====================================================
# contact
===================================================== */
.label {
  display: inline-block;
  background-color: #c42e2e;
  color: #fff;
  font-size: 13px;
  text-align: center;
  width: 45px;
  height: 28px;
  line-height: 28px;
  border-radius: 5px;
}

.contact {
  background-color: #fffee2;
  padding-block: 100px;
}

.tel-fax {
  max-width: 980px;
  margin-inline: auto;
}
.tel-fax__hour {
  color: #fff;
}
.tel-fax__content {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #ffbc5f;
  padding: 40px 15px;
  border-radius: 15px;
}
.tel-fax__box {
  width: 100%;
  margin-inline: auto;
  text-align: center;
}
.tel-fax__box.is-fax {
  border-left: 1px solid white;
}
.tel-fax .tel-number {
  display: inline-block;
  font-size: 41px;
  font-weight: 600;
  font-family: "Fredoka", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  color: white;
}
.tel-fax .tel-number::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(../img/common/tel_24.webp) center center/contain no-repeat;
  vertical-align: -5px;
  margin-right: 0px;
}
.tel-fax .is-fax .tel-number::before {
  width: 45px;
  height: 45px;
  vertical-align: -8px;
  margin-right: 10px;
  background: url(../img/common/fax_24.webp) center center/contain no-repeat;
}

.mail-form {
  background-color: #fff;
  padding-block: 100px;
  letter-spacing: 0;
  /*ラジオボタンorチェックボックス
  ------------------------------------*/
  /*フォーカス時*/
  /*クリック範囲*/
  /*ラジオボタンスタイル*/
  /*ラジオボタンチェック印（未選択）*/
  /*ラジオボタンチェック印（選択）*/
  /*チェックボックススタイル*/
  /*チェックボックス未チェック時*/
  /*チェックボックスチェック時*/
  /*セレクトボックス
  ------------------------------------*/
  /*テキストエリア
  ------------------------------------*/
}
.mail-form__inner {
  max-width: 1100px;
  padding-inline: 15px;
  margin-inline: auto;
}
.mail-form ::-webkit-input-placeholder {
  color: #aaa;
}
.mail-form ::-moz-placeholder {
  color: #aaa;
}
.mail-form :-ms-input-placeholder {
  color: #aaa;
}
.mail-form ::-ms-input-placeholder {
  color: #aaa;
}
.mail-form ::placeholder {
  color: #aaa;
}
.mail-form__title {
  font-size: 25px;
  font-weight: 500;
  color: #ffe45f;
  position: relative;
}
.mail-form__text {
  margin-top: 60px;
}
.mail-form__text > p {
  line-height: 2;
}
.mail-form .form-p {
  display: inline-block;
}
.mail-form .form-input {
  border: 1px solid #aaa;
  padding: 5px 10px;
  width: 100%;
}
.mail-form .form-input._age {
  width: 40%;
}
.mail-form__file-text {
  display: block;
  font-size: 13px;
  color: #cc2a1f;
  text-indent: -13px;
  padding-left: 13px;
}
.mail-form .horizontal-table {
  margin-top: 30px;
}
.mail-form .horizontal-table table {
  width: 100%;
}
.mail-form .horizontal-table th {
  width: 27%;
  padding: 20px;
  background-color: #fffee2;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  font-weight: bold;
  vertical-align: middle;
}
.mail-form .horizontal-table th .required {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.mail-form .horizontal-table th:first-child {
  border-top: 1px solid #ccc;
}
.mail-form .horizontal-table th:last-child {
  border-right-width: 0;
}
.mail-form .horizontal-table td {
  padding: 10px 20px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
}
.mail-form .horizontal-table td:first-of-type {
  border-top: 1px solid #ccc;
}
.mail-form .horizontal-table .center {
  margin: 0 auto;
}
.mail-form .privacy-policy {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}
.mail-form .box-scroll {
  width: 100%;
  height: 240px;
  padding: 20px;
  border: 1px solid #ddd;
  overflow: hidden;
  overflow-y: scroll;
  margin-bottom: 30px;
  background-color: #fff;
}
.mail-form .box-scroll__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  border-left: 8px solid #333;
  margin-bottom: 8px;
  padding-left: 8px;
}
.mail-form .box-scroll__li {
  text-indent: -21px;
  padding-left: 21px;
  letter-spacing: 0;
  margin-bottom: 7px;
}
.mail-form .privacy-wrapper {
  text-align: center;
}
.mail-form .privacy__title {
  border-bottom: 1px solid #666;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.mail-form .privacy__address {
  text-indent: -43px;
  padding-left: 43px;
}
.mail-form .privacy__link {
  color: blue;
  text-decoration: underline;
}
.mail-form .privacy-btn {
  display: inline-block;
  background-color: #ffbc5f;
  color: #fff;
  padding: 15px 10px;
  width: 350px;
  border-radius: 10px;
}
.mail-form .privacy-btn__wrapper {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
}
.mail-form .send-btn__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.mail-form .send-btn {
  display: inline-block;
  background-color: #ffbc5f;
  color: #fff;
  border: 2px solid transparent;
  padding: 15px;
  text-align: center;
  width: 320px;
  border-radius: 10px;
}
.mail-form .send-btn--back {
  margin-right: 100px;
  color: #ffbc5f;
  background-color: #fff;
  border: 2px solid #ffbc5f;
}
.mail-form input[type=radio],
.mail-form input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.mail-form input[type=radio]:focus + span,
.mail-form input[type=checkbox]:focus + span {
  outline: 1px solid #ccc;
}
.mail-form input[type=radio] + span,
.mail-form input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  margin: 0 2em 0 0;
  padding: 0.3em 0.3em 0.3em 2em;
  line-height: 1;
  vertical-align: middle;
  cursor: pointer;
}
.mail-form input[type=radio] + span:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 1.375em;
  height: 1.375em;
  border: 1px solid #999;
  border-radius: 50%;
  line-height: 1;
  background: #fff;
}
.mail-form input[type=radio] + span:after {
  content: "";
  display: none;
}
.mail-form input[type=radio]:checked + span:after {
  display: block;
  position: absolute;
  top: 0.2em;
  left: 0.2em;
  width: 1em;
  height: 1em;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: #3d98b4;
  line-height: 1;
}
.mail-form input[type=checkbox] + span:before {
  position: absolute;
  top: 0.2em;
  left: 0;
  content: "";
  width: 1.25em;
  height: 1.25em;
  border: 1px solid #999;
  background: #fff;
  line-height: 1;
  vertical-align: middle;
}
.mail-form input[type=checkbox] + span:after {
  content: "";
  display: none;
}
.mail-form input[type=checkbox]:checked + span:after {
  display: block;
  position: absolute;
  top: 0.3em;
  left: 0.4em;
  width: 0.5em;
  height: 1em;
  content: "";
  border-bottom: 3px solid #3d98b4;
  border-right: 3px solid #3d98b4;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mail-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; /*ブラウザ標準スタイルを解除*/
  display: block;
  width: 100%;
  padding: 5px 30px 5px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
.mail-form .selectWrap {
  /*selectの親要素をアイコン配置の基準とする*/
  position: relative;
  display: block;
  width: 30%;
}
.mail-form .selectWrap::after {
  /*矢印アイコン自作*/
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none; /*矢印の上もクリック可能にする*/
}
.mail-form textarea {
  resize: none;
}

/* 重ねるメディア
----------------------------------------------------- */
.normal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.normal._reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.column {
  width: 53%;
  position: relative;
  z-index: 2;
}
.column._reverse {
  margin-left: -5%;
}
.column-outside-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: -5%;
}
.column-outside-left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: calc(50% - 50vw);
  margin-right: -5%;
  text-align: right;
}
.column .text-box {
  padding-block: 50px;
}
.is-business-intro .column .text-box {
  background-color: #fff;
}
._top-intro .column .text-box {
  background-color: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}
.column .text-box p {
  font-size: 16px;
  text-align: justify;
}
.is-business-intro .column .text-box p {
  margin-top: 30px;
}
._top-intro .column .text-box p {
  color: #434343;
  margin-top: 40px;
}

/* 共通パーツ
----------------------------------------------------- */
.section {
  padding-block: 100px;
}

.heading {
  text-align: center;
  font-size: 33px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-block;
  position: relative;
  padding-left: 70px;
}
.heading::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 26px;
  width: 50px;
  height: 3px;
  background: #ffe45f;
}
.heading::after {
  content: attr(data-en);
  font-weight: 500;
  font-family: "Fredoka", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  position: absolute;
  top: 50px;
  left: 72px;
  font-size: 20px;
  color: #ffbc5f;
  background: none;
}

.button {
  display: inline-block;
  width: 390px;
  line-height: 75px;
  height: 75px;
  background: #ffbc5f;
  padding-inline: 24px;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  border-radius: 15px;
  position: relative;
}
.button::after {
  content: "";
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  border-radius: 1px;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 0.83em;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}

.list {
  display: block;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  text-indent: -9px;
  padding-left: 9px;
}

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

.photo-ofi {
  height: 0;
  display: block;
  background-color: #f3f3f3;
  overflow: hidden;
  position: relative;
  padding-bottom: 66.6666%; /* 高さを指定（ボックスの横幅を基準） */
}

.photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  font-family: "object-fit: scale-down;";
  position: absolute;
  left: 0;
  top: 0;
}

#watch,
#meal,
#enjoy,
#heart {
  margin-top: -100px;
  padding-top: 100px;
}

/* 左から右にカーテン
---------------------------------------------------- */
.curtainLefttoRight {
  position: relative;
}

.curtainLefttoRight.visible {
  -webkit-animation-name: curtainLeftFadeIn;
          animation-name: curtainLeftFadeIn;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.curtainLefttoRight.visible:before {
  display: block;
  content: "";
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  background-color: #000;
  -webkit-animation-name: curtainLeft;
          animation-name: curtainLeft;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes curtainLeftFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes curtainLeftFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes curtainLeft {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes curtainLeft {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
/* =====================================================
# top-banner
===================================================== */
.top-banner {
  padding-top: 100px;
  background-color: #fffee2;
}

.top-banner__inner {
  padding-inline: 15px;
  max-width: 1054px;
  margin-inline: auto;
}

.top-banner__content {
  background-color: #fa9100;
  border-radius: 20px;
  padding: 35px;
  position: relative;
}
.top-banner__content.is-sp {
  display: none;
}
.top-banner__content.is-pc {
  display: block;
}

.top-banner__catch {
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  padding-inline: 35px;
  text-align: center;
}
.top-banner__catch img {
  max-width: 100%;
}

.top-banner__box {
  margin-top: 50px;
  background-color: #fff;
  border-radius: 15px;
  position: relative;
}

.top-banner__main {
  display: block;
  padding-top: 10px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.top-banner__main img {
  display: inline-block;
}

.top-banner__illust1 {
  position: absolute;
  bottom: 0;
  left: 1%;
}

.top-banner__illust2 {
  position: absolute;
  bottom: 0;
  right: 1%;
}

.top-banner__info {
  padding-block: 2px 10px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.top-banner__info-text {
  display: inline-block;
  background-color: #434343;
  padding: 2px 20px;
  border-radius: 10px;
  color: #fff;
  font-size: 27px;
  font-weight: 600;
  font-family: "Fredoka", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
}
.top-banner__hour .small {
  font-size: 23px;
}

/* FLOCSS
----------------------------------------------------- */
/* FLOCSS
----------------------------------------------------- */
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

img {
  max-width: 100%;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

main {
  overflow: hidden; /*横スクロールの発生を防止*/
  background-size: auto auto;
}

html {
  background-color: #fafafa;
}

body {
  font-size: 16px;
  font-family: "Zen Maru Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #434343;
}

a {
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

a:hover {
  text-decoration: none;
}

img {
  height: auto;
}

/* FLOCSS
----------------------------------------------------- */
.l-inner {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.l-inner--has-column {
  display: grid;
  gap: 40px;
  grid-template-columns: 3fr minmax(260px, 1fr);
}

/* FLOCSS
----------------------------------------------------- */
.c-btn {
  display: inline-block;
  width: 300px;
  max-width: 100%;
  padding: 20px 10px;
  background-color: #e25c00;
  border: 2px solid transparent;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #fff;
  font-size: 17px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.c-btn:focus, .c-btn:hover {
  background-color: #fff;
  border-color: currentColor;
  color: #e25c00;
}
.c-btn--arrow-right {
  position: relative;
  padding-right: 20px;
  padding-left: 13.8px;
}
.c-btn--arrow-right::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 8.3px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-btn--icon {
  position: relative;
  padding-right: 20px;
  padding-left: 13.8px;
}
.c-btn--icon::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 60px;
  background: transparent url(/images/nav_07.png) no-repeat center center/contain;
}
.c-btn--large {
  width: 340px;
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 20px;
}
.c-btn--warning {
  background-color: #f1de00;
  color: #222;
}
.c-btn--warning:focus, .c-btn--warning:hover {
  border-color: #f1de00;
  color: #222;
}

.c-rounded-btn {
  display: inline-block;
  width: 236px;
  max-width: 100%;
  padding: 15px 10px;
  background-color: #e25c00;
  border: 2px solid transparent;
  border-bottom-color: #d40152;
  border-radius: 10px;
  color: #fff;
  font-size: 17px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.c-rounded-btn:focus, .c-rounded-btn:hover {
  background-color: #fff;
  border-color: currentColor;
  color: #e25c00;
}

.c-before-icon-btn {
  position: relative;
  display: inline-block;
  padding: 0.2em 0.3em;
  border: 1px solid currentColor;
  color: #e25c00;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.c-before-icon-btn:focus, .c-before-icon-btn:hover {
  background-color: #e25c00;
  color: #fff;
}
.c-before-icon-btn::before {
  display: inline-block;
  margin-right: 0.5em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.c-before-icon-btn--download::before {
  content: "\f019";
}
.c-before-icon-btn--zoom::before {
  content: "\f00e";
  -webkit-transform: translateY(-6%);
          transform: translateY(-6%);
}

/* FLOCSS
----------------------------------------------------- */
.p-breadcrumb {
  margin: 10px 20px;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-breadcrumb li {
  list-style: none;
}
.p-breadcrumb li:after {
  content: ">";
  padding: 0 5px;
}
.p-breadcrumb li:last-child:after {
  content: "";
}
.p-breadcrumb li a {
  text-decoration: none;
}
.p-breadcrumb li a:hover {
  text-decoration: underline;
}
.p-breadcrumb .u-current {
  color: #ffe45f;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mb-6 {
  margin-bottom: 60px;
}

.mb-7 {
  margin-bottom: 70px;
}

.mb-8 {
  margin-bottom: 80px;
}

.mb-9 {
  margin-bottom: 90px;
}

.mb-10 {
  margin-bottom: 100px;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-5 {
  margin-top: 50px;
}

.mt-6 {
  margin-top: 60px;
}

.mt-7 {
  margin-top: 70px;
}

.mt-8 {
  margin-top: 80px;
}

.mt-9 {
  margin-top: 90px;
}

.mt-10 {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  #js-pagetop {
    width: 70px;
    height: 70px;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
  }
  .pagetop .pagetop__arrow {
    font-size: 16px;
  }
  .pagetop .pagetop__text {
    font-size: 10px;
  }
  .header__lists .is-active {
    color: #ffbc5f !important;
  }
  .header__lists .is-active.header__contact {
    background: white !important;
  }
  .footer {
    padding-top: 50px;
  }
  .copyright {
    padding-block: 15px;
  }
  .footer__logo img {
    width: 230px;
  }
  .fv .top-fv__decoration {
    top: 20%;
    right: 1%;
  }
  .fv .top-fv__decoration2 {
    right: 2%;
  }
  .picture {
    margin-right: 10%;
  }
  .picture-copy {
    top: 38%;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    width: 270px;
  }
  .mv-jumbotron {
    height: 200px;
  }
  .mv-jumbotron__inner {
    padding-top: 37px;
  }
  .mv .mv-h2 {
    font-size: 22px;
    padding: 15px 25px 25px;
  }
  .mv .mv-h2__en {
    font-size: 35px;
    padding-bottom: 6px;
  }
  .mv .mv-h2__ja {
    padding-top: 15px;
    font-size: 20px;
  }
  .top-heading-ja {
    font-size: 18px;
  }
  .top-heading-ja::after {
    top: 50%;
  }
  .top-about__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 40px;
    padding: 30px 15px;
  }
  .top-recruit {
    padding-block: 60px;
  }
  .top-recruit .top-recruit__decoration img {
    width: min(16.9491525424vw, 130px);
  }
  .top-recruit__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .top-recruit__body {
    width: 100%;
    padding-block: 0px;
  }
  .top-recruit__btn .button {
    font-size: 18px;
  }
  .top-recruit__image {
    width: 100%;
    margin-right: 0;
  }
  .top-business__description {
    padding: 40px 30px;
    margin-top: 40px;
    font-size: 16px;
  }
  .top-business__content {
    margin-top: 50px;
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .top-news {
    padding-block: 50px;
  }
  .top-news__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    -webkit-box-align: unset;
    -webkit-align-items: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
  .top-news__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .top-news__content {
    padding: 20px 10px 28px;
  }
  .is-news-category .top-news__content {
    margin-top: 40px;
  }
  .top-company .top-company__decoration,
  .top-news .top-company__decoration {
    top: 30px;
    right: 3%;
    z-index: 1;
  }
  .top-company .top-about__text,
  .top-news .top-about__text {
    margin-top: 0;
    padding: 20px 15px;
  }
  .top-company .top-recruit__btn,
  .top-news .top-recruit__btn {
    margin-top: 40px;
  }
  .top-company .top-recruit__btn .button,
  .top-news .top-recruit__btn .button {
    width: 100%;
  }
  .top-company__media {
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 40px;
    padding: 30px 15px;
  }
  .top-contact__item .number .tel {
    font-size: 27px;
  }
  .top-contact__item .number .tel-small {
    font-size: 16px;
  }
  .daily .daily__medias .media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .daily .daily__medias .media.is-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .daily .daily__medias .media__body {
    width: 100%;
    padding: 30px 15px;
  }
  .daily .daily__medias .is-reverse .media__body {
    margin-left: 0%;
    margin-bottom: -3%;
  }
  .daily .daily__medias .media__title {
    font-size: 21px;
  }
  .daily .daily__medias .media__image {
    margin-left: 0%;
    margin-top: -3%;
  }
  .daily__flow .flow__item {
    padding: 30px 15px;
  }
  .daily__flow .flow03 > li {
    font-size: 14px;
  }
  .daily__flow .flow03 > li .icon03 {
    width: 60px;
    margin-right: 10px;
    font-size: 13px;
  }
  .daily__flow .flow03 > li dl dt {
    font-size: 15px;
  }
  .business__intro {
    padding-bottom: 50px;
  }
  .business__transparent::before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(99%, #fff));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, #fff 99%); /* 徐々に透明にする */
  }
  .is-case2 .business__transparent::before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(99%, #fff));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, #fff 99%); /* 徐々に透明にする */
  }
  .company.recruit .horizontal-table {
    background-color: transparent !important;
  }
  .company.recruit .horizontal-table__header {
    background-color: #fff1f1 !important;
  }
  .company.recruit .horizontal-table__header:first-child {
    border: none !important;
  }
  .company.recruit .horizontal-table__text {
    border: none !important;
  }
  .vision {
    padding-block: 50px;
  }
  .greeting .media__title {
    font-size: 21px;
  }
  .company-map__items {
    gap: 50px;
  }
  .company .profile {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .company .profile .horizontal-table {
    margin-top: 25px;
    padding: 20px 0;
    background-color: transparent !important;
  }
  .company .profile .horizontal-table__header {
    border: 1px solid #ddd;
    background-color: #ddd;
  }
  .horizontal-table {
    padding-top: 20px;
  }
  .horizontal-table__header {
    width: 100%;
    border: 1px solid #ccc;
    background-color: #ccc;
    padding: 10px;
  }
  .horizontal-table__header:first-child {
    border-top-width: 0;
  }
  .horizontal-table__text {
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
  .horizontal-table__text:first-of-type {
    border-top-width: 0;
  }
  .horizontal-table__text {
    width: 100%;
  }
  .horizontal-table__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact {
    padding-block: 50px;
  }
  .tel-fax {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .tel-fax__hour {
    font-size: 13px;
  }
  .tel-fax__content {
    padding: 20px;
    margin-top: 20px;
    grid-template-columns: 1fr;
    gap: 5px;
    width: 90%;
    max-width: 400px;
  }
  .tel-fax__box.is-fax {
    border-top: 1px solid white;
    border-left-width: 0;
    padding-top: 15px;
    margin-top: 10px;
  }
  .tel-fax .tel-number::before {
    width: 28px;
    height: 28px;
    vertical-align: -5px;
  }
  .tel-fax .is-fax .tel-number::before {
    width: 30px;
    height: 30px;
    vertical-align: -5px;
  }
  .mail-form {
    padding-block: 50px;
  }
  .mail-form .heading {
    padding-left: 40px;
  }
  .mail-form__title {
    font-size: 18px;
  }
  .mail-form__text {
    margin-top: 50px;
  }
  .mail-form .privacy-policy {
    font-size: 16px;
  }
  .mail-form .box-scroll__title {
    font-size: 16px;
  }
  .mail-form .privacy-btn {
    width: 100%;
    margin-bottom: 0px;
  }
  .mail-form .privacy-btn__wrapper {
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .mail-form .send-btn__wrapper {
    width: 100%;
    margin-bottom: 0px;
    display: block;
  }
  .mail-form .send-btn {
    width: 100%;
    margin-bottom: 15px;
  }
  .mail-form .send-btn--back {
    margin-right: 0px;
  }
  .mail-form input[type=radio] + span,
  .mail-form input[type=checkbox] + span {
    font-size: 15px;
    margin-right: 0;
    line-height: 1.4;
    letter-spacing: 0;
  }
  .mail-form input[type=radio] + span:before {
    top: 3px;
  }
  .mail-form input[type=radio]:checked + span:after {
    top: 6px;
  }
  .mail-form input[type=checkbox] + span:before {
    top: 0.3em;
  }
  .mail-form .selectWrap {
    width: 60%;
  }
  .mail-form .fileUpload {
    font-size: 0.9em; /* 文字を小さくする */
    width: 90%; /* 幅を小さくする */
    display: inline-block; /* インラインブロックにして幅を適用 */
  }
  .normal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .normal._reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .column {
    width: 100%;
  }
  .column-outside-right {
    margin-left: 0;
    margin-right: 0;
  }
  .column-outside-left {
    margin-left: 0;
    margin-right: 0;
  }
  .is-business-intro .column .text-box {
    padding: 20px;
  }
  ._top-intro .column .text-box p {
    margin-top: 20px;
  }
  .section {
    padding-block: 50px;
  }
  .heading {
    text-align: left;
    letter-spacing: 0em;
    font-size: 24px;
    padding-left: 40px;
  }
  .heading::before {
    top: 18px;
    width: 30px;
  }
  .heading::after {
    font-size: 15px;
    top: 35px;
    left: 40px;
  }
  .md-none {
    display: none;
  }
  .top-banner {
    padding-top: 50px;
  }
  .top-banner__content {
    padding: 3.9113428944vw;
  }
  .top-banner__content.is-sp {
    display: block;
  }
  .top-banner__content.is-pc {
    display: none;
  }
  .top-banner__catch {
    top: 4.5632333768vw;
  }
  .top-banner__box {
    margin-top: 16.29726206vw;
  }
  .top-banner__info {
    padding-inline: 15px;
  }
  .top-banner__info-text {
    padding-block: 15px;
    line-height: 1.2;
  }
  .top-banner__hour {
    font-size: 21px;
  }
  .top-banner__hour .small {
    font-size: 18px;
  }
  .l-inner--has-column {
    grid-template-columns: 1fr;
  }
  .p-breadcrumb {
    font-size: 14px;
  }
  .hidden-sp {
    display: none;
  }
  .mb-2 {
    margin-bottom: 10px;
  }
  .mb-3 {
    margin-bottom: 15px;
  }
  .mb-4 {
    margin-bottom: 20px;
  }
  .mb-5 {
    margin-bottom: 25px;
  }
  .mb-6 {
    margin-bottom: 30px;
  }
  .mb-7 {
    margin-bottom: 35px;
  }
  .mb-8 {
    margin-bottom: 40px;
  }
  .mb-9 {
    margin-bottom: 45px;
  }
  .mb-10 {
    margin-bottom: 50px;
  }
  .mt-2 {
    margin-top: 10px;
  }
  .mt-3 {
    margin-top: 15px;
  }
  .mt-4 {
    margin-top: 20px;
  }
  .mt-5 {
    margin-top: 25px;
  }
  .mt-6 {
    margin-top: 30px;
  }
  .mt-7 {
    margin-top: 35px;
  }
  .mt-8 {
    margin-top: 40px;
  }
  .mt-9 {
    margin-top: 45px;
  }
  .mt-10 {
    margin-top: 50px;
  }
}

@media screen and (min-width: 768px) {
  #js-pagetop:focus, #js-pagetop:hover {
    opacity: 0.9;
  }
  .header__contact {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header__contact:focus, .header__contact:hover {
    background: #ffc5de;
  }
  .footer__link:focus, .footer__link:hover {
    color: #ffbc5f;
  }
  .top-business__button .button.is-type1, .top-business__button .button.is-type2, .top-business__button .button.is-type3, .top-business__button .button.is-type4 {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .top-business__button .button.is-type1:focus, .top-business__button .button.is-type1:hover, .top-business__button .button.is-type2:focus, .top-business__button .button.is-type2:hover, .top-business__button .button.is-type3:focus, .top-business__button .button.is-type3:hover, .top-business__button .button.is-type4:focus, .top-business__button .button.is-type4:hover {
    background-color: #ffe45f;
  }
  .top-news__pdf {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .top-news__pdf:focus, .top-news__pdf:hover {
    background-color: #ffc5de;
  }
  .mail-form .privacy__link:hover {
    color: #999;
  }
  .mail-form .privacy-btn:focus, .mail-form .privacy-btn:hover {
    opacity: 0.6;
  }
  .mail-form .send-btn:focus, .mail-form .send-btn:hover {
    opacity: 0.6;
  }
  .button:focus, .button:hover {
    background: #ffc5de;
  }
  .button:hover::after {
    right: 0.5em;
  }
  .recruit__button .button:focus, .recruit__button .button:hover {
    background: #ffe45f;
  }
  .hidden-pc {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  .header {
    height: 70px;
  }
  .header__inner {
    padding-inline: 15px;
  }
  .header__logo a img {
    width: 330px;
  }
  .header__nav {
    background: #fff1f1;
    width: 270px;
    height: calc(100% - 70px);
    position: fixed;
    right: 0;
    top: 70px;
    padding: 40px 15px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    max-width: 100%;
    overflow-x: auto;
  }
  .header__nav.is-checked {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .header__contact {
    border-radius: 5px;
    height: 70px;
  }
  .header__link {
    display: inline-block;
  }
  .drawer-icon {
    width: 30px;
    height: 18px;
    position: relative;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(1), .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
    top: 9px;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
    display: none;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .drawer-icon__bar {
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ffbc5f;
    -webkit-transition: top 0.3s, -webkit-transform 0.3s;
    transition: top 0.3s, -webkit-transform 0.3s;
    transition: top 0.3s, transform 0.3s;
    transition: top 0.3s, transform 0.3s, -webkit-transform 0.3s;
  }
  .drawer-icon__bar:nth-child(1) {
    top: 0;
  }
  .drawer-icon__bar:nth-child(2) {
    top: 8px;
  }
  .drawer-icon__bar:nth-child(3) {
    top: 16px;
  }
  .footer .address-area__text {
    font-size: 14px;
    text-align: center;
  }
  .footer__nav-area {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__nav {
    margin-top: 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-top: unset;
  }
  .footer__lists {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .footer__link {
    text-align: center;
    line-height: 1.6;
  }
  .slide {
    height: 66.7222685571vw;
  }
  .fv {
    padding-top: 70px;
  }
  .fv .top-fv__decoration img {
    width: min(20.8507089241vw, 250px);
  }
  .fv .top-fv__decoration2 img {
    width: min(12.5104253545vw, 150px);
  }
  .fv__bg-grad {
    top: 33.3611342786vw;
    height: 33.3611342786vw;
  }
  .picture-copy__title {
    font-size: 5.0041701418vw;
    text-shadow: 0 0 2.5px #ff945f, 0 0 5px #ff945f, 0 0 7.5px #ff945f, 0 0 10px #ff945f; /* 4つ目の影（ぼかし多め） */
  }
  .mv {
    padding-top: 70px;
    background-color: #fff;
  }
  .top-heading-en {
    font-size: 60px;
  }
  .top-about__text {
    font-size: 16px;
  }
  .top-recruit .top-recruit__decoration {
    top: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .top-recruit__catch {
    font-size: 20px;
  }
  .top-recruit__text {
    font-size: 16px;
  }
  .top-business .top-business__decoration img {
    opacity: 0.1;
    width: min(15.0125104254vw, 180px);
  }
  .top-business .top-business__decoration2 img {
    width: min(15.0125104254vw, 180px);
  }
  .top-business__button .button {
    font-size: 16px;
  }
  .top-company .top-company__decoration img,
  .top-news .top-company__decoration img {
    width: min(15.0125104254vw, 180px);
  }
  .top-contact {
    padding-block: 50px;
  }
  .top-contact::before {
    position: absolute;
    top: 0;
    height: 0;
    content: "";
    width: 100%;
    height: 100%;
  }
  .top-contact__inner {
    position: relative;
    z-index: 2;
  }
  .top-contact__items {
    margin-top: 30px;
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-inline: auto;
    gap: 10px;
  }
  .top-contact__item {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 20px 15px;
    border-radius: 20px;
  }
  .top-contact__item:nth-child(1), .top-contact__item:nth-child(2) {
    border-right: none;
  }
  .daily__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 100px;
  }
  .daily .daily__medias {
    max-width: 778px;
    margin-inline: auto;
    padding-inline: 15px;
  }
  .daily .daily__medias .media__image img {
    max-height: unset;
  }
  .top-h2 {
    font-size: 23px;
  }
  .top-h2 span {
    margin-top: -13px;
    font-size: 16px;
  }
  .top-h2::after {
    width: 14.1784820684vw;
  }
  .business__text {
    font-size: 16px;
  }
  .greeting .media {
    gap: 50px;
  }
  .tel-fax .tel-number {
    font-size: 35px;
  }
  .is-business-intro .column .text-box p {
    font-size: 1.5012510425vw;
  }
  #watch,
  #meal,
  #enjoy,
  #heart {
    margin-top: -70px;
    padding-top: 70px;
  }
}

@media screen and (min-width: 1200px) {
  .header__left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 32px;
  }
  .header__right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .header__logo a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header__logo a:focus, .header__logo a:hover {
    opacity: 0.6;
  }
  .header__icon {
    display: none;
  }
  .header__link {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header__link:focus, .header__link:hover {
    color: #ffc5de;
  }
}

@media screen and (max-width: 1199px) and (max-width: 767px) {
  .header__logo a img {
    width: 300px;
  }
  .footer .address-area__text {
    font-size: 13px;
  }
  .footer__nav-area {
    margin-top: 20px;
  }
  .footer__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .slide {
    height: 350px;
  }
  .fv__bg-grad {
    top: 160px;
    height: 190px;
  }
  .picture-copy__title {
    font-size: 35px;
    color: white;
  }
  .top-heading-en {
    font-size: 45px;
  }
  .daily__content {
    margin-top: 10px;
    gap: 80px;
  }
  .daily .daily__medias {
    gap: 50px;
  }
  .top-h2 {
    font-size: 20px;
  }
  .top-h2 span {
    margin-top: 0px;
    font-size: 14px;
  }
  .top-h2::after {
    width: 15.6453715776vw;
  }
  .tel-fax .tel-number {
    padding-left: 2px;
    font-size: 28px;
  }
  .is-business-intro .column .text-box p {
    font-size: 16px;
  }
}

@media screen and (max-width: 1199px) and (max-width: 767px) and (max-width: 410px) {
  .header__logo a img {
    width: 71.7079530639vw;
  }
}

@media screen and (max-width: 1023px) {
  .top-business .top-business__decoration {
    top: 30px;
    left: 3%;
    z-index: 1;
  }
  .top-business .top-business__decoration2 {
    top: 50px;
    right: 3%;
    z-index: 1;
  }
  .company-map__inner iframe {
    margin-top: 50px;
  }
  .mail-form .horizontal-table {
    margin-top: 20px;
  }
  .mail-form .horizontal-table table {
    font-size: 16px;
  }
  .mail-form .horizontal-table th {
    border-bottom-width: 0;
    border-left: unset;
    background-color: #efefef;
    width: 100%;
    border-right: 0;
    padding: 10px;
  }
  .mail-form .horizontal-table td {
    border-bottom-width: 0;
    border-right: unset;
    border-left: unset;
    width: 100%;
    padding: 10px;
  }
  .mail-form .horizontal-table tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mail-form .box-scroll {
    height: 220px;
    margin-bottom: 15px;
    padding: 15px;
    word-break: break-all;
  }
  .button {
    width: 240px;
  }
  .sp-none {
    display: none;
  }
  .top-banner__main {
    width: 80%;
    margin-inline: auto;
    padding-inline: 15px;
  }
  .top-banner__illust1 img {
    height: 110px;
  }
  .top-banner__illust2 img {
    height: 110px;
  }
}

@media screen and (max-width: 1199px) and (max-width: 1023px) {
  .top-business__button .button {
    width: 100% !important;
  }
  .greeting .media {
    padding: 30px 15px;
    gap: 30px;
  }
  .column .text-box {
    margin-top: 0px;
  }
}

@media screen and (max-width: 1199px) and (max-width: 360px) {
  .top-business__button .button {
    font-size: 13px;
  }
}

@media screen and (max-width: 1199px) and (max-width: 1023px) and (max-width: 767px) {
  .greeting .media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .column .text-box {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 1023px) and (max-width: 767px) {
  .company-map__inner iframe {
    height: 300px;
    margin-top: 40px;
  }
  .top-banner__main {
    padding-top: 20px;
    width: 95%;
  }
  .top-banner__illust1 {
    bottom: unset;
    top: 3.9113428944vw;
  }
  .top-banner__illust1 img {
    height: 20.8604954368vw;
  }
  .top-banner__illust2 {
    bottom: unset;
    top: 3.9113428944vw;
  }
  .top-banner__illust2 img {
    height: 20.8604954368vw;
  }
}

@media screen and (min-width: 2001px) {
  .column {
    max-width: 2000px;
  }
}

@media screen and (min-width: 1024px) {
  .hidden-tab {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */