/*
Theme Name: Aillio
Version: 1.0
*/
@charset "UTF-8";
:root {
  --black: #111;
  --white: #fff;
  --purple: #5c2c90;
  --gray: #888;
  --gray2: #e7e7e7;
  --lightgray: #f5f3f3
}
*, ::after, ::before {
  box-sizing: border-box
}
h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.2
}
h2 {
  margin-bottom: 2rem;
  font-size: 2rem
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
  text-align: left
}
ol, ul {
  padding-left: 2rem
}
dl, ol, ul {
  margin-top: 0;
  margin-bottom: 1rem
}
ol ol, ol ul, ul ol, ul ul {
  margin-bottom: 0
}
dd {
  margin-left: 0
}
strong {
  font-weight: bolder
}
small {
  font-size: .875em
}
a {
  color: var(--purple);
  text-decoration: underline
}
a:hover {
  color: var(--purple);
  text-decoration: none
}
img, svg {
  vertical-align: middle
}
img {
  width: 100%;
  height: auto
}
body {
  margin: 0;
  font: 1rem/1.6 'Open Sans', BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Verdana, Meiryo, "M+ 1p", sans-serif;
  color: var(--black);
  background-color: var(--white);
  letter-spacing: .02rem;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent
}
[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important
}
p {
  margin: 0 0 1rem
}
p:last-child {
  margin: 0
}
button {
  font-size: 1rem
}
ul {
  margin: 0;
  padding: 0;
  list-style: none
}
a {
  font-family: sans-serif;
  text-decoration: none
}
/* Header */
.header {
  padding-right: 1rem;
  padding-left: 1rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  color: var(--white);
  background-color: var(--black)
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem
}
.hamburger {
  display: block;
  height: 3.4rem;
  margin-left: auto;
  position: relative;
  z-index: 10;
  width: 2.2rem;
  border: none;
  background-color: transparent
}
.hamburger.-active .hamburger__line {
  background-color: transparent
}
.hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg)
}
.hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg)
}
.hamburger__line {
  display: block;
  height: 1px;
  position: absolute;
  top: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.2rem;
  background-color: var(--white);
  transition: .4s
}
.hamburger__line:before, .hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: var(--white);
  transition: inherit
}
.hamburger__line:before {
  top: -10px
}
.hamburger__line:after {
  top: 10px
}
.header__nav-area {
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 9;
  height: 100vh;
  width: 100%;
  visibility: hidden;
  background-color: var(--black);
  transition: .4s
}
.header__nav-area.-active {
  left: 0;
  visibility: visible
}
.global-navigation {
  padding-top: 4rem
}
.header a, .header button {
  padding: 1rem;
  display: block;
  color: var(--white);
  line-height: 1
}
.global-navigation__link.-accordion {
  position: relative;
  background: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  text-align: left
}
.global-navigation__link.-accordion::after {
  content: '';
  display: block;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 1.3rem;
  width: 2px;
  background-color: var(--white);
  transform: translateY(-50%);
  transition: transform .4s
}
.global-navigation__link.-accordion::before {
  content: '';
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 12px;
  background-color: var(--white);
  transform: translateY(-50%)
}
.global-navigation__link.-active::after {
  transform: translateY(-50%) rotate(-90deg)
}
.accordion {
  margin-left: 1rem;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: .4s
}
.accordion.-active {
  height: auto;
  visibility: visible
}
.header h1 {
  margin: 0;
  width: 5rem
}
.header h1 a {
  padding: 0;
	display: flex;
    grid-gap: 1rem;
    white-space: nowrap;
    font-size: 1.25rem;
    align-items: center;
}
@media (min-width: 768px) {
  .header__inner {
    height: 5.2rem
  }
  .header .hamburger {
    display: none
  }
  .header__nav-area.-active {
    visibility: inherit
  }
  .header__nav-area {
    position: static;
    visibility: inherit;
    height: auto;
    width: auto;
    background-color: transparent
  }
  .global-navigation__list {
    display: grid;
    grid-gap: 1rem;
    grid-auto-flow: column;
    justify-content: start;
    align-items: center
  }
  .global-navigation {
    padding-top: 0
  }
  .accordion {
    position: absolute;
    background-color: var(--black)
  }
  .header h1 {
    width: 7rem
  }
  .header a, .header button {
    padding: 1rem
  }
  .header ul ul a {
    padding-top: 1rem;
    padding-bottom: 1rem
  }
  .header ul ul a:hover {
    background-color: var(--lightgray)
  }
  .global-navigation__link.-accordion {
    padding-right: 1.5rem
  }
  .global-navigation__link.-accordion::before {
    right: 0
  }
  .global-navigation__link.-accordion::after {
    right: .3rem
  }
  .accordion {
    margin-left: 0;
    background-color: transparent
  }
  .accordion a {
    color: var(--black)
  }
  .accordion ul {
    border: 1px solid var(--gray2);
    background-color: var(--white);
    border-radius: .375rem
  }
}
/* Hero */
main {
  margin-top: 4rem
}
.hero {
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 70vw;
	position: relative;
	background: url("/wp-content/uploads/2025/04/R2_Family_min_1.jpg") no-repeat center bottom;
	background-size: 100vw;
	color: var(--white);
	font-size: 3rem
}
.hero h2 {
	margin: 0;
	font-size: 7.5vw;
	text-shadow: 2px 1px 4px rgba(0, 0, 0, .4)
}
.cover-bulletr2 {
  background: url("/wp-content/uploads/2025/04/r2_r2pro.jpg") no-repeat center;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50rem
}
.cover .inner {
  padding-top: 3rem;
  padding-bottom: 3rem
}
.no-cover {
  padding-top: 4rem
}
.img-shadow {
  height: 100%;
  object-fit: cover;
  border-radius: 1rem
}
@media (min-width: 768px) {
  main {
    margin-top: 5.2rem
  }
  .hero {
    height: calc(70vw - 5.2rem)
  }
  .hero h2 {
    font-size: 3rem
  }
  .cover-bulletr2 {
    height: 30rem
  }
}
@media (min-width: 992px) {
  .hero h2 {
    font-size: 3.2rem
  }
}
@media (min-width: 1300px) {
  .hero {
    height: calc(50rem - 5.2rem);
    background-size: 80rem
  }
}
/* Footer */
footer {
  padding-top: 4rem;
  padding-bottom: 2rem;
  padding-right: 1rem;
  padding-left: 1rem;
  background-color: var(--black);
  color: var(--gray)
}
footer a {
  padding: 0 !important;
  color: var(--white);
  text-decoration: none
}
footer a:hover {
  color: var(--white);
  text-decoration: underline
}
.footer-bottom {
    margin-top: 4rem;
  font-size: .875rem;
  font-weight: 100
}
.list-footernav {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: flex
}
.list-footernav li {
  margin-right: 2rem
}
.list-footernav li a {
  display: flex;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 2.5rem;
  justify-content: center;
  background-color: var(--white)
}
.list-footernav svg {
  fill: var(--black)
}
.footer-bottom ul {
  margin: 0 0 3rem;
  padding: 0;
  display: grid;
  grid-gap: .5rem;
  list-style: none
}
.foot-logo {
  width: 8rem;
  margin-bottom: 1rem
}
footer h1 {
  margin: 0 0 1rem;
  font-size: 1.125rem
}
footer h1 span {
  display: block;
  font-size: .875rem
}
@media (min-width:768px) {
  footer .inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between
  }
  .list-footernav {
    margin: 0
  }
  .list-footernav li {
    margin: 0 0 0 2rem
  }
  .footer-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between
  }
  .footer-bottom ul {
    margin: 0;
    grid-auto-flow: column;
    grid-gap: 2rem
  }
  .footer-inner {
      display: flex;
      justify-content: space-between
    }
}
.inner, .inner2 {
  margin: auto;
  padding: 0 1rem 6rem;
  max-width: 1930px
}
.grid {
  display: grid;
  grid-gap: 1rem
}
.grid2 {
  margin-top: 1rem
}
.grid5 {
  margin-bottom: 2rem;
  grid-gap: 2rem
}
.card {
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: var(--lightgray)
}
.bulletr1, .bulletr2, .roasttime, .jonas, .jacob, .workshop {
  background-position: center bottom;
  background-size: 25rem;
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  display: grid;
  grid-gap: 2rem
}
.bulletr1 {
  color: var(--white);
  height: 25rem;
  background-image: url("/wp-content/uploads/2025/04/web-hero-optimized.png");
  background-color: var(--black);
	display: flex;
    flex-direction: column;
    justify-content: space-between
}
.bulletr2 {
  color: var(--white);
  height: 25rem;
  background-image: url("/wp-content/uploads/2025/04/Bullet_R2_Front_V002_2000-1823x2048-1.png");
  background-color: var(--black);
	display: flex;
    flex-direction: column;
    justify-content: space-between
}
.roasttime img {
  margin: 0 auto 1rem;
  width: 8rem
}
.jonas, .jacob {
  height: 25rem;
  background-size: 23rem;
  background-color: var(--gray2);
  color: var(--black)
}
.jonas {
  background-image: url("/wp-content/uploads/2025/04/jonas.png")
}
.jacob {
  background-image: url("/wp-content/uploads/2025/04/jacob.png")
}
.jonas div, .jacob div {
	display: flex;
	align-items: flex-end
}
.workshop {
	color: #fff;
	background-color: var(--purple)
}
.workshop-inner {
	border: 1px solid var(--white);
	background-color: var(--purple)
}
.card h2 {
  font-size: 2rem
}
.card h3 {
  font-size: 1.5rem
}
@media (min-width:768px) {
	.inner, .header, .footer {
		padding-right: 2rem;
		padding-left: 2rem
	}
	.grid2, .grid5 {
		grid-template-columns: repeat(2, 1fr)
	}
	.grid3 {
		grid-template-columns: auto 1fr
	}
	.grid3-right {
	  margin-left: 2rem;
	  padding-left: 3rem;
	  border-left: 2px solid var(--black)
	}
  .grid4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width:992px) {
  .inner, .header, footer {
    padding-right: 3rem;
    padding-left: 3rem
  }
  .bulletr1, .bulletr2 {
    height: 30rem;
    background-size: 30rem;
  }
}
@media (min-width:1200px) {
  .grid3-right {
    padding-left: 8vw
  }
}
a.btn {
	padding: 1rem 1.5rem;
	color: var(--white);
	background-color: var(--purple);
	border-radius: 2rem;
	display: inline-block;
	line-height: 1;
	-webkit-transition: all .15s ease-in-out;
	-o-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out
}
a.btn:hover {
	outline: 1px solid var(--purple);
	color: var(--purple);
	background-color: transparent
}
.header a.btn {
	margin: 1rem
}
a.btn-white, .btn-white a {
	color: var(--black);
	background-color: var(--white);
	border-radius: 2rem;
}
a.btn-white:hover, .btn-white a:hover  {
	outline: 1px solid var(--white);
	color: var(--white);
	background-color: transparent
}
.workshop a.btn-white {
	color: var(--purple)
}
.workshop a.btn-white:hover {
	color: var(--white)
}
.sticky-hero {
  margin-bottom: 4rem;
  padding-top: 2rem;
  position: relative;
  background-color: var(--black)
}
.sticky-hero__media {
  position: relative;
  position: sticky;
  top: 6rem;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  background-size: 95vw;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .5s var(--ease-in-out);
  transform: translateZ(0)
}
.sticky-hero__content {
  position: relative;
  height: 80vh;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, .2);
  transform: translateZ(0)
}
.sticky-hero p {
  max-width: 42rem;
  color: var(--white)
}
.grid6 {
	display: grid;
	grid-gap: 4rem;
	grid-auto-flow: column;
	justify-content: center
}
.grid6 img {
	max-width: 400px;
	width: 100%
}
.grid6 h3 {
	font-size: 1.5rem;
    font-weight: 500
}
.hikaku-wrap {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
	align-items: center
}
.list-hikaku {
	display: flex;
    flex-direction: column;
	grid-gap: .8rem;
	font-size: 1.4rem;
	line-height: 1.4
}
.list-hikaku li {
	display: flex;
    flex-direction: column;
    align-items: center;
	grid-gap: .2rem;
	line-height: 1.2
}
.list-hikaku li span {
	font-size: .875rem
}
nav .btn {
	margin: 1rem;
}
@media (min-width:768px) {
	.header .btn {
		margin: 0
	}
	.grid6 h3 {
		font-size: 2rem
	}
	.list-hikaku dt {
		float: left
	}
	.list-hikaku dd {
		margin-left: 7rem
	}
}
@media (min-width:992px) {
  .sticky-hero__media {
    background-size: 70rem
  }
}
.col-news {
  margin-bottom: 2rem
}
.col-news h3 {
  margin-bottom: 0
}
.col-news a {
	color: var(--black)
}
.news-details h3 {
  font-size: 2rem
}
/* Form */
label {
  display: inline-block;
  margin-bottom: .4rem
}
label i {
  font-style: normal;
  font-size: 80%;
  vertical-align: top
}
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  display: block;
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-family: inherit;
  background-color: var(--white);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid var(--gray);
  border-radius: 1rem;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}
input[type="submit"] {
  margin-top: 1rem;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  user-select: none;
  border: 1px solid var(--purple);
  color: var(--white);
  background-color: var(--purple);
  padding: 1rem 3rem;
  font-size: 1rem;
  font-family: inherit;
  letter-spacing: .2rem;
  border-radius: 2rem;
  cursor: pointer;
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out
}
input[type="submit"]:hover {
  color: var(--purple);
  background-color: var(--white);
}
.wpcf7-submit.focus, .wpcf7-submit:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 2px rgba(0, 0, 0, .25);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, .25)
}
.wpcf7-submit:hover {
  background-color: var(--black)
}
/* FAQ */
.details {
  margin-bottom: 1rem
}
summary::-webkit-details-marker {
  display: none
}
summary {
  background-color: var(--lightgray);
  cursor: pointer;
  padding: 1.5rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
  border-radius: .8rem
}
summary::before, summary::after {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  content: '';
  width: 18px;
  border-bottom: 1px solid var(--black)
}
summary::before {
  transform: rotate(-90deg);
  transition: transform .3s
}
[open] summary {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0
}
summary:hover {
  background-color: #d2cece
}
.details-content {
  background-color: var(--lightgray);
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem
}
.is-open > summary::before {
  transform: rotate(0deg)
}
.details-content {
  box-sizing: content-box;
  overflow: hidden;
  margin: 0;
  padding: 0 1em;
  opacity: 0;
  transition: padding .2s ease .1s, max-height .3s, opacity .7s
}
.is-open > .details-content {
  padding-block: 1.5rem;
  opacity: 1;
  transition: padding .3s, max-height .3s, opacity .7s
}
iframe {
  width: 100%;
  border-radius: 1rem;
  aspect-ratio: 16 / 9
}
.mb-2 {
  margin-bottom: 2rem
}
.mb-3 {
  margin-bottom: 3rem
}
.justify-center {
  display: flex;
  flex-direction: column;
  justify-content: center
}
.r2-a {
  color: var(--white);
  background-color: var(--purple);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4
}
.r2-b {
  display: flex;
  flex-direction: column;
  justify-content: center
}
.list-disc {
  padding-left: 1rem;
  list-style: disc
}
.list-disc li {
  margin-bottom: .2rem
}
.details-header {
  margin-bottom: 3rem
}
.date {
  color: var(--gray)
}
figure {
	margin: 0
}
figure a {
	display: block;
	color: var(--black)
}
figcaption {
	padding: 1rem;
    font-size: 1.125rem
}
.figure-img {
	position: relative
}
.figure-img::before {
	content: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" fill="%23ff0133" class="bi bi-box-arrow-up-right" viewBox="0 0 16 16"><path d="M8.051 1.999h.089c.822.003 4.987.033 6.11.335a2.01 2.01 0 0 1 1.415 1.42c.101.38.172.883.22 1.402l.01.104.022.26.008.104c.065.914.073 1.77.074 1.957v.075c-.001.194-.01 1.108-.082 2.06l-.008.105-.009.104c-.05.572-.124 1.14-.235 1.558a2.01 2.01 0 0 1-1.415 1.42c-1.16.312-5.569.334-6.18.335h-.142c-.309 0-1.587-.006-2.927-.052l-.17-.006-.087-.004-.171-.007-.171-.007c-1.11-.049-2.167-.128-2.654-.26a2.01 2.01 0 0 1-1.415-1.419c-.111-.417-.185-.986-.235-1.558L.09 9.82l-.008-.104A31 31 0 0 1 0 7.68v-.123c.002-.215.01-.958.064-1.778l.007-.103.003-.052.008-.104.022-.26.01-.104c.048-.519.119-1.023.22-1.402a2.01 2.01 0 0 1 1.415-1.42c.487-.13 1.544-.21 2.654-.26l.17-.007.172-.006.086-.003.171-.007A100 100 0 0 1 7.858 2zM6.4 5.209v4.818l4.157-2.408z"/></svg>');
	height: 80px;
	width: 80px;
	background-color: rgba(255,255,255,.7);
	position: absolute;
	z-index: 1;
	left: calc(50% - 40px);
	top: calc(50% - 40px);
	border-radius: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0
}
.figure-img img {
	border-radius: 1rem
}
.modal-btn {
	background-color: var(--lightgray);
    border-radius: 1rem;
    height: 100%;
	cursor: pointer
}
.modal-btn:hover {
	background-color: #dcdaf5;
	transition: all .15s ease-in-out
}
/* Modal */ 
:where(dialog) {
  inline-size: unset;
  max-inline-size: unset;
  block-size: unset;
  max-block-size: unset;
  padding: unset;
  margin: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset
}
:focus:not(:focus-visible) {
  outline: none
}
:where(:root[data-mousedown] dialog *) {
  outline: none
}
[data-modal-open]:where(:root[data-mousedown] *) {
  outline: none
}
.modal {
  inline-size: min(calc(100% - calc(max(5vi, 20px) * 2)), 840px);
  block-size: min(calc(100svb - calc(max(5vi, 20px) * 2)), 475px);
  margin: auto;
  color: #f7f8f8;
  background-color: #1a1a1a;
  box-shadow: 0 0 0 100vmax color-mix(in srgb, #1a1a1a, transparent 20%);
  transition: opacity .5s, scale .5s;
  contain: strict
}
.modal:not([data-active="true"]) {
  opacity: 0;
  scale: .95
}
.modal::-webkit-backdrop {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  -webkit-transition: opacity .5s;
  transition: opacity .5s
}
.modal::backdrop {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: opacity .5s
}
.modal:not([data-active="true"])::-webkit-backdrop {
  opacity: 0
}
.modal:not([data-active="true"])::backdrop {
  opacity: 0
}
.modal-container {
  block-size: 100%;
  padding: 3rem;
  overflow: auto;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain
}
.headline {
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
  font-size: clamp(1rem, 0.571rem + 1.9vi, 2rem)
}
.description {
  -webkit-margin-before: 1lh;
  margin-block-start: 1lh;
  line-height: 1.75
}
.close {
  --icon-color: #f7f8f8;
  position: absolute;
  inset-block-start: 4px;
  inset-inline-end: 4px;
  z-index: 1;
  inline-size: 3em;
  aspect-ratio: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-color: #1a1a1a;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0 12px 0 rgb(0 0 0 / 20%);
  transition: background-color .3s
}
.close::before, .close::after {
  position: absolute;
  inset: 0;
  display: inline-block;
  width: 45%;
  height: 2px;
  margin: auto;
  content: "";
  background-color: #f7f8f8
}
.close::before {
  rotate: 45deg;
}
.close::after {
  rotate: 135deg;
}
.close:focus-visible {
  background-color: #484848
}
@media (any-hover: hover) {
  .close:hover {
    background-color: #484848
  }
}
.wp-block-image img {
    max-width: 700px;
	width: 100%
}

/* =========================
   ナビ共通
========================= */
.menu-item-has-children {
  position: relative;
}
.sub-menu {
  display: none;
  margin: 0;
  padding: 0 0 0 1rem;
  list-style: none;
}
.menu-item-has-children.open > .sub-menu {
  display: block;
}
@media (min-width: 768px) {
  .sub-menu {
	  padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  .sub-menu li a {
    display: block;
    padding: 10px 15px;
    color: #000;
    text-decoration: none;
  }
  .sub-menu li a:hover {
    background: #f5f5f5;
  }
}
.menu-item-has-children > a {
  position: relative;
  padding-right: 2.2rem;
}
.menu-item-has-children > a::before {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 12px;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}
.menu-item-has-children > a::after {
  content: '';
  position: absolute;
  right: 1.3rem;
  top: 50%;
  width: 2px;
  height: 12px;
  background: currentColor;
  transform: translateY(-50%);
  transition: .3s;
}
.menu-item-has-children.open > a::after {
  transform: translateY(-50%) rotate(90deg);
}