@charset "UTF-8";
/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:

	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
menu,
nav,
section,
time,
mark,
audio,
video,
details,
summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
figure,
footer,
header,
nav,
section,
details,
summary {
  display: block;
}

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
  max-width: 100%;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:

#map img {
		max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}

input[type='radio'] {
  vertical-align: text-bottom;
}

input[type='checkbox'] {
  vertical-align: bottom;
}

.ie7 input[type='checkbox'] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select,
input,
textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td,
td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre,
code,
kbd,
samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type='button'],
input[type='submit'],
input[type='file'],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button,
input,
select,
textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type='button'] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:before,
.clearfix:after {
  content: '\0020';
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

html,
body {
  -webkit-text-size-adjust: 100%;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', Osaka, 'メイリオ',
    'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 1.4rem;
  line-height: 1.8;
  word-wrap: break-word;
  color: #000;
  background-color: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: #000;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

main {
  overflow: hidden;
}

.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

.container {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 3.7037%;
  padding-left: 3.7037%;
}

@media (max-width: 48em) {
  .container {
    padding-right: 5.33333%;
    padding-left: 5.33333%;
  }
}

@media (max-width: 48em) {
  .is-pc {
    display: none !important;
  }
}

@media (min-width: 48.0625em) {
  .is-sp {
    display: none !important;
  }
}

.c-btn a {
  margin: auto;
  width: 304px;
  height: 61px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.2em;
  border: 1px solid;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 48em) {
  .c-btn a {
    font-size: 1.6rem;
    height: 45px;
  }
}

.c-btn a:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

.c-btn span {
  font-weight: bold;
}

.custom-shape-divider-bottom-1627308641 {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1627308641 svg {
  position: relative;
  display: block;
  width: 100%;
  height: 66px;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

/** For mobile devices **/
@media (max-width: 48em) {
  .custom-shape-divider-bottom-1627308641 svg {
    width: calc(102% + 1.3px);
    height: 10px;
  }
}

.l-header {
  z-index: 100;
}

@media (max-width: 48em) {
  .l-header {
    background-color: #000;
    padding: 15px 0;
    position: relative;
  }
}

@media (min-width: 48.0625em) {
  .l-header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
  }
}

.l-header__inner {
  position: relative;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 3.7037%;
  padding-left: 3.7037%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 48em) {
  .l-header__inner {
    padding-right: 5.33333%;
    padding-left: 5.33333%;
  }
}

.l-header__logo {
  position: relative;
  z-index: 1;
  width: 170px;
}

@media (max-width: 48em) {
  .l-header__logo {
    width: 100px;
  }
}

.hamburger {
  background: transparent;
  border: none;
  position: relative;
  z-index: 10;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  width: 32px;
  height: 20px;
}

@media (min-width: 48.0625em) {
  .hamburger {
    display: none;
  }
}

.hamburger .bdr {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.hamburger .bdr:nth-child(1) {
  top: 0;
}

.hamburger .bdr:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hamburger .bdr:nth-child(3) {
  bottom: 0;
}

.hamburger.is-active .bdr:nth-child(1) {
  -webkit-transform: translateY(8.5px) rotate(-45deg);
  transform: translateY(8.5px) rotate(-45deg);
}

.hamburger.is-active .bdr:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .bdr:nth-child(3) {
  -webkit-transform: translateY(-8.5px) rotate(45deg);
  transform: translateY(-8.5px) rotate(45deg);
}

@media (max-width: 48em) {
  .gnav {
    height: 0;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    overflow-y: scroll;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #222;
    -webkit-transition: height 0.5s;
    transition: height 0.5s;
  }
  .gnav.nav-open {
    height: 100vh;
  }
}

@media (min-width: 48.0625em) {
  .gnav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 48em) {
  .gnav ul {
    padding: 95px 0;
  }
}

.gnav li {
  font-size: 1.6rem;
  line-height: 1;
}

@media (max-width: 48em) {
  .gnav li {
    font-size: 2rem;
    text-align: center;
  }
}

@media (min-width: 48.0625em) {
  .gnav li:not(:first-child) {
    margin-left: 3em;
  }
}

@media (max-width: 48em) {
  .gnav li:not(:first-child) {
    margin-top: 2.2em;
  }
}

.gnav a {
  color: #fff;
  font-weight: bold;
  position: relative;
}

.gnav a:after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  left: 50%;
  top: calc(100% + 0.5em);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 4px;
  background-color: #f1dd64;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.gnav a:hover:after,
.gnav a .is-current:after {
  width: 120%;
}

.wrapper {
  overflow: hidden;
}

.l-footer {
  background-color: #000;
  position: relative;
  color: #fff;
  padding-top: 10px;
  padding-bottom: 60px;
}

@media (max-width: 48em) {
  .l-footer {
    padding-top: 120px;
    padding-bottom: 40px;
  }
}

.l-footer .custom-shape-divider-bottom-1627308641 {
  bottom: 100%;
}

.l-footer .custom-shape-divider-bottom-1627308641 .shape-fill {
  fill: #000;
}

@media (min-width: 48.0625em) {
  .l-footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
  }
}

.l-footer__info {
  line-height: 1.64;
}

@media (max-width: 48em) {
  .l-footer__info {
    text-align: center;
  }
}

.l-footer__info dt {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 2em;
}

@media (max-width: 48em) {
  .l-footer__info dt {
    font-size: 1.5rem;
  }
}

.l-footer__info dd {
  font-size: 1.4rem;
}

@media (max-width: 48em) {
  .l-footer__info dd {
    font-size: 1.2rem;
  }
}

.l-footer__info dd p:not(:first-child) {
  margin-top: 2em;
}

.l-footer__info dd a {
  color: #fff;
}

.l-footer__sns {
  font-size: 3rem;
  line-height: 1;
  margin-top: 1em;
}

.l-footer__sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 48em) {
  .l-footer__sns ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.l-footer__sns li:not(:first-child) {
  margin-left: 1em;
}

.l-footer__sns a {
  color: #fff;
}

@media (max-width: 48em) {
  .l-footer__nav {
    display: none;
  }
}

.l-footer__nav ul {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.l-footer__nav li {
  font-size: 1.4rem;
  line-height: 2.14;
}

.l-footer__nav a {
  color: #fff;
  text-decoration: underline;
}

.l-footer__nav a:hover {
  text-decoration: none;
}

@media (min-width: 48.0625em) {
  .l-footer__sign {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
  }
}

.l-footer__logo {
  width: 200px;
  margin: auto;
}

@media (max-width: 48em) {
  .l-footer__logo {
    max-width: 130px;
    position: absolute;
    top: -40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.copyright {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 3em;
}

@media (max-width: 48em) {
  .copyright {
    font-size: 1rem;
  }
}

.index .t-kv {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/image/index/kv_bg.jpg);
  background-size: cover;
  position: relative;
  height: 810px;
}

@media (max-width: 48em) {
  .index .t-kv {
    height: 400px;
  }
}

.index .t-kv:before {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.4);
}

.index .t-kv__inner {
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.index .t-kv__main {
  width: 300px;
  position: relative;
}

@media (max-width: 48em) {
  .index .t-kv__main {
    width: 158px;
  }
}

.index .t-kv__copy {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: calc(100% + 64px);
  width: 102px;
}

@media (max-width: 48em) {
  .index .t-kv__copy {
    width: 60px;
    left: calc(100% + 30px);
  }
}

.index .t-kv .custom-shape-divider-bottom-1627308641 {
  bottom: 0;
}

.index .t-kv .custom-shape-divider-bottom-1627308641 .shape-fill {
  fill: #f1dd64;
}

.index .t-sec {
  padding: 80px 0;
}

@media (max-width: 48em) {
  .index .t-sec {
    padding: 60px 0;
  }
}

.index .t-sec__ttl {
  text-align: center;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.2em;
}

@media (max-width: 48em) {
  .index .t-sec__ttl {
    font-size: 2rem;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}

.index .t-intro {
  background-color: #f1dd64;
  text-align: center;
  padding-bottom: 32px;
}

.index .t-intro__illust {
  margin: 0 auto 55px;
}

@media (max-width: 48em) {
  .index .t-intro__illust {
    max-width: 140px;
    margin-bottom: 30px;
  }
}

.index .t-intro__copy {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2.5;
  margin: 5em 0 4em;
}

@media (max-width: 48em) {
  .index .t-intro__copy {
    font-size: 1.2rem;
    margin: 3em 0 2em;
  }
}

.index .t-intro__copy strong {
  font-size: 1.5em;
}

@media (max-width: 48em) {
  .index .t-intro__copy strong {
    font-size: 1.3em;
  }
}

.index .t-excerpt li {
  color: #fff;
}

.index .t-excerpt li:nth-child(odd) {
  background-color: #000;
}

@media (min-width: 48.0625em) {
  .index .t-excerpt li:nth-child(odd) .t-excerpt__column {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .index .t-excerpt li:nth-child(odd) .t-excerpt__txt > dl {
    padding-right: 3.81818%;
  }
}

.index .t-excerpt li:nth-child(even) {
  background-color: #444;
}

@media (min-width: 48.0625em) {
  .index .t-excerpt li:nth-child(even) .t-excerpt__txt > dl {
    padding-left: 3.81818%;
  }
}

.index .t-excerpt li .c-btn a {
  color: #fff;
}

.index .t-excerpt li .c-btn a:hover {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}

@media (min-width: 48.0625em) {
  .index .t-excerpt__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .index .t-excerpt__column > figure {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media (max-width: 48em) {
  .index .t-excerpt figure {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}

.index .t-excerpt__txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 48em) {
  .index .t-excerpt__txt {
    padding: 25px 0 60px;
  }
}

.index .t-excerpt__txt dl {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.index .t-excerpt__txt dt {
  font-size: 3.3rem;
  line-height: 1;
  margin-bottom: 1em;
}

@media (max-width: 48em) {
  .index .t-excerpt__txt dt {
    font-size: 2.4rem;
  }
}

.index .t-excerpt__txt dd p {
  font-size: 1.6rem;
}

@media (max-width: 48em) {
  .index .t-excerpt__txt dd p {
    font-size: 1.3rem;
  }
}

.index .t-excerpt__txt dd .c-btn {
  margin-top: 60px;
}

@media (max-width: 48em) {
  .index .t-excerpt__txt dd .c-btn {
    margin-top: 25px;
  }
}

.index .t-news {
  background-color: #f1dd64;
}

.index .t-news__list ul {
  margin: 65px 0;
}

@media (max-width: 48em) {
  .index .t-news__list ul {
    margin: 40px 0;
  }
}

.index .t-news__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px dashed;
  line-height: 1.8rem;
  padding: 1.625em 0;
  font-size: 1.6rem;
}

@media (max-width: 48em) {
  .index .t-news__list li {
    font-size: 1.3rem;
  }
}

.index .t-news__list li:first-child {
  border-top: 1px dashed;
}

.index .t-news__list li a {
  font-size: 1.6rem;
}

@media (max-width: 48em) {
  .index .t-news__list li a {
    font-size: 1.3rem;
  }
}

.index .t-news__list li a:hover {
  text-decoration: underline;
}

.index .t-news__list li time {
  min-width: 8em;
  text-align: right;
  font-size: 1.4rem;
}

@media (max-width: 48em) {
  .index .t-news__list li time {
    font-size: 1.3rem;
  }
}

.index .t-contact__desc {
  font-size: 1.6rem;
  text-align: center;
  margin: 2em 0 1.5em;
}

@media (max-width: 48em) {
  .index .t-contact__desc {
    font-size: 1.3rem;
  }
}

.index .t-contact__detail {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 530px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 3.7037%;
  padding-left: 3.7037%;
  border: 5px solid #ccc;
  border-radius: 5px;
  padding: 3.36364%;
}

@media (max-width: 48em) {
  .index .t-contact__detail {
    padding-right: 5.33333%;
    padding-left: 5.33333%;
  }
}

.index .t-contact__detail dt {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 1em;
}

@media (max-width: 48em) {
  .index .t-contact__detail dt {
    font-size: 1.5rem;
  }
}

.index .t-contact__detail dd {
  font-size: 1.6rem;
  line-height: 2.25;
}

@media (max-width: 48em) {
  .index .t-contact__detail dd {
    font-size: 1.2rem;
  }
}

.index .t-contact__detail dd > * {
  font-size: 1.6rem;
  line-height: 2.25;
}

@media (max-width: 48em) {
  .index .t-contact__detail dd > * {
    font-size: 1.2rem;
  }
}

.l-kv {
  background-color: #ccc;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.l-kv__inner {
  height: 460px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 48em) {
  .l-kv__inner {
    height: 200px;
  }
}

.l-kv__ttl {
  font-size: 3.2rem;
  color: #ffffff;
  letter-spacing: 0.05em;
}

@media (max-width: 48em) {
  .l-kv__ttl {
    font-size: 2.4rem;
  }
}

.breadcrumb {
  padding: 0.5em 0;
  font-size: 1.2rem;
  line-height: 1;
}

.breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumb li {
  font-size: 1.2rem;
  line-height: 1;
}

.breadcrumb li > * {
  display: inline-block;
  vertical-align: middle;
}

.breadcrumb li:not(:first-child):before {
  content: '\03e';
  margin: 0 1em;
  display: inline-block;
  vertical-align: middle;
}

.breadcrumb span,
.breadcrumb i {
  display: inline-block;
  vertical-align: middle;
}

.breadcrumb i {
  margin-right: 0.5em;
}

.concept-main {
  margin: 100px 0 160px;
}

@media (max-width: 48em) {
  .concept-main {
    margin: 60px 0 120px;
  }
}

.concept__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.concept__ttl--ja {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
  position: relative;
}

.concept__ttl--ja:after {
  z-index: -1;
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #f1dd64;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.concept__ttl--en {
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 1.3em;
}

.concept__desc {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 2em;
}

@media (min-width: 48.0625em) {
  .concept__desc {
    text-align: center;
  }
}

.concept__desc > * {
  font-size: 1.6rem;
  line-height: 2;
}

.concept__list {
  margin-top: 50px;
}

.concept__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (min-width: 48.0625em) {
  .concept__list li {
    width: 48.18182%;
  }
  .concept__list li:nth-child(even) {
    margin-left: 3.63636%;
  }
  .concept__list li:nth-child(n + 3) {
    margin-top: 3.63636%;
  }
}

@media (max-width: 48em) {
  .concept__list li:not(:first-child) {
    margin-top: 40px;
  }
}

.concept__list dt > * {
  display: inline-block;
  font-weight: bold;
  font-size: 2.4rem;
  margin-top: 1em;
  line-height: 1;
  position: relative;
}

.concept__list dt > *:after {
  z-index: -1;
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #f1dd64;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.concept__list dd {
  margin-top: 0.5em;
  font-size: 1.4rem;
  line-height: 1.5;
}

.concept__list dd > * {
  font-size: 1.4rem;
  line-height: 1.5;
}

.concept__list dd > *:not(:first-child) {
  margin-top: 1em;
}

.store-main {
  margin: 100px 0 160px;
}

@media (max-width: 48em) {
  .store-main {
    margin: 60px 0 120px;
  }
}

.store__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (min-width: 48.0625em) {
  .store__list li {
    width: 30.90909%;
  }
  .store__list li:not(:nth-child(3n + 1)) {
    margin-left: 3.63636%;
  }
}

@media (max-width: 48em) {
  .store__list li:not(:first-child) {
    margin-top: 40px;
  }
}

.store__name {
  display: inline-block;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
  margin: 1em 0;
  position: relative;
}

.store__name:after {
  z-index: -1;
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #f1dd64;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.store__address {
  font-size: 1.6rem;
  line-height: 1.5;
}

.store__detail {
  overflow: hidden;
  font-size: 1.4rem;
  line-height: 2;
  margin-top: 1em;

  display: grid;
  grid-template-columns: 5em 1fr;
  align-items: flex-start;
}

.store__detail dt {
  /* clear: left;
  width: 5em; */
}

.store__detail dt,
.store__detail dd {
  /* float: left; */
  font-size: 1.4rem;
  line-height: 2;
}

.menu-main {
  margin: 100px 0 160px;
}

@media (max-width: 48em) {
  .menu-main {
    margin: 60px 0 120px;
  }
}

@media (min-width: 48.0625em) {
  .menu__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .menu__list li:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

.menu__list li:not(:first-child) {
  margin-top: 80px;
}

@media (max-width: 48em) {
  .menu__list li:not(:first-child) {
    margin-top: 40px;
  }
}

@media (min-width: 48.0625em) {
  .menu__pic {
    width: 48.18182%;
  }
}

@media (min-width: 48.0625em) {
  .menu__txt {
    width: 47.27273%;
  }
}

@media (max-width: 48em) {
  .menu__txt {
    margin-top: 20px;
  }
}

.menu__category {
  position: relative;
  display: inline-block;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
}

.menu__category:after {
  z-index: -1;
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #f1dd64;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.menu__desc {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 1em;
}

.menu__desc > * {
  font-size: 1.6rem;
  line-height: 1.5;
}

.menu .c-btn {
  margin-top: 50px;
}

@media (min-width: 48.0625em) {
  .menu .c-btn a {
    margin-left: 0;
  }
}

.menuButadon-main {
  margin: 100px 0 160px;
}

@media (max-width: 48em) {
  .menuButadon-main {
    margin: 60px 0 120px;
  }
}

@media (min-width: 48.0625em) {
  .menuButadon__desc {
    text-align: center;
  }
}

.menuButadon__desc > * {
  font-size: 1.6rem;
  line-height: 2;
}

.menuButadon__list {
  margin-top: 80px;
}

.menuButadon__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 48em) {
  .menuButadon__list ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.menuButadon__list ul:not(:first-child) {
  margin-top: 80px;
}

@media (max-width: 48em) {
  .menuButadon__list ul:not(:first-child) {
    margin-top: 40px;
  }
}

@media (min-width: 48.0625em) {
  .menuButadon__list ul.-column2 li {
    width: 48.18182%;
  }
  .menuButadon__list ul.-column2 li:nth-child(even) {
    margin-left: 3.63636%;
  }
}

@media (max-width: 48em) {
  .menuButadon__list ul.-column2 li:not(:first-child) {
    margin-top: 40px;
  }
}

@media (min-width: 48.0625em) {
  .menuButadon__list ul.-column4 li {
    width: 22.27273%;
  }
  .menuButadon__list ul.-column4 li:not(:nth-child(4n + 1)) {
    margin-left: 3.63636%;
  }
}

@media (max-width: 48em) {
  .menuButadon__list ul.-column4 li {
    width: 48.20896%;
  }
  .menuButadon__list ul.-column4 li:nth-child(n + 3) {
    margin-top: 25px;
  }
}

.menuButadon__list ul.-column4 .menuButadon__ttl {
  font-size: 2rem;
}

.menuButadon__list ul.-column4 .menuButadon__detail {
  font-size: 1.4rem;
}

.menuButadon__list ul.-column4 .menuButadon__detail > * {
  font-size: 1.4rem;
}

.menuButadon__ttl {
  font-size: 2.4rem;
  margin-top: 1em;
  line-height: 1;
  font-weight: bold;
  display: inline-block;
  position: relative;
}

.menuButadon__ttl:after {
  z-index: -1;
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #f1dd64;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.menuButadon__ttl small {
  font-size: 0.7em;
}

.menuButadon__detail {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 0.5em;
}

.menuButadon__detail > * {
  font-size: 1.6rem;
  line-height: 1.5;
}

.menuRa-men-main {
  margin: 100px 0 160px;
}

@media (max-width: 48em) {
  .menuRa-men-main {
    margin: 60px 0 120px;
  }
}

.menuRa-men__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (min-width: 48.0625em) {
  .menuRa-men__item {
    width: 48.18182%;
  }
  .menuRa-men__item:nth-child(even) {
    margin-left: 3.63636%;
  }
  .menuRa-men__item:nth-child(n + 3) {
    margin-top: 3.63636%;
  }
}

@media (max-width: 48em) {
  .menuRa-men__item:not(:first-child) {
    margin-top: 40px;
  }
}

.menuRa-men__item li {
  font-size: 1.4rem;
}

.menuRa-men__item li:not(:first-child) {
  margin-top: 1.5em;
}

.menuRa-men__item figcaption {
  font-size: 1.4rem;
  line-height: 1.2;
  margin-top: 0.5em;
}

@media (min-width: 48.0625em) {
  .menuRa-men__item figcaption {
    text-align: center;
  }
}

.menuRa-men__feature {
  font-size: 1.6rem;
  font-weight: bold;
}

.menuRa-men__ttl {
  font-size: 2.4rem;
  margin-top: 1em;
  line-height: 1;
  font-weight: bold;
  display: inline-block;
  position: relative;
}

.menuRa-men__ttl:after {
  z-index: -1;
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #f1dd64;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.menuRa-men__ttl small {
  font-size: 0.7em;
}

.menuRa-men__others {
  margin-top: 50px;
}

@media (min-width: 48.0625em) {
  .menuRa-men__others {
    margin-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menuRa-men__others figure {
    margin-right: 3.63636%;
  }
}

.media-main {
  margin: 100px 0 160px;
}

@media (max-width: 48em) {
  .media-main {
    margin: 60px 0 120px;
  }
}

@media (min-width: 48.0625em) {
  .media__desc {
    text-align: center;
  }
}

.media__desc > * {
  font-size: 1.6rem;
  line-height: 2;
}

.media__list {
  margin-top: 80px;
}

.media__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (min-width: 48.0625em) {
  .media__list li {
    width: 30.90909%;
  }
  .media__list li:not(:nth-child(3n + 1)) {
    margin-left: 3.63636%;
  }
  .media__list li:nth-child(n + 4) {
    margin-top: 80px;
  }
}

@media (max-width: 48em) {
  .media__list li:not(:first-child) {
    margin-top: 40px;
  }
}

.media__ttl {
  font-size: 2.4rem;
  margin-top: 1em;
  line-height: 1;
  font-weight: bold;
  display: inline-block;
  position: relative;
}

.media__ttl:after {
  z-index: -1;
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #f1dd64;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.media__ch {
  font-size: 1.4rem;
  line-height: 1.5;
}

.media__detail {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 0.5em;
}

.media__detail > * {
  font-size: 1.6rem;
  line-height: 1.5;
}

.media__contact {
  margin-top: 80px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 530px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 3.7037%;
  padding-left: 3.7037%;
  border: 5px solid #ccc;
  border-radius: 5px;
  padding: 3.36364%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 48em) {
  .media__contact {
    padding-right: 5.33333%;
    padding-left: 5.33333%;
  }
}

.media__contact dt {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 1em;
}

.media__contact dd {
  font-size: 1.6rem;
  line-height: 2.25;
}

.media__contact dd > * {
  font-size: 1.6rem;
  line-height: 2.25;
}

.concept-kv {
  background-image: url(/image/concept/kv.jpg);
}

@media (max-width: 48em) {
  .concept-kv {
    background-image: url(/image/concept/kv_sp.jpg);
  }
}

.store-kv {
  background-image: url(/image/store/kv_231020.jpg);
}

@media (max-width: 48em) {
  .store-kv {
    background-image: url(/image/store/kv_sp_231020.jpg);
  }
}

.menu-kv {
  background-image: url(/image/menu/kv.jpg);
}

@media (max-width: 48em) {
  .menu-kv {
    background-image: url(/image/menu/kv_sp.jpg);
  }
}

.media-kv {
  background-image: url(/image/media/kv.jpg);
}

@media (max-width: 48em) {
  .media-kv {
    background-image: url(/image/media/kv_sp.jpg);
  }
}

.menubutadon-kv {
  background-image: url(/image/menu/butadon/kv.jpg);
}

@media (max-width: 48em) {
  .menubutadon-kv {
    background-image: url(/image/menu/butadon/kv_sp.jpg);
  }
}

.menura-men-kv {
  background-image: url(/image/menu/ra-men/kv.jpg);
}

@media (max-width: 48em) {
  .menura-men-kv {
    background-image: url(/image/menu/ra-men/kv_sp.jpg);
  }
}

/*ECサイトへの固定バナー*/

.floating-banner {
  position: fixed; /* 追従 */
  z-index: 99999; /* 他の要素の下に隠れないように */
  bottom: 0; /* バナーの上下の位置 */
  right: 1%; /* バナーの左右の位置 */
  max-width: 350px;
  width: 99%;
}
@media screen and (max-width: 560px) {
  .floating-banner {
    max-width: 320px;
  }
}

.floating-banner_link {
  position: absolute;
  aspect-ratio: 194 / 62;
  width: 49%;
  display: block;
  bottom: 1.8%;
  left: 1%;
  transition: background-color 0.3s;
}
.floating-banner_link:nth-of-type(2) {
  left: auto;
  right: 1%;
}
.floating-banner_link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.pc {
  width: 200px;
}
/* .floating-banner:hover {
  opacity: 0.9;
} */
.sp {
  display: none; /* PCではスマホ用のバナーは非表示に */
}
@media screen and (max-width: 990px) {
  /* タブレット用のブレイクポイントを指定 */
  .pc {
    display: none; /* タブレットサイズ以下でPC用のバナーを非表示に */
  }
}
@media screen and (max-width: 560px) {
  /* スマホ用のブレイクポイントを指定 */
  .sp {
    display: inline-block;
    width: 250px;
  }
}
