@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@400;500;600;700&family=Nunito:ital@0;1&display=swap");
/** reset **/
html,
body,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: top;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article,
header,
footer,
aside,
figure,
figcaption,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/** config **/
body {
  position: relative;
  font-size: 100%;
  font-family: "Nunito", "M PLUS 1", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, "sans-serif";
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
  color: #333;
  line-height: 1.7;
  font-weight: 400;
  background: -webkit-gradient(linear, left top, left bottom, from(#ecf4e8), color-stop(#d7e9f3), color-stop(#e7e5f1), to(#f8e2ed));
  background: linear-gradient(to bottom, #ecf4e8, #d7e9f3, #e7e5f1, #f8e2ed);
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: 50px;
}

.bar-left {
  width: 30px;
  background: url(../images/common/pc_bg_left.svg) repeat-y left top;
  background-size: contain;
  margin-right: 20px;
  animation: scrollanim 240s linear infinite;
  -webkit-animation: scrollanim 240s linear infinite;
}

@-webkit-keyframes scrollanim {
  100% {
    background-position: 0 -100%;
  }
}

@keyframes scrollanim {
  100% {
    background-position: 0 -100%;
  }
}
.bar-right {
  width: 30px;
  background: url(../images/common/pc_bg_right.svg) repeat-y left top;
  background-size: contain;
  margin-left: 20px;
  animation: scrollanim2 240s linear infinite;
  -webkit-animation: scrollanim2 240s linear infinite;
}

@-webkit-keyframes scrollanim2 {
  100% {
    background-position: 0 100%;
  }
}

@keyframes scrollanim2 {
  100% {
    background-position: 0 100%;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    display: block;
    background: none;
  }
  .bar-left {
    display: none;
  }
  .bar-right {
    display: none;
  }
}
.header {
  /*ボタン外側*/
  /*ボタン内側*/
}
.header .openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
  追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: fixed;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 60px;
  height: 60px;
  z-index: 200;
  background: url(../images/common/bg_menu.webp) no-repeat left bottom;
  background-size: contain;
}
.header .openbtn .openbtn-area {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  /*アニメーションの設定*/
  width: 40px;
  height: 40px;
}
.header .openbtn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  right: 8px;
  height: 2px;
  background: #d2b646;
  width: 50%;
}
.header .openbtn span:nth-of-type(1) {
  top: 10px;
}
.header .openbtn span:nth-of-type(2) {
  top: 18px;
}
.header .openbtn span:nth-of-type(3) {
  top: 26px;
}
.header .openbtn.active span:nth-of-type(1) {
  top: 14px;
  right: 12px;
  transform: translateY(5px) rotate(-45deg);
  width: 40%;
  -webkit-transform: translateY(5px) rotate(-45deg);
  -moz-transform: translateY(5px) rotate(-45deg);
  -ms-transform: translateY(5px) rotate(-45deg);
  -o-transform: translateY(5px) rotate(-45deg);
}
.header .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.header .openbtn.active span:nth-of-type(3) {
  top: 24px;
  right: 12px;
  transform: translateY(-5px) rotate(45deg);
  width: 40%;
  -webkit-transform: translateY(-5px) rotate(45deg);
  -moz-transform: translateY(-5px) rotate(45deg);
  -ms-transform: translateY(-5px) rotate(45deg);
  -o-transform: translateY(-5px) rotate(45deg);
}
.header #gnav {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: 100svh;
  width: 100vw;
  position: fixed;
  background: #fff;
  opacity: 0;
  z-index: -5;
  top: 0;
  left: 0;
}
.header #gnav.panelactive {
  opacity: 1;
  z-index: 150;
}
.header #gnav .gnav-list {
  position: absolute;
  z-index: -10;
  max-width: 300px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  display: none;
}
.header #gnav.panelactive .gnav-list {
  display: block;
  z-index: 160;
}
.header #gnav h1 {
  width: 65%;
  margin: 0 auto 30px;
}
.header #gnav .level1 {
  width: 80%;
  margin: 0 auto;
}
.header #gnav .level1 li {
  margin-bottom: 10px;
}
.header #gnav .level2 {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header #gnav .level2 li {
  width: 30%;
}

main {
  width: 375px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}
main .hero-image {
  background-color: #04a0a3;
}
main .section {
  padding: 30px 0;
  position: relative;
  top: -5px;
}
main .section .section-inner {
  position: relative;
  z-index: 2;
}
main .section .w90 {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
main .section .w80 {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
main .section .w70 {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
main .section .w60 {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
main .section .w50 {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
main .section.bg-green {
  background-color: #04a0a3;
}
main .section.bg-green2 {
  background-color: #78bf5b;
}
main .section.bg-gray {
  background-color: #e9e9e9;
}
main .section.bg-pink {
  background-color: #e95f48;
}
main .section.bg-pink2 {
  background-color: #f4cbdf;
}
main .section.bg-blue {
  background-color: #4679a5;
}
main .section.bg-blue2 {
  background-color: #5f84d6;
}
main .section.bg-yellow {
  background-color: #d2b646;
}
main .section.bg-yellow2 {
  background-color: #dab600;
}
main .section.bg-purple {
  background-color: #8c90d3;
}
main .section.bg-purple2 {
  background-color: #9265a8;
}
main h2 {
  width: 100%;
  margin: 0 auto 20px;
  text-align: center;
}
main .item {
  width: 100%;
  margin-bottom: 15px;
  position: relative;
}
main .item.center {
  margin-left: auto;
  margin-right: auto;
}
main .item.left {
  margin-right: auto;
}
main .item.right {
  margin-left: auto;
}
main .item .btn-left {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 50%;
}
main .item .btn-right {
  position: absolute;
  bottom: 10%;
  right: 0;
  width: 50%;
}
main .btn {
  width: 80%;
  margin: 20px auto;
}
main .btn-list ul {
  padding: 0 30px;
}
main .btn-list li {
  margin-bottom: 10px;
}
main .coupon_btn01 {
  position: relative;
}
main .coupon_btn01 div {
  position: absolute;
  right: 0;
  top: 10%;
  max-width: 100px;
}
main .coupon_btn02 {
  position: relative;
}
main .coupon_btn02 div {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 100px;
}
main .coupon_btn03 {
  position: relative;
}
main .coupon_btn03 div {
  position: absolute;
  left: 0;
  top: 15%;
  max-width: 100px;
}
main .coupon_btn04 {
  position: relative;
}
main .coupon_btn04 div {
  position: absolute;
  left: 0;
  top: 55%;
  max-width: 100px;
}
main .coupon_btn05 {
  position: relative;
}
main .coupon_btn05 div {
  position: absolute;
  right: 3%;
  bottom: 0;
  max-width: 100px;
}
main .app {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 10px;
}
main #lifestyle .shops {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
}
main #lifestyle .shops .shop {
  width: 48%;
  margin-bottom: 30px;
}
main #discount p {
  text-align: center;
  color: #5E77C4;
  font-weight: bold;
  margin-bottom: 20px;
}
main #recommend {
  background-image: url(../images/top/bg_recommend.webp);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
main #recommend .shop {
  width: 90%;
  margin-bottom: 10px;
}
main #recommend .shop.left {
  margin-right: auto;
}
main #recommend .shop.right {
  margin-left: auto;
}
main #support h2 {
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  color: #2F201B;
  margin-bottom: 30px;
}
main #support p {
  text-align: center;
  font-weight: bold;
  color: #2F201B;
  line-height: 3;
  font-size: 13px;
  margin-bottom: 30px;
}
main #search h2 {
  width: 50%;
  margin: 0 auto 30px;
  text-align: center;
}
main #search .tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
main #search .tab-list li {
  cursor: pointer;
  width: 19%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main #search .tab-list li img {
  width: 100%;
}
main #search .tab-box01,
main #search .tab-box02,
main #search .tab-box03,
main #search .tab-box04,
main #search .tab-box05 {
  display: none;
}
main #search .tab-box01.active,
main #search .tab-box02.active,
main #search .tab-box03.active,
main #search .tab-box04.active,
main #search .tab-box05.active {
  display: block;
}
main #search .scroll {
  width: 90%;
  background-color: #fff;
  margin: 30px auto 0;
  overflow: auto;
  -webkit-box-shadow: 4px 4px 0px #5e77c4;
          box-shadow: 4px 4px 0px #5e77c4;
}
main #search .scroll .scroll-item {
  padding: 30px 20px 10px;
}
main #search .scroll .scroll-item .cat {
  text-align: center;
  color: #fff;
  background-color: #5e77c4;
  margin-bottom: 15px;
}
main #search .scroll .scroll-item .detail {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main #search .scroll .scroll-item .detail.none {
  text-align: center;
}
main #search .scroll .scroll-item .detail span {
  color: #fff;
  margin-right: 1em;
  color: #fff;
  font-weight: bold;
  padding: 0.15em 0;
  font-size: 12px;
  width: 30%;
  min-width: 30%;
  text-align: center;
}
main #search .scroll .scroll-item .detail span.green {
  background-color: #61902c;
}
main #search .scroll .scroll-item .detail span.pink {
  background-color: #e45f80;
}
main #search .scroll .scroll-item .detail span.blue {
  background-color: #4588e0;
}
main #search .scroll .scroll-item .detail span.none {
  color: #333;
  background-color: #fff;
  width: 100%;
  margin: 0;
}
main #search .scroll .scroll-item .recruit {
  text-align: center;
  margin-top: 15px;
}
main #search .scroll .scroll-item .recruit a {
  text-decoration: none;
  font-size: 13px;
  color: #333;
  font-weight: bold;
  border: 2px solid #5078c8;
  display: block;
  padding: 0.25em;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
main #search .scroll .scroll-item .recruit a i {
  margin-left: 1em;
  color: #5078c8;
}
main #search .scroll .scroll-item .recruit a:hover {
  color: #fff;
  background-color: #5078c8;
}
main #search .scroll .scroll-item .recruit a:hover i {
  color: #fff;
}
main #search .note {
  font-size: 11px;
  font-weight: bold;
  width: 85%;
  margin: 20px auto 0;
}
main #studentwork {
  padding: 30px 0;
}
main #studentwork h2 {
  width: 60%;
  margin: 0 auto 30px;
  text-align: center;
}
main #studentwork .slider {
  width: 75%;
  margin: 0 auto;
}
main #studentwork .item {
  width: 60%;
  margin: 0 auto;
}
main #merit h2 {
  width: 100%;
  margin: 0 auto 20px;
  text-align: center;
}
main #merit .item {
  margin-bottom: 50px;
}
main #qa h2 {
  width: 100%;
  margin: 0 auto 30px;
  text-align: center;
}
main #qa .qa-detail {
  width: 80%;
  margin: 0 auto 30px;
}
main #qa .qa-detail img {
  margin-bottom: 20px;
}
main #qa .qa-detail p {
  font-size: 13px;
  color: #2F201B;
  font-weight: bold;
}
main #coupon .c_cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
  background: #fff;
}
main #coupon .c_cat li {
  cursor: pointer;
  width: 32%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main #coupon .c_cat li img {
  width: 100%;
}
main #coupon .c-01,
main #coupon .c-02,
main #coupon .c-03 {
  display: none;
}
main #coupon .c-01.active,
main #coupon .c-02.active,
main #coupon .c-03.active {
  display: block;
}
main #coupon .c-01 h3 {
  margin: 0 auto 15px;
  width: 60%;
}
main #coupon .c-01 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
main #coupon .c-01 ul li {
  width: 48%;
  margin-bottom: 20px;
}
main #coupon .c-01 ul li.w100 {
  width: 100%;
}
main #coupon .c-02 h3 {
  margin: 0 auto 15px;
  width: 60%;
}
main #coupon .c-02 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
main #coupon .c-02 ul li {
  width: 48%;
  margin-bottom: 20px;
}
main #coupon .c-02 ul li.w100 {
  width: 100%;
}
main #coupon .c-03 h3 {
  margin: 0 auto 15px;
  width: 60%;
}
main #coupon .c-03 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
main #coupon .c-03 ul li {
  width: 48%;
  margin-bottom: 20px;
}
main #coupon .c-03 ul li.w100 {
  width: 100%;
}
main .note {
  padding: 0 20px;
  font-weight: bold;
  font-size: 11px;
}
main .footer {
  text-align: center;
  font-size: 12px;
  padding: 20px 0 0;
  font-weight: bold;
}

@media screen and (max-width: 480px) {
  .header #gnav .gnav-list {
    max-width: 100%;
  }
  main {
    width: 100%;
    background-color: #fff;
    position: relative;
    overflow: hidden;
  }
  main .footer {
    text-align: center;
    font-size: 12px;
    padding: 20px 0 0;
    font-weight: bold;
  }
}
.slider {
  position: relative;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}

.slick-arrow:before {
  content: "" !important;
}

.slick-prev {
  left: -30px;
}
.slick-prev img {
  width: 20px;
}

.slick-next {
  right: -30px;
}
.slick-next img {
  width: 20px;
}

.simg01 {
  width: 100%;
  max-width: 375px;
  text-align: center;
  margin: 0 auto;
}
.simg01 img {
  width: 100%;
}

.simg02 {
  width: 100%;
  max-width: 310px;
  text-align: center;
  margin: 0 auto;
}
.simg02 img {
  width: 100%;
}

.job_modal {
  max-width: 375px;
  margin: 0 auto;
}
.job_modal .ptext01 {
  padding: 0 5%;
  font-weight: bold;
  font-size: 26px;
  text-align: left;
  margin-bottom: 20px;
}
.job_modal .ptext02 {
  padding: 0 5%;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 30px;
}
.job_modal .pimg01 {
  width: 100%;
  margin-bottom: 30px;
}
.job_modal .pimg02 {
  width: 100%;
  margin-bottom: 30px;
}
.job_modal .pimg03 {
  width: 100%;
  margin-bottom: 30px;
}
.job_modal .pimg04 {
  width: 100%;
}
.job_modal hr {
  margin-bottom: 20px;
}

.back-to-top {
  display: none;
  position: fixed;
  right: 15px;
  bottom: 15px;
  color: #333;
  font-size: 32px;
  z-index: 100;
  opacity: 0.8;
}

.fix-bnr {
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 10;
  width: 375px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.fix-bnr a {
  display: block;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.fix-bnr a::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -100px;
  left: 0;
  width: 20px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: 400ms;
  transition: 400ms;
  -webkit-animation: shinyshiny 4s ease-in-out infinite;
          animation: shinyshiny 4s ease-in-out infinite;
}

@-webkit-keyframes shinyshiny {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@keyframes shinyshiny {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@media screen and (max-width: 750px) {
  .fix-bnr {
    left: 0;
    z-index: 10;
    width: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .fix-bnr a:hover {
    opacity: 0.8;
  }
}
.c1-btn01::before,
.c1-btn02::before {
  position: absolute;
  z-index: 3;
  content: "";
  display: inline-block;
  top: -100px;
  left: 0;
  width: 15px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-animation: shinybtn 4s ease-in-out infinite;
          animation: shinybtn 4s ease-in-out infinite;
}

@-webkit-keyframes shinybtn {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@keyframes shinybtn {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.pc-fixnav01,
.pc-fixnav02 {
  position: fixed;
  z-index: 100;
}
.pc-fixnav01 li,
.pc-fixnav02 li {
  margin-bottom: 20px;
}
.pc-fixnav01 li a img,
.pc-fixnav02 li a img {
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.pc-fixnav01 li a:hover img,
.pc-fixnav02 li a:hover img {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  opacity: 0.7;
}

.pc-fixnav01 {
  width: 320px;
  top: 50%;
  left: calc(43% - 375px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.pc-fixnav01 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pc-fixnav01 ul li {
  width: 46%;
}

.pc-fixnav02 {
  width: 250px;
  top: 50%;
  right: calc(28% - 375px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 750px) {
  .pc-fixnav01,
  .pc-fixnav02 {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */