@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Zen+Antique+Soft&display=swap");
:root {
  --font-size-base: 1.4rem;
  --color-primary: #B19D72;
  --color-warning: #f00;
}
@media screen and (min-width: 768px) {
  :root {
    --font-size-base: 1.6rem;
  }
}

html {
  height: 100%;
  font-size: 0.8vw;
}
@media (min-width: 1281px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 2.667vw;
  }
}
html.noscroll {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}
html.noscroll .p-header {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Zen Antique Soft, serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  background: #FFF;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ol,
ul,
dl {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

b, strong, .fw-bold {
  font-weight: 700;
}

figure {
  margin: 0;
  padding: 0;
}

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

table {
  border-collapse: collapse;
}

th {
  font-weight: 400;
  text-align: inherit;
  text-align: -webkit-match-parent;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

a {
  text-decoration: none;
}

.pc-none {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc-none {
    display: block;
  }
  .tab-none {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .tab-none {
    display: block;
  }
  .sp-none {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

i.othersite {
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  margin-left: 0.8rem;
  background: url(../../images/common/icon_othersite.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: -0.1rem;
}
@media screen and (max-width: 767px) {
  i.othersite {
    width: 1.8rem;
    height: 1.8rem;
    margin-left: 0.4rem;
  }
}

i.arrow {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 2rem;
  background: url(../../images/common/icon_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  i.arrow {
    width: 0.8rem;
    height: 0.8rem;
    margin-left: 1rem;
  }
}

i.x {
  display: inline-block;
  width: 1.9rem;
  height: 1.9rem;
  margin-right: 0.4rem;
  background: url(../../images/common/icon_x_blk.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 576px) {
  i.x {
    width: 1.6rem;
    height: 1.6rem;
  }
}

i.instagram {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin-right: 0.4rem;
  background: url(../../images/common/icon_insta_blk.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 576px) {
  i.instagram {
    width: 1.6rem;
    height: 1.6rem;
  }
}

i.line {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin-right: 0.4rem;
  background: url(../../images/common/icon_line_blk.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  i.line {
    width: 1.2rem;
    height: 1.2rem;
  }
}

i.youtube {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.4rem;
  background: url(../../images/common/icon_youtube_blk.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  i.youtube {
    width: 1.2rem;
    height: 1.2rem;
  }
}

i.homepage {
  display: inline-block;
  width: 1.9rem;
  height: 1.9rem;
  margin-right: 0.4rem;
  background: url(../../images/common/icon_home_blk.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  i.homepage {
    width: 1.7rem;
    height: 1.7rem;
  }
}

.flex-center {
  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;
}

/*------------------------
  button
------------------------*/
.btn_common {
  text-align: center;
}
.btn_common a {
  position: relative;
  display: inline-block;
  width: 16.9rem;
  height: 3.8rem;
}
.btn_common a img {
  -o-object-fit: contain;
     object-fit: contain;
}
.btn_common a .img-hover {
  display: none;
}
@media screen and (min-width: 768px) {
  .btn_common a {
    width: 16.9rem;
    height: 3.8rem;
  }
  .btn_common a img {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .btn_common a .img-hover {
    display: inline-block;
    opacity: 0;
  }
  .btn_common a:hover .img-hover {
    opacity: 1;
  }
  .btn_common a:hover .img-normal {
    opacity: 0;
  }
}
.btn_common.btn_common--custom a {
  width: 21rem;
  height: 6rem;
}
@media screen and (min-width: 768px) {
  .btn_common.btn_common--custom a {
    width: 31.8rem;
    height: 3.8rem;
  }
}

.btn-x {
  display: inline-block;
  max-width: 33rem;
  width: 100%;
  margin: 0 auto;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}
.btn-x img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .btn-x {
    max-width: 48rem;
  }
  .btn-x:hover {
    opacity: 0.8;
  }
}

.btn-primary, .btn-primary--custom-1 {
  position: relative;
  display: inline-block;
  width: 16.9rem;
  height: 3.8rem;
}
.btn-primary img, .btn-primary--custom-1 img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.btn-primary .img-hover, .btn-primary--custom-1 .img-hover {
  display: none;
}
@media screen and (min-width: 768px) {
  .btn-primary, .btn-primary--custom-1 {
    width: 16.9rem;
    height: 3.8rem;
  }
  .btn-primary img, .btn-primary--custom-1 img {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .btn-primary .img-hover, .btn-primary--custom-1 .img-hover {
    display: inline-block;
    opacity: 0;
  }
  .btn-primary:hover .img-hover, .btn-primary--custom-1:hover .img-hover {
    opacity: 1;
  }
  .btn-primary:hover .img-normal, .btn-primary--custom-1:hover .img-normal {
    opacity: 0;
  }
}
.btn-primary--custom-1 {
  width: 21rem;
  height: 6rem;
}
@media screen and (min-width: 768px) {
  .btn-primary--custom-1 {
    width: 31.8rem;
    height: 3.8rem;
  }
}

/*------------------------------------------------------------------------
  layout
------------------------------------------------------------------------*/
.p-side {
  width: 100%;
  background: url("../../images/common/bg_symbol_01_sp.png") repeat;
  background-size: auto;
}
.p-side::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-side {
    position: relative;
    width: 52.5rem;
    height: auto;
    background-image: none;
  }
  .p-side::after {
    position: absolute;
    display: block;
    width: 1px;
    right: 4px;
    top: 0;
    height: 100%;
    background-color: var(--color-primary);
    content: "";
  }
}
.p-side__content {
  display: none;
  position: fixed;
  z-index: 90;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  padding: 5rem 1.5rem 1.5rem;
  overflow-y: auto;
  overflow-x: hidden;
  background: url("../../images/common/bg_symbol_01_sp.png") repeat;
  background-size: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media screen and (min-width: 768px) {
  .p-side__content {
    background: url("../../images/common/bg_symbol_01.png") repeat;
    display: block;
    left: 0;
    max-width: 52rem;
    padding-top: 1.5rem;
    background: none;
  }
}
.p-side__content::-webkit-scrollbar {
  display: none;
}

.p-contents {
  min-height: 100vh;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contents {
    width: calc(100% - 52.5rem);
    border-left: 2px solid var(--color-primary);
  }
}

/*------------------------------------------------------------------------
  header
------------------------------------------------------------------------*/
.p-header {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-header {
    width: 49rem;
    min-height: 85rem;
  }
}
.p-header__border-left {
  position: relative;
}
.p-header__border-left::before {
  position: absolute;
  top: 2.2rem;
  left: 0;
  width: 0.1rem;
  height: calc(100% - 4.4rem);
  background-color: var(--color-primary);
  content: "";
}
.p-header__border-left::after {
  position: absolute;
  top: 2.6rem;
  left: 0.4rem;
  width: 0.2rem;
  height: calc(100% - 5.2rem);
  background-color: var(--color-primary);
  content: "";
}
.p-header__border-right::before {
  position: absolute;
  top: 2.2rem;
  right: 0;
  width: 0.1rem;
  height: calc(100% - 4.4rem);
  background-color: var(--color-primary);
  content: "";
}
.p-header__border-right::after {
  position: absolute;
  top: 2.6rem;
  right: 0.4rem;
  width: 0.2rem;
  height: calc(100% - 5.2rem);
  background-color: var(--color-primary);
  content: "";
}
.p-header__inner {
  position: relative;
  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;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }
}
.p-header .header_logo {
  display: block;
  max-width: 31rem;
  width: 100%;
  margin-bottom: 3rem;
  -webkit-filter: drop-shadow(-1px 0px 7px #000);
          filter: drop-shadow(-1px 0px 7px #000);
  aspect-ratio: 300/77;
}
@media screen and (min-width: 768px) {
  .p-header .header_logo {
    width: 42rem;
    max-width: inherit;
  }
}
.p-header .header_logo a {
  display: block;
}
.p-header .header_logo img {
  display: block;
}

.c-symbol-top {
  position: relative;
}
.c-symbol-top::before {
  position: absolute;
  left: 0.4rem;
  right: 0;
  top: 0;
  width: calc(100% - 1rem);
  height: 2.8rem;
  clip-path: polygon(0 2.6rem, 50% 0, 100% 2.6rem, 100% 100%, 50% calc(100% - 2.6rem), 0 100%);
  background-color: var(--color-primary);
  content: "";
}
.c-symbol-top::after {
  position: absolute;
  left: 0;
  right: 0;
  top: -0.4rem;
  width: 100%;
  height: 2.7rem;
  clip-path: polygon(0 2.6rem, 50% 0, 100% 2.6rem, 100% 100%, 50% calc(100% - 2.6rem), 0 100%);
  background-color: var(--color-primary);
  content: "";
}

.c-symbol-bot {
  position: relative;
}
.c-symbol-bot::before {
  position: absolute;
  left: 0.4rem;
  right: 0;
  bottom: 0;
  width: calc(100% - 1rem);
  height: 2.8rem;
  clip-path: polygon(0 0, 50% 2.6rem, 100% 0, 100% calc(100% - 2.6rem), 50% 100%, 0 calc(100% - 2.6rem));
  background-color: var(--color-primary);
  content: "";
}
.c-symbol-bot::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.4rem;
  width: 100%;
  clip-path: polygon(0 0, 50% 2.6rem, 100% 0, 100% calc(100% - 2.6rem), 50% 100%, 0 calc(100% - 2.6rem));
  height: 2.7rem;
  background-color: var(--color-primary);
  content: "";
}

/*------------------------
  menu PC
------------------------*/
.header_pc_menu,
.header_sp_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_pc_menu li.ticket,
.header_sp_menu li.ticket {
  display: inline-block;
  height: auto;
  width: 26.6rem;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
  margin-top: 1.5rem;
  -webkit-filter: drop-shadow(0px 0px 4px #000);
          filter: drop-shadow(0px 0px 4px #000);
}
@media screen and (min-width: 768px) {
  .header_pc_menu li.ticket,
  .header_sp_menu li.ticket {
    width: auto;
    height: 10.5rem;
    margin-top: 2rem;
  }
}
.header_pc_menu li.ticket a,
.header_sp_menu li.ticket a {
  height: 100%;
}
.header_pc_menu a,
.header_sp_menu a {
  display: block;
  height: 7rem;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
  -webkit-filter: drop-shadow(0px 0px 3px #000);
          filter: drop-shadow(0px 0px 3px #000);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .header_pc_menu a,
  .header_sp_menu a {
    height: 9rem;
  }
  .header_pc_menu a:hover,
  .header_sp_menu a:hover {
    opacity: 0.5;
  }
}
.header_pc_menu a img,
.header_sp_menu a img {
  display: block;
  margin-inline: auto;
  height: 100%;
}

/*------------------------
  menu burger
------------------------*/
.menu_btn {
  cursor: pointer;
  position: fixed;
  z-index: 100;
  right: 0;
  width: 6rem;
  height: 6rem;
}
.menu_btn span {
  display: block;
  position: absolute;
  right: 1.2rem;
  width: 3.8rem;
  height: 2px;
  background-color: var(--color-primary);
  -webkit-transition: 0.2s -webkit-transform;
  transition: 0.2s -webkit-transform;
  transition: 0.2s transform;
  transition: 0.2s transform, 0.2s -webkit-transform;
}
.menu_btn span:nth-child(1) {
  top: 1.5rem;
}
.menu_btn span:nth-child(2) {
  top: 2.5rem;
}
.menu_btn span:nth-child(3) {
  top: 3.5rem;
}

#menu_btn_check {
  display: none;
}
#menu_btn_check:checked ~ .menu_btn span:nth-child(1) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  top: 2.5rem;
}
#menu_btn_check:checked ~ .menu_btn span:nth-child(2) {
  opacity: 0;
}
#menu_btn_check:checked ~ .menu_btn span:nth-child(3) {
  top: 2.5rem;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
#menu_btn_check:checked ~ .sp_menu_content {
  -webkit-transform: translateY(0);
          transform: translateY(0); /*メニューを画面内へ*/
}

.sp_menu_content {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: fixed;
  z-index: 90;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  padding: 5rem 1.5rem 1.5rem;
  overflow-y: auto;
  overflow-x: hidden;
  background: url("../../images/common/bg_symbol_01_sp.png") repeat;
  background-size: auto;
}
.sp_menu_content .burger_logo {
  display: block;
  max-width: 31rem;
  width: 100%;
  margin-bottom: 3rem;
  -webkit-filter: drop-shadow(-1px 0px 7px #000);
          filter: drop-shadow(-1px 0px 7px #000);
  aspect-ratio: 300/77;
}
.sp_menu_content .burger_logo a {
  display: block;
}
.sp_menu_content .burger_logo img {
  display: block;
}

/*------------------------------------------------------------------------
  layout
------------------------------------------------------------------------*/
.main-content {
  position: relative;
  padding-top: 3rem;
}
.main-content::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 300px;
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
}
@media screen and (min-width: 768px) {
  .main-content {
    padding-top: 4rem;
  }
}

.wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}
@media screen and (min-width: 768px) {
  .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

section {
  position: relative;
}

.ly-container {
  padding: 12rem 0 18rem;
}
@media screen and (max-width: 767px) {
  .ly-container {
    padding: 7rem 0 10rem;
  }
}
@media screen and (max-width: 576px) {
  .ly-container {
    padding: 6rem 0 8rem;
  }
}

.ly-wrapper {
  margin: 0 auto;
  max-width: 86rem;
  padding: 0 3rem;
  width: 100%;
}

/*------------------------
  heading
------------------------*/
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
}

.sec-title {
  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;
  margin: 0 auto;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .sec-title {
    margin-bottom: 4rem;
  }
}
.sec-title .main {
  font-size: 6.4rem;
  line-height: 7rem;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .sec-title .main {
    font-size: 4.2rem;
    line-height: 5rem;
  }
}
.sec-title .sub {
  font-size: 1.8rem;
  line-height: 2rem;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 767px) {
  .sec-title .sub {
    font-size: 1.3rem;
    line-height: 1.4rem;
    margin-bottom: 0.2rem;
  }
}

.heading-large {
  font-size: 4rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .heading-large {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

.heading-medium {
  font-size: 3rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .heading-medium {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

.heading-small {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .heading-small {
    font-size: 1.6rem;
  }
}

/*------------------------
  page_headline
------------------------*/
.headline-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 9rem;
  margin-bottom: 1rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .headline-1 {
    height: 12rem;
    margin-bottom: 0;
  }
}
.headline-1 img {
  display: block;
  height: 100%;
}

.c-title1 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  color: var(--color-primary);
}
@media screen and (min-width: 768px) {
  .c-title1 {
    font-size: 1.6rem;
    text-align: left;
  }
}

/*------------------------
  coming soon
------------------------*/
.coming_soon {
  display: none;
  text-align: center;
  background-color: transparent;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: calc(100% - 400px);
  min-height: 50rem;
  padding: 6rem 0rem;
}
@media screen and (max-width: 767px) {
  .coming_soon {
    height: calc(100% - 233px);
  }
}
.coming_soon img {
  margin-top: -50px;
  width: 70%;
  max-width: 760px;
}
@media screen and (max-width: 767px) {
  .coming_soon img {
    width: 80%;
  }
}
.coming_soon.is-active {
  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;
}
.coming_soon.is-active ~ section {
  display: none;
}

/*------------------------
  footer
------------------------*/
.p-footer {
  padding-block: 4rem;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-block: 5rem;
  }
}

.p-footer-copyright {
  text-align: center;
  font-weight: 100;
  font-size: 1rem;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .p-footer-copyright {
    font-size: 1.1rem;
  }
}

.p-footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer-social {
    margin-bottom: 1.8rem;
  }
}
.p-footer-social a {
  display: block;
  height: 3.5rem;
  margin: 0 1.5rem;
  cursor: pointer;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}
@media screen and (min-width: 768px) {
  .p-footer-social a {
    height: 4.9rem;
    margin: 0 2.7rem;
  }
  .p-footer-social a:hover {
    opacity: 0.8;
  }
}
.p-footer-social img {
  display: block;
  height: 100%;
}

/*------------------------
  scroll to top
------------------------*/
.page-top {
  cursor: pointer;
  position: fixed;
  right: 1rem;
  bottom: -0.2rem;
  width: 4.1rem;
  height: 4.5rem;
}
.page-top img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .page-top {
    width: 5.6rem;
    height: 6.1rem;
  }
  .page-top:hover {
    opacity: 0.8;
  }
}

div [data-remodal-id=modal_recipe] {
  background: none;
}

.slider {
  width: 100%;
}

.n_pad {
  padding-left: 0;
  padding-right: 0;
}

.pad_2 {
  padding-left: 2%;
  padding-right: 2%;
}

.remodal-overlay {
  background: rgba(0, 0, 0, 0.9);
}

.slick-dots li button:before {
  color: #999999;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  color: #FFA64D;
}

.remodal-wrapper {
  bottom: 0;
  top: 0;
}

.taxin_text {
  font-size: 11.5px;
}

.wwimg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.features .inner .wwimg img {
  width: 50%;
}

.features .inner .chikawa_f_img {
  width: 200px;
  margin: 0 auto;
}

button.btn.btn-success.btn-block.reject {
  background-color: #525252 !important;
  color: #ffffff !important;
}

/*------------------------
  loading
------------------------*/
.c-bg-general {
  position: fixed;
  z-index: 0;
  inset: 0;
  background: url("../../images/common/bg_symbol_01_sp.png") repeat;
  background-size: auto;
}
@media screen and (min-width: 768px) {
  .c-bg-general {
    background-image: url("../../images/common/bg_symbol_01.png");
  }
}

@-webkit-keyframes blinking {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blinking {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.c-screen-loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: #000;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.c-screen-loading.hide {
  opacity: 0;
  pointer-events: none;
}
.c-screen-loading img {
  width: 29rem;
  max-width: 100%;
  -webkit-animation: blinking 1s ease-in-out infinite alternate;
          animation: blinking 1s ease-in-out infinite alternate;
}
@media screen and (min-width: 768px) {
  .c-screen-loading img {
    width: 67rem;
  }
}

/*------------------------
  wow animation
------------------------*/
@-webkit-keyframes animate__fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes animate__fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpSmall {
  -webkit-animation-name: animate__fadeInUpSmall;
  animation-name: animate__fadeInUpSmall;
}

.animated {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

.fade-up {
  -webkit-animation-name: animate__fadeInUpSmall;
          animation-name: animate__fadeInUpSmall;
}

/*------------------------
  box
------------------------*/
.common_box {
  position: relative;
  margin-bottom: 3rem;
  padding: 0.4rem;
  background-color: #FFF;
}
.common_box::before {
  pointer-events: none;
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  top: 0.8rem;
  height: 3.5rem;
  background: url("../../images/common/symbol_01_01.svg") no-repeat left top, url("../../images/common/symbol_01_02.svg") no-repeat right top;
  background-size: 3.5rem, 3.5rem;
  content: "";
}
@media screen and (min-width: 768px) {
  .common_box::before {
    background-size: 4.5rem, 4.5rem;
    height: 4.5rem;
    left: 1rem;
    right: 1rem;
    top: 1rem;
  }
}
.common_box::after {
  pointer-events: none;
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  height: 3.5rem;
  background: url("../../images/common/symbol_01_04.svg") no-repeat left bottom, url("../../images/common/symbol_01_03.svg") no-repeat right bottom;
  background-size: 3.5rem, 3.5rem;
  content: "";
}
@media screen and (min-width: 768px) {
  .common_box::after {
    background-size: 4.5rem, 4.5rem;
    height: 4.5rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}
.common_box .common_box_inner {
  position: relative;
  padding: 3rem 1.5rem;
  border: 1px solid var(--color-primary);
}
@media screen and (min-width: 768px) {
  .common_box .common_box_inner {
    padding: 2.5rem 3.5rem 4rem;
  }
}
.common_box .common_box_h3 {
  margin-bottom: 1.5rem;
  font-size: 2.6rem;
  color: var(--color-primary);
  text-align: center;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .common_box .common_box_h3 {
    margin-bottom: 2rem;
    font-size: 3.1rem;
  }
}
.common_box .common_box_h3 img {
  display: block;
  height: 100%;
}
.common_box .common_box_item {
  position: relative;
}
.common_box .common_box_item:not(:last-child) {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}
.common_box .common_box_item:not(:last-child)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: url("../../images/common/bg_symbol_04.png") repeat-x;
  background-size: 3px 2px;
  content: "";
}
.common_box .common_box_item p span.blue {
  color: #18AEDB;
}
.common_box .common_box_item p span.text_l {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .common_box .common_box_item p span.text_l {
    font-size: 1.5rem;
  }
}
.common_box .common_box_item p span.text_m {
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .common_box .common_box_item p span.text_m {
    font-size: 1.2rem;
  }
}
.common_box .common_box_item p span.text_s {
  font-size: 1.1rem;
}
@media screen and (max-width: 767px) {
  .common_box .common_box_item p span.text_s {
    font-size: 1rem;
  }
}
.common_box .common_box_item p span.bold {
  font-weight: 700;
}
.common_box .common_box_item p a {
  color: inherit;
  margin-right: 2.5rem;
  font-size: 1.5rem;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .common_box .common_box_item p a {
    font-size: 1.3rem;
  }
  .common_box .common_box_item p a:hover {
    opacity: 0.5;
  }
}
.common_box .common_box_item p.large {
  font-size: 2rem;
}
.common_box .common_box_item p.small {
  font-size: 1rem;
  letter-spacing: 0;
}
.common_box .btn_common {
  text-align: center;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .common_box .btn_common {
    margin-top: 2rem;
    margin-bottom: 0rem;
  }
}

.p-sec {
  position: relative;
  padding-block: 2px;
  background-color: var(--color-primary);
  clip-path: polygon(0 0, 50% 1.8rem, 100% 0, 100% calc(100% - 1.8rem), 50% 100%, 0 calc(100% - 1.8rem));
}
@media screen and (min-width: 768px) {
  .p-sec {
    clip-path: polygon(0 0, 50% 3.8rem, 100% 0, 100% calc(100% - 3.8rem), 50% 100%, 0 calc(100% - 3.8rem));
  }
}
.p-sec__content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 40rem;
  padding-top: 6rem;
  padding-bottom: 4.5rem;
  background: url("../../images/common/bg_symbol_02.png") repeat;
  clip-path: polygon(0 0, 50% 1.8rem, 100% 0, 100% calc(100% - 1.8rem), 50% 100%, 0 calc(100% - 1.8rem));
}
@media screen and (min-width: 768px) {
  .p-sec__content {
    min-height: 57rem;
    padding-top: 10rem;
    padding-bottom: 9rem;
    clip-path: polygon(0 0, 50% 3.8rem, 100% 0, 100% calc(100% - 3.8rem), 50% 100%, 0 calc(100% - 3.8rem));
  }
}
.p-sec__content.--mb-1 {
  padding-bottom: 7rem;
}
@media screen and (min-width: 768px) {
  .p-sec__content.--mb-1 {
    padding-bottom: 12rem;
  }
}
.p-sec--bg-2 .p-sec__content {
  background-image: url("../../images/common/bg_symbol_03_sp.png");
}
@media screen and (min-width: 768px) {
  .p-sec--bg-2 .p-sec__content {
    background-image: url("../../images/common/bg_symbol_03.png");
  }
}
.p-sec .ly-container {
  padding-block: 0;
}

.list-symbol-1 > li {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}
.list-symbol-1 > li:last-child {
  margin-bottom: 0;
}
.list-symbol-1 > li.sp-center {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .list-symbol-1 > li.sp-center {
    text-align: left;
  }
}

.list-symbol-2 {
  margin-top: -1rem;
  margin-bottom: 2rem;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .list-symbol-2 {
    margin-top: -2rem;
    margin-bottom: 2rem;
    padding-left: 14rem;
  }
}
.list-symbol-2 > li {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}
.list-symbol-2 > li:last-child {
  margin-bottom: 0;
}
.list-symbol-2 > li.sp-center {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .list-symbol-2 > li.sp-center {
    text-align: left;
  }
}

.c-img {
  margin-bottom: 1rem;
}
.c-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-ruby rt {
  font-size: 1rem;
}

.c-outline {
  position: relative;
}