.elementor-2256 .elementor-element.elementor-element-4bda53ef > .elementor-container{min-height:80px;}.elementor-2256 .elementor-element.elementor-element-4bda53ef > .elementor-container > .elementor-column > .elementor-widget-wrap{align-content:center;align-items:center;}.elementor-2256 .elementor-element.elementor-element-4bda53ef:not(.elementor-motion-effects-element-type-background), .elementor-2256 .elementor-element.elementor-element-4bda53ef > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-2256 .elementor-element.elementor-element-4bda53ef{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;margin-top:0px;margin-bottom:0px;padding:10px 0px 0px 0px;z-index:99;}.elementor-2256 .elementor-element.elementor-element-4bda53ef > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-2256 .elementor-element.elementor-element-40345ceb.elementor-column > .elementor-widget-wrap{justify-content:center;}.elementor-2256 .elementor-element.elementor-element-40345ceb > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-2256 .elementor-element.elementor-element-22dfa21{color:#000000;font-family:"Roboto", Sans-serif;font-weight:400;}.elementor-2256 .elementor-element.elementor-element-22dfa21 > .elementor-widget-container{margin:0px 0px 0px 0px;}@media(min-width:701px){.elementor-2256 .elementor-element.elementor-element-40345ceb{width:100%;}}@media(max-width:1100px) and (min-width:701px){.elementor-2256 .elementor-element.elementor-element-40345ceb{width:30%;}}@media(max-width:1100px){.elementor-2256 .elementor-element.elementor-element-4bda53ef{padding:0% 0% 0% 0%;}}@media(max-width:700px){.elementor-2256 .elementor-element.elementor-element-40345ceb{width:100%;}}/* Start custom CSS for text-editor, class: .elementor-element-22dfa21 */header {
  box-shadow: 0 0 5px rgba(204, 204, 204, 0.8);
}

.header__contents h1 {
    margin: 0!important;
    padding: 0;
}

.header__container {
  width: 96%;
  margin: 0 auto;
  display: flex;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__container img {
    padding-left: 40px;
}

@media(max-width: 700px) {
    .header__container h1 img {
        padding-left: 20px;
        max-width: 150px;     
    }

}

.header__container a {
  text-decoration: none;
}

.header__container a:hover {
    opacity: 0.7;
}
.header__container .main-menu {
  padding: 20px;
  position: relative;
  color: black;
    font-weight: bold;
}

.header__container .main-menu:hover {
  opacity: 0.5;
}
.header__container #global_nav {
  display: flex;
  list-style: none;
  align-items: center;
}
.header__container .icon-arrow {
  position: relative;
}
.header__container .icon-arrow::after {
  background: url(http://yakiton.or.jp/wp-content/uploads/2022/10/icon__menu-arrow.png) no-repeat;
  width: 10px;
  height: 20px;
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  right: 2px;
  top: 7px;
}
.header__container .icon-arrow:hover::after {
  top: -6px;
  transform: rotate(180deg);
}

@media (max-width: 1300px) {
  .global__nav {
    display: none;
  }
}

.logo {
    width: 220px;
}
/*---------------------------

ドロップダウンメニューの設定 

----------------------------*/
#global_nav ul {
  display: none;
  animation-name: animation;
  animation-duration: 0.8s;
  position: absolute;
  top: 40px;
  list-style: none;
  left: -20px;
}

.sub-menu {
    padding: 10px 20px;
    background: black;
    color: white;
    display: block;
    min-width: 230px;
    font-weight: bold;
}
.sub-menu:hover {
    background: #424242;;
    color: white;
    opacity: 1!important;
}

@keyframes animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*---------------------------

fin.サブメニューが表示されるときのアニメーション 

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

ハンバーガーメニュー

----------------------------*/
.hamburger-menu {
  display: none;
}

@media (max-width: 1200px) {
  .hamburger-menu {
    display: block;
  }
}
.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 1px;
  width: 25px;
  border-radius: 3px;
  background-color: black;
  position: absolute;
}

.menu-btn span:before {
  bottom: 8px;
}

.menu-btn span:after {
  top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
  background: white;
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
  background: white;
}

#menu-btn-check {
  display: none;
}

.menu-content {
  width: 90%;
  max-width: 300px;
  height: 100%;
  position: fixed;
  top: 0;
  right: -100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background: black;
  transition: all 0.5s; /*アニメーション設定*/
  overflow: auto;
}

#hamburger_nav, .nav-close {
  list-style: none;
  padding: 0;
}

.menu-content {
  padding: 70px 20px 0;
}

.ham__sub-menu {
  padding: 10px 20px;
  display: block;
  color: white;
  font-size: 14px;
}

.ham__main-menu {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  padding: 10px 0;
  margin: 10px 0;
  border-bottom: solid 1px #aeaeaecc;
}

#menu-btn-check:checked ~ .menu-content {
  right: 0; /*メニューを画面内へ*/
}

.nav-close {
  display: none;
}

.nav-open {
  color: #fff;
  position: relative;
}
.nav-open a {
  color: white;
}

.nav-open::before { /* 閉じている時 */
  content: "＋";
  position: absolute;
  right: 20px;
  top: 20px;
}

.nav-open.active::before { /* 開いている時 */
  content: "－";
}

.icon-plus ul {
    padding: 0;
    list-style: none;
}

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

fin.ハンバーガーメニュー

----------------------------*//*# sourceMappingURL=style.css.map *//* End custom CSS */