@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 16px;
  font-size: 1.6rem;
  color: #221814;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  width: 100%;
}

a {
  color: #221814;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
}

a:hover {
  color: #221814;
  text-decoration: none;
  opacity: 0.65;
}



a:active,
a:hover {
  outline-width: 0;
}

li {
  margin: 0;
  list-style: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
dd,
dt,
dl {
  margin: 0;
}

figcaption,
figure,
main,
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button {
  border: none;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -moz-appearance: none;
  -webkit-appearance: none;
}

/* Grid System width Flex */
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

/*margin*/
.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

/* form input*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
select {
  font-size: 16px;
  font-size: 1.6rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  margin: 2px;
  padding: 0 0.3em;
  width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
select:focus {
  outline: none;
  border-color: #000;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

select {
  font-size: 13px;
  font-size: 1.3rem;
  height: 2.5em;
  padding: 0.5em;
  width: auto;
  min-width: 7em;
}

textarea {
  font-size: 16px;
  font-size: 1.6rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 0 0.3em;
  resize: vertical;
  width: 100%;
}
textarea :focus {
  outline: none;
  border-color: #000;
}

input[type="checkbox"],
input[type="radio"] {
  background: #fff;
  cursor: pointer;
  margin-right: 0.5em;
}

textarea::placeholder,
input::placeholder {
  font-size: 1.4rem;
  color: #c5c5c5;
}

/* wordpress pager */
.pager {
  display: flex;
  height: 35px;
  margin-bottom: 60px;
  max-width: 100%;
  padding: 30px 0;
  position: relative;
}
.pager a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  position: relative;
  line-height: 1.42857143;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  color: #000;
  font-weight: bold;
  margin: 5px;
  padding: 5px 10px;
}

.pc .pager a:active,
.pc .pager a:hover,
.pc .pager a:focus {
  border-color: #000;
  color: #000;
}

.pager .previous,
.pager .next,
.pager .back {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.pager .previous a {
  padding-left: 1.5em;
}

.pager .previous a:before {
  content: "≪";
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
}

.pager .next a {
  padding-right: 1.5em;
}
.pager .next a:after {
  content: "≫";
  content: "";
  position: absolute;
  right: 5px;
  top: 4px;
}

.pager .back a {
  padding: 5px;
}

/* wordpress pagination */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.pagination > li {
  position: relative;
}

.pagination > li > span,
.pagination > li > a {
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  color: #231815;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}

.pagination > li > span {
  border-color: #231815;
  cursor: default;
}

.pc .pagination > li > a:active,
.pc .pagination > li > a:hover,
.pc .pagination > li > a:focus {
  border-color: #000;
  color: #000;
}

.pagination > li span.dot {
  border: none;
  width: 1em;
}

/* wordpress wp-pagenavi */
.wp-pagenavi {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 1.6rem;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  border: 1px solid #000;
  color: #000;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}
.wp-pagenavi .current {
  border: 0;
  color: #fff;
  background: #000;
  font-weight: normal;
}
.wp-pagenavi a:hover {
  border: 1px solid #000;
}

/* wordpress breadcrumbs */
.txt_ellipsis .breadcrumbs span:last-of-type {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 130px;
  display: inline-block;
  vertical-align: bottom;
}

.breadcrumbs {
  margin: 2% 0;
  font-size: 1.2rem;
}
.breadcrumbs .container {
  margin-left: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.breadcrumbs a {
  color: #231815;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #000;
}
.breadcrumbs ul,
.breadcrumbs ol {
  list-style: none;
  padding: 0;
}
.breadcrumbs li {
  display: inline;
}
.breadcrumbs li:before {
  content: ">";
  margin: 0 10px;
}
.breadcrumbs li:first-child:before {
  display: none;
}

@media screen and (max-width: 560px) {
  .breadcrumbs {
    font-size: 1rem;
  }
  .breadcrumbs li:before {
    margin: 0 5px;
  }
}
/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img,
.slick-initialized .slick-slide {
  display: block;
}

.slick-slide.slick-loading img,
.slick-arrow.slick-hidden {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./img/common/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick/slick.eot");
  src: url("./fonts/slick/slick.eot?#iefix") format("embedded-opentype"),
    url("./fonts/slick/slick.woff") format("woff"),
    url("./fonts/slick/slick.ttf") format("truetype"),
    url("./fonts/slick/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  width: 16px;
  height: 31px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: -15px;
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  opacity: 0.65;
  color: transparent;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.25;
}

.slick-prev {
  left: 30px;
  background: url(../img/common/btn-prev.png) no-repeat center center;
}

.slick-next {
  right: 30px;
  background: url(../img/common/btn-next.png) no-repeat center center;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #aaa;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots .slick-active button:before {
  color: #000;
  opacity: 0.75;
}

.slick-archive {
  padding-top: 10px;
  margin: 0 auto;
  width: calc(100% - 50px);
}

.slick-archive__item {
  padding: 5px;
}

.slick-archive__item a {
  display: block;
  max-width: 350px;
  margin: auto;
  color: #231815;
  text-decoration: none;
  position: relative;
}

.slick-archive__item a:hover {
  opacity: 0.65;
}

.slick-archive__date {
  margin-top: 5px;
  display: block;
}

.slick-archive__title {
  display: block;
  font-weight: bold;
}

.slick-archive__label {
  background-color: #464a4c;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0.2em 2em;
}

@media screen and (max-width: 560px) {
  .slick-archive__date,
  .slick-archive__label {
    font-size: 1rem;
  }

  .slick-archive__title {
    font-size: 1.2rem;
  }
}
/***************************

layout/header.scss

***************************/
/* toggle button */
.toggle {
  cursor: pointer;
  display: inline-block;
  background: none;
  border: none;
  outline: none;
  position: absolute;
  padding: 35px 30px;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 7;
}

.toggle__bar {
  position: relative;
  margin: 8px auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.toggle__bar,
.toggle__bar::before,
.toggle__bar::after {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #231815;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.toggle__bar::before,
.toggle__bar::after {
  position: absolute;
  content: "";
}

.toggle__bar::before {
  top: -8px;
}

.toggle__bar::after {
  top: 8px;
}

.toggle.active .toggle__bar {
  background-color: transparent;
}

.toggle.active .toggle__bar::before {
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

.toggle.active .toggle__bar::after {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

/* Hamburger menu */
.gnav {
  line-height: 1.6;
  margin: 0;
  position: fixed;
  right: 0;
  top: 87px;
  max-width: 375px;
  width: 100%;
  height: calc(100vh - 87px);
  background: #fff;
  z-index: 6;
  padding: 20px;
  transform: translateX(100%);
  transition: all 0.6s;
}

.gnav.active {
  transform: translateX(0);
}

/***************************

 header

***************************/
header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
}

.header-inner {
  padding: 8px 120px 8px 50px;
}

.gnav ul li:not(:last-child) {
  margin-bottom: 15px;
}
.gnav ul li a {
  font-size: 1.8rem;
  background: linear-gradient(90deg, #d01126, #95111f);
  background-repeat: no-repeat;
  background-size: 0 3px;
  background-position: bottom left;
}
.gnav ul li a:hover {
  opacity: 1;
  background-size: 100% 3px;
}

/***************************

layout/footer.scss

***************************/
footer {
  width: 100%;
  margin-top: 180px;
}

.footer-contact {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 370px;
  background: linear-gradient(135deg, #eeba0e, #ec4074);
  overflow: hidden;
  padding: 20px;
  /* 241114追記 */
  flex-flow: column;
  gap: 30px;
}
.footer-contact:before {
  position: absolute;
  content: "";
  width: 322px;
  height: 371px;
  background: url(../img/top/icon-l.png);
  top: 0;
  right: 0;
}
.footer-contact a {
  max-width: 1115px;
  width: 100%;
  /* min-height: 120px; */
  font-weight: bold;
  font-size: 3.2rem;
  letter-spacing: 0.04em;
  color: #cc3858;
  line-height: 1.2;
  background: #fff;
  text-align: center;
  /* 241114追加 */
  padding: 35px 0;
  display: flex;
  align-items: top;
  justify-content: center;
  gap: .1em;
}
.footer-contact a i {
  font-size: 1.8rem;
  vertical-align: text-top;
}
/* 241114追加 */
.footer-contact a .ja {
  font-size: 1.6rem;
}
.footer-contact a .text {
  line-height: 0.9;
}

.footer-inner {
  width: 100%;
  background: #fff;
  padding: 30px 20px;
}
.footer-inner dl {
  max-width: 1365px;
  width: 100%;
  margin: 0 auto;
}
.footer-inner dl div {
  display: flex;
  justify-content: space-between;
}
.footer-inner dl dt {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: #aaa;
}
.footer-inner dl dd {
  font-size: 1.4rem;
  text-align: right;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 1000px) {
  .footer-inner dl div {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .footer-inner dl dt {
    text-align: center;
  }

  .footer-inner dl dd {
    text-align: center;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  footer {
    margin-top: 90px;
  }

  .footer-contact {
    height: 350px;
  }
  .footer-contact:before {
    width: 221px;
    height: 255px;
    background-size: 100% auto;
  }
  .footer-contact a {
    font-size: 2.5rem;
  }
  .footer-contact a i {
    font-size: 1.6rem;
  }
  .footer-contact a .ja {
    font-size: 1.4rem;
  }

  .footer-inner {
    padding: 20px;
  }
}
@media screen and (max-width: 550px) {
  .footer-contact {
    height: 180px;
    gap: 10px;
  }
  .footer-contact:before {
    width: 161px;
    height: 185px;
  }

  .footer-contact a {
    /* min-height: 60px; */
    font-size: 2.2rem;
    /* 241114追加 */
    padding: 18px 0;
  }
  .footer-contact a i {
    font-size: 1.4rem;
  }
}
/*////////////////////////

 user common css

////////////////////////*/
.container_l {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

.sp_550 {
  display: none;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.vt_align_top {
  vertical-align: top;
}

.wd_100 {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  .main {
    padding-top: 80px;
  }
}
@media screen and (min-width: 651px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 650px) {
  a[href^="tel:"] {
    text-decoration: underline;
    display: inline-block;
  }
}
@media screen and (max-width: 550px) {
  .pc_550 {
    display: none;
  }

  .sp_550 {
    display: block;
  }
}
/*////////////////////////

fonts

////////////////////////*/
.open-sans {
  font-family: "Open Sans", sans-serif;
}

.bold {
  font-weight: bold;
}

.ls_5 {
  letter-spacing: 0.05em;
}

.ls_4 {
  letter-spacing: 0.04em;
}

.lh_2 {
  line-height: 2;
}

.lh_18 {
  line-height: 1.8;
}

.lh_1 {
  line-height: 1;
}

/***************************

object/project/effects.scss

***************************/
/*ロード時にフェードイン*/
.fadein {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*スクロールフェードイン*/
.fadeInTop {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInTop;
  animation-name: fadeInTop;
  visibility: visible !important;
}

@-webkit-keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInBottom {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInBottom;
  animation-name: fadeInBottom;
  visibility: visible !important;
}

@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInLeft {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  visibility: visible !important;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  visibility: visible !important;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes aboutText {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@-webkit-keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}
@keyframes faq {
  0% {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  100% {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 1.8;
    visibility: visible;
  }
}
/*////////////////////////

btn

////////////////////////*/
.btn-A {
  display: block;
  width: 100%;
  font-weight: bold;
  font-size: 3.2rem;
  color: #fff;
  padding: 20px;
  background: linear-gradient(135deg, #eeba0e, #ec4074);
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 8px 0 #cc3858;
}
.btn-A i {
  font-size: 1.8rem;
  vertical-align: text-top;
}

.btn-center {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .btn-A {
    font-size: 2.5rem;
    padding: 15px 10px;
  }
  .btn-A i {
    font-size: 1.6rem;
  }

  .tab-center {
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .btn-A {
    font-size: 2.2rem;
    padding: 15px 10px;
  }
  .btn-A i {
    font-size: 1.4rem;
  }
}
/*////////////////////////

hdg__

////////////////////////*/
.hdg_01.col-red {
  color: #cc3858;
  display: flex;
  align-items: center;
}
.hdg_01__en {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 4.3rem;
  letter-spacing: 0.06em;
}
.hdg_01__ja {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 768px) {
  .hdg_01__en {
    font-size: 3.3rem;
  }
  .hdg_01__ja {
    font-size: 1.4rem;
  }
}
/***************************

object/project/top.scss

***************************/
.top01 {
  width: 100%;
}

.main-visual {
  width: 100%;
}
.main-visual img {
  width: 100%;
}

.top02 {
  width: 100%;
  background: url(../img/top/about-bk.png) no-repeat center center;
  background-size: auto 100%;
  background-color: #fafafa;
  padding: 140px 0;
  margin-bottom: 120px;
}

.guide-ttl {
  font-size: 3.6rem;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 35px;
}

.guide-text {
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 2.2;
}

.guide-info {
  margin-top: 50px;
  text-align: center;
}
.guide-info dt {
  margin-bottom: 20px;
}
.guide-info dd {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .top02 {
    padding: 70px 0;
    margin-bottom: 60px;
  }

  .guide-ttl {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .guide-info {
    margin-top: 30px;
  }
}
.top03 {
  width: 100%;
  margin-bottom: 120px;
}

.basic-content-block {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.basic-content_ttl {
  position: relative;
  width: 270px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #eeba0e, #ec4074);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.basic-content_ttl:before {
  position: absolute;
  content: "";
  width: 181px;
  height: 210px;
  background: url(../img/top/icon.png);
  bottom: -5px;
  right: -10px;
  z-index: 2;
}
.basic-content_ttl .hdg_01__ja,
.basic-content_ttl .hdg_01__en {
  display: block;
}

.basic-content_inner {
  max-width: 915px;
  width: calc(100% - 270px);
}

#news .basic-content_ttl {
  padding: 20px;
}

.news-list {
  width: 100%;
}

.news-list_item {
  padding: 20px 0;
  border-bottom: 1px solid #dcdcdc;
}
.news-list_item a {
  display: flex;
  flex-wrap: wrap;
  opacity: 1;
}
.news-list_item a:hover h3 span {
  background-size: 100% 1px;
}
.news-list_item .day {
  width: 110px;
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #cc3858;
  letter-spacing: 0.06em;
}
.news-list_item h3 {
  width: calc(100% - 110px);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 1.6rem;
}
.news-list_item h3 span {
  background: linear-gradient(180deg, #221814 1px, transparent 1px);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: bottom left;
  transition: all 0.6s;
}

@media screen and (max-width: 768px) {
  .top03 {
    margin-bottom: 60px;
  }

  .basic-content-block {
    flex-wrap: wrap;
  }

  .basic-content_ttl {
    aspect-ratio: 1 / 0.5;
  }

  .basic-content_inner {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .basic-content-block {
    gap: 20px;
  }

  .news-list_item {
    padding: 10px 0;
  }

  .news-list_item h3 {
    width: 100%;
  }
}
.top04 {
  width: 100%;
  margin-bottom: 120px;
}

.ticket-content-block {
  width: 100%;
  background: #fff;
  border: 1px solid #707070;
  padding: 60px 70px;
}

.ticket-content-box {
  width: 100%;
  padding: 40px 0;
}
.ticket-content-box:not(:last-of-type) {
  border-bottom: 1px solid #dcdcdc;
}
.ticket-content-box ul li {
  letter-spacing: 0.04em;
}
.ticket-content-box ul li:not(:last-child) {
  margin-bottom: 10px;
}
.ticket-content-box ul a {
  color: #cc3858;
  text-decoration: underline;
}
.ticket-content-box ul .col-red {
  color: #cc3858;
}
.ticket-content-box ul .open-sans {
  font-size: 2rem;
}
.ticket-content-box .btn-A {
  margin-top: 30px;
}

.ticket-content-box_ttl {
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .top04 {
    margin-bottom: 60px;
  }

  .ticket-content-block {
    padding: 30px 40px;
  }

  .ticket-content-box {
    padding: 20px 0 30px;
  }

  .ticket-content-box_ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .ticket-content-block {
    padding: 15px 20px;
  }
}
.top05 {
  width: 100%;
  margin-bottom: 130px;
}

#schedule .basic-content_ttl {
  padding: 15px;
}

.schedule-list-wrap {
  width: 100%;
  border: 1px solid #707070;
}
.schedule-list-wrap dt {
  position: relative;
  width: 100%;
  font-weight: bold;
  font-size: 3.2rem;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #eeba0e, #ec4074);
  padding: 20px 45px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.schedule-list-wrap dt i {
  position: absolute;
  font-size: 1.3rem;
  right: 35px;
  top: 50%;
  transform: translateY(-50%) rotate(-180deg);
  transition: all 0.6s;
}
.schedule-list-wrap dd {
  width: 100%;
  height: auto;
  padding: 30px 60px;
  overflow: hidden;
}
.schedule-list-wrap dd ul {
  transform: translateY(0);
  transition: all 0.6s;
  width: 100%;
}
.schedule-list-wrap dd li {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #dcdcdc;
}
.schedule-list-wrap dd .time {
  width: 255px;
  border-left: 3px solid #cc3858;
  letter-spacing: 0.04em;
  padding-left: 25px;
}
.schedule-list-wrap dd .text {
  width: calc(100% - 255px);
}
.schedule-list-wrap dd .text h4 {
  font-weight: bold;
  letter-spacing: 0.04em;
}
.schedule-list-wrap dd .text p {
  letter-spacing: 0.04em;
}
.schedule-list-wrap.open dt {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.schedule-list-wrap.open dt i {
  transform: translateY(-50%) rotate(0);
}
.schedule-list-wrap.open dd {
  height: 0;
  padding: 0 60px;
}
.schedule-list-wrap.open dd ul {
  transform: translateY(-100%);
}

@media screen and (max-width: 950px) {
  .schedule-list-wrap dd {
    padding: 0 30px;
  }

  .schedule-list-wrap.open dd {
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  .top05 {
    margin-bottom: 60px;
  }

  .schedule-list-wrap dt {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 550px) {
  .schedule-list-wrap dt {
    padding: 15px 30px;
  }

  .schedule-list-wrap dt i {
    right: 15px;
  }

  .schedule-list-wrap dd {
    padding: 0 20px;
  }

  .schedule-list-wrap.open dd {
    padding: 20px;
  }

  .schedule-list-wrap dd li {
    flex-wrap: wrap;
  }

  .schedule-list-wrap dd .time {
    width: 100%;
    margin-bottom: 15px;
  }

  .schedule-list-wrap dd .text {
    width: 100%;
  }
}
.top06 {
  width: 100%;
}

#guest .basic-content_ttl {
  padding: 20px;
}

.guest-content-block:not(:last-of-type) {
  margin-bottom: 80px;
}

.guest-content_ttl {
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: #cc3858;
  margin-bottom: 30px;
}

.guest-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 25px;
}
.guest-list .image {
  margin-bottom: 10px;
}
.guest-list .data .area {
  display: inline-block;
  color: #fff;
  background: #cc3858;
  text-align: center;
  padding: 0 5px;
}
.guest-list .data .name {
  font-weight: 500;
  font-size: 2.1rem;
}

@media screen and (max-width: 1024px) {
  .guest-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .guest-content-block:not(:last-of-type) {
    margin-bottom: 40px;
  }

  .guest-content_ttl {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .guest-list {
    gap: 30px 15px;
  }

  .guest-list .data .area {
    font-size: 1.4rem;
  }

  .guest-list .data .name {
    font-size: 1.8rem;
  }

  .guest-list .data p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 500px) {
  .guest-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* 250306 */
a.hover-none{
  opacity: 1;
  color: #fff;
}
.btn-A.hover-none{
  background: #999;
  box-shadow:0 8px 0 #666
}

/* 250904 */
.schedule-time {
  font-weight: bold;
  font-size: 20px;
  position: relative;
  padding-left: 25px;
}

.schedule-time:before {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  background: linear-gradient(135deg, #eeba0e, #ec4074);
  border-radius: 100%;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}