@charset "UTF-8";
/*!===========================
このcssはSassから生成されていますので、
直接編集しないようご注意ください。
===========================*/
@keyframes zoomout {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes left-right {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
@keyframes left-right-out {
  0% {
    transform: scale(1, 1);
    transform-origin: right 0px;
  }
  100% {
    transform: scale(0, 1);
    transform-origin: right 0px;
  }
}
@keyframes slideup {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes vertical {
  0% {
    height: 0px;
    bottom: auto;
    top: 50px;
  }
  49.9% {
    bottom: auto;
    top: 50px;
  }
  50% {
    height: 60px;
    top: auto;
    bottom: 0;
  }
  100% {
    height: 0px;
    top: auto;
    bottom: 0;
  }
}
/* スクロールアニメーション基本設定
============================== */
.iv, .ivo {
  transform: translateY(50px);
  opacity: 0;
}

.fadeinup {
  transition: all 0.5s ease-in;
  transform: translateY(0px);
  opacity: 1 !important;
}

@media (max-width: 767px) {
  table > tbody > tr > th,
  table > tbody > tr > td {
    padding: 10px;
  }
  /* ==================================================
  layout
  ================================================== */
  main > aside {
    order: 1;
    width: 100%;
    padding: 50px 0 0;
    margin-bottom: 0;
  }
  main > aside > * {
    max-width: none;
  }
  main > aside + #content {
    width: 100%;
  }
  main > aside + #content > * {
    padding-left: 20px;
  }
  main > aside + #content > * > * {
    max-width: none;
  }
  /* class
  ============================== */
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  img.sp,
  span.sp {
    display: inline;
  }
  table.sp {
    display: table;
  }
  .alignleft,
  .alignright {
    float: none;
    max-width: 100% !important;
    margin-bottom: 0;
  }
  .alignleft {
    margin-right: 0;
  }
  .alignright {
    margin-left: 0;
  }
  .col {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    position: relative;
  }
  .col > * {
    width: 100%;
  }
  .col > *:nth-child(n+2) {
    margin-top: 2em;
  }
  .col.col3::before, .col.col4::before, .col.col5::before {
    content: "";
    display: block;
    height: 0;
    order: 1;
  }
  .col.col3::after, .col.col4::after, .col.col5::after {
    content: "";
    display: block;
    height: 0;
  }
  .col.col3::before {
    width: 100%;
  }
  .col.col3::after {
    width: 100%;
  }
  .col.col3 > * {
    width: 100%;
  }
  .col.col3 > *:nth-child(-n+1) {
    margin-top: 0;
  }
  .col.col3 > *:nth-child(n+2) {
    margin-top: 2em;
  }
  .col.col4::before {
    width: calc(50% - 10px);
  }
  .col.col4::after {
    width: calc(50% - 10px);
  }
  .col.col4 > * {
    width: calc(50% - 10px);
  }
  .col.col4 > *:nth-child(-n+2) {
    margin-top: 0;
  }
  .col.col4 > *:nth-child(n+3) {
    margin-top: 2em;
  }
  .col.col5::before {
    width: calc(33.3333333333% - 10px);
  }
  .col.col5::after {
    width: calc(33.3333333333% - 10px);
  }
  .col.col5 > * {
    width: calc(33.3333333333% - 10px);
  }
  .col.col5 > *:nth-child(-n+3) {
    margin-top: 0;
  }
  .col.col5 > *:nth-child(n+4) {
    margin-top: 2em;
  }
  .col.w40w55 > *:nth-child(1) {
    width: 100%;
  }
  .col.w40w55 > *:nth-child(2) {
    margin-top: 1em;
    width: 100%;
  }
  .col.w40w55.sp-col-re {
    flex-direction: column-reverse;
  }
  .col.w40w55.sp-col-re > *:nth-child(1) {
    margin-top: 1em;
  }
  .col.w40w55.sp-col-re > *:nth-child(2) {
    margin-top: 0;
  }
  .col.w55w40 > *:nth-child(1) {
    width: 100%;
  }
  .col.w55w40 > *:nth-child(2) {
    margin-top: 1em;
    width: 100%;
  }
  .col.w55w40.sp-col-re {
    flex-direction: column-reverse;
  }
  .col.w55w40.sp-col-re > *:nth-child(1) {
    margin-top: 1em;
  }
  .col.w55w40.sp-col-re > *:nth-child(2) {
    margin-top: 0;
  }
  .btn {
    font-size: 1.6rem;
  }
  .btn input[type=submit],
  .btn input[type=button] {
    border: none;
  }
  .scroll {
    overflow-x: auto;
  }
  .scroll::-webkit-scrollbar {
    height: 5px;
  }
  .scroll::-webkit-scrollbar-track, .scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
  }
  .scroll::-webkit-scrollbar-track {
    background: #CCCCCC;
  }
  .scroll::-webkit-scrollbar-thumb {
    background: #666666;
  }
  .scroll table {
    white-space: nowrap;
  }
  /* ==================================================
  header
  ================================================== */
  header .wrap .title-area {
    width: 85%;
  }
  /* ==================================================
  footer
  ================================================== */
  footer {
    padding: 0;
  }
  footer .pagetop {
    width: 50px;
    top: 55%;
  }
  footer .pagetop.fixed {
    bottom: 6.5em;
  }
  footer .footer-wrap .wrap .contact-area {
    padding: 5em 20px;
  }
  footer .footer-wrap .wrap .contact-area .contact-list {
    flex-wrap: wrap;
  }
  footer .footer-wrap .wrap .contact-area .contact-list .list-item {
    width: 100%;
  }
  footer .footer-wrap .wrap .contact-area .contact-list .list-item:nth-child(n+2) {
    margin: 1.5em 0 0;
  }
  footer .footer-wrap .wrap .contact-area .contact-list .list-item .btn {
    font-size: 2rem;
    text-align: center;
  }
  footer .footer-wrap .wrap .fnav-area {
    margin: 0 auto;
    padding: 2em 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  footer .footer-wrap .wrap .fnav-area .fnav-wrap {
    width: 100%;
  }
  footer .footer-wrap .wrap .fnav-area .fnav-wrap .fnav-list {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
  }
  footer .footer-wrap .wrap .fnav-area .fnav-wrap .fnav-list .list-item {
    font-size: 1.5rem;
    width: 33.3333333333%;
  }
  footer .footer-wrap .wrap .fnav-area .fnav-wrap .fnav-list .list-item:nth-child(n+4) {
    margin: 0.5em 0 0;
  }
  footer .footer-wrap .wrap .fnav-area .visit-wrap {
    margin: 1em 0 0;
    justify-content: center;
    width: 100%;
  }
  footer .footer-wrap .wrap .company-area {
    padding: 2em 20px;
    flex-wrap: wrap;
  }
  footer .footer-wrap .wrap .company-area .company-wrap {
    width: 60%;
  }
  footer .footer-wrap .wrap .company-area .company-wrap .add {
    margin: 1em 0 0;
    font-size: 1.3rem;
    line-height: 1.6;
  }
  footer .footer-wrap .wrap .company-area .company-wrap .tel {
    font-size: 1.3rem;
    line-height: 1.6;
  }
  footer .footer-wrap .wrap .company-area .other-wrap {
    width: 40%;
  }
  footer .footer-wrap .wrap .company-area .other-wrap .copyright {
    margin: 2em 0 0;
    font-size: 1.2rem;
  }
  /* ==================================================
  aside
  ================================================== */
  .pc-side-nav-fixed {
    position: static;
  }
  /* ==================================================
  main
  ================================================== */
  body:not(#top) #content > *:not(#breadcrumb):not(.common-area) {
    padding-top: 50px;
    /*padding-bottom: 50px;*/
  }
  body:not(#top) #content > *:not(#breadcrumb):not(.common-area) > *:nth-child(n+2) {
    margin-top: 30px;
  }
  /* sub common
  ============================== */
  /* sub
  ============================== */
  /* top
  ============================== */
  #top {
    /* main image slide slick.js
    ============================== */
  }
  #top .slick-dots {
    bottom: 10px !important;
  }
  #top .slick-dots li button::before {
    font-size: 11px !important;
  }
  #top .top-main .wrap .top-main-area .main-title {
    font-size: 2.4rem;
  }
  #top .top-main .wrap .top-main-area .main-date {
    margin: 0.6em 0 0;
    font-size: 3.2rem;
  }
  #top .top-main .wrap .top-main-area .main-txt01 {
    margin: 0.2em 0 0;
    font-size: 5.8rem;
  }
  #top .top-main .wrap .top-main-area .main-txt02 {
    font-size: 3.8rem;
  }
  #top .top-benefit .title-h01 {
    font-size: 2.4rem;
  }
  #top .top-benefit .wrap .benefit-txt {
    margin: 2em 0 0;
    font-size: 2rem;
    line-height: 1.6;
  }
  #top .top-benefit .wrap .flyer-box {
    margin: 2em 0 0;
    padding: 1em;
    flex-wrap: wrap;
  }
  #top .top-benefit .wrap .flyer-box .title {
    font-size: 1.6rem;
    width: 100%;
    min-width: inherit;
  }
  #top .top-benefit .wrap .flyer-box .flyer-list {
    margin: 1em 0 0;
    font-size: 1.3rem;
    width: 100%;
  }
  #top .top-shop-menu .wrap .shop-menu-list::before {
    width: calc(50% - 5px);
  }
  #top .top-shop-menu .wrap .shop-menu-list::after {
    width: calc(50% - 5px);
  }
  #top .top-shop-menu .wrap .shop-menu-list .list-item {
    font-size: 1.2rem;
    letter-spacing: 0;
    width: calc(50% - 5px);
  }
  #top .top-shop-menu .wrap .shop-menu-list .list-item:nth-child(n+3) {
    margin: 1.5em 0 0;
  }
  #top .top-shop-menu .wrap .shop-menu-list .list-item a .no {
    margin: 0 5px 0 0;
  }
  #top .top-shop .wrap .shop-wrap {
    padding: 0;
  }
  #top .top-shop .wrap .shop-wrap:nth-child(odd) {
    background: none;
  }
  #top .top-shop .wrap .shop-wrap .shop-list .list-item {
    padding: 1.5em;
    width: 100%;
  }
  #top .top-shop .wrap .shop-wrap .shop-list .list-item:nth-child(odd) {
    background: #F2F0EE;
  }
  #top .top-shop .wrap .shop-wrap .shop-list .list-item img:nth-child(n+2) {
    margin: 1em 0 0;
  }
  #top .top-form .title-h01 {
    font-size: 3rem;
  }
  #top .top-form .wrap {
    margin-top: 3em;
  }
  #top .top-form .wrap .form-area {
    margin: 3em auto 0;
  }
  #top .f-fix-area,
  #top .f-fix-area02 {
    /*&.fixed {
       width: 100%;
       position: fixed;
       left: 0;
       bottom: 0;
       z-index: 998;
       animation: fadein 0.3s;
       .fix-list {}
     }*/
  }
  #top .h-fix-area.fixed {
    width: calc(100% - 54px);
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    animation: fadein 0.3s;
  }
  #top .h-fix-area.fixed .fix-list {
    height: 100%;
  }
  #top .h-fix-area.fixed .fix-list .list-item a {
    padding: 0.5em;
  }
  #top .h-fix-area.fixed .fix-list .list-item.mail img {
    height: 100% !important;
    max-height: 33px !important;
  }
  #top .f-fix-area02 {
    margin: 3em -20px 0;
    width: auto;
  }
  /* contact
  ============================== */
  #top-contact .title,
  #recruit .title {
    font-size: 3rem;
    text-align: center;
  }
  #top-contact .intro-area,
  #recruit .intro-area {
    margin: 2em 0 0;
  }
  #top-contact .intro-area .list-no,
  #recruit .intro-area .list-no {
    font-size: 1.4rem;
  }
  #top-contact .flow-area .flow-list li,
  #recruit .flow-area .flow-list li {
    padding: 0 0 0.6em;
    font-size: 1.5rem;
    width: calc(33.3333333333% - 10px);
  }
  #top-contact .flow-area .flow-list li .eng,
  #recruit .flow-area .flow-list li .eng {
    font-size: 1.2rem;
  }
  #top-contact .flow-area .flow-list li .jpn,
  #recruit .flow-area .flow-list li .jpn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
  }
  #top-contact .form-area,
  #recruit .form-area {
    padding: 2em 1em 3em;
  }
  #top-contact .form-area .form-wrap dl,
  #recruit .form-area .form-wrap dl {
    display: block;
  }
  #top-contact .form-area .form-wrap dl dt,
  #recruit .form-area .form-wrap dl dt {
    padding: 0.5em 3.5em 0.5em 0.5em;
    font-size: 1.6rem;
    width: 100%;
  }
  #top-contact .form-area .form-wrap dl dt .required-mark,
  #recruit .form-area .form-wrap dl dt .required-mark {
    right: 10px;
  }
  #top-contact .form-area .form-wrap dl dt.required,
  #recruit .form-area .form-wrap dl dt.required {
    padding: 0.5em 3em 0.5em 1em;
  }
  #top-contact .form-area .form-wrap dl dd,
  #recruit .form-area .form-wrap dl dd {
    padding: 1em 0 2em;
    width: 100%;
  }
  #top-contact .form-area .btn,
  #recruit .form-area .btn {
    min-width: 250px;
  }
  #top-contact .thanks-area,
  #recruit .thanks-area {
    text-align: left;
  }
  .form-area {
    padding: 0 24px;
  }
  .form-area .c-form__group {
    flex-direction: column;
    gap: 1.5em;
  }
  .form-area .c-form__label {
    font-size: 18px;
  }
  .form-area .wpcf7-radio {
    grid-template-columns: 1fr;
    gap: 0.5em;
  }
}/*# sourceMappingURL=sp.css.map */