@charset "UTF-8";
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%; }

body {
  -webkit-text-size-adjust: 100%;
  color: #53545D;
  background-color: #F5F5F5;
  font-family: 'Shippori Mincho', serif, "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 3rem;
  text-align: center; }

/*ローディングアニメ*ここから/*/
.scaling-squares-spinner, .scaling-squares-spinner * {
  box-sizing: border-box; }

.scaling-squares-spinner {
  height: 65px;
  width: 65px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  animation: scaling-squares-animation 1250ms;
  animation-iteration-count: infinite;
  transform: rotate(0deg); }

.scaling-squares-spinner .square {
  height: calc(65px * 0.25 / 1.3);
  width: calc(65px * 0.25 / 1.3);
  margin-right: auto;
  margin-left: auto;
  border: calc(65px * 0.04 / 1.3) solid #FFF;
  position: absolute;
  animation-duration: 1250ms;
  animation-iteration-count: infinite; }

.scaling-squares-spinner .square:nth-child(1) {
  animation-name: scaling-squares-spinner-animation-child-1; }

.scaling-squares-spinner .square:nth-child(2) {
  animation-name: scaling-squares-spinner-animation-child-2; }

.scaling-squares-spinner .square:nth-child(3) {
  animation-name: scaling-squares-spinner-animation-child-3; }

.scaling-squares-spinner .square:nth-child(4) {
  animation-name: scaling-squares-spinner-animation-child-4; }

@keyframes scaling-squares-animation {
  50% {
    transform: rotate(90deg); }
  100% {
    transform: rotate(180deg); } }
@keyframes scaling-squares-spinner-animation-child-1 {
  50% {
    transform: translate(150%, 150%) scale(2, 2); } }
@keyframes scaling-squares-spinner-animation-child-2 {
  50% {
    transform: translate(-150%, 150%) scale(2, 2); } }
@keyframes scaling-squares-spinner-animation-child-3 {
  50% {
    transform: translate(-150%, -150%) scale(2, 2); } }
@keyframes scaling-squares-spinner-animation-child-4 {
  50% {
    transform: translate(150%, -150%) scale(2, 2); } }
/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #E2DEDB;
  text-align: center; }

/* Loading画像中央配置　*/
#splash-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

/*
ローディングアニメここまで
*/
.main {
  margin: 0 auto; }

a:hover {
  opacity: 0.5; }

*, *:before, *:after {
  box-sizing: border-box; }

li {
  list-style: none; }

.sp-hid {
  display: none; }

.pc-hid {
  display: block; }

.topvisual-logo {
  top: 20px;
  left: 20px;
  transform: none;
  position: absolute; }

.breadcrumb {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.2rem;
  position: absolute;
  bottom: 20px;
  left: 20px; }
  .breadcrumb ul {
    display: flex; }
    .breadcrumb ul li {
      text-align: left; }
      .breadcrumb ul li:first-child::after {
        content: '>';
        margin-left: 10px;
        color: #FFF; }
      .breadcrumb ul li a {
        text-decoration: none;
        color: #FFF;
        margin-left: 10px; }

/*ふわっと現れる*/
.u-fadeIn.u-scrollIn {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0); }

.u-fadeIn {
  opacity: 0;
  -webkit-transform: translate(0, 40px);
  -ms-transform: translate(0, 40px);
  transform: translate(0, 40px);
  -webkit-transition: all ease-in-out 0.8s;
  transition: all ease-in-out 0.8s; }

/*ハンバーガーボタン ここから*/
#g-nav {
  position: fixed;
  z-index: 900;
  right: -200%;
  top: 0;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid #FFF;
  /*動き*/
  transition: all 0.6s; }

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0; }

#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 900;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

#g-nav ul {
  z-index: 900;
  padding-left: 30px; }

#g-nav li {
  padding-top: 20px;
  list-style: none;
  text-align: left; }

#g-nav li a {
  display: flex;
  flex-direction: column;
  color: #53545D;
  text-decoration: none;
  padding: 10px;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 2.6rem;
  font-family: 'Josefin Sans', sans-serif; }

.top::after {
  content: "トップページ";
  font-size: 1.0rem;
  font-family: 'Shippori Mincho'; }

.top-menu {
  display: flex;
  flex-direction: row;
  align-items: center; }

#g-nav li a.access {
  font-size: 1.8rem; }

.aboutUs::after {
  content: "はんぶんパン屋＋はんぶん農家＝Çavasiba";
  font-size: 1.2rem;
  font-family: 'Shippori Mincho'; }

.feature::after {
  content: "美味しいパンのひみつ";
  font-size: 1.2rem;
  font-family: 'Shippori Mincho'; }

.onlineShop::after {
  content: "販売サイト（BASE）に移動します";
  font-size: 1.2rem;
  font-family: 'Shippori Mincho'; }

.contact::after {
  content: "ご予約・お問い合わせ等";
  font-size: 1.2rem;
  font-family: 'Shippori Mincho'; }

.nav-sns {
  display: flex; }
  .nav-sns img {
    width: 20px; }

.nav-logo {
  width: 150px;
  display: block;
  margin: 0 0 auto 0; }

.openbtn {
  position: fixed;
  z-index: 901;
  /*ボタンを最前面に*/
  top: 20px;
  right: 20px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0);
  border: 0; }

.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 0px;
  height: 2px;
  background-color: #707070;
  width: 100%; }

.openbtn span:nth-of-type(1) {
  top: 0px; }

.openbtn span:nth-of-type(2) {
  top: 13px; }

.openbtn span:nth-of-type(3) {
  top: 26px; }
  .openbtn span:nth-of-type(3)::after {
    content: "Menu";
    /*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    top: 8px;
    right: 3px;
    color: #707070;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Josefin Sans', sans-serif; }

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
.openbtn.active span:nth-of-type(1) {
  top: 12px;
  transform: translateY(6px) rotate(-30deg);
  width: 100%; }

.openbtn.active span:nth-of-type(2) {
  opacity: 0; }

.openbtn.active span:nth-of-type(3) {
  top: 23px;
  transform: translateY(-6px) rotate(30deg);
  width: 100%; }

.openbtn.active span:nth-of-type(3)::after {
  content: "Close";
  /*3つ目の要素のafterにClose表示を指定*/
  transform: translateY(0) rotate(-30deg);
  top: 22px;
  left: 15px; }

@media (min-width: 769px) {
  #g-nav {
    width: 45%; } }
/* ハンバーガーボタン↑ここまで。
オンラインショップここから↓ */
.online-shop-link {
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 5px;
  width: fit-content;
  letter-spacing: 3px;
  /*background: $accent;*/
  border: 1px solid #FFF;
  text-decoration: none;
  color: #FFF;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.2rem; }
  .online-shop-link svg {
    fill: #FFF;
    width: 20px;
    height: 20px;
    padding-left: 5px; }
  .online-shop-link:hover {
    background: #FFF;
    color: #707070;
    box-shadow: none; }

@media (min-width: 600px) {
  .online-shop-link {
    width: 40px;
    font-size: 1.4rem;
    position: fixed;
    z-index: 700;
    left: auto;
    right: 0;
    bottom: 50vh;
    transform: translateY(50%);
    padding: 20px 5px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid #FFF;
    border-radius: 10px 0 0 10px;
    text-decoration: none;
    color: #707070;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.2rem;
    -webkit-overflow-scrolling: auto; }
    .online-shop-link svg {
      display: block;
      fill: #707070;
      width: 20px;
      height: 20px;
      padding-top: 5px; }
    .online-shop-link:hover {
      background: #53545D;
      color: #FFF;
      box-shadow: none; }
      .online-shop-link:hover svg path {
        fill: white; } }
/* オンラインショップここまで↑ */
.ruled-line {
  display: block;
  width: 50px;
  height: 1px;
  background: #707070;
  margin: 10px auto; }

/* お問い合わせボタン */
.conversion-btn {
  margin: 0 auto 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  font-size: 1.6rem;
  cursor: pointer;
  max-width: 330px;
  width: 90%;
  height: 50px;
  background: #FFF;
  border: solid #53545D thin;
  border-radius: 50vh;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #53545D;
  -webkit-overflow-scrolling: touch; }
  .conversion-btn:hover {
    background: #53545D;
    color: white;
    box-shadow: none;
    opacity: 1; }

/* フッター */
.footer {
  padding-top: 50px;
  background: #F5F5F5; }
  .footer .cavasiba-logo {
    width: 150px; }
    
  .footer nav {
    margin: 50px auto;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    text-align: center; }
    .footer nav ul li {
      margin-bottom: 30px; }
      .footer nav ul li a {
        text-decoration: none;
        color: #53545D;
        /* text-align: left;  */
      }
        .footer nav ul li p{
          margin-left: 10px;
        }
        .footer nav address ul li {
          margin-bottom: 0px;
      }
  .footer .sns-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 60px; }
    .footer .sns-wrapper img {
      width: 20px;
      margin: 0 10px; }
  .footer address {
    font-style: normal;
    margin: 0 auto 50px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
    /* height: 100px; */
    background: #E2DEDB;
    border-radius: 10px; }
    .footer address .tel {
      text-decoration: none;
      color: #53545D;
      font-size: 2.4rem; }
      .footer address .tel:before {
        content: "";
        display: inline-block;
        background-image: url("../images/common/phone.svg");
        width: 24px;
        height: 24px;
        margin-right: 5px;
        background-size: contain;
        background-repeat: no-repeat;
        vertical-align: middle; }
      .footer address .tel p {
        font-size: 1.2rem;
        font-family: 'Josefin Sans', sans-serif;
        margin-top: 5px; }
  .footer small {
    font-size: 12px;
    display: block;
    color: #FFF;
    background: #53545D;
    font-family: 'Josefin Sans', sans-serif; }

@media (min-width: 769px) {
  .pc-hid {
    display: none; }

  .sp-hid {
    display: block; }

  .footer .cavasiba-logo {
    width: 100px; }
  .footer nav ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 30px auto 0;
    max-width: 800px; }
  .footer nav ul li {
    margin-bottom: 0px;
    text-decoration: none;
    color: #53545D; }
    .footer nav ul li p {
      font-size: 10px;
      font-family: 'Shippori Mincho'; }
    .footer nav ul li a {
      line-height: 1rem; }
  .footer nav address {
    margin: 0;
    font-style: normal;
    justify-content: center;
    width: initial;
    height: initial;
    background: none;
    border-radius: 0;
    border-left: solid thin; }
  .footer nav .tel {
    padding-left: 10px; }
  .footer .sns-wrapper {
    margin-bottom: 10px; } }
@media (min-width: 600px) {
  .online-shop-link {
    width: 40px;
    font-size: 1.4rem; } }
/* ページトップリンク */
.scroll-top {
  /*表示位置*/
  position: fixed;
  right: 10px;
  bottom: 20px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s, visibility .5s;
  /*それぞれに0.5秒の変化のアニメーション*/
  /*縦書き*/
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  /*改行禁止*/
  white-space: nowrap;
  /*矢印の動き*/
  animation: arrowmove 1s ease-in-out infinite; }

@keyframes arrowmove {
  0% {
    bottom: 20px; }
  50% {
    bottom: 25px; }
  100% {
    bottom: 20px; } }
/*.scroll-viewクラスがついたら出現*/
.scroll-top.scroll-view {
  opacity: 1;
  visibility: visible; }

/*リンク全体の aタグの形状*/
.scroll-top a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  text-decoration: none;
  color: #707070;
  display: block;
  position: relative;
  bottom: 10px; }

/*スクロールリンクの形状*/
.js-scroll a::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 20px;
  width: 1px;
  height: 70px;
  background: #707070; }

.js-scroll a::before {
  content: "";
  position: absolute;
  top: 50px;
  right: 14px;
  width: 1px;
  height: 20px;
  background: #707070;
  transform: skewX(-31deg); }

/*Edge IE11 hack*/
_:-ms-lang(x), .js-scroll a::before {
  right: -11px; }

/*ページトップリンクの形状*/
.js-pagetop a::after {
  content: "";
  position: absolute;
  top: -30px;
  right: 22px;
  width: 1px;
  height: 110px;
  background: #707070; }

.js-pagetop a::before {
  content: "";
  position: absolute;
  top: -30px;
  right: 16px;
  width: 1px;
  height: 20px;
  background: #707070;
  transform: skewX(31deg); }

/*Edge IE11 hack*/
_:-ms-lang(x), .js-pagetop a::before {
  right: 0; }
