@charset "UTF-8";
:root {
  --white: #fff;
  --black: #000000;
  --base-color: #D46060;
  --accent-color: #CD853F;
  --accent-color02: #F6CC7C;
  --gray-color: #545454;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width: 1024px;
  --content-width-sm: 496px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* ---------- base ---------- */
body {
  font-family: "Outfit", sans-serif, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  line-height: 1.8;
  letter-spacing: .075em;
  overflow-x: hidden;
}

/* ---------- utility ---------- */
@media screen and (max-width: 768px) {
  .u_sm-dn {
    display: none;
  }
}
@media screen and (min-width: 1080px) {
  .u_lg-dn {
    display: none;
  }
}
/* ---------- layout ---------- */
.l_container {
  padding: 0 32px;
  max-width: calc(var(--content-width) + 64px);
  margin-left: auto;
  margin-right: auto;
}

.l_container-lg {
  padding: 0 32px;
  max-width: calc(var(--content-width) + 64px);
  margin-left: auto;
  margin-right: auto;
}
.l_container-sm {
  padding: 0 16px;
  max-width: calc(var(--content-width-sm) + 32px);
  margin-left: auto;
  margin-right: auto;
}

.l_contents {
  padding: 80px 0;
}
.l_contents_faq {
  padding: 40px 0 80px;
}

@media screen and (min-width: 1080px) {
  .l_contents_faq {
    padding: 80px 0;
  }
}
.l_contents_news {
  padding: 160px 0 80px;
}

.l_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  height: 88px;
  width: calc(100% - 32px);
  z-index: var(--z-index-modal);
  transition: 0.5s;
  padding: 0 16px;
  top: 0;
}
.l_header_news {
  background: var(--accent-color02);
  position: sticky;
  top: 0;
}
.l_header.change-color {
  background-color: rgba(235,153,61,0.9); 
  transition: 0.3s;
}
.l_header-logo_link {
  font-family: "Pacifico", cursive;
  color: var(--white);
  font-size: 24px;
}
@media screen and (min-width: 1080px) {
  .l_header-logo_link {
    font-size: 32px;
  }
}

.l_header-nav {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 100%;
  transition: 0.5s;
}

@media screen and (min-width: 1080px) {
  .l_header-nav {
    position: static;
    width: auto;
  }
}
.l_header-nav_list {
  margin-top: 176px;
}
@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    display: flex;
    margin-top: 0;
    align-items: center;
    height: 88px;
  }
}
.l_header_menu {
  display: flex;
}

.l_header-nav_item {
  padding: 24px 16px;
  letter-spacing: 1;
  line-height: 0;
  text-align: right;
  font-size: 24px;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item {
    border-bottom: none;
    padding: 0;
    margin-right: 28px;
  }
}



.l_header-nav_link {
  color: var(--white);
  
}


.l_header-nav_link:hover {
  border-bottom: 2px solid var(--white);
  
}
.l_header_sns-img {
  display: inline-block;
  margin-right: 16px;
}
.l_header_sns-img:last-child {
  margin-right: 0;
}




.l_footer {
  padding: 80px 0 24px;
  margin-bottom: 80px;
}

@media screen and (min-width: 1080px) {
  .l_footer {
    padding: 120px 171px 24px;
    margin-bottom: 0;
  }
}
.l_footer_contact {
  margin-bottom: 0;
}

@media screen and (min-width: 1080px) {
  .l_footer_contents {
    display: flex;
    justify-content: space-between;
    padding: 0 58.84px;
  }
}


.l_footer-logo_link {
  display: block;
  height: 24px;
  width: 80px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1080px) {
  .l_footer-logo_link {
    margin-left: inherit;
    height: 32px;
    width: 120px;
  }
}

.l_footer-logo_img {
  width: 100%;
  height: 100%;
  vertical-align: baseline;
}
.l_footer_address {
  font-size: 14px;
  margin-top: 16px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .l_footer_address {
    text-align: left;
    font-size: 16px;
  }
}

.l_footer-nav {
  margin-top: 64px;
}

@media screen and (min-width: 1080px) {
  .l_footer-nav {
    margin-top: 0;
  }
}

.l_footer-nav_list {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

@media screen and (min-width: 1080px) {
  .l_footer-nav_list {
    width: 100%;
    flex-direction: row;
  }
}

.l_footer-nav_item {
  font-size: 14px;
}

@media screen and (min-width: 1080px) {
  .l_footer-nav_item {
    font-size: 16px;
  }
}

.l_footer-nav_link {
  display: flex;
  align-items: center;
}

.l_footer-copyright {
  text-align: center;
  margin-top: 64px;
}
.l_footer-copyright_contact {
  text-align: center;
  margin-top: 0;
}

.l_footer-copyright_txt {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: "Roboto" , sans-serif;;
}
.l_footer_sns{
  display: flex;
  gap: 16px;
}

/* ---------- module ---------- */
.m_hamburger {
  width: 32px;
  height: 24px;
  position: relative;
  display: block;
  background: transparent;
}

@media screen and (min-width: 1080px) {
  .m_hamburger {
    display: none;
  }
}
.m_hamburger-bar {
  width: 100%;
  height: 2px;
  background: var(--white);
  position: absolute;
  top: 0;
  left: 0;
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.m_hamburger-bar:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}

.m_hamburger_txt {
  font-size: 10px;
  color: var(--white);
  margin-top: 8px;
}

.m_section_title {
  font-size: 32px;
  color: var(--black);
  width: 140px;
    height: 100%;
    max-height: 500px;
    position: absolute;
    display: inline-block;
    top: 90px;
}
.m_section_title__news {
  color: var(--white);
}

.m_btn-wrapper {
  width: 343px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1080px) {
  .m_btn-wrapper {
    width: 320px;
  }
}

.m_btn {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.m_btn__cta {
  color: var(--white-color);
  font-size: 16px;
  font-weight: bold;
  background: var(--accent-color);
  box-shadow: var(--shadow);
}

.m_btn__cta::after {
  content: url(../img/icon-mail.svg);
  width: 24px;
  height: 24px;
  margin-left: 8px;
}

.m_btn__more {
  color: var(--black-color);
  font-size: 16px;
  font-weight: bold;
  background: var(--primary-color02);
  position: relative;
  z-index: var(--z-index-default);
  cursor: pointer;
}

.m_btn__more::before {
  content: "";
  width: 8px;
  height: 8px;
  border-width: 2px;
  border-style: solid solid none none;
  border-color: var(--black-color);
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%) rotate(45deg);
}

/* ----------  ---------- */

.ttl {
  width: 50%;
  height: 68px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 16px;
  padding-left: 32px;
}
@media screen and (min-width: 1080px) {
  .ttl {
    width: 140px;
    height: 100%;
    max-height: 500px;
    position: absolute;
    display: inline-block;
    align-items: inherit;
    top: 80px;
    gap: 0;
    padding-left: 0;
  }
  .ttl:nth-child(5) {
    top: 160px;
  }
}

.ttl_faq,
.ttl_pd
 {
  padding-top: 40px;
}
@media screen and (min-width: 1080px) {
.ttl_faq,
.ttl_pd
 {
  padding-top: 0;
}
}

.ttl.white span.crcl {
  color: var(--white);
  border-color: var(--white);
  border-width: 2px;
}
.ttl.black span.crcl {
  color: var(--black);
  border-color: var(--black);
  border-width: 2px;
}

.ttl span.crcl {
  width: 40px;
  height: 40px;
  line-height: 38px;
  border: 1px solid #959595;
  border-radius: 50%;
  font-size: 13px;
  color: #959595;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box;
  margin-left: 0;
}
@media screen and (min-width: 1080px) {
  .ttl span.crcl {
    left: 50%;
    margin-left: -20px;
    position: absolute;
    display: inline-block;
    /* left: 16px; */
    left: 50%;
  }
}

.ttl.white span.bar {
  background: var(--white);
}
.ttl span.bar {
  width: 15px;
  height: 1px;
  background: var(--black);
}
@media screen and (min-width: 1080px) {
  .ttl span.bar {
    width: 1px;
    height: 15px;
    background: var(--black);
    display: block;
    position: absolute;
    left: 70px;
    top: 50px;
  }
}
.ttl.white span.text {
  color: var(--white);
}
.ttl span.text {
  width: auto;
  font-size: 16px;
  color: var(--black);
  font-weight: 400;
  letter-spacing: .2em;
}

@media screen and (min-width: 1080px) {
  .ttl span.text {
    width: 500px;
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
    letter-spacing: .2em;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: absolute;
    top: 315px;
    left: -180px;
    text-align: right;
  }
}


.contents {
  position: relative;
}


/* ---------- top ---------- */
.top_kv {
  position: relative;
  background: url(../img/m_kv.jpg) center / cover, linear-gradient(rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.5) 100%);
  height: 100vh;
}

.top_kv::after {
  content: "MOGMOG";
  position: absolute;
  font-size: 48px;
  font-family: "Pacifico", cursive;
  color: var(--white);
  bottom: 0;
  left: 50%;
  transform: translate(-50%,0%);
  /* transform: translate(-50%,25%); */
  z-index: var(--z-index-default);
}
@media screen and (min-width: 1080px) {
  .top_kv::after {
    font-size: 128px;
  }
}

/* ---------- news ---------- */


.top.news {
  padding: 80px 0;
  background: var(--accent-color02);
}

@media screen and (min-width: 1080px) {
  .top.news {
    padding: 60px 0;
    
  }
}
.top.news .inner {
    overflow: hidden;
    margin-top: 40px;
  }


@media screen and (min-width: 1080px) {
  .top.news .inner {
    width: 100%;
    margin-bottom: 0;
  }
}
.top.news .news_slider {
  height: auto;
}
@media screen and (min-width: 1080px) {
  .top.news .news_slider {
    position: relative;
    height: 390px;
  }
  
}
.top.news .swiper-slide {
  display: block;
}
.top.news .swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform,-webkit-transform;
}


@media screen and (min-width: 1080px) {
  .top.news .swiper-slide {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.top.news .swiper-pagination {
  position: relative;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1080px) {
  .top.news .swiper-pagination {
    position: relative;
    bottom: 0;
    left: 0;
    padding: 0 20px;
  }
}
.top.news .swiper-pagination {
  position: absolute;
  bottom: 14px;
  left: calc(60% + 44px);
  z-index: 11;
}

.top.news .swiper-pagination .swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #cecece;
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
}

.top.news .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--base-color);
}

.top.news .pagination_btn_wrapper {
  position: relative;
  bottom: 0;
  right: auto;
  left: 0;
  padding: 20px;
}
@media screen and (min-width: 1080px) {
  .top.news .pagination_btn_wrapper {
    position: absolute;
    bottom: 0;
    right: 40px;
    z-index: 11;
  }
}

@media screen and (min-width: 1080px) {
  .top.news .news_slide_left {
    width: 613px;
    height: 345px;
  }
}
.top.news .news_slide_img {
  position: relative;
  width: 100%;
  height: 180px;
}
@media screen and (min-width: 1080px) {
  .top.news .news_slide_img {
    position: relative;
    width: 100%;
    height: 100%;
  }
}



.top.news .news_slide_img:after {
  display: none;
}

.top.news .news_slide_link {
  display: block;
}

@media screen and (min-width: 1080px) {
  .top.news .news_slide_right {
    width: 100%;
    height: auto;
    padding: 20px;
  }
}


.top.news .news_slide_right .news_caption {
  font-size: 25px;
  margin-bottom: 10px;
}

.top.news .news_slide_right .news_date {
  margin-top: 10px;
}

.top.news .news_slide_right .table_cell {
  display: block;
  padding-bottom: 0;
}

.top.news .news_list_link {
  position: relative;
  width: 150px;
  height: 80px;
  background: none;
  margin-left: auto;
  background: var(--base-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}
@media screen and (min-width: 1080px) {
  .top.news .news_list_link {
    margin-top: 0;
  }
}
.icon-wrapper {
  width: 40px;
  height: 20px;
}
.arrow_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} 
.top.news .news_list_link:before {
  display: none;
}

.top.news .news_list_link_svg {
  display: inline-block;
  vertical-align: middle;
  width: 31px;
  height: 31px;
}

.top.news .news_list_link .link span {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  margin-top: 0;
}

.top.news .news_list_link .link span br {
  display: none;
}

@media screen and (min-width: 1080px) {
.top.news .ttl {
  z-index: 11;
}


.top.news .swiper-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.top.news .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform,-webkit-transform;
  box-sizing: content-box;
  transition-timing-function: cubic-bezier(.645,.045,.355,1);
}




.top.news .news_slide_img:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.top.news .news_slide_link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  color: #111;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}


.top.news .news_slide_right {
    width: 40%;
    height: 100%;
    padding: 0 40px;
  }

.top.news .news_slide_right .news_caption {
  color: #111;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: .05em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.top.news .news_slide_right .news_ttl {
  width: 100%;
  margin-bottom: 0;
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 700;
}

.top.news .news_slide_right .news_date {
  display: block;
  margin-top: 30px;
  font-size: 12px;
  color: #999;
}

.top.news .news_slide_right .table_cell {
  display: table-cell;
  vertical-align: bottom;
  padding-bottom: 70px;
}

.top.news .news_list_link {
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 100%;
  background: var(--base-color);
  text-align: right;
  z-index: 11;
}

.top.news .news_list_link:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  background: rgba(40,40,40,.1)
}

.top.news .news_list_link_svg {
  width: 32px;
  height: 24px;
}

.top.news .news_list_link .link {
  position: relative;
  box-sizing: border-box;
  display: block;
  text-align: right;
  height: 100%;
  padding-right: 25%;
  padding-top: 40%;
  line-height: 1.2;
  margin-top: 40px;
}




}

@media(min-width: 781px) {
  .top.news .news_ttl,.top.news .news_slide_img:after {
      transition:all .25s ease-in-out;
  }

  .top.news a:hover .news_ttl {
      color: var(--base-color);
  }

  .top.news a:hover .news_slide_img:after {
      background: rgba(40,40,40,.1);
  }

  .swiper-button-next:hover .svg_arrow {
      -webkit-animation: buttonArrow .4s ease-in-out 1;
      animation: buttonArrow .4s ease-in-out 1;
  }

  .swiper-button-prev:hover .svg_arrow {
      -webkit-animation: buttonArrow_back .4s ease-in-out 1;
      animation: buttonArrow_back .4s ease-in-out 1;
  }

  .top.news .news_list_link:hover .ar {
      -webkit-animation: buttonArrow .4s ease-in-out 1;
      animation: buttonArrow .4s ease-in-out 1;
  }

  .top.news .news_list_link:before {
      transition: all .25s ease-in-out;
  }

  .top.news .news_list_link:hover:before {
      -webkit-transform: scaleX(1);
      transform: scaleX(1);
  }
}
.top_news_img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1080px) {
  .top_news_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.top_news_more-btn_txt {
  color: var(--white);
  font-weight: normal;
}

.top_news_nav__prev,
.top_news_nav__next {
  background: var(--base-color);
  top: 85%;
  width: 50px;
  height: 50px;
}
.top_news_nav__prev {
  left: 32px;
}

@media screen and (min-width: 1080px) {
  .top_news_nav__prev {
    left: 85%;
    top: 90%;
  }
  
}

.top_news_nav__next {
  left: 96px;
}
@media screen and (min-width: 1080px) {
  .top_news_nav__next {
    left: 90%;
    top: 90%;
  }
}
.top_news_nav__prev:after,
.top_news_nav__next:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--white);
  top: 50%;
  left: 50%;
}

.top_news_nav__prev:after {
  transform: translate(-180%, -120%) rotate(150deg);
}

.top_news_nav__next:after {
  transform: translate(40%, -40%) rotate(30deg);
}
.top_news_nav__prev:before,
.top_news_nav__next:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 1px;
  border-top: 1px solid var(--white);
  top: 50%;
  left: 50%;
}
.top_news_nav__prev:before {
  transform: translate(-50%, -50%);
}

.top_news_nav__next:before {
  transform: translate(-50%, -50%);
}
.top_news_dots {
  position: absolute;
  left: 80px !important;
  bottom: 200px;
  transform: translateX(-50%);
  width: auto !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 1080px) {
  .top_news_dots {
    left: 50% !important;
    bottom: -16px;
    transform: translateX(70%);
  }
  
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 0px);
}
.top.news .swiper-pagination .swiper-pagination-bullet {
  background: var(--black);
  width: 8px;
  height: 8px;
  border-radius: 4px;
  color: transparent;
}

.top.news .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--base-color);
}
.table {
  width: 100%;
  margin-top: 40px;
}
@media screen and (min-width: 1080px) {
  .table {
    width: 400px;
    margin-top: 80px;
  }
}
.news_date {
  color: var(--black);
}
.top.news .news_list_link .link span {
  display: block;
  font-size: 12px;
  margin-top: 10px;
}
.news_ttl {
  font-weight: bold;
  color: var(--gray-color);
}
.top.news .swiper-pagination {
  position: absolute;
  bottom: 200px;
  left: calc(60% + 44px);
  z-index: 11;
}
@media screen and (min-width: 1080px) {
  .top.news .swiper-pagination {
    position: absolute;
    bottom: 14px;
    left: calc(60% + 44px);
    z-index: 11;
}
}
@media screen and (min-width: 1080px) {
  .top.news .swiper-pagination {
      position: absolute;
      bottom: 10px;
      left: calc(60% + 44px);
      z-index: 11;
  }
}
/* ---------- about ---------- */
.top_about_img-wrapper {
  width: 311px;
  height: 272px;
  display: flex;
  margin-left: auto;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .top_about_img-wrapper {
    width: 100%;
  }
}

@media screen and (min-width: 1080px) {
  .top_about_img-wrapper {
    width: 80%;
    height: 441px;
    display: flex;
  }
}
.top_about_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_about_head {
  font-weight: bold;
  font-size: 24px;
  margin-top: 24px;
}

@media screen and (min-width: 1080px) {
  .top_about_head {
    font-size: 32px;
    font-weight: bold;
    margin-top: 60px;
  }
}
.top_about_txt {
  margin-top: 20px;
}
/* ---------- product ---------- */
.top_product_ttl_background {
  background: var(--accent-color);
}
@media screen and (min-width: 1080px) {
  .top_product_ttl_background {
    height: 360px;
  }
}
.top_product_title {
  font-weight: bold;
  color: var(--white);
  font-size: 24px;
  padding-top: 40px;
  margin-bottom: 32px;
}
@media screen and (min-width: 1080px) {
  .top_product_title {
    font-size: 36px;
    padding-top: 80px;
    padding-left: 32px;
  }
}
.top_product_price{
  color: var(--white);
  padding-bottom: 24px;
}
@media screen and (min-width: 1080px) {
  .top_product_price{
    padding-bottom: 128px;
    padding-left: 32px;
  }
}

.top_product_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1080px) {
  .top_product_item {
    display: flex;
    justify-content: space-between;
  }
}
.top_product_img-wrapper__first {
  width: 100%;
  height: 175px;
}
@media screen and (min-width: 1080px) {
  .top_product_img-wrapper__first {
    width: calc(100vw - 164px);
    height: 600px;
    margin-left: auto;
    margin-top: -120px;
  }
}

@media screen and (min-width: 1080px) {
  .top_product_img-wrapper__list{
    width: 50%;
    height: 302px;
    flex-shrink: 1;
  }
  .top_product_item:nth-child(2n+1){
    flex-direction: row-reverse;
  }
}
.top_product_txt {
  font-size: 32px;
}
@media screen and (min-width: 1080px) {
  .top_product_txt {
    font-size: 64px;
  }
}
.top_product_desc {
  font-size: 14px;
  margin-bottom: 64px;
}
@media screen and (min-width: 1080px) {
  .top_product_desc {
    font-size: 16px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1080px) {
  .top_product_txt-box {
    width: 467px;
  }
}
@media screen and (min-width: 1080px) {
  .top_product_item {
    margin-top: 40px;
  }
  .top_product_item:first-child {
    margin-top: 0;
  }
}
.top_product_contents {
  height: 448px;
  background: url(../img/product_05_sm.jpg) center /cover ;
}
@media screen and (min-width: 1080px) {
  .top_product_contents {
    height: 712px;
    background: url(../img/product_5.jpg) center /cover ;
  }
}
.top_product_box {
  background: var(--accent-color);
}
/* ---------- faq ---------- */
.top_faq {
  background: linear-gradient(110deg, var(--base-color), var(--accent-color02));
}
.top_faq_box {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 16px;
  margin-left: auto;
}
@media screen and (min-width: 1080px) {
  .top_faq_box {
    background: var(--white);
    border-radius: 8px;
    padding: 40px 16px;
    width: 968px;
    margin-left: auto;
  }
}
.top_faq_head {
  display: none;
}

@media screen and (min-width: 1080px) {
  .top_faq_head {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    color: var(--white);
    margin-bottom: 40px;
  }
}
.service_faq_unit {
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom:  1px dotted var(--black);
}
.service_faq-question {
  display:flex;
  align-items: center;
  margin-bottom: 16px;
}
@media screen and (min-width: 1080px) {
  .service_faq-question {
    justify-content: start;
    gap: 32px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}
.service_faq-question_tag {
  display: flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-color02);
  color: var(--white);
  flex-shrink: 1;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.service_faq-question_txt {
  font-size: 12px;
  font-weight: bold;
  margin-left: 16px;
}
@media screen and (min-width: 1080px) {
  .service_faq-question_txt {
    font-size: 16px;
  }
}
.service_faq-answer {
  display: flex;
  margin-right: auto;
    margin-left: auto;
    align-items: center;
}
@media screen and (min-width: 1080px) {
  .service_faq-answer {
    gap: 32px;
    width: 50%;
    justify-content: start;
    margin-right: auto;
    margin-left: auto;
  }
}
.service_faq-answer_tag{
  display: flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--base-color);
  color: var(--white);
  flex-shrink: 1;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.service_faq-answer_txt {
  font-size: 12px;
  margin-left: 16px;
}
@media screen and (min-width: 1080px) {
  .service_faq-answer_txt {
    font-size: 16px;
  }
}
/* ---------- access ---------- */
.top_access {
  background: linear-gradient( rgba(0,0,0,0.5),rgba(0,0,0,0.5) ) , url(../img/shop.jpg) center / cover;
  padding: 80px 0;
}
@media screen and (min-width: 1080px) {
  .top_access {
    width: 100%;
  }
}
.top_access_table {
  background: var(--white);
  width: 100%;
  border-radius: 8px;
  margin-top: 40px;
}
@media screen and (min-width: 1080px) {
  .top_access_table {
    background: var(--white);
    width: 1000px;
    margin-left: auto;
    border-radius: 8px;
    margin-top: 0;
  }
}
.top_access_row {
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--gray-color);
}
@media screen and (min-width: 768px) {
  .top_access_row {
    justify-content: space-between;
  }
}
.top_access_row:first-child {
  background: var(--accent-color);
  color: var(--white);
  border-radius: 8px 8px 0 0;
}

.top_access_week {
  display: flex;
  gap: 8px;
  justify-content: left;
}
@media screen and (min-width: 1080px) {
  .top_access_week {
    gap: 72px;
  }
}
.top_access_week__a {
  display: flex;
  gap: 8px;
  justify-content: left;
}
@media screen and (min-width: 1080px) {
  .top_access_week__a {
    gap: 72px;
  }
}
.top_access_week_item {
  font-size: 16px;
}
@media screen and (min-width: 1080px) {
  .top_access_week_item {
    font-size: 24px;
  }
}
.top_access_week_item__a {
  font-size: 16px;
}
@media screen and (min-width: 1080px) {
  .top_access_week_item__a {
    font-size: 24px;
  }
}
.top_access_head {
  font-weight: bold;
  font-size: 14px;
  width: 120px;
}

@media screen and (min-width: 768px) {
  .top_access_head {
    font-weight: bold;
    font-size: 16px;
    width: auto;
  }
}
.top_access_tel {
  width: 165px;
}
@media screen and (min-width: 768px) {
  .top_access_tel {
    width: auto;
  }
}
/* ---------- cucle ---------- */

.top_product_contents {
  position: relative;
}
.keyvisual__scroll{
  width: 16vw;
  position: absolute;
  bottom: 50%;
  left: 30%;
  transform: translate(-50%,50%);
}
@media screen and (min-width: 1080px) {
  .keyvisual__scroll{
    width: 8vw;
    position: absolute;
    bottom: 50%;
    left: 30%;
    transform: translate(-50%,50%);
  }
}
.keyvisual__scroll::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 100px;
  background: var(--accent-color02);
}
@media screen and (min-width: 1080px) {
  .keyvisual__scroll::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 200px;
    background: var(--accent-color02);
  }
}
.keyvisual__scroll__2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  transform: translateY(50%);
  background: var(--accent-color02);
}
@media screen and (min-width: 1080px) {
  .keyvisual__scroll__2::after {
    width: 200px;
  }
}
.keyvisual__scroll__2::before {
  content: "ザクザク食感クッキー";
  position: absolute;
  top: 10%;
  left: 150%;
  color: var(--white);
  font-size: 14px;
  width: 160%;
}
@media screen and (min-width: 768px) {
  .keyvisual__scroll__2::before {
    top: 45%;
    left: 160%;
    color: var(--white);
    font-size: 14px;
    width: 160%;
  }
}
@media screen and (min-width: 1080px) {
  .keyvisual__scroll__2::before {
    top: 40%;
    left: 230%;
    font-weight: bold;
    font-size: 24px;
    width: 200%;
  }
}
.top_product_txt_scroll {
  font-size: 14px;
  color: var(--white);
  position: absolute;
  bottom: 15%;
  left: 30%;
}

@media screen and (min-width: 768px) {
  .top_product_txt_scroll {
    font-size: 14px;
    color: var(--white);
    position: absolute;
    bottom: 20%;
    left: 5%;
    font-weight: bold;
  }
}
@media screen and (min-width: 1080px) {
  .top_product_txt_scroll {
    font-size: 24px;
    color: var(--white);
    font-weight: bold;
    position: absolute;
    bottom: 15%;
    left: 30%;
  }
}




.keyvisual__scroll__2{
  width: 16vw;
  position: absolute;
  bottom: 30vw;
  right: 40vw;
}

@media screen and (min-width: 768px) {
  .keyvisual__scroll__2{
    width: 16vw;
    position: absolute;
    bottom: 5vw;
    right: 30vw;
  }
}
@media screen and (min-width: 1080px) {
  .keyvisual__scroll__2{
    width: 8vw;
    position: absolute;
    bottom: 13vw;
    right: 40vw;
  }
}

.keyvisual__scroll--circle{
  height: auto;
  width: 100%;
  animation: rotate 15s linear infinite;
}


@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*---------- contact ----------*/


.contact_form{
  margin-top: 64px;
}
.contact_form_heading {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact_form_heading:not(:first-child) {
  margin-top: 64px;
}

.contact_form_required {
  color: var(--white);
  font-size: 12px;
  font-weight: bold;
  width: 42px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--base-color);
}

.contact_form_detail {
  margin-top: 16px;
}

.contact_form_detail__other {
  margin-top: 24px;
}

.contact_form_input {
  font-size: 16px;
  width: 100%;
  height: 48px;
  border: 2px solid var(--gray-color);
  background: var(--white-color);
}

.contact_form_example-wrapper {
  text-align: right;
  height: 28px;
  margin-top: 7px;
}
@media screen and (min-width: 1080px) {
  .contact_form_example-wrapper {
    margin-top: 8px;
  }
}

.contact_form_example {
  color: var(--gray);
  font-size: 14px;
}

.contact_form_radio-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact_form_radio-item {
  background: var(--accent-color);
}

.contact_form_request-item-inner {
  height: 44px;
  padding: 8px 16px;
  display: flex;
  cursor: pointer;
  align-items: center;
}

.contact_form_radio {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  background: var(--white-color);
  border: 1px solid var(--gray-color02);
  appearance: radio;
}

.contact_form_request-txt {
  margin-left: 16px;
  font-weight: bold;
}

.contact_form_textarea {
  font-size: 16px;
  width: 100%;
  height: 240px;
  border: 2px solid var(--gray-color);
  background: var(--white-color);
  resize: none;
}
::placeholder {
  color: var(--gray-color);
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
}

.contact_form_btn-wrapper {
  margin-top: 64px;
}

.contact_form_check-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 64px;
}

.contact_form_check-item {
  background: var(--gray-color);
}


.contact_form_privacy-inner {
  height: 44px;
  padding: 8px 36.5px;
  display: flex;
  cursor: pointer;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .contact_form_privacy-inner {
    padding: 8px 113px;
  }
}

.contact_form_checkbox {
  width: 24px;
  height: 24px;
  margin-top: 2px;
  margin-right: 16px;
  flex-shrink: 0;
  background: var(--white-color);
  border: 1px solid var(--gray-color02);
  appearance: checkbox;
}
.contact_form_privacy-txt{
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}
.contact_form_request-txt__privacy-link {
  color: var(--primary-color);
  text-decoration: underline;
}
.contact_btn {
  color: var(--white-color);
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 2;
  box-shadow: var(--shadow);
}

.contact_form_btn-wrapper {
  color: var(--white);
  font-size: 16px;
  font-weight: bold;
  background: var(--base-color);
  border-radius: 100vh;
  position: relative;
  z-index: var(--z-index-default);
}

.contact_form_btn-wrapper::before {
  content: "";
  width: 8px;
  height: 8px;
  border-width: 2px;
  border-style: solid solid none none;
  border-color: var(--white-color);
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%) rotate(45deg);
}

/* ---------- js ---------- */
.js_nav.is-active {
  top: 0;
  left: 30%;
  height: 100vh;
  width: 70%;
  background: var(--base-color);
  display: block;
}

.js_body.is-active {
  overflow: hidden;
}

.js_hamburger.is-active {
  background: transparent;
}
.js_hamburger-bar {
  transition: top 0.24s, transform 0.24s, opacity 0.24s;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.js_hamburger.is-active .m_hamburger-bar:last-child {
  top: 50%;
  transform: translate(0, -50%) rotate(-45deg);
}


a {
  text-decoration: none;
  color: inherit;
}

#slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 48px );/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

@media screen and (min-width: 1080px) {
  #slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 32px );/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  }
}


.js-scroll {
  opacity: 0;
  visibility: hidden;
  /*追加*/
  transition: opacity 1s, visibility 1s, transform 1s;
  transform: translateY(150px);
}



.on {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ---------- 404 ---------- */

.not_background {
  height: calc(100vh - 360px);
  position: relative;
  background-color: var(--accent-color02);
}

.not_txt {
  position: absolute;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: var(--z-index-default);
}
@media screen and (min-width: 1080px) {
  .not_txt {
    font-size: 24px;
  }
}
.not_txt::after {
  position: absolute;
  content: "404_Not_Found";
  font-weight: bold;
  font-size: 48px;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  opacity: 0.5;
  color: var(--white);
  z-index: var(--z-index-back);
}
@media screen and (min-width: 1080px) {
  .not_txt::after {
    font-size: 120px;
  }
}

/* cf7 style */
.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item:not(:first-child) {
  margin-left: 16px;
}

.wpcf7-list-item-label {
  font-weight: bold;
  margin-left: 8px;
}

input[type="radio"] {
  appearance: button;
}

input[type="checkbox"] {
  appearance: checkbox;
}
.contact_form_heading p {
  display: flex;
  gap: 0 20px;
  align-items: center;
}

/* ----------  ---------- */

/*---------- top ----------*/
.top-container {
  max-width: 1080px;
  width: 92%;
  margin: 0 auto;
  padding-bottom: 64px;
}
@media screen and (min-width: 1080px) {
  .top-container {
    display: flex;
    padding-bottom: 80px;
  }
}

.main {
  width: 100%;
  flex-shrink: 0;
}
@media screen and (min-width: 1080px) {
  .main {
    width: 720px;
  }
}

.post {
  padding-bottom: 32px;
  border-bottom: 1px solid #ccc;
}
.post:not(:first-child) {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .post {
    display: flex;
    align-items: center;
  }
}

.post-thumb-wrapper {
  width: 100%;
  display: block;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .post-thumb-wrapper {
    width: 344px;
    height: 180px;
  }
}
.news_slide_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-txts {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .post-txts {
    margin-top: 0;
    margin-left: 16px;
  }
}

.post-title {
  font-size: 18px;
  font-weight: bold;
}

.post-content {
  color: #999;
  font-size: 14px;
  font-weight: bold;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .post-content {
    margin-top: 16px;
  }
}

.post-btn-wrapper {
  margin-top: 40px;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .post-btn-wrapper {
    margin-top: 16px;
  }
}

.post-btn {
  color: var(--base-color);
  font-size: 14px;
  font-weight: bold;
}

.aside {
  margin-top: 120px;
  display: flex;
  gap: 40px;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .aside {
    width: 100%;
    flex-direction: row;
  }
}
@media screen and (min-width: 1080px) {
  .aside {
    margin-top: 0;
    margin-left: 40px;
    flex-direction: column;
  }
}

.recommend {
  width: 100%;
}

.recommend-title {
  color: var(--base-color);
  font-size: 20px;
  font-weight: bold;
}

.recommend-list {
  margin-top: 16px;
}

.recommend-item {
  padding-bottom: 8px;
  border-bottom: 1px solid #ccc;
}
.recommend-item:not(:first-child) {
  margin-top: 8px;
}

.recommend-item-link {
  display: block;
}

@media screen and (min-width: 768px) {
  .aside-bnrs {
    width: 50%;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1080px) {
  .aside-bnrs {
    width: 100%;
  }
}

.bnr-item {
  display: block;
}
.bnr-item:not(:first-child) {
  margin-top: 16px;
}

/*---------- single ----------*/
.single-container {
  
  padding-bottom: 64px;
  padding-top: 120px;
}
@media screen and (min-width: 1080px) {
  .single-container {
    display: flex;
    padding-bottom: 80px;
  width: 92%;
  margin: 0 auto;
  }
}

.single-main-content h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 64px;
}

.single-main-content p {
  margin-top: 40px;
}

.news_thumb_wrapper {
  width: 315px;
  height: 180px;
}

.pager {
  margin-top: 120px;
}

.top_kv {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  position: relative;
} 

.top_kv-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-index-back);
}

.top_kv-slideshow_slide_img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* ページネーション(検索ページの次へや前へ) */

/* pagination */
.pagination {
  margin-bottom: 30px;
}

/* リンクの枠 */
.pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

 /* 数字のリンク */
.pagination .nav-links .page-numbers {
  text-decoration: none;
  color: #333;
  border: 1px solid var(--black);
  display: flex;
  justify-content: center;
  align-self: center;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  -webkit-transition: .3s;
  transition: .3s;
  align-items: center;
  margin-top: 40px;
  line-height: 1;
}


/* 現在のページ */
.pagination .nav-links .current {
  background-color: var(--base-color);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--base-color);
}

/* 現在のページとドット以外にホバーした時 */
.pagination .nav-links a:hover {
  background-color: var(--accent-color);
  color: var(--white);
  
}

/* 前へ、次へボタン */
.pagination .nav-links .prev,
.pagination .nav-links .next{
  border: 1px solid var(--black);
}
/* 前へ、次へボタン */
.pagination .nav-links .prev::after,
.pagination .nav-links .next::after{
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  transform: rotate(45deg) ;
}
.pagination .nav-links .prev::after {
  transform: rotate(-135deg);
}


.prev-next-link a {
  border-bottom: 1px #ddd solid;
  display: block;
  text-decoration: none;
  padding: 14px 40px;
  color: var(--accent-color);
}
.prev-next-link a:hover {
  background-color: #f6f6f6;
}
.prev-next-link a:first-child {
  border-top: 1px #ddd solid;
}
.prev-next-label {
  font-size: .825rem;
  color: #000;
  margin-bottom: 10px;
}

/* Arrows */
.prev-link {
  background: url(http://www.webcreatorbox.com/sample/images/arrow-prev.svg) no-repeat 10px center;
}
.next-link {
  background: url(http://www.webcreatorbox.com/sample/images/arrow-next.svg) no-repeat right 10px center;
}
.prev-link,
.next-link {
  background-size: 16px 28px;
}

/* Images */
.thumb-wrap {
  display: flex;
}
.thumb-wrap p {
  margin: 0 0 0 16px;
}
.thumb-wrap img {
  width: 80px;
  height: 100%;
}

/* Larger devices */
.prev-next-link {
  margin-top: 40px;
}
@media ( min-width: 600px) {
  .prev-next-link {
    display: flex;
    justify-content: space-between;
  }
  .prev-next-link a {
    flex: 1;
  }
  .prev-next-link a,
  .prev-next-link a:first-child {
    border: none;
  }
  .next-link {
    text-align: right;
  }
}