/*
Theme Name:hello-elementor（子テーマ） 
Template:hello-elementor
Version:2.4.1
Author: ミライヨッチ
Author URI: https://miraiyotch.com/
Description: Hello Elementor（子テーマ）
*/

/*以下にCSSを記述*/

body {
  overflow-x: hidden;
}
img, iframe {
  max-width: 100%;
  height: auto;
}
/* Webkit系ブラウザ（Chrome、Safari等） */
::-webkit-scrollbar {
    display: none;
}

/* Firefox */
html {
    scrollbar-width: none;
}

/* すべてのブラウザ対応 */
body {
    -ms-overflow-style: none;  /* IE、Edge */
    scrollbar-width: none;     /* Firefox */
}
body::-webkit-scrollbar {
    display: none;             /* Chrome、Safari */
}
/* スマホ横揺れ防止 */
body {
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
/* パンくずリスト */
.breadcrumb{
    list-style: none;
	text-align: center;
	padding: 1em 0 1em;
  }
 .breadcrumb li{
    display: inline;
  }
 .breadcrumb li a{
    color: blue;
    text-decoration: none;
  }
 .breadcrumb li + li:before{
    content: ">";
    margin:.5em;
  }