@charset "UTF-8";
/* =============================================
 ###　基本構成
============================================= */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
html {
  font-size: 62.5%;
}

body {
  color: #505050;
  font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  background-color: transparent;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 960px) {
  body {
    font-size: 1.6rem;
  }
}
body.noscroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #505050;
  /* 追加 */
  backface-visibility: hidden;
  /* 追加 */
}
@media screen and (min-width: 960px) {
  a {
    color: #505050;
  }
}
a:hover {
  text-decoration: none;
  opacity: 0.7;
}
a img {
  transition: opacity 0.2s;
}
a:hover img {
  opacity: 0.8;
}

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

input[type=text],
input[type=password],
input[type=tel] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  padding: 5px;
}
@media screen and (max-width: 559px) {
  input[type=text],
  input[type=password],
  input[type=tel] {
    font-size: 16px;
  }
}

button:hover {
  opacity: 0.7;
}

button,
input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

button.btn_type01,
input[type=submit].btn_type01 {
  background-color: #000;
  color: #fff;
  text-align: center;
  width: 50%;
  padding: 10px 0;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 960px) {
  button.btn_type01,
  input[type=submit].btn_type01 {
    padding: 10px 20px;
    margin: 0;
    width: auto;
  }
}

/* =============================================
 ###　コンテンツフェードイン
============================================= */
.element {
  /* 最初は非表示 */
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1s, visibility 1s, transform 1s;
  transition-delay: 0.25s;
}
.element.is-fadein {
  opacity: 1;
  transform: translateY(0px);
}

.anker {
  padding-top: 60px;
  margin-top: -60px;
}
@media screen and (min-width: 960px) {
  .anker {
    padding-top: 90px;
    margin-top: -90px;
  }
}

/* =============================================
 ###　共通設定
============================================= */
@media screen and (min-width: 960px) {
  .wrapper {
    width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 559px) and (max-width: 959px) {
  .wrapper {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.headline1 {
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (min-width: 960px) {
  .headline1 {
    margin-bottom: 50px;
  }
}
.headline1 .jp {
  font-size: 1.2rem;
  display: block;
  line-height: 1;
  margin-bottom: 1em;
}
@media screen and (min-width: 960px) {
  .headline1 .jp {
    font-size: 1.4rem;
  }
}
.headline1 .en {
  font-size: 3.6rem;
  display: block;
  color: #3f3d82;
  letter-spacing: 0.08em;
  line-height: 1;
  font-family: "Josefin Sans", "Zen Kaku Gothic New", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (min-width: 960px) {
  .headline1 .en {
    font-size: 4.8rem;
  }
}
.headline1.ttl2 {
  display: inline-block;
  position: relative;
}
.headline1.ttl2::after {
  content: "";
  background-image: url(/comemari/libs_v2/img/deco1.svg);
  aspect-ratio: 240/89;
  background-size: contain;
  width: 120px;
  display: block;
  position: absolute;
  bottom: -32px;
  right: -35px;
}
@media screen and (min-width: 960px) {
  .headline1.ttl2::after {
    width: 165px;
    right: -70px;
    bottom: -45px;
  }
}

.content_lead {
  font-size: 2.1rem;
  color: #3f3d82;
  font-weight: 500;
  margin-bottom: 3rem;
}
@media screen and (min-width: 960px) {
  .content_lead {
    font-size: 3.2rem;
  }
}
.content_lead::after {
  content: "";
  margin-top: 10px;
  width: 100%;
  background-image: url(/comemari/libs_v2/img/line1.svg);
  aspect-ratio: 630/30;
  background-size: contain;
  display: block;
}
@media screen and (min-width: 960px) {
  .content_lead::after {
    aspect-ratio: inherit;
    height: 16px;
    background-size: auto 16px;
    background-repeat: repeat-x;
  }
}

.content_text {
  text-align: left;
  letter-spacing: 0.08em;
  line-height: 2em;
}

.section_inner {
  padding: 0 3rem;
}

.brandList .ttl {
  text-align: center;
  margin-bottom: 20px;
}
.brandList ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 10%;
}
@media screen and (min-width: 960px) {
  .brandList ul {
    padding: 0;
    display: flex;
    justify-content: center;
  }
}
.brandList ul li {
  margin-bottom: 10px;
  box-sizing: border-box;
}
.brandList ul li:nth-of-type(1) {
  padding: 0 20px;
}
.brandList ul li:nth-of-type(2) {
  padding: 0 15px;
}
.brandList ul li:nth-of-type(3) {
  padding: 0;
}
.brandList ul li:nth-of-type(4) {
  padding: 0 10px;
}
@media screen and (min-width: 560px) {
  .brandList ul li {
    width: auto;
    padding: 0 20px;
    margin: 0 20px;
  }
  .brandList ul li:nth-of-type(1) {
    padding: 0;
    width: 80px;
  }
  .brandList ul li:nth-of-type(2) {
    padding: 0;
    width: 155px;
  }
  .brandList ul li:nth-of-type(3) {
    padding: 0x;
    width: 155px;
  }
  .brandList ul li:nth-of-type(4) {
    padding: 0;
    width: 110px;
  }
}
.brandList ul li a {
  display: block;
  text-align: center;
}

.btn_corporate a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
}
.btn_corporate a:before {
  width: 21px;
  height: 15px;
  content: "";
  display: block;
  background-image: url(/comemari/libs/img/common/icon_toyosu.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
}

@media screen and (min-width: 960px) {
  .btn_contact {
    display: block;
    margin-right: 20px;
  }
}
.btn_contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #ca9e47;
  padding: 10px 30px;
  border-radius: 50px;
}
.btn_contact a:before {
  width: 21px;
  height: 15px;
  content: "";
  display: block;
  background-image: url(/comemari/libs/img/common/icon_mail.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
}

.ctm-slider {
  /* Dots */
}
.ctm-slider .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.ctm-slider .slick-dots {
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
  margin-top: 15px;
}
@media screen and (min-width: 960px) {
  .ctm-slider .slick-dots {
    margin-top: 30px;
  }
}
.ctm-slider .slick-dots li {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 8px;
  padding: 0;
  opacity: 0.6;
}
@media screen and (min-width: 960px) {
  .ctm-slider .slick-dots li {
    width: 22px;
    height: 22px;
  }
}
.ctm-slider .slick-dots li::after {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url(/kakitanekitchen/libs-v2/img/common/mark_kakitane.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 960px) {
  .ctm-slider .slick-dots li::after {
    width: 22px;
    height: 22px;
  }
}
.ctm-slider .slick-dots li {
  cursor: pointer;
}
.ctm-slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 15px;
  height: 15px;
}
@media screen and (min-width: 960px) {
  .ctm-slider .slick-dots li button {
    width: 22px;
    height: 22px;
  }
}
.ctm-slider .slick-dots li button {
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
  box-sizing: border-box;
}
.ctm-slider .slick-dots li.slick-active {
  opacity: 1;
}

/* ==============

/* =============================================
 ###　header
============================================= */
header {
  position: relative;
}
@media screen and (min-width: 960px) {
  header {
    background-color: #fff;
  }
}
header .sitelogo {
  width: 100%;
  background-color: #fff;
  z-index: 100;
  position: relative;
}
@media screen and (min-width: 960px) {
  header .sitelogo {
    width: 94px;
    margin-top: 10px;
  }
}
header .sitelogo a {
  display: block;
  width: 47px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 0;
}
@media screen and (min-width: 960px) {
  header .sitelogo a {
    width: 100%;
  }
}
header .sitelogo img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 960px) {
  .header-container {
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    box-sizing: border-box;
  }
}
.header-container.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #fff;
  margin-top: 0;
  z-index: 10000;
}
.header-container .menu {
  width: 53.3333333333%;
  display: flex;
  flex-direction: column;
}

.menu .subNav1 {
  display: flex;
  padding-top: 10px;
  margin-left: auto;
  margin-bottom: 20px;
}

.mainNav {
  margin-left: auto;
  width: 100%;
}
.mainNav ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 25% 1fr;
}
.mainNav ul li {
  text-align: center;
  border-right: 1px solid #e3e3e3;
}
.mainNav ul li:nth-of-type(4) {
  grid-column: 25%;
}
.mainNav ul li:last-child {
  border-right: none;
}
.mainNav ul li a {
  font-size: 1.6rem;
  display: block;
  padding: 0 20px;
}

/* =============================================
 ###　footer
============================================= */
.footer-container .brandList {
  padding-bottom: 30px;
}
@media screen and (min-width: 960px) {
  .footer-container .brandList ul {
    width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 960px) {
  .footer-container-wrap {
    width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer-btnlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 960px) {
  .footer-btnlist {
    margin: 0;
    margin-bottom: 40px;
  }
}
.footer-btnlist > div {
  width: 43.33%;
  margin-bottom: 10px;
}
@media screen and (min-width: 960px) {
  .footer-btnlist > div {
    width: 19%;
    margin-bottom: 0;
  }
}
.footer-btnlist > div a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #686868;
  color: #fff;
  min-height: 4rem;
  font-size: 1.2rem;
  padding: 0;
}
.footer-btnlist > div a::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}
.footer-btnlist > div.sns-twiter a::before {
  background-image: url(/comemari/libs/img/common/icon-twitter.svg);
  width: 15px;
  height: 13px;
}
.footer-btnlist > div.sns-X a::before {
  background-image: url(/comemari/libs/img/common/icon_X.svg);
  width: 15px;
  height: 13px;
}

.footer-bottom {
  padding: 35px 0 20px;
  background-color: #333;
}
@media screen and (min-width: 960px) {
  .footer-bottom {
    padding: 15px 0;
  }
}
@media screen and (min-width: 960px) {
  .footer-bottom .footer-bottom-wrap {
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 50px;
  }
}
@media screen and (min-width: 960px) {
  .footer-bottom .subNav1 {
    order: 1;
  }
}
.footer-bottom .subNav1 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-bottom .subNav1 ul li {
  padding: 0 1em;
  border-right: 1px solid #BDBEBF;
  line-height: 1em;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.footer-bottom .subNav1 ul li a {
  color: #BDBEBF;
}
@media screen and (min-width: 960px) {
  .footer-bottom .subNav1 ul li a {
    font-size: 1.2rem;
  }
}

.copyright {
  color: #959595;
  text-align: center;
  font-size: 1.2rem;
  padding: 15px 0;
}
@media screen and (min-width: 960px) {
  .copyright {
    padding: 0;
  }
}

.pagetop {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 65px;
  z-index: 10;
}
@media screen and (min-width: 960px) {
  .pagetop {
    width: 100px;
  }
}

main {
  min-height: 1000px;
}

/* ==============================================
 ###　各メディア限定コンテンツメディアクエリ
=================================================*/
@media screen and (min-width: 560px) {
  .sp-only {
    display: none !important;
  }
}

@media screen and (min-width: 960px) {
  .sp-tab-only {
    display: none !important;
  }
}

@media screen and (min-width: 559px) and (max-width: 960px) {
  .tab-only {
    display: none !important;
  }
}

@media screen and (max-width: 959px) {
  .desktop-only {
    display: none !important;
  }
}

@media screen and (max-width: 559px) {
  .tab-desktop {
    display: none !important;
  }
}

.hide-content {
  display: none !important;
}/*# sourceMappingURL=common.css.map */