@charset "UTF-8";
.dspPc {
  display: block;
}

@media (max-width: 767px) {
  .dspPc {
    display: none;
  }
}

.dspSp {
  display: none;
}

@media (max-width: 767px) {
  .dspSp {
    display: block;
  }
}

a {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

a:hover {
  opacity: 0.7;
}

body {
  font-family: YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 15px;
  line-height: 2em;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.08em;
}

.cg {
  font-family: "Century Gothic", CenturyGothic, futura, sans-serif;
  font-weight: bold;
}

h3 {
  font-size: 32px;
}

@media (max-width: 767px) {
  h3 {
    font-size: 28px;
  }
}

h3 .small {
  display: block;
  font-size: 15px;
}

.wrapper {
  margin: 0 auto;
  width: 86%;
}

.tbPadding {
  padding: 100px 0;
}

@media (max-width: 767px) {
  .tbPadding {
    padding: 50px 0;
  }
}

a.btn {
  border-radius: 30px;
  border: 2px solid #8CA6CF;
  padding: 0.5em;
  width: 100%;
  display: inline-block;
  text-align: center;
  max-width: 280px;
  color: #8CA6CF;
  font-weight: bold;
  background: none;
}

a.btn:hover {
  border: 2px solid #1C50A1;
  background: #1C50A1;
  color: #ffffff;
}

/* ============== contents ============== */
.kv {
  width: 100%;
  height: 100vh;
  min-height: 750px;
  background: url(../img/kv_pc.jpg) no-repeat;
  background-size: cover;
  background-position: center top;
  position: relative;
}

@media (max-width: 767px) {
  .kv {
    min-height: auto;
  }
}

.kv .catch {
  position: absolute;
  bottom: 240px;
  left: 5%;
  font-size: 32px;
  line-height: 1.7em;
  color: #ffffff;
}

@media (max-width: 767px) {
  .kv .catch {
    bottom: 140px;
    font-size: 24px;
  }
}

.header {
  width: 100%;
  height: 80px;
}

.header .logo {
  position: absolute;
  top: 30px;
  left: 5%;
  width: 205px;
}

@media (max-width: 1000px) {
  .header .logo {
    width: 20%;
  }
}

@media (max-width: 767px) {
  .header .logo {
    top: 20px;
    width: 40%;
  }
}

.header .logo img {
  width: 100%;
}

.header .globalMenu .nav {
  position: absolute;
  top: 30px;
  right: 5%;
}

.header .globalMenu .nav li {
  display: inline-block;
}

.header .globalMenu .nav li a {
  text-align: center;
  display: inline-block;
  line-height: 2em;
  font-size: 10px;
  padding: 0 15px;
}

@media (max-width: 1000px) {
  .header .globalMenu .nav li a {
    padding: 0 10px;
  }
}

.header .globalMenu .nav li a:hover {
  color: #FDDA03;
  opacity: 1;
}

.header .globalMenu .nav li a .cg {
  font-size: 15px;
}

@media (max-width: 767px) {
  .header .globalMenu {
    position: fixed;
    top: 0;
    right: -310px;
    width: 300px;
    height: 100%;
    padding-top: 50px;
    font-size: 16px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 1000;
    background-color: #1C50A1;
  }
  .header .globalMenu .nav {
    position: relative;
    right: 0;
    top: 0;
  }
  .header .globalMenu .nav li {
    display: block;
    text-align: left;
  }
  .header .globalMenu .nav li a {
    color: #ffffff;
    padding: 1em 10%;
  }
  .header .globalMenu .nav li a .cg {
    margin-right: 1em;
  }
  .header .btn-gnavi {
    display: block;
    position: fixed;
    top: 20px;
    right: 7%;
    width: 22px;
    height: 24px;
    z-index: 2000;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
  }
  .header .btn-gnavi span {
    position: absolute;
    width: 22px;
    height: 3px;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    background: #1C50A1;
    display: block;
  }
  .header .btn-gnavi span:nth-child(1) {
    top: 0;
  }
  .header .btn-gnavi span:nth-child(2) {
    top: 10px;
  }
  .header .btn-gnavi span:nth-child(3) {
    top: 20px;
  }
}

.header .white-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #ffffff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .6s;
  transition: all .6s;
  cursor: pointer;
}

.header.fixed {
  position: fixed;
  padding: 0 7%;
  width: 86%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 999;
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 767px) {
  .header.fixed {
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.header.fixed .logo {
  top: 15px;
}

@media (max-width: 1000px) {
  .header.fixed .logo {
    top: 20px;
  }
}

@media (max-width: 767px) {
  .header.fixed .logo {
    display: none;
  }
}

.header.fixed .globalMenu .nav {
  top: 22px;
}

.open .btn-gnavi span {
  background: #ffffff;
  width: 22px;
  z-index: 20;
}

.open .btn-gnavi span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px;
}

.open .btn-gnavi span:nth-child(2) {
  width: 0;
  left: 0;
}

.open .btn-gnavi span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px;
}

.open .globalMenu {
  right: 0;
}

.open .white-bg {
  opacity: .8;
  visibility: visible;
}

.intro {
  background-color: #FDDA03;
  padding: 200px 0;
}

@media (max-width: 767px) {
  .intro {
    padding: 100px 0;
  }
}

.intro h3 {
  margin-left: 15%;
  position: relative;
  z-index: 100;
  display: inline-block;
}

@media (max-width: 767px) {
  .intro h3 {
    margin-left: 7%;
  }
}

.intro h3:after {
  content: '';
  position: absolute;
  background: url(../img/maru_white.svg) no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  top: -20px;
  right: -20px;
  z-index: -1;
}

.intro p {
  margin-left: 18%;
  line-height: 2.5em;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .intro p {
    margin-left: 7%;
    width: 86%;
  }
}

.service {
  text-align: center;
  padding: 100px 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .service {
    padding: 80px 0 0;
  }
}

.service h3 {
  position: relative;
  z-index: 100;
  display: inline-block;
  margin-bottom: 40px;
}

.service h3:after {
  content: '';
  position: absolute;
  background: url(../img/maru_blue.svg) no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  top: -20px;
  left: -30px;
  z-index: -1;
}

.service .serviceSection {
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.service .serviceSection .imgArea {
  width: 46%;
}

@media (max-width: 767px) {
  .service .serviceSection .imgArea {
    width: 100%;
  }
}

.service .serviceSection .imgArea img {
  width: 93%;
  padding-right: 7%;
}

.service .serviceSection .txtArea {
  width: 40%;
  padding: 7%;
  text-align: left;
}

@media (max-width: 767px) {
  .service .serviceSection .txtArea {
    width: 100%;
  }
}

.service .serviceSection .txtArea h4 {
  font-size: 26px;
  margin-bottom: 1.2em;
  position: relative;
  padding-left: 25px;
}

@media (max-width: 767px) {
  .service .serviceSection .txtArea h4 {
    font-size: 21px;
  }
}

.service .serviceSection .txtArea h4.yellow:before {
  content: '';
  position: absolute;
  background: url("../img/servise_icon_yellow.svg") no-repeat;
  width: 15px;
  height: 15px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: contain;
  display: inline-block;
}

.service .serviceSection .txtArea h4.blue:before {
  content: '';
  position: absolute;
  background: url("../img/servise_icon_blue.svg") no-repeat;
  width: 15px;
  height: 15px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: contain;
  display: inline-block;
}

.service .serviceSection .txtArea h4 .small {
  display: inline-block;
  font-size: 18px;
}

.service .serviceSection .txtArea h5 {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 0.7em;
}

.service .serviceSection .txtArea p {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .service .serviceSection .txtArea p {
    font-size: 12px;
    line-height: 1.7em;
  }
}

.service .serviceSection .txtArea a.btn {
  margin-bottom: 30px;
}

.service .serviceSection.reverse {
  -webkit-flex-wrap: wrap-reverse;
      -ms-flex-wrap: wrap-reverse;
          flex-wrap: wrap-reverse;
}

@media (max-width: 767px) {
  .service .serviceSection.reverse .imgArea img {
    width: 93%;
    padding-left: 7%;
  }
}

.shop {
  text-align: center;
  background-color: #F3F6FA;
  padding: 100px 0;
}

@media (max-width: 767px) {
  .shop {
    padding: 80px 0 40px;
  }
}

.shop h3 {
  position: relative;
  z-index: 100;
  display: inline-block;
  margin-bottom: 40px;
}

.shop h3:after {
  content: '';
  position: absolute;
  background: url(../img/maru_blue.svg) no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  top: -20px;
  left: -30px;
  z-index: -1;
}

.shop .shopSectionWrapper {
  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-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.shop .shopSectionWrapper .shopSection {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: top;
  -webkit-align-items: top;
      -ms-flex-align: top;
          align-items: top;
  width: 40%;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 4%;
}

@media (max-width: 767px) {
  .shop .shopSectionWrapper .shopSection {
    width: 100%;
    padding: 7%;
    margin-bottom: 30px;
  }
}

.shop .shopSectionWrapper .shopSection img {
  width: 100%;
  display: inherit;
}

.shop .shopSectionWrapper .shopSection h4 {
  font-size: 21px;
  margin-top: 0.7em;
}

.shop .shopSectionWrapper .shopSection h4 .small {
  font-size: 12px;
}

.shop .shopSectionWrapper .shopSection p {
  font-size: 12px;
  text-align: left;
  line-height: 2em;
  margin: 1.2em 0 2em;
}

.shop .shopSectionWrapper .shopSection a.btn {
  width: 92%;
}

.recipe {
  background: url(../img/recipe-pc.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .recipe {
    background: none;
    padding: 80px 0 60px;
    text-align: center;
  }
}

.recipe h3 {
  position: relative;
  z-index: 100;
  display: inline-block;
}

.recipe h3:after {
  content: '';
  position: absolute;
  background: url(../img/maru_yellow.svg) no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  top: -20px;
  right: -20px;
  z-index: -1;
}

.recipe .imgArea {
  display: none;
}

@media (max-width: 767px) {
  .recipe .imgArea {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  .recipe .imgArea img {
    width: 100%;
  }
}

.recipe h4 {
  font-size: 21px;
  margin-top: 0.7em;
}

.recipe h4 .small {
  font-size: 12px;
}

.recipe p {
  font-size: 12px;
  text-align: left;
  line-height: 2em;
  width: 40%;
  margin: 1.2em 0 2em;
}

@media (max-width: 767px) {
  .recipe p {
    width: 100%;
  }
}

.cc {
  text-align: center;
  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-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.cc .company,
.cc .contact {
  width: 36%;
  padding: 100px 7%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: top;
  -webkit-align-items: top;
      -ms-flex-align: top;
          align-items: top;
}

@media (max-width: 767px) {
  .cc .company,
  .cc .contact {
    width: 100%;
    padding: 50px 7%;
  }
}

.cc .company h3,
.cc .contact h3 {
  margin-bottom: 1.7em;
  display: block;
}

@media (max-width: 767px) {
  .cc .company h3,
  .cc .contact h3 {
    margin-bottom: 1em;
  }
}

.cc .company {
  background: #FDDA03;
}

.cc .company table {
  font-size: 12px;
  text-align: left;
}

.cc .company table th {
  width: 8em;
  padding: 0.5em 0;
}

@media (max-width: 767px) {
  .cc .company table th {
    width: 100%;
    display: block;
    padding: 0;
  }
}

.cc .company table td {
  line-height: 2em;
}

@media (max-width: 767px) {
  .cc .company table td {
    width: 100%;
    display: block;
    padding-bottom: 0.5em;
    line-height: 1.7em;
  }
}

.cc .contact {
  background: #eeeeee;
}

.cc .contact .contactWrapper,
.cc .contact .companyWrapper {
  width: 100%;
}

.instagram .instagram-gallery__list {
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  line-height: 0;
}

.instagram .instagram-gallery__list .instagram-gallery__item {
  width: 20%;
}

.instagram .instagram-gallery__list .instagram-gallery__item img {
  width: 100%;
}

@media (max-width: 767px) {
  .instagram .instagram-gallery__list .instagram-gallery__item {
    width: 33.33%;
  }
  .instagram .instagram-gallery__list .instagram-gallery__item:nth-child(4), .instagram .instagram-gallery__list .instagram-gallery__item:nth-child(5) {
    display: none;
  }
}

.footer {
  background: #333333;
  padding: 50px 0;
}

@media (max-width: 767px) {
  .footer {
    padding: 30px 0 20px;
  }
}

.footer .footerWrapper {
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

@media (max-width: 767px) {
  .footer .footerWrapper .leftArea {
    margin: 0 auto;
  }
}

.footer .footerWrapper .leftArea .logo {
  width: 200px;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .footer .footerWrapper .leftArea .logo {
    display: block;
    text-align: center;
  }
}

.footer .footerWrapper .leftArea .logo img {
  width: 100%;
}

.footer .footerWrapper .leftArea .sns {
  display: inline-block;
  margin-left: 40px;
  vertical-align: middle;
  opacity: 0.9;
}

@media (max-width: 767px) {
  .footer .footerWrapper .leftArea .sns {
    margin: 10px auto;
    display: block;
    text-align: center;
  }
}

.footer .footerWrapper .leftArea .sns a {
  width: 18px;
  height: 18px;
  display: inline-block;
}

@media (max-width: 767px) {
  .footer .footerWrapper .leftArea .sns a {
    width: 22px;
    height: 22px;
  }
}

.footer .footerWrapper .leftArea .sns a img {
  width: 100%;
  height: 100%;
}

.footer .footerWrapper .copyright {
  color: #eeeeee;
  font-size: 10px;
}

@media (max-width: 767px) {
  .footer .footerWrapper .copyright {
    margin: 0 auto;
    display: block;
  }
}
