@charset "utf-8";@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
body {
  -webkit-text-size-adjust: 100%;
}

body, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6,
pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, figure {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  line-height: 0;
}

figure {
  line-height: 1;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: "";
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input, textarea, select {
  *font-size: 100%;
}

legend {
  color: #000;
}

strong {
  font-weight: normal;
}

* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

/* cyrillic-ext */
body {
  -webkit-text-size-adjust: 100%;
  position: relative;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  html {
    font-size: 0.75vw;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1249px) {
  html {
    font-size: 0.8vw;
  }
}
@media screen and (min-width: 1250px) {
  html {
    font-size: 10px;
  }
}

div {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p, li, dt, dd, th, td, a {
  line-height: 1.8;
  font-weight: normal;
  color: #333;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.wrappar {
  overflow: hidden;
}

main {
  padding-top: 9.3rem;
  display: block;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 6.5rem;
  }
}
main.pt0 {
  padding-top: 0;
}

body.top_page main {
  padding-top: 0;
}

body.category_page:not(.category_under) main {
  padding-top: 15.8rem;
}
@media screen and (max-width: 767px) {
  body.category_page:not(.category_under) main {
    padding-top: 6.5rem;
  }
}

section {
  display: block;
}

.bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fadein {
  opacity: 0;
  transition: 1.3s;
}
@media screen and (min-width: 768px) {
  .fadein {
    transform: translate(0, 40px);
  }
}
@media screen and (max-width: 767px) {
  .fadein {
    transform: translate(0, 2vw);
  }
}
.fadein.active {
  opacity: 1;
  transform: translate(0, 0);
}

.form-error {
  margin-top: 8px;
}
.form-error p {
  display: block;
  padding: 8px;
  border-radius: 3px;
  color: #fff;
}

input[type=text], input[type=email], input[type=tel], input[type=date], input[type=number], textarea {
  background: transparent;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=date],
input[type=number],
textarea {
  width: 100%;
  padding: 0.7rem;
  color: #333;
  border: none;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=date]::placeholder,
input[type=number]::placeholder,
textarea::placeholder {
  color: #BABABA;
}
input[type=text]:input-placeholder,
input[type=email]:input-placeholder,
input[type=tel]:input-placeholder,
input[type=date]:input-placeholder,
input[type=number]:input-placeholder,
textarea:input-placeholder {
  color: #BABABA;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  box-sizing: content-box;
}

._form-radio {
  display: flex;
}
._form-radio input[type=radio] {
  display: none;
}
._form-radio label {
  width: 100%;
  display: flex;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  padding-left: 25px;
}
._form-radio label span {
  display: block;
  padding: 10px;
}
._form-radio label span:before, ._form-radio label span:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  transition: 0.3s;
}
._form-radio label span:before {
  width: 16px;
  height: 16px;
  top: 14px;
  left: 10px;
  border: 1px solid #bbb;
  background: #fff;
}
._form-radio label span:after {
  width: 10px;
  height: 10px;
  background: #bbb;
  top: 18px;
  left: 14px;
  transform: scale(0);
  transform-origin: 50%;
}
._form-radio input[type=radio]:checked + span:after {
  transform: scale(1);
}
._form-radio input[type=radio]:checked + span:before {
  border-color: #bbb;
}

._form-checkbox {
  display: flex;
  justify-content: space-between;
}
._form-checkbox input[type=checkbox] {
  display: none;
}
._form-checkbox label {
  width: 100%;
  padding-left: 25px;
  cursor: pointer;
  position: relative;
  display: block;
  border-radius: 3px;
  box-sizing: border-box;
}
._form-checkbox label:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 12px;
  left: 12px;
}
._form-checkbox label span {
  display: flex;
  align-items: center;
  padding: 10px;
}
._form-checkbox label span:before, ._form-checkbox label span:after {
  content: "";
  position: absolute;
  z-index: 2;
  transition: 0.3s;
}
._form-checkbox label span:before {
  width: 18px;
  height: 2px;
  top: 20px;
  left: 18px;
  transform: rotate(-45deg) scaleX(0);
  transform-origin: 0 100%;
}
._form-checkbox label span:after {
  width: 8px;
  height: 2px;
  top: 19px;
  left: 9px;
  transform: rotate(35deg) scaleX(0);
  transform-origin: 100% 100%;
}
._form-checkbox input[type=checkbox]:checked + span:before {
  transform: rotate(-45deg) scaleX(1);
}
._form-checkbox input[type=checkbox]:checked + span:after {
  transform: rotate(35deg) scaleX(1);
}

._form-select {
  overflow: hidden;
  *display: inline;
  *zoom: 1;
  position: relative;
  border-radius: 5px;
}
._form-select > select {
  width: 100%;
  padding: 18px 25px;
}
._form-select:after {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  right: 30px;
  top: calc(50% - 12px);
  transform: rotate(90deg);
}

.mw_wp_form_confirm ._form-select {
  box-shadow: none;
}
.mw_wp_form_confirm ._form-select:after {
  display: none;
}

input[type=button],
input[type=submit] {
  font-size: 1rem;
  background: none;
  text-align: center;
  color: #333;
  width: 100%;
  border: none;
}

.form-botton-back,
.form-botton-next {
  position: relative;
  overflow: hidden;
}
.form-botton-back:after,
.form-botton-next:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  top: calc(50% - 15px);
}
.form-botton-back input[type=submit],
.form-botton-next input[type=submit] {
  width: 100%;
  position: relative;
  z-index: 1;
}

.form-botton-back {
  background: #666;
  position: relative;
}
.form-botton-back:after {
  left: 30px;
  transform: scaleX(-1);
}
.form-botton-back:before {
  transition: 0.5s;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333;
  top: 0;
  left: 0;
  clip-path: circle(0% at 50% 50%);
}
.form-botton-back:hover:before {
  clip-path: circle(100% at 50% 50%);
}
.form-botton-back input[type=button] {
  width: 100%;
  height: 50px;
  position: relative;
  z-index: 1;
}

.form-botton-next:after {
  right: 30px;
}
.form-botton-next:before {
  transition: 0.5s;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333;
  top: 0;
  left: 0;
  clip-path: circle(0% at 50% 50%);
}
.form-botton-next:hover:before {
  clip-path: circle(100% at 50% 50%);
}
.form-botton-next input[type=submit] {
  height: 70px;
}

/* block */
.inner {
  width: 90vw;
  max-width: 110rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 85vw;
  }
}
.inner._w750 {
  max-width: 75rem;
}
.inner._w850 {
  max-width: 85rem;
}
.inner._w900 {
  max-width: 90rem;
}
.inner._w1000 {
  max-width: 100rem;
}

.page_content {
  padding-bottom: 10rem;
}

/* button */
.arw-maru {
  display: block;
  width: 3rem;
  height: 3rem;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .arw-maru {
    width: 2rem;
    height: 2rem;
  }
}
.arw-maru svg {
  width: 0.5rem;
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
}
.arw-maru._ur {
  border-color: #8e7ca9;
}
.arw-maru._ur svg.arw-s .cls-1 {
  stroke: #8e7ca9;
}

.btn a, .btn input, .btn button {
  display: block;
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: 5rem;
  width: 35rem;
  position: relative;
  background: #8e7ca9;
  line-height: 1;
  transition: opacity 0.2s;
  text-align: center;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.1em;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .btn a, .btn input, .btn button {
    width: 75vw;
  }
}
.btn a:hover, .btn input:hover, .btn button:hover {
  opacity: 0.6;
}
.btn a p, .btn input p, .btn button p {
  text-align: center;
  font-size: 1.3rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.1em;
}
.btn a svg, .btn input svg, .btn button svg {
  width: 0.45rem;
  height: auto;
  display: block;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .btn._small {
    text-align: center;
  }
}
.btn._small a {
  display: inline-block;
  width: auto;
  padding: 1.5rem 5rem 1.5rem 4.5rem;
}
.btn._b_white a {
  background-color: transparent;
  border: 1px solid #fff;
}
.btn._b_white a p {
  color: #fff;
}
.btn._min a {
  background-color: transparent;
  border: 1px solid #c68195;
  width: 13rem;
  padding: 0.5rem 0.5rem 0.6rem;
}
.btn._min a p {
  color: #c68195;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
.btn._min a svg {
  width: 0.45rem;
  height: auto;
  display: block;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}
.btn._min a svg.arw-s .cls-1 {
  stroke: #c68195;
}
.btn._en a p {
  font-size: 1.6rem;
  font-family: "Jost", sans-serif;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .btn._right a {
    margin-right: 0;
  }
}

/* title */
.sec_ttl {
  text-align: center;
}
.sec_ttl .en {
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0;
  font-family: parlare, sans-serif;
}
@media screen and (max-width: 767px) {
  .sec_ttl .en {
    font-size: 3rem;
  }
}
.sec_ttl .jp {
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-top: 2rem;
}
.sec_ttl._white .en, .sec_ttl._white .jp {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .sec_ttl._left {
    text-align: left;
  }
}
.sec_ttl._l {
  position: relative;
}
.sec_ttl._l .en {
  font-size: 7rem;
}
@media screen and (max-width: 767px) {
  .sec_ttl._l .en {
    font-size: 3rem;
  }
}

.page_ttl {
  padding-top: 13rem;
  padding-bottom: 13rem;
}
@media screen and (max-width: 767px) {
  .page_ttl {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
.page_ttl .sec_ttl .en {
  font-size: 3rem;
}
.page_ttl .sec_ttl .jp {
  font-size: 1.3rem;
}

/* txt */
.txt_p {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 2.46;
}
@media screen and (max-width: 767px) {
  .txt_p {
    line-height: 1.75;
  }
}
.txt_p._center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .txt_p._center {
    text-align: left;
  }
}

.page_lead .midashi {
  text-align: center;
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .page_lead .midashi {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
}

/* contact_area */
.contact_area {
  position: relative;
  text-align: center;
  padding: 21rem 0;
  background-image: url(/assets/images/common/contact_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .contact_area {
    padding: 15rem 0;
  }
}
.contact_area .contact_btn {
  width: 66rem;
  margin: 0 auto;
  display: block;
  border: 1px solid #fff;
  color: #fff;
  padding: 6.5rem 0 4.5rem;
  position: relative;
  transition: opacity 0.2s;
}
@media screen and (max-width: 767px) {
  .contact_area .contact_btn {
    width: 85vw;
  }
}
.contact_area .contact_btn:hover {
  opacity: 0.6;
}
.contact_area .contact_btn p {
  color: #fff;
}
.contact_area .contact_btn p.en {
  font-family: parlare, sans-serif;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .contact_area .contact_btn p.en {
    font-size: 3rem;
  }
}
.contact_area .contact_btn p.jp {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contact_area .contact_btn p.jp {
    font-size: 1.4rem;
    margin-top: 1.5rem;
  }
}
.contact_area .contact_btn .arw-maru {
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .contact_area .contact_btn .arw-maru {
    right: 2rem;
  }
}

/* info_list */
.info_list article {
  display: block;
  border-bottom: 1px solid #333;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .info_list article {
    padding-bottom: 3rem;
  }
}
.info_list article:nth-child(n+2) {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .info_list article:nth-child(n+2) {
    margin-top: 3rem;
  }
}
.info_list article a {
  display: flex;
  flex-wrap: wrap;
  transition: opacity 0.2s;
  position: relative;
  padding-right: 5rem;
}
.info_list article a:hover {
  opacity: 0.6;
}
.info_list article a p {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
.info_list article a p.category {
  margin-left: 1rem;
}
.info_list article a .post_ttl {
  width: 100%;
  font-size: 1.3rem;
  line-height: 1.45;
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
}
.info_list article a .arw-maru {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

/* other */
.logo a, .logo p {
  font-family: parlare, sans-serif;
  line-height: 1;
  letter-spacing: 0;
}

/* category common */
.cate_announcer {
  --cate_color1: #efd1d3;
  --cate_color2: #c68195;
}

.cate_uranai {
  --cate_color1: #d1bada;
  --cate_color2: #8e7ca9;
}

@media screen and (max-width: 767px) {
  .category_page section .sec_ttl:not(._normal) {
    position: static;
    text-align: left;
    display: flex;
    align-items: baseline;
  }
}
.category_page section .sec_ttl:not(._normal) .en {
  color: var(--cate_color1);
}
@media screen and (max-width: 767px) {
  .category_page section .sec_ttl:not(._normal) .en {
    margin-right: 2rem;
  }
}
.category_page section .sec_ttl:not(._normal) .jp {
  color: var(--cate_color1);
}
.category_page .btn:not(._b_white, ._min) a {
  background-color: var(--cate_color2);
}
.category_page .page_ttl > .sec_ttl .en, .category_page .page_ttl > .sec_ttl .jp {
  color: var(--cate_color2);
}

#CATEGORY-MV {
  position: relative;
  display: flex;
}
@media screen and (max-width: 767px) {
  #CATEGORY-MV {
    display: block;
  }
}
#CATEGORY-MV .ttl {
  position: absolute;
  bottom: 3rem;
  right: 7rem;
}
@media screen and (max-width: 767px) {
  #CATEGORY-MV .ttl {
    bottom: auto;
    right: 7.5vw;
    top: 20rem;
  }
}
#CATEGORY-MV .ttl h1 {
  text-align: right;
}
#CATEGORY-MV .ttl h1 p {
  line-height: 1;
  color: var(--cate_color1);
}
#CATEGORY-MV .ttl h1 p.en {
  font-family: parlare, sans-serif;
  font-size: 8rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  #CATEGORY-MV .ttl h1 p.en {
    font-size: 3rem;
  }
}
#CATEGORY-MV .ttl h1 p.jp {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  #CATEGORY-MV .ttl h1 p.jp {
    font-size: 1.3rem;
    margin-top: 1rem;
  }
}
#CATEGORY-MV figure {
  width: calc(100% - 25rem);
}
@media screen and (max-width: 767px) {
  #CATEGORY-MV figure {
    width: 88vw;
  }
}
#CATEGORY-MV .txt_area {
  width: 25rem;
  display: flex;
  justify-content: center;
  padding-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  #CATEGORY-MV .txt_area {
    width: 100%;
    padding-top: 3rem;
    display: block;
  }
}
#CATEGORY-MV .txt_area h2 {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--cate_color1);
}
@media screen and (max-width: 767px) {
  #CATEGORY-MV .txt_area h2 {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  #CATEGORY-MV .txt_area h2 {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}

#CATEGORY-INFO {
  margin-top: 14rem;
}
@media screen and (max-width: 767px) {
  #CATEGORY-INFO {
    margin-top: 5rem;
  }
}
#CATEGORY-INFO .inner:not(.ur_contact) {
  border: 1px solid var(--cate_color1);
  padding: 4.5rem;
}
@media screen and (min-width: 768px) {
  #CATEGORY-INFO .inner:not(.ur_contact) {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  #CATEGORY-INFO .inner:not(.ur_contact) {
    padding: 7.5vw;
  }
}
@media screen and (min-width: 768px) {
  #CATEGORY-INFO .inner:not(.ur_contact) .ttl {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  #CATEGORY-INFO .inner:not(.ur_contact) .ttl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
  }
}
#CATEGORY-INFO .inner:not(.ur_contact) .ttl h2 {
  color: var(--cate_color2);
  font-family: parlare, sans-serif;
  font-size: 2rem;
  letter-spacing: 0;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  #CATEGORY-INFO .inner:not(.ur_contact) .ttl h2 {
    font-size: 1.8rem;
  }
}
#CATEGORY-INFO .inner:not(.ur_contact) .ttl .btn._min a {
  display: block;
  margin-left: 0;
  border-color: var(--cate_color2);
}
#CATEGORY-INFO .inner:not(.ur_contact) .ttl .btn._min a p {
  color: var(--cate_color2);
}
#CATEGORY-INFO .inner:not(.ur_contact) .ttl .btn._min a svg.arw-s .cls-1 {
  stroke: var(--cate_color2);
}
@media screen and (min-width: 768px) {
  #CATEGORY-INFO .inner:not(.ur_contact) .content {
    width: 70%;
  }
}
#CATEGORY-INFO .inner:not(.ur_contact) .content article {
  display: block;
}
#CATEGORY-INFO .inner:not(.ur_contact) .content article a {
  display: flex;
  flex-wrap: wrap;
  transition: opacity 0.2s;
  position: relative;
  padding-right: 5rem;
}
@media screen and (max-width: 767px) {
  #CATEGORY-INFO .inner:not(.ur_contact) .content article a {
    padding-right: 3rem;
    display: block;
  }
}
#CATEGORY-INFO .inner:not(.ur_contact) .content article a:hover {
  opacity: 0.6;
}
#CATEGORY-INFO .inner:not(.ur_contact) .content article a p {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--cate_color2);
}
#CATEGORY-INFO .inner:not(.ur_contact) .content article a p.category {
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  #CATEGORY-INFO .inner:not(.ur_contact) .content article a p.category {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}
#CATEGORY-INFO .inner:not(.ur_contact) .content article a .post_ttl {
  width: 100%;
  font-size: 1.3rem;
  line-height: 1.45;
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
  color: var(--cate_color2);
}
#CATEGORY-INFO .inner:not(.ur_contact) .content article a .arw-maru {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border-color: var(--cate_color2);
}
#CATEGORY-INFO .inner:not(.ur_contact) .content article a .arw-maru svg.arw-s .cls-1 {
  stroke: var(--cate_color2);
}

#CATEGORY-PROFILE {
  margin-top: 14rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  #CATEGORY-PROFILE {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
#CATEGORY-PROFILE .inner figure {
  width: 48rem;
}
@media screen and (max-width: 767px) {
  #CATEGORY-PROFILE .inner figure {
    width: 100%;
    margin-left: -2rem;
  }
}
#CATEGORY-PROFILE .inner .txt_area {
  width: 67.6rem;
  margin-left: auto;
  margin-top: -30rem;
  position: relative;
  z-index: 5;
  padding: 8rem 8.5rem;
  background-color: #faf7f1;
}
@media screen and (max-width: 767px) {
  #CATEGORY-PROFILE .inner .txt_area {
    width: 100%;
    margin-top: -2rem;
    margin-right: -2rem;
    padding: 10vw 7.5vw;
  }
}
#CATEGORY-PROFILE .inner .txt_area .sec_ttl {
  position: absolute;
  top: 0;
  left: 1rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  #CATEGORY-PROFILE .inner .txt_area .sec_ttl {
    transform: none;
    left: 0;
    position: static;
    margin-left: -1rem;
    margin-bottom: 2rem;
  }
}
#CATEGORY-PROFILE .inner .txt_area .sec_ttl .jp {
  position: absolute;
  right: 0;
  top: -15%;
  transform: translateX(110%);
}
@media screen and (max-width: 767px) {
  #CATEGORY-PROFILE .inner .txt_area .sec_ttl .jp {
    position: static;
    transform: none;
  }
}
#CATEGORY-PROFILE .inner .txt_area .txt:not(._first) {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  #CATEGORY-PROFILE .inner .txt_area .txt:not(._first) {
    margin-top: 3rem;
  }
}
#CATEGORY-PROFILE .inner .txt_area .txt .ttl {
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 2.46;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  #CATEGORY-PROFILE .inner .txt_area .txt .ttl {
    line-height: 1.75;
  }
}
#CATEGORY-PROFILE .inner .txt_area .txt .ttl .txt_p {
  display: inline-block;
  margin-left: 1.5rem;
}

.category_content {
  background-color: #faf7f1;
  padding: 9rem 0;
}
@media screen and (max-width: 767px) {
  .category_content {
    padding: 5rem 0;
  }
}
.category_content .inner {
  position: relative;
}
.category_content .inner .sec_ttl {
  position: absolute;
  left: 0;
  top: 10rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .category_content .inner .sec_ttl {
    position: relative;
    top: 0;
  }
}
.category_content .inner .content {
  width: 55rem;
  margin-left: auto;
  position: relative;
  padding: 9rem 0 8rem;
}
@media screen and (max-width: 767px) {
  .category_content .inner .content {
    width: 92.5vw;
    padding: 10vw 7.5vw 9rem 7.5vw;
    background-color: #fff;
    margin-top: 3rem;
  }
}
.category_content .inner .content:after {
  content: "";
  display: block;
  width: calc(100% + 50vw - 50rem + 23rem);
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: calc((50vw - 50rem) * -1);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .category_content .inner .content:after {
    display: none;
  }
}
.category_content .inner .content .content_inner {
  position: relative;
  z-index: 5;
}
.category_content .inner .content .content_inner .btn {
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .category_content .inner .content .content_inner .btn {
    margin-top: 5rem;
  }
}
.category_content .inner figure {
  position: relative;
  z-index: 15;
  width: calc(28.4rem + 50vw - 50rem);
  margin-top: -32rem;
  margin-left: calc((50vw - 50rem) * -1);
}
@media screen and (max-width: 767px) {
  .category_content .inner figure {
    width: 92.5vw;
    margin: -3rem auto 0 -7.5vw;
  }
}

/*
@include animation(animationSample 1.2s ease 0.15s);
*/
.anime1 {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  opacity: 1;
}
.anime1.active {
  animation: animeTxt1 1.2s ease 0.2s;
  -moz-animation: animeTxt1 1.2s ease 0.2s;
  animation: animeTxt1 1.2s ease 0.2s;
  animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes animeTxt1 {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    opacity: 1;
  }
  100% {
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    opacity: 1;
  }
}
@-moz-keyframes animeTxt1 {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    opacity: 1;
  }
  100% {
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    opacity: 1;
  }
}
@keyframes animeTxt1 {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    opacity: 1;
  }
  100% {
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    opacity: 1;
  }
}
.anime2 {
  clip-path: circle(0% at 50% 50%);
  opacity: 1;
}
.anime2.active {
  animation: animeTxt2 1.2s ease 0.2s;
  -moz-animation: animeTxt2 1.2s ease 0.2s;
  animation: animeTxt2 1.2s ease 0.2s;
  animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes animeTxt2 {
  0% {
    clip-path: circle(0% at 50% 50%);
    opacity: 1;
  }
  100% {
    clip-path: circle(70.7% at 50% 50%);
    opacity: 1;
  }
}
@-moz-keyframes animeTxt2 {
  0% {
    clip-path: circle(0% at 50% 50%);
    opacity: 1;
  }
  100% {
    clip-path: circle(70.7% at 50% 50%);
    opacity: 1;
  }
}
@keyframes animeTxt2 {
  0% {
    clip-path: circle(0% at 50% 50%);
    opacity: 1;
  }
  100% {
    clip-path: circle(70.7% at 50% 50%);
    opacity: 1;
  }
}
.box-anime1 img, .box-anime1:after {
  clip-path: polygon(54% 34%, 17% 43%, 31% 76%, 75% 61%);
  clip-path: circle(10.7% at 50% 50%);
  opacity: 0;
}
.box-anime1.active img {
  animation: anime1 1s ease 0.2s;
  -moz-animation: anime1 1s ease 0.2s;
  animation: anime1 1s ease 0.2s;
  animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}
.box-anime1.active:after {
  animation: anime1 1s ease 0s;
  -moz-animation: anime1 1s ease 0s;
  animation: anime1 1s ease 0s;
  animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes anime1 {
  0% {
    transform: translateX(-30px);
    clip-path: polygon(54% 34%, 17% 43%, 31% 76%, 75% 61%);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    opacity: 1;
  }
}
@-moz-keyframes anime1 {
  0% {
    transform: translateX(-30px);
    clip-path: polygon(54% 34%, 17% 43%, 31% 76%, 75% 61%);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    opacity: 1;
  }
}
@keyframes anime1 {
  0% {
    transform: translateX(-30px);
    clip-path: polygon(54% 34%, 17% 43%, 31% 76%, 75% 61%);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    opacity: 1;
  }
}
.box-anime2 img, .box-anime2:after {
  clip-path: circle(0% at 50% 50%);
  opacity: 0;
}

.box-anime2.active img {
  animation: animeBox2 1s ease 0.2s;
  -moz-animation: animeBox2 1s ease 0.2s;
  animation: animeBox2 1s ease 0.2s;
  animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}
.box-anime2.active:after {
  animation: animeBox2 1s ease 0s;
  -moz-animation: animeBox2 1s ease 0s;
  animation: animeBox2 1s ease 0s;
  animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes animeBox2 {
  0% {
    transform: translateX(50px);
    clip-path: circle(0% at 50% 50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    clip-path: circle(100% at 50% 50%);
    opacity: 1;
  }
}
@-moz-keyframes animeBox2 {
  0% {
    transform: translateX(50px);
    clip-path: circle(0% at 50% 50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    clip-path: circle(100% at 50% 50%);
    opacity: 1;
  }
}
@keyframes animeBox2 {
  0% {
    transform: translateX(50px);
    clip-path: circle(0% at 50% 50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    clip-path: circle(100% at 50% 50%);
    opacity: 1;
  }
}
.box-anime3 img, .box-anime3:after {
  clip-path: polygon(50% 31%, 51% 32%, 49% 32%, 50% 32%, 51% 32%);
  opacity: 0;
}

.box-anime3.active img {
  animation: animeBox3 1s ease 0.2s;
  -moz-animation: animeBox3 1s ease 0.2s;
  animation: animeBox3 1s ease 0.2s;
  animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}
.box-anime3.active:after {
  animation: animeBox3 1s ease 0s;
  -moz-animation: animeBox3 1s ease 0s;
  animation: animeBox3 1s ease 0s;
  animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes animeBox3 {
  0% {
    transform: translateX(50px);
    clip-path: polygon(50% 31%, 51% 32%, 49% 32%, 50% 32%, 51% 32%);
    opacity: 0;
  }
  50% {
    transform: translateX(0px);
    clip-path: polygon(51% 17%, 82% 34%, 74% 76%, 30% 78%, 33% 46%);
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
    clip-path: polygon(50% 0%, 100% 0, 100% 100%, 0 100%, 0 0);
    opacity: 1;
  }
}
@-moz-keyframes animeBox3 {
  0% {
    transform: translateX(50px);
    clip-path: polygon(50% 31%, 51% 32%, 49% 32%, 50% 32%, 51% 32%);
    opacity: 0;
  }
  50% {
    transform: translateX(0px);
    clip-path: polygon(51% 17%, 82% 34%, 74% 76%, 30% 78%, 33% 46%);
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
    clip-path: polygon(50% 0%, 100% 0, 100% 100%, 0 100%, 0 0);
    opacity: 1;
  }
}
@keyframes animeBox3 {
  0% {
    transform: translateX(50px);
    clip-path: polygon(50% 31%, 51% 32%, 49% 32%, 50% 32%, 51% 32%);
    opacity: 0;
  }
  50% {
    transform: translateX(0px);
    clip-path: polygon(51% 17%, 82% 34%, 74% 76%, 30% 78%, 33% 46%);
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
    clip-path: polygon(50% 0%, 100% 0, 100% 100%, 0 100%, 0 0);
    opacity: 1;
  }
}
.ml-slideIn {
  position: relative;
  display: inline-block;
}
.ml-slideIn span {
  z-index: 1;
  display: block;
  position: relative;
  padding: 5px 0px;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.ml-slideIn i.front, .ml-slideIn i.back {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #f5f5f5;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.ml-slideIn i.front {
  background: #69D3CB;
  z-index: 2;
}

.txt-anime4 {
  position: relative;
  display: inline-block;
}
.txt-anime4 span {
  z-index: 1;
  display: block;
  position: relative;
  padding: 5px 12px;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.txt-anime4 i.front, .txt-anime4 i.back {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #f5f5f5;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.txt-anime4 i.front {
  background: #69D3CB;
  z-index: 2;
}

.txt-anime4.active span {
  animation: anime4 0.3s ease 0.8s;
  -moz-animation: anime4 0.3s ease 0.8s;
  animation: anime4 0.3s ease 0.8s;
  animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}
.txt-anime4.active i.front {
  animation: anime41 0.8s ease 0.5s;
  -moz-animation: anime41 0.8s ease 0.5s;
  animation: anime41 0.8s ease 0.5s;
  animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}
.txt-anime4.active i.back {
  animation: anime4 0.8s ease 0.2s;
  -moz-animation: anime4 0.8s ease 0.2s;
  animation: anime4 0.8s ease 0.2s;
  animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes anime4 {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@-moz-keyframes anime4 {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes anime4 {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@-webkit-keyframes anime41 {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  50% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
}
@-moz-keyframes anime41 {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  50% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
}
@keyframes anime41 {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  50% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
}
@media screen and (min-width: 1025px) and (max-width: 1249px) {
  .pc-none {
    display: none !important;
  }
}
@media screen and (min-width: 1250px) {
  .pc-none {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .tb-none {
    display: none !important;
  }
}

:root {
  --header_color: #8e7ca9;
  --header_color2: #8e7ca9;
}

header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 2rem 10rem 3rem 3rem;
  background: #fff;
  transition: background-color 0.2s;
}
@media screen and (max-width: 767px) {
  header {
    padding: 3rem 2rem;
  }
}
header .logo {
  position: absolute;
  top: 2.3rem;
  left: 3rem;
}
@media screen and (max-width: 767px) {
  header .logo {
    top: 2rem;
    left: 2rem;
  }
}
header .logo a {
  color: var(--header_color);
  display: block;
  transition: opacity 0.2s;
  font-size: 1.6rem;
  line-height: 1;
  padding-top: 1rem;
}
header .logo a:hover {
  opacity: 0.6;
}
header .logo a span {
  font-size: 1.2rem;
  display: block;
  margin-top: 1rem;
}
header .logo._cate {
  top: 1.5rem;
}
@media screen and (max-width: 767px) {
  header .logo._cate {
    top: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  header .logo._cate a {
    font-size: 1.3rem;
  }
}
header .logo._cate a span {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  header .logo._cate a span {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}
header > nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  header > nav {
    display: none;
  }
}
header > nav > ul {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
header > nav > ul li {
  line-height: 1;
}
header > nav > ul li:not(:first-child) {
  margin-left: 2rem;
}
@media screen and (min-width: 1025px) and (max-width: 1350px) {
  header > nav > ul li:not(:first-child) {
    margin-left: 2rem;
  }
}
header > nav > ul li:not(:first-child):before {
  content: "/";
  display: inline-block;
  margin-right: 2rem;
  color: var(--header_color);
}
header > nav > ul li a {
  color: var(--header_color);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  transition: opacity 0.2s;
  line-height: 1;
}
@media screen and (min-width: 1025px) and (max-width: 1350px) {
  header > nav > ul li a {
    font-size: 1.2rem;
  }
}
header > nav > ul li a:hover {
  opacity: 0.6;
}

/* menu-trigger */
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.2s;
  box-sizing: border-box;
}

.menu-trigger {
  position: fixed;
  z-index: 15000;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
  width: 3.7rem;
  height: 2.4rem;
  touch-action: manipulation;
}
@media screen and (min-width: 768px) {
  .menu-trigger {
    top: 2.5rem;
    right: 2.5rem;
  }
}
.menu-trigger span {
  line-height: 1;
  display: block;
  position: absolute;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  height: 2px;
  background: var(--header_color);
}
.menu-trigger span:nth-of-type(1) {
  top: 0%;
}
.menu-trigger span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0%;
}

/* menu-trigger エフェクト */
.menu-trigger.active span {
  background: var(--header_color2);
  transform-origin: center;
  top: 50%;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateX(-50%) translateY(50%) rotate(-35deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateX(-50%) translateY(-50%) rotate(35deg);
}

.top_page._top {
  --header_color: #fff;
}
.top_page._top header {
  background-color: transparent;
}

.cate_announcer {
  --header_color: #c68195;
}

footer {
  padding: 8.5rem 7rem 5rem;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 5rem 3.5rem 3.5rem;
  }
}
@media screen and (min-width: 768px) {
  footer .top {
    display: flex;
    justify-content: space-between;
  }
}
footer .top .left .ttl {
  display: block;
  transition: opacity 0.2s;
}
footer .top .left .ttl:hover {
  opacity: 0.6;
}
footer .top .left .ttl .main {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
footer .top .left .ttl .sub {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  footer .top .left .ttl .sub {
    margin-top: 0.8rem;
  }
}
@media screen and (min-width: 768px) {
  footer .top .left .sns {
    margin-top: 3rem;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  footer .top .left .sns {
    margin-top: 5rem;
  }
}
footer .top .left .sns .box {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  footer .top .left .sns .box:nth-child(n+2) {
    padding-left: 2rem;
    border-left: 1px solid #333;
    margin-left: 2rem;
  }
}
@media screen and (max-width: 767px) {
  footer .top .left .sns .box:nth-child(n+2) {
    margin-top: 2rem;
  }
}
footer .top .left .sns .box p {
  font-size: 1.2rem;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  footer .top .left .sns .box p {
    width: 30vw;
  }
}
footer .top .left .sns .box .icon {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
footer .top .left .sns .box .icon a {
  display: block;
  width: 3rem;
  transition: opacity 0.2s;
}
footer .top .left .sns .box .icon a:hover {
  opacity: 0.6;
}
footer .top .left .sns .box .icon a:nth-child(n+2) {
  margin-left: 1.5rem;
}
footer .top .left .sns .box .icon a svg {
  display: block;
}
@media screen and (min-width: 768px) {
  footer .top .right {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  footer .top .right {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 768px) {
  footer .top .right ul:nth-child(n+2) {
    margin-left: 3rem;
    padding-left: 3rem;
    border-left: 1px solid #333;
  }
}
@media screen and (max-width: 767px) {
  footer .top .right ul:nth-child(n+2) {
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid #333;
  }
}
footer .top .right ul li a {
  font-size: 1.3rem;
  transition: opacity 0.2s;
  line-height: 2.3;
  letter-spacing: 0.1em;
  display: inline-block;
}
footer .top .right ul li a:hover {
  opacity: 0.6;
}
footer .top .right ul li.ttl {
  margin-bottom: 0.5rem;
}
footer .top .right ul li.ttl a {
  font-size: 1.6rem;
}
footer .bottom {
  width: 100%;
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  footer .bottom {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
footer .bottom .nav {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
footer .bottom .copy {
  line-height: 1;
}
@media screen and (max-width: 767px) {
  footer .bottom .copy {
    margin-top: 3rem;
  }
}
footer .bottom .copy small {
  display: block;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.slide_menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 100vw;
  height: 100vh;
  transition: 0.2s;
  z-index: 1010;
  background: #faf7f1;
}
@media screen and (min-width: 768px) {
  .slide_menu {
    max-width: 45rem;
  }
}
.slide_menu.--open {
  transform: translateX(0);
}
.slide_menu .slide_menu_inner {
  width: 100%;
  height: 100vh;
  overflow: auto;
  padding: 8rem 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .slide_menu .slide_menu_inner {
    padding: 8.5rem 3rem 3.5rem;
  }
}
.slide_menu .logo {
  position: absolute;
  top: 3rem;
  left: 2rem;
}
.slide_menu .logo a {
  color: var(--header_color2);
  display: block;
  transition: opacity 0.2s;
  font-size: 1.6rem;
}
.slide_menu .logo a:hover {
  opacity: 0.6;
}
.slide_menu .nav_content:nth-child(n+2) {
  margin-top: 3rem;
}
.slide_menu .nav_content ul:nth-child(n+2) {
  margin-top: 2rem;
}
.slide_menu .nav_content ul li {
  font-size: 1.4rem;
  line-height: 1.92;
}
@media screen and (max-width: 767px) {
  .slide_menu .nav_content ul li {
    line-height: 2.5;
  }
}
.slide_menu .nav_content ul li a {
  font-size: 1.4rem;
  transition: opacity 0.2s;
}
@media screen and (max-width: 767px) {
  .slide_menu .nav_content ul li a {
    font-size: 1.6rem;
  }
}
.slide_menu .nav_content ul li a:hover {
  opacity: 0.6;
}
.slide_menu .nav_content ul li.ttl {
  margin-bottom: 0.8rem;
  border-bottom: 1px solid;
}
.slide_menu .nav_content ul li.ttl a {
  font-size: 1.8rem;
  display: block;
}
.slide_menu .nav_content ul li.ttl._an {
  border-color: #c68195;
}
.slide_menu .nav_content ul li.ttl._an a {
  color: #c68195;
}
.slide_menu .nav_content ul li.ttl._ur {
  border-color: #8e7ca9;
}
.slide_menu .nav_content ul li.ttl._ur a {
  color: #8e7ca9;
}
.slide_menu .nav_content ul li.sns {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}
.slide_menu .nav_content ul li.sns a {
  display: block;
  width: 3rem;
}
.slide_menu .nav_content ul li.sns a:nth-child(n+2) {
  margin-left: 1.5rem;
}
.slide_menu .nav_content ul li.sns a svg {
  width: 100%;
  height: auto;
}
.slide_menu .nav_content ul li.sns._an a svg path {
  fill: #c68195;
}
.slide_menu .nav_content ul li.sns._ur a svg path {
  fill: #8e7ca9;
}
.slide_menu .nav_content .small {
  margin-top: 2rem;
}
.slide_menu .nav_content .small a {
  font-size: 1.3rem;
  transition: opacity 0.2s;
}
.slide_menu .nav_content .small a:hover {
  opacity: 0.6;
}
.slide_menu .sp_btnarea {
  margin-top: 5rem;
}
.slide_menu .sp_btnarea .btn {
  margin-top: 1.5rem;
}
.slide_menu .btn._green {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .slide_menu .btn._green {
    margin-top: 1.5rem;
  }
}
.slide_menu .btn._green a {
  width: 100%;
}
.slide_menu .btn._pink_wt {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .slide_menu .btn._pink_wt {
    margin-top: 1.5rem;
  }
}
.slide_menu .btn._pink_wt a {
  width: 100%;
}
.slide_menu .nav_bottom {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .slide_menu .nav_bottom {
    flex-direction: column-reverse;
    margin-top: 1.5rem;
  }
}
.slide_menu .nav_bottom .sns {
  width: 10.6rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .slide_menu .nav_bottom .sns {
    margin-top: 3rem;
  }
}
.slide_menu .nav_bottom .sns li {
  width: 4.4rem;
}
.slide_menu .nav_bottom .sns li a {
  transition: opacity 0.2s;
}
.slide_menu .nav_bottom .sns li a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .slide_menu .nav_bottom .btn {
    width: 100%;
  }
  .slide_menu .nav_bottom .btn a {
    width: 100%;
  }
}
.slide_menu.slide_menu_recruit .slide_menu_inner {
  padding: 13rem 5rem;
}
@media screen and (max-width: 767px) {
  .slide_menu.slide_menu_recruit .slide_menu_inner {
    padding: 8.5rem 3rem 3.5rem;
  }
}
@media screen and (min-width: 768px) {
  .slide_menu.slide_menu_recruit .nav_content > li p *:before {
    width: 1em;
    height: 1em;
    background-image: none;
    background-color: #5aae51;
    border-radius: 50%;
  }
  .slide_menu.slide_menu_recruit .nav_content > li p a:hover {
    color: #5aae51;
  }
  .slide_menu.slide_menu_recruit .nav_content > li ul li a:hover {
    color: #5aae51;
  }
}
@media screen and (min-width: 768px) {
  .slide_menu.slide_menu_recruit .nav_bottom {
    margin-top: 5rem;
  }
}

#OVL {
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: 0.2s;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
}
#OVL.--open {
  pointer-events: auto;
  opacity: 1;
}

#container {
  margin: 20px;
  width: 100%;
  height: 3px;
}

#LOADER {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 9999;
  top: 0;
  display: none;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  #LOADER .opening-inner {
    width: 250px;
  }
}
@media screen and (max-width: 767px) {
  #LOADER .opening-inner {
    width: 40%;
  }
}

.body-lock {
  width: 100%;
  height: 100vh;
}

/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: #fff;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

#colorbox {
  outline: 0;
}

#cboxTopLeft {
  width: 25px;
  height: 25px;
  background: url(images/border1.png) no-repeat 0 0;
}

#cboxTopCenter {
  height: 25px;
  background: url(images/border1.png) repeat-x 0 -50px;
}

#cboxTopRight {
  width: 25px;
  height: 25px;
  background: url(images/border1.png) no-repeat -25px 0;
}

#cboxBottomLeft {
  width: 25px;
  height: 25px;
  background: url(images/border1.png) no-repeat 0 -25px;
}

#cboxBottomCenter {
  height: 25px;
  background: url(images/border1.png) repeat-x 0 -75px;
}

#cboxBottomRight {
  width: 25px;
  height: 25px;
  background: url(images/border1.png) no-repeat -25px -25px;
}

#cboxMiddleLeft {
  width: 25px;
  background: url(images/border2.png) repeat-y 0 0;
}

#cboxMiddleRight {
  width: 25px;
  background: url(images/border2.png) repeat-y -25px 0;
}

#cboxContent {
  background: #fff;
  overflow: hidden;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxLoadedContent {
  margin-bottom: 20px;
}

#cboxTitle {
  position: absolute;
  bottom: 0px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #999;
}

#cboxCurrent {
  position: absolute;
  bottom: 0px;
  left: 100px;
  color: #999;
}

#cboxLoadingOverlay {
  background: #fff url(images/loading.gif) no-repeat 5px 5px;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0;
}

#cboxSlideshow {
  position: absolute;
  bottom: 0px;
  right: 42px;
  color: #444;
}

#cboxPrevious {
  position: absolute;
  bottom: 0px;
  left: 0;
  color: #444;
}

#cboxNext {
  position: absolute;
  bottom: 0px;
  left: 63px;
  color: #444;
}

#cboxClose {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  color: #444;
}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}

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

MV

**************************************************/
.top_mv {
  position: relative;
}
.top_mv .mv_slider_wrap {
  position: relative;
  z-index: 1;
}
.top_mv .mv_slider_wrap .mv_slider .item figure {
  display: block;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .top_mv .mv_slider_wrap .mv_slider .item figure {
    height: 100vw;
  }
}
.top_mv .mv_txt {
  position: absolute;
  z-index: 5;
  bottom: 6rem;
  left: 6rem;
}
@media screen and (max-width: 767px) {
  .top_mv .mv_txt {
    bottom: 2rem;
    left: 2rem;
  }
}
.top_mv .mv_txt h1 p {
  color: #fff;
  font-weight: 400;
}
.top_mv .mv_txt h1 p.main {
  font-size: 7rem;
  font-family: parlare, sans-serif;
  line-height: 1;
  letter-spacing: 0;
  margin-left: -1rem;
}
@media screen and (max-width: 767px) {
  .top_mv .mv_txt h1 p.main {
    font-size: 3rem;
    margin-left: -0.5rem;
  }
}
.top_mv .mv_txt h1 p.sub {
  font-size: 3rem;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.2em;
  line-height: 1;
  font-weight: 300;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top_mv .mv_txt h1 p.sub {
    font-size: 2rem;
  }
}
.top_mv .mv_txt h1 p.copy {
  font-size: 1.3rem;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.2em;
  line-height: 1.75;
  font-weight: 300;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top_mv .mv_txt h1 p.copy {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-top: 1rem;
  }
}

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

TOP-CATEGORY

**************************************************/
.top_category {
  padding: 7rem 7rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top_category {
    display: block;
    padding: 5rem 3.5rem;
  }
}
.top_category .category_box {
  width: 48%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top_category .category_box {
    width: 100%;
  }
  .top_category .category_box:nth-child(n+2) {
    margin-top: 3rem;
  }
}
.top_category .category_box .category_btn {
  display: block;
  position: relative;
  padding: 6rem 0 7rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .top_category .category_box .category_btn {
    padding: 4rem 0;
  }
}
.top_category .category_box .category_btn:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0.5rem;
  left: 0.5rem;
  border-width: 1px;
  border-style: solid;
}
.top_category .category_box .category_btn h3 {
  font-family: parlare, sans-serif;
  font-size: 2rem;
  letter-spacing: 0;
  line-height: 1;
}
.top_category .category_box .category_btn p {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 2rem;
}
.top_category .category_box .category_btn .arw_w {
  display: block;
  width: 7.5rem;
  height: 0.6rem;
  position: absolute;
  top: 50%;
  left: 100%;
  z-index: 5;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .top_category .category_box .category_btn .arw_w {
    width: 5rem;
  }
}
.top_category .category_box .category_btn._an {
  background: #efd1d3;
}
.top_category .category_box .category_btn._an:before {
  border-color: #efd1d3;
}
.top_category .category_box .category_btn._an h3 {
  color: #c68195;
}
.top_category .category_box .category_btn._an .arw_w .cls-1 {
  stroke: #c68195;
}
.top_category .category_box .category_btn._ur {
  background: #d1bada;
}
.top_category .category_box .category_btn._ur:before {
  border-color: #d1bada;
}
.top_category .category_box .category_btn._ur h3 {
  color: #8e7ca9;
}
.top_category .category_box .category_btn._ur .arw_w .cls-1 {
  stroke: #8e7ca9;
}
.top_category .category_box .category_btn:hover {
  opacity: 0.6;
}
.top_category .category_box .copy {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 2.3;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .top_category .category_box .copy {
    margin-top: 2rem;
    text-align: left;
    line-height: 1.75;
  }
}

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

TOP-INFORMATION

**************************************************/
.top_info {
  background-color: #c68195;
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .top_info {
    padding: 7rem 0 5rem;
  }
}
.top_info .top_info_inner {
  display: flex;
  justify-content: space-between;
  width: min(85vw, 1360px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top_info .top_info_inner {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .top_info .top_info_inner .left {
    width: 28rem;
    margin-right: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .top_info .top_info_inner .left {
    margin-bottom: 3rem;
  }
}
.top_info .top_info_inner .left .btn {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .top_info .top_info_inner .left .btn {
    margin-top: 3rem;
  }
}
.top_info .top_info_inner .right {
  background-color: #faf7f1;
  padding: 5rem;
}
@media screen and (min-width: 768px) {
  .top_info .top_info_inner .right {
    width: 102rem;
  }
}
@media screen and (max-width: 767px) {
  .top_info .top_info_inner .right {
    padding: 3rem;
  }
}

.service_list li {
  position: relative;
}
.service_list li:nth-child(n+2) {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .service_list li {
    padding-left: 4rem;
  }
}
.service_list li .num {
  position: absolute;
  left: -9rem;
  top: -2.2rem;
  width: 7rem;
}
@media screen and (max-width: 767px) {
  .service_list li .num {
    width: 4rem;
    left: -1rem;
    top: 0;
  }
}
.service_list li .ttl {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  padding-bottom: 1rem;
  border-bottom: 1px solid #333;
  margin-bottom: 3rem;
}

#GALLERY {
  background-color: #faf7f1;
  padding: 9rem 0 15rem;
}
@media screen and (max-width: 767px) {
  #GALLERY {
    padding: 1rem 0 5rem;
  }
}
#GALLERY .inner {
  position: relative;
}
#GALLERY .inner .sec_ttl {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(35%, -150%);
}
@media screen and (min-width: 768px) and (max-width: 1450px) {
  #GALLERY .inner .sec_ttl {
    transform: translate(3rem, -150%);
  }
}
@media screen and (max-width: 767px) {
  #GALLERY .inner .sec_ttl {
    position: static;
    transform: none;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 768px) {
  #GALLERY .inner .sec_ttl .jp {
    position: absolute;
    top: -2rem;
    right: 0;
    transform: translateY(-100%);
  }
}
#GALLERY .inner .content {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  #GALLERY .inner .content .item {
    width: 23%;
    margin-right: 2.666%;
  }
  #GALLERY .inner .content .item:nth-child(4n) {
    margin-right: 0;
  }
  #GALLERY .inner .content .item:nth-child(n+5) {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  #GALLERY .inner .content .item {
    width: 49%;
    margin-right: 2%;
  }
  #GALLERY .inner .content .item:nth-child(2n) {
    margin-right: 0;
  }
  #GALLERY .inner .content .item:nth-child(n+3) {
    margin-top: 1rem;
  }
}
#GALLERY .inner .content .item a {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
#GALLERY .inner .content .item a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
}
#GALLERY .inner .content .item a:hover {
  opacity: 1;
}
#GALLERY .inner .content .item a:hover img {
  transform: scale(1.05);
}

#SERVICE-LIST {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  #SERVICE-LIST {
    margin-top: 5rem;
  }
}
#SERVICE-LIST .inner {
  background-color: #faf7f1;
  padding: 9rem 7.5rem 7rem 16rem;
}
@media screen and (max-width: 767px) {
  #SERVICE-LIST .inner {
    padding: 10vw 7.5vw;
  }
}

#WORKS {
  padding-bottom: 16rem;
}
@media screen and (max-width: 767px) {
  #WORKS {
    padding-bottom: 7rem;
  }
}
#WORKS .work_block {
  margin-top: 15rem;
}
@media screen and (max-width: 767px) {
  #WORKS .work_block {
    margin-top: 7rem;
  }
}
#WORKS .work_block .block_ttl {
  text-align: center;
  margin-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  #WORKS .work_block .block_ttl {
    margin-bottom: 5rem;
  }
}
#WORKS .work_block .block_ttl h2 {
  display: inline-block;
  position: relative;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 0 1em;
  color: #c68195;
}
@media screen and (max-width: 767px) {
  #WORKS .work_block .block_ttl h2 {
    font-size: 2rem;
  }
}
#WORKS .work_block .block_ttl h2:before, #WORKS .work_block .block_ttl h2:after {
  content: "";
  width: 2.32em;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
  background-color: #c68195;
}
#WORKS .work_block .block_ttl h2:before {
  left: 0;
  transform: translateX(-100%);
}
#WORKS .work_block .block_ttl h2:after {
  right: 0;
  transform: translateX(100%);
}
#WORKS .work_block .work_list dl {
  display: flex;
  justify-content: space-between;
}
#WORKS .work_block .work_list dl:nth-child(n+2) {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  #WORKS .work_block .work_list dl:nth-child(n+2) {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  #WORKS .work_block .work_list dl {
    display: block;
  }
}
#WORKS .work_block .work_list dl dt {
  width: 19%;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  #WORKS .work_block .work_list dl dt {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    width: 100%;
  }
}
#WORKS .work_block .work_list dl dd {
  width: 76%;
}
@media screen and (max-width: 767px) {
  #WORKS .work_block .work_list dl dd {
    width: 100%;
  }
}
#WORKS .work_block .work_list dl dd ul li {
  padding-left: 1.4em;
  position: relative;
}
#WORKS .work_block .work_list dl dd ul li:nth-child(n+2) {
  margin-top: 0.5rem;
}
#WORKS .work_block .work_list dl dd ul li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
#WORKS .work_block .work_list dl dd ul li.voice {
  padding-left: 0;
}
#WORKS .work_block .work_list dl dd ul li.voice:before {
  content: none;
}
#WORKS .work_block .work_list dl dd ul li.voice:nth-child(n+2) {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  #WORKS .work_block .work_list dl dd ul li.voice:nth-child(n+2) {
    margin-top: 3rem;
  }
}
#WORKS .work_block .work_list dl dd ul li audio {
  display: block;
  margin-top: 2rem;
  width: 100%;
}

#CATEGORY-INFO._ur .inner:not(.ur_contact) {
  position: relative;
}
#CATEGORY-INFO._ur .inner:not(.ur_contact):after {
  content: "";
  display: block;
  width: 41.1rem;
  height: 11.5rem;
  position: absolute;
  bottom: calc(100% - 1.9rem);
  right: 1rem;
  pointer-events: none;
  background-image: url(/assets/images/uranai/flower1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
}
@media screen and (max-width: 767px) {
  #CATEGORY-INFO._ur .inner:not(.ur_contact):after {
    width: 20rem;
    bottom: calc(100% - 0.9rem);
  }
}
#CATEGORY-INFO._ur .ur_contact {
  margin-top: 7rem;
}

.ur_contact {
  text-align: center;
}
.ur_contact h3 {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 2rem;
  color: #8e7ca9;
}
.ur_contact h3 span {
  display: inline-block;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #8e7ca9;
}
.ur_contact p.txt_p {
  color: #8e7ca9;
}
.ur_contact .btn {
  margin-top: 3rem;
}

#ABOUT {
  margin-top: 14rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #ABOUT {
    margin-top: 7rem;
  }
}
#ABOUT:after {
  content: "";
  display: block;
  width: 39.2rem;
  height: 13.6rem;
  position: absolute;
  bottom: calc(100% - 1.9rem);
  left: 3.5vw;
  pointer-events: none;
  background-image: url(/assets/images/uranai/flower2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #ABOUT:after {
    left: 3.5vw;
  }
}
@media screen and (max-width: 767px) {
  #ABOUT:after {
    width: 20rem;
    bottom: calc(100% - 0.9rem);
    left: 3.5vw;
  }
}
#ABOUT .about_block:nth-child(n+2) {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  #ABOUT .about_block:nth-child(n+2) {
    margin-top: 4rem;
  }
}
#ABOUT .about_block .ttl {
  font-size: 2.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  color: #8e7ca9;
}
@media screen and (max-width: 767px) {
  #ABOUT .about_block .ttl {
    font-size: 1.8rem;
  }
}

#CATEGORY-PROFILE._ur {
  position: relative;
  margin: 0;
  padding-top: 14rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  #CATEGORY-PROFILE._ur {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
#CATEGORY-PROFILE._ur:before, #CATEGORY-PROFILE._ur:after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 10;
}
#CATEGORY-PROFILE._ur:before {
  width: 46.7rem;
  height: 13rem;
  top: -2rem;
  right: 3.5vw;
  background-image: url(/assets/images/uranai/flower3.svg);
  background-position: top right;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #CATEGORY-PROFILE._ur:before {
    left: 3.5vw;
  }
}
@media screen and (max-width: 767px) {
  #CATEGORY-PROFILE._ur:before {
    width: 20rem;
    top: -0.9rem;
    left: 3.5vw;
    right: auto;
  }
}
#CATEGORY-PROFILE._ur:after {
  width: 7.52rem;
  height: 14.4rem;
  bottom: 0;
  left: 5vw;
  background-image: url(/assets/images/uranai/flower4.svg);
  background-position: bottom left;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #CATEGORY-PROFILE._ur:after {
    left: 5vw;
  }
}
@media screen and (max-width: 767px) {
  #CATEGORY-PROFILE._ur:after {
    width: 5rem;
    right: 3.5vw;
    left: auto;
  }
}
@media screen and (max-width: 767px) {
  #CATEGORY-PROFILE._ur figure {
    margin-left: auto;
    margin-right: -2rem;
  }
}
@media screen and (max-width: 767px) {
  #CATEGORY-PROFILE._ur .txt_area {
    margin-right: auto;
    margin-left: -2rem;
  }
}

.cate_uranai .page_lead .midashi {
  color: #8e7ca9;
}

.sec_ttl._ur .en, .sec_ttl._ur .jp {
  color: #8e7ca9;
}

.ur_frame {
  padding: 6rem 7.5rem;
  border: 1px solid #d1bada;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ur_frame {
    padding: 10vw 7.5vw;
  }
}
.ur_frame:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -1rem;
  left: -1rem;
  background-color: #faf7f1;
  z-index: -1;
}
.ur_frame .ur_frame_inner {
  position: relative;
  z-index: 10;
}

#URANAI-CONCEPT {
  margin-top: 9rem;
}
@media screen and (max-width: 767px) {
  #URANAI-CONCEPT {
    margin-top: 5rem;
  }
}
#URANAI-CONCEPT .inner figure {
  width: calc(61.6rem + 50vw - 55rem);
  margin-left: calc(-1 * (50vw - 55rem));
}
@media screen and (max-width: 767px) {
  #URANAI-CONCEPT .inner figure {
    width: 92.5vw;
    margin: 0 auto 0 -7.5vw;
  }
}
#URANAI-CONCEPT .inner .txt_area {
  width: 67.4rem;
  margin-left: auto;
  margin-right: -12rem;
  margin-top: -39rem;
  background-color: #faf7f1;
  padding: 7.5rem 7rem;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1025px) and (max-width: 1350px) {
  #URANAI-CONCEPT .inner .txt_area {
    margin-right: calc(-1 * (50vw - 55rem));
    width: calc(55.5rem + 50vw - 55rem);
  }
}
@media screen and (max-width: 767px) {
  #URANAI-CONCEPT .inner .txt_area {
    width: 92.5vw;
    margin: -1rem -7.5vw 0 auto;
    padding: 10vw 7.5vw;
  }
}
#URANAI-CONCEPT .inner .txt_area:after {
  content: "";
  display: block;
  width: 19rem;
  height: 34rem;
  position: absolute;
  top: -26rem;
  right: 0;
  pointer-events: none;
  background-image: url(/assets/images/uranai/flower5.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
}
@media screen and (min-width: 1025px) and (max-width: 1350px) {
  #URANAI-CONCEPT .inner .txt_area:after {
    width: 14rem;
    right: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #URANAI-CONCEPT .inner .txt_area:after {
    width: 14rem;
    right: 2rem;
  }
}
@media screen and (max-width: 767px) {
  #URANAI-CONCEPT .inner .txt_area:after {
    width: 10rem;
    right: 3vw;
  }
}
#URANAI-CONCEPT .inner .txt_area .midashi {
  color: #8e7ca9;
  font-size: 2.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  #URANAI-CONCEPT .inner .txt_area .midashi {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}

#SUPPORT {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  #SUPPORT {
    margin-top: 7rem;
  }
}
#SUPPORT .support_img .fukidashi {
  text-align: center;
}
#SUPPORT .support_img .fukidashi span {
  display: inline-block;
  padding: 0 2em;
  position: relative;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  #SUPPORT .support_img .fukidashi span {
    font-size: 1.6rem;
  }
}
#SUPPORT .support_img .fukidashi span:before, #SUPPORT .support_img .fukidashi span:after {
  content: "";
  width: 3.6rem;
  height: 1px;
  background-color: #333;
  position: absolute;
  top: 50%;
}
#SUPPORT .support_img .fukidashi span:before {
  left: 0;
  transform: translate(0, -50%) rotate(75deg);
}
#SUPPORT .support_img .fukidashi span:after {
  right: 0;
  transform: translate(0, -50%) rotate(-75deg);
}
#SUPPORT .support_img .maru {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 5rem;
}
#SUPPORT .support_img .maru li {
  background-color: #8e7ca9;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15rem;
  height: 15rem;
}
@media screen and (max-width: 767px) {
  #SUPPORT .support_img .maru li {
    width: 27vw;
    height: 27vw;
  }
  #SUPPORT .support_img .maru li:nth-child(n+4) {
    margin-top: 0.5rem;
  }
}
#SUPPORT .support_img .maru li p {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  flex: 1;
}
@media screen and (max-width: 767px) {
  #SUPPORT .support_img .maru li p {
    font-size: 1.2rem;
  }
}
#SUPPORT .arw {
  width: 1.8rem;
  margin: 5rem auto 6rem;
}
@media screen and (max-width: 767px) {
  #SUPPORT .arw {
    width: 1.6rem;
    margin: 3rem auto 4rem;
  }
}

#PRICE {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  #PRICE {
    margin-top: 7rem;
  }
}
#PRICE .price_box_wrap {
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #PRICE .price_box_wrap {
    display: block;
    margin-top: 3rem;
  }
}
#PRICE .price_box_wrap .price_box {
  width: 39.5rem;
}
@media screen and (max-width: 767px) {
  #PRICE .price_box_wrap .price_box {
    width: 100%;
  }
  #PRICE .price_box_wrap .price_box:nth-child(n+2) {
    margin-top: 3rem;
  }
}
#PRICE .price_box_wrap .price_box .midashi {
  color: #8e7ca9;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  #PRICE .price_box_wrap .price_box .midashi {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}
#PRICE .price_box_wrap .price_box dl {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
}
#PRICE .price_box_wrap .price_box dl:last-child {
  margin-bottom: 0;
}
#PRICE .price_box_wrap .price_box dl dt, #PRICE .price_box_wrap .price_box dl dd {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  #PRICE .price_box_wrap .price_box dl dt, #PRICE .price_box_wrap .price_box dl dd {
    font-size: 1.4rem;
  }
}
#PRICE .price_box_wrap .price_box dl dd {
  text-align: right;
}

#UR-CONTACT {
  background-image: url(/assets/images/uranai/ur_contact_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 20rem 0;
  position: relative;
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  #UR-CONTACT {
    margin-top: 7rem;
    padding: 10rem 0;
  }
}
#UR-CONTACT:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.6);
}
#UR-CONTACT .ur_contact {
  position: relative;
  z-index: 10;
}
#UR-CONTACT .ur_contact h3 span {
  color: #fff;
  border-color: #fff;
}
#UR-CONTACT .ur_contact p.txt_p {
  color: #fff;
}
#UR-CONTACT .ur_contact .btn a {
  background-color: #fff;
}
#UR-CONTACT .ur_contact .btn a p {
  color: #8e7ca9;
}
#UR-CONTACT .ur_contact .btn a svg.arw-s .cls-1 {
  stroke: #8e7ca9;
}
#UR-CONTACT .flower1, #UR-CONTACT .flower2 {
  position: absolute;
  width: 48.1rem;
  height: auto;
  pointer-events: none;
  z-index: 5;
  display: block;
}
@media screen and (max-width: 767px) {
  #UR-CONTACT .flower1, #UR-CONTACT .flower2 {
    width: 60vw;
  }
}
#UR-CONTACT .flower1 {
  top: -2.5rem;
  left: 3.5vw;
}
@media screen and (max-width: 767px) {
  #UR-CONTACT .flower1 {
    top: -1.3rem;
  }
}
#UR-CONTACT .flower2 {
  bottom: -2.5rem;
  right: 3.5vw;
}
@media screen and (max-width: 767px) {
  #UR-CONTACT .flower2 {
    bottom: -1.3rem;
  }
}

#LIFE-DESIGN-SUPPORT {
  padding: 0 0 12rem;
  position: relative;
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  #LIFE-DESIGN-SUPPORT {
    margin-top: 7rem;
    padding: 0 0 12rem;
  }
}
#LIFE-DESIGN-SUPPORT:after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/assets/images/uranai/flower4.svg);
  background-position: bottom left;
  width: 7.52rem;
  height: 14.4rem;
  bottom: 0;
  left: 5vw;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #LIFE-DESIGN-SUPPORT:after {
    left: 5vw;
  }
}
@media screen and (max-width: 767px) {
  #LIFE-DESIGN-SUPPORT:after {
    width: 5rem;
    left: 3.5vw;
  }
}
#LIFE-DESIGN-SUPPORT .ttl {
  text-align: center;
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  margin-bottom: 6rem;
  color: #8e7ca9;
}
@media screen and (max-width: 767px) {
  #LIFE-DESIGN-SUPPORT .ttl {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
}
#LIFE-DESIGN-SUPPORT .ur_cate_box {
  margin-top: 3rem;
}
#LIFE-DESIGN-SUPPORT .ur_cate_box .midashi {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  color: #8e7ca9;
}
@media screen and (max-width: 767px) {
  #LIFE-DESIGN-SUPPORT .ur_cate_box .midashi {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
#LIFE-DESIGN-SUPPORT p.bottom_txt {
  margin-top: 5rem;
  text-align: center;
}

.pagination {
  margin-top: 10rem;
}
.pagination ul {
  display: flex;
  justify-content: center;
}
.pagination ul li {
  margin: 0 0.3rem;
  text-align: center;
  display: block;
}
.pagination ul li a {
  display: block;
  color: #fff;
  background-color: #ccc;
  font-size: 1.4rem;
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  transition: opacity 0.2s;
}
@media screen and (max-width: 767px) {
  .pagination ul li a {
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    font-size: 1.2rem;
  }
}
.pagination ul li a:hover {
  opacity: 0.6;
}
.pagination ul li span {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .pagination ul li span {
    font-size: 1.2rem;
  }
}
.pagination ul li.current a {
  background-color: #d1bada;
}

#INFORMATION .info_post .ttl_area {
  margin-bottom: 12rem;
  border-bottom: 1px solid #333;
  padding-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #INFORMATION .info_post .ttl_area {
    margin-bottom: 7rem;
  }
}
#INFORMATION .info_post .ttl_area p {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
#INFORMATION .info_post .ttl_area p.category {
  margin-left: 1rem;
}
#INFORMATION .info_post .ttl_area .post_ttl {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.45;
  width: 100%;
  margin-top: 2rem;
}
#INFORMATION .info_post .content_area > * {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  #INFORMATION .info_post .content_area > * {
    margin-bottom: 3rem;
  }
}
#INFORMATION .info_post .content_area > *:last-child {
  margin-bottom: 0;
}
#INFORMATION .info_post .content_area p {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  #INFORMATION .info_post .content_area p {
    line-height: 1.45;
  }
}
#INFORMATION .info_post .content_area h2 {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.45;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  #INFORMATION .info_post .content_area h2 {
    margin-bottom: 2rem;
  }
}
#INFORMATION .info_post .content_area h3 {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.45;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  #INFORMATION .info_post .content_area h3 {
    margin-bottom: 2rem;
  }
}
#INFORMATION .info_post .btn {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  #INFORMATION .info_post .btn {
    margin-top: 5rem;
  }
}

#CONTACT .line_area {
  margin: 0 auto;
  border: 1px solid #8e7ca9;
  padding: 4rem 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #CONTACT .line_area {
    padding: 3rem;
  }
}
#CONTACT .line_area > h3 span,
#CONTACT .line_area > p {
  color: #8e7ca9;
}
#CONTACT .line_area > h3 {
  margin-bottom: 2.5rem;
}
#CONTACT .line_area > h3 span {
  display: inline-block;
  border-bottom: 1px solid #8e7ca9;
  padding-bottom: 0.5em;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #CONTACT .line_area > h3 span {
    font-size: 1.6rem;
    line-height: 1.45;
  }
}
#CONTACT .line_area > p {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 1.75;
}
#CONTACT .line_area .btn {
  margin-top: 3rem;
}
#CONTACT .contact_post {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  #CONTACT .contact_post {
    margin-top: 7rem;
  }
}
#CONTACT .contact_post .lead {
  text-align: center;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  #CONTACT .contact_post .lead {
    text-align: left;
  }
}
#CONTACT .contact_post .form dl {
  display: flex;
  padding: 0.5rem 0;
}
#CONTACT .contact_post .form dl:nth-child(n+2) {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  #CONTACT .contact_post .form dl {
    display: block;
  }
}
#CONTACT .contact_post .form dl dt {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  #CONTACT .contact_post .form dl dt {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  #CONTACT .contact_post .form dl dt {
    margin-bottom: 1rem;
    font-weight: 700;
  }
}
#CONTACT .contact_post .form dl dt.hissu:after {
  content: "*";
  display: inline-block;
  color: #c68195;
  margin-left: 0.3em;
}
#CONTACT .contact_post .form dl dd {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  #CONTACT .contact_post .form dl dd {
    width: 70%;
  }
}
#CONTACT .contact_post .form dl dd .form_radio label {
  display: flex;
  align-items: center;
}
#CONTACT .contact_post .form dl dd .form_text input {
  background-color: #faf7f1;
  padding: 1.5rem;
}
#CONTACT .contact_post .form dl dd .form_textarea textarea {
  background-color: #faf7f1;
  padding: 1.5rem;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  max-height: 20rem;
  min-height: 20rem;
}
#CONTACT .contact_post .pp {
  margin-top: 7rem;
}
#CONTACT .contact_post .pp .pp_detail {
  padding: 3rem;
  border: 1px solid #e4e4e4;
  width: 100%;
  height: 30rem;
  overflow: auto;
}
#CONTACT .contact_post .pp .pp_detail h2 {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  font-weight: 700;
}
#CONTACT .contact_post .pp .pp_detail h3 {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  font-weight: 700;
}
#CONTACT .contact_post .pp .pp_detail p {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
#CONTACT .contact_post .pp .pp_detail > *:last-child {
  margin-bottom: 0;
}
#CONTACT .contact_post .pp .pp_check {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.3rem;
}
#CONTACT .contact_post .pp .pp_check label {
  display: flex;
  justify-content: center;
  align-items: center;
}
#CONTACT .contact_post .pp .pp_check label span {
  letter-spacing: 0.1em;
  line-height: 1;
}
#CONTACT .contact_post .pp .pp_check span {
  font-size: 1.3rem;
}
#CONTACT .contact_post .submit {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
#CONTACT._contact_confirm .contact_post {
  margin-top: 0;
}
#CONTACT._contact_confirm .contact_post .pp {
  display: none;
}
#CONTACT._contact_confirm .contact_post .submit .btn {
  margin: 0 1rem;
}
#CONTACT._contact_confirm .contact_post .submit .btn._back input {
  background-color: #ccc;
}
#CONTACT._contact_success .contact_post {
  margin-top: 0;
}
#CONTACT._contact_success .contact_post .btn {
  margin-top: 5rem;
}
/*# sourceMappingURL=style.min.css.map */
