@charset "UTF-8";
img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  text-align: left;
  font-weight: 500;
  color: #34200b;
  line-height: 2.1;
  letter-spacing: 0.02em;
  font-family: "Zen Maru Gothic", sans-serif;
  -webkit-animation: fadeIn 1.2s ease-out normal;
          animation: fadeIn 1.2s ease-out normal;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 767.9px) {
  html {
    line-height: 2;
  }
}
html body {
  overflow-x: hidden;
  background: #f3f3f3;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 2.1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767.9px) {
  * {
    line-height: 2;
  }
}

@media (scripting: none) {
  html {
    scroll-behavior: smooth;
  }
}
@-webkit-keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
            transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}
@keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
            transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}
.row {
  font-family: "Rowdies", "Zen Maru Gothic", sans-serif;
}

.baloo {
  font-family: "Baloo 2", "Zen Maru Gothic", sans-serif;
}

.upper {
  text-transform: uppercase;
}

.kb-theme-content-width {
  width: 90%;
}

.pink {
  color: #ff85b7;
}

.cont {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flex-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767.9px) {
  .flex-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

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

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

.flex.a-s {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

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

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

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

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

.none {
  display: none;
}

a {
  color: #34200b;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: 0.6;
}

.wrapper {
  width: 100%;
}

li {
  list-style: none;
}

@media (max-width: 375px) {
  main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.header-wrap {
  border-radius: 0;
  background: #ff85b7;
  display: block;
  margin: 0;
  width: 100%;
  max-width: 450px;
  height: 100dvh;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  padding: 37px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  overflow: auto;
}
.header-wrap::after {
  content: "";
  width: 156px;
  height: auto;
  aspect-ratio: 156/97;
  background-image: url(../img/tori_06.svg);
  position: absolute;
  bottom: 23px;
  right: 37px;
  background-size: contain;
  background-repeat: no-repeat;
}
.header-wrap .header-wrap_inner {
  background: #f3f3f3;
  border-radius: 20px;
  height: calc(100dvh - 74px);
  padding: 56px 33px 100px;
  position: relative;
  overflow: auto;
}
.header-wrap .gnav_ham {
  margin-bottom: 18px;
}
.header-wrap .gnav_ham ul:nth-child(1) {
  margin-bottom: 18px;
}
.header-wrap .gnav_ham ul:nth-child(1) li {
  border-bottom: solid 1px #a79b9b;
  padding: 9px 0;
}
.header-wrap .gnav_ham ul:nth-child(1) a {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.96;
  display: block;
}
.header-wrap ul:nth-child(2) a {
  font-size: 1.4rem;
  line-height: 1.8;
  padding-right: 50px;
}
.header-wrap .header_sns {
  margin-top: -40px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 16px;
  margin-bottom: 32px;
}
.header-wrap .header_sns img {
  -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(7%) saturate(4991%) hue-rotate(327deg) brightness(105%) contrast(91%);
          filter: brightness(0) saturate(100%) invert(0%) sepia(7%) saturate(4991%) hue-rotate(327deg) brightness(105%) contrast(91%);
}
.header-wrap .header_sns .instagram {
  width: 24px;
}
.header-wrap .header_sns .x {
  width: 23px;
}
.header-wrap .header_sns a {
  padding: 0;
}
.header-wrap .header_request a {
  display: block;
  width: 100%;
  padding: 12px 20px 14px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.46;
  text-align: center;
  color: #462929;
  background: #fff;
  border: solid 1px #462929;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header-wrap .header_request a:hover {
  opacity: 1;
  background: #462929;
  color: #fff;
}

@media screen and (min-width: 1300px) {
  .header {
    position: fixed;
    width: calc(100% - 100px);
    height: 70px;
    top: 40px;
    left: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    z-index: 11;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 50px;
  }
  .header .header_logo {
    width: 250px;
  }
  .header .header_logo img {
    width: 100%;
    display: block;
  }
  .header__inner {
    width: 100%;
    height: 100%;
    padding: 8px 88px 9px 38px;
    position: relative;
    border-radius: 100px;
    -webkit-box-shadow: 0 4px 7px -1px rgba(70, 41, 41, 0.08);
            box-shadow: 0 4px 7px -1px rgba(70, 41, 41, 0.08);
    background: #fff;
  }
  .ham_block {
    display: none;
  }
  .gnav {
    height: 100%;
    margin-right: 34px;
  }
  .gnav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .gnav ul li {
    position: relative;
  }
  .gnav ul li a {
    height: 100%;
    position: relative;
    font-size: 1.8rem;
    line-height: 2;
    font-weight: 700;
  }
}
.header-search label {
  position: relative;
}
.header-search label::before {
  content: "";
  width: 17px;
  height: 18px;
  background-image: url(../img/search_loupe.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header-search input {
  border-radius: 100px;
  background: #e4e0dc;
  font-size: 1.8rem;
  padding: 0 20px 1px 56px;
  width: 270px;
  border: none;
  font-family: "Zen Maru Gothic", sans-serif;
}
.header-search input::-webkit-input-placeholder {
  color: #fff;
}
.header-search input::-moz-placeholder {
  color: #fff;
}
.header-search input:-ms-input-placeholder {
  color: #fff;
}
.header-search input::-ms-input-placeholder {
  color: #fff;
}
.header-search input::placeholder {
  color: #fff;
}

@media screen and (max-width: 1299.9px) {
  .header {
    height: 60px;
    border-radius: 100px;
    margin: 10px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: calc(100% - 20px);
  }
}
@media screen and (max-width: 1299.9px) and (max-width: 767.9px) {
  .header {
    height: 55px;
  }
}
@media screen and (max-width: 1299.9px) {
  .header_logo {
    width: 200px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 20px;
  }
  .header_logo img {
    width: 100%;
    display: block;
  }
  .ham_block {
    display: block;
    margin-bottom: 20px;
  }
  .header-nav_wrap {
    display: none;
  }
  .header-search input {
    width: 100%;
    max-width: 300px;
  }
  .header-wrap {
    padding: 30px 20px;
  }
  .header-wrap::after {
    width: 110px;
    right: 10px;
  }
  .header-wrap .header-wrap_inner {
    padding: 56px 20px 70px;
  }
  .header-wrap .gnav_ham ul:nth-child(1) a {
    font-size: 1.5rem;
  }
  .header-wrap .header_sns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.hamburger {
  display: block;
  cursor: pointer;
  width: 37px;
  height: 23px;
  position: fixed;
  top: 62px;
  right: 83px;
  z-index: 99;
  background: none;
  border: none;
  text-align: center;
}
@media screen and (max-width: 1299.9px) {
  .hamburger {
    top: 17px;
    right: 22px;
    position: absolute;
  }
}
@media screen and (max-width: 767.9px) {
  .hamburger {
    width: 26px;
  }
}

.hamburger__line,
.hamburger__line::after {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  width: 37px;
  height: 2px;
  background: #462929;
  border-radius: 2px;
}
@media screen and (max-width: 767.9px) {
  .hamburger__line,
  .hamburger__line::after {
    width: 26px;
  }
}

.hamburger__line {
  left: 0;
  top: 0;
}

.hamburger__line::before {
  -webkit-transition: all 0.4s;
  transition: all 0.4s; /*アニメーションの設定*/
  content: "";
  display: block;
  width: 37px;
  height: 13px;
  background-image: url(../img/hamburger_line.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 5px;
  left: 0;
}
@media screen and (max-width: 767.9px) {
  .hamburger__line::before {
    width: 28px;
  }
}

.hamburger__line::after {
  content: "";
  top: 21px;
  left: 0;
}
@media screen and (max-width: 767.9px) {
  .hamburger__line::after {
    top: 18px;
  }
}

/*activeクラスが付与されると線が回転して×になる*/
.hamburger.active span {
  top: 13px;
  -webkit-transform: translateY(0px) rotate(-45deg);
          transform: translateY(0px) rotate(-45deg);
  width: 37px;
}
@media screen and (max-width: 767.9px) {
  .hamburger.active span {
    top: 10px;
    width: 28px;
  }
}

.hamburger.active span::after {
  opacity: 0;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}

.hamburger.active span::before {
  top: -5px;
  left: -2px;
  -webkit-transform: rotate(85deg);
          transform: rotate(85deg);
  width: 40px;
  height: 16px;
}
@media screen and (max-width: 767.9px) {
  .hamburger.active span::before {
    width: 32px;
    left: -4px;
  }
}

.header-wrap.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}

.header-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s, visibility 0.6s;
  transition: opacity 0.6s, visibility 0.6s;
  z-index: 89;
  pointer-events: none;
}
.header-overlay.active {
  opacity: 0.3;
  visibility: visible;
  pointer-events: auto;
}

.page_top {
  padding: 204px 0 30px;
}
@media screen and (max-width: 1299.9px) {
  .page_top {
    padding-top: 100px;
  }
}
.page_top .page_title2 {
  font-size: 6.5rem;
  letter-spacing: 0.05em;
  line-height: 1.4923076923;
}
@media screen and (max-width: 767.9px) {
  .page_top .page_title2 {
    font-size: 4rem;
    margin-bottom: 12px;
    line-height: 1;
  }
}
.page_top .page_title {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .page_top .page_title {
    font-size: 2.4rem;
  }
}

.shadow {
  -webkit-box-shadow: 0 4px 24px 0 rgba(70, 41, 41, 0.08);
          box-shadow: 0 4px 24px 0 rgba(70, 41, 41, 0.08);
}

.pp {
  margin-top: 64px;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 24px 0 rgba(70, 41, 41, 0.08);
          box-shadow: 0 4px 24px 0 rgba(70, 41, 41, 0.08);
  padding: 50px 84px 106px 76px;
  margin-bottom: 126px;
}
@media screen and (max-width: 767.9px) {
  .pp {
    margin-top: 20px;
    padding: 30px 20px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767.9px) {
  .pp * {
    font-size: 1.5rem;
  }
}
.pp h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 58px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767.9px) {
  .pp h2 {
    margin-top: 30px;
    font-size: 1.8rem;
  }
}
.pp ul,
.pp ol {
  list-style-position: outside;
  margin-left: 28px;
  margin-top: 5px;
}
@media screen and (max-width: 767.9px) {
  .pp ul,
  .pp ol {
    margin-left: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .pp ol {
    margin-left: 20px;
  }
}
.pp ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pp ul li::before {
  content: "・";
}
.pp ol li {
  list-style: decimal;
}
.pp a {
  text-decoration: underline;
  text-underline-offset: 3px;
  word-wrap: break-word;
}

.terms {
  margin-top: 64px;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 24px 0 rgba(70, 41, 41, 0.08);
          box-shadow: 0 4px 24px 0 rgba(70, 41, 41, 0.08);
  padding: 50px 84px 70px 103px;
  margin-bottom: 126px;
}
@media screen and (max-width: 767.9px) {
  .terms {
    margin-top: 20px;
    padding: 30px 20px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767.9px) {
  .terms * {
    font-size: 1.5rem;
  }
}
.terms .terms_top {
  margin-bottom: 150px;
}
@media screen and (max-width: 767.9px) {
  .terms .terms_top {
    margin-bottom: 50px;
  }
}
.terms h2 {
  margin-top: 80px;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .terms h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    padding-left: 20px;
  }
}
.terms h2::before {
  content: "";
  width: 6px;
  min-width: 6px;
  height: 22px;
  background: #eee82e;
  position: absolute;
  left: -28px;
  top: 10px;
}
@media screen and (max-width: 767.9px) {
  .terms h2::before {
    left: 0;
    width: 4px;
    top: 9px;
    height: 18px;
  }
}
.terms ol {
  list-style-position: outside;
  margin-left: 20px;
}
.terms ol li {
  list-style: decimal;
}
.terms ol ul {
  margin-left: 20px;
}
@media screen and (max-width: 767.9px) {
  .terms ol ul {
    margin-left: 5px;
  }
}
.terms ul {
  margin-left: 20px;
}
@media screen and (max-width: 767.9px) {
  .terms ul {
    margin-left: 5px;
  }
}
.terms ul li {
  list-style: none;
  font-size: 1.5rem;
}
.terms a {
  text-decoration: underline;
  text-underline-offset: 3px;
  word-wrap: break-word;
}

.not_found .cont {
  position: relative;
  margin-top: 380px;
  background: #fff;
  padding: 76px 20px 66px;
  margin-bottom: 130px;
}
@media screen and (max-width: 767.9px) {
  .not_found .cont {
    margin-top: 150px;
    margin-bottom: 80px;
    padding: 50px 20px 50px;
  }
}
.not_found .cont .img {
  width: 195px;
  position: absolute;
  top: -94px;
  left: 49%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767.9px) {
  .not_found .cont .img {
    width: 100px;
    top: -20px;
  }
}
.not_found .cont h1 {
  font-size: 6rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.9666666667;
}
@media screen and (max-width: 767.9px) {
  .not_found .cont h1 {
    font-size: 3rem;
  }
}
.not_found .cont p {
  text-align: center;
  margin-bottom: 63px;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .not_found .cont p {
    margin-bottom: 40px;
  }
}
.not_found .cont p a {
  color: #ff85b7;
}

.btn {
  background: #462929;
  color: #fff;
  padding: 16px 20px 17px;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.45;
  margin: 0 auto;
  max-width: 408px;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .btn {
    font-size: 1.6rem;
  }
}

.accordion {
  border: solid 2px #462929;
  border-radius: 5px;
  overflow: hidden;
}

.accordion__content[aria-hidden=true] {
  pointer-events: none;
}

.accordion__title button {
  background: #462929;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 36px;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .accordion__title button {
    padding: 15px 20px;
    font-size: 1.8rem;
  }
}
.accordion__title button::before {
  content: "";
  width: 21px;
  height: auto;
  aspect-ratio: 21/16;
  background-image: url(../img/search_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 28px;
}
@media screen and (max-width: 767.9px) {
  .accordion__title button::before {
    margin-right: 20px;
    width: 18px;
  }
}
.accordion__title button span {
  width: 29px;
  height: auto;
  aspect-ratio: 1/1;
  border: solid 2px #fff;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .accordion__title button span {
    width: 20px;
  }
}
.accordion__title button span::before, .accordion__title button span::after {
  position: absolute;
  content: "";
  display: block;
  width: 21px;
  height: 2px;
  background-color: #fff;
}
@media screen and (max-width: 767.9px) {
  .accordion__title button span::before, .accordion__title button span::after {
    width: 11px;
  }
}
.accordion__title button span::before {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.accordion__title button span::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*　closeというクラスがついたら形状変化　*/
.accordion.is-opened .accordion__title button span::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

#search_box {
  background: #fff;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  -webkit-transition: max-height 0.35s ease, opacity 0.35s ease;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}
#search_box .searchandfilter li {
  padding: 0;
}
#search_box form {
  padding: 45px 56px 65px;
}
@media screen and (max-width: 767.9px) {
  #search_box form {
    padding: 30px 20px;
  }
}
#search_box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767.9px) {
  #search_box ul {
    gap: 40px;
  }
}
#search_box ul ul {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
#search_box h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  #search_box h4 {
    font-size: 1.8rem;
  }
}
#search_box input {
  font-family: "Zen Maru Gothic", sans-serif;
}
#search_box .search_filter_search {
  position: relative;
}
#search_box .search_filter_search::before {
  content: "";
  width: 19px;
  height: 20px;
  background-image: url(../img/search_loupe.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
#search_box .search_filter_search input[type=text] {
  font-size: 2rem;
  font-weight: 700;
  width: 100%;
  border-radius: 100px;
  padding: 7px 20px 7px 66px;
  background: #e4e0dc;
  border: none;
}
@media screen and (max-width: 767.9px) {
  #search_box .search_filter_search input[type=text] {
    font-size: 1.6rem;
  }
}
#search_box .search_filter_search input[type=text]::-webkit-input-placeholder {
  color: #fff;
}
#search_box .search_filter_search input[type=text]::-moz-placeholder {
  color: #fff;
}
#search_box .search_filter_search input[type=text]:-ms-input-placeholder {
  color: #fff;
}
#search_box .search_filter_search input[type=text]::-ms-input-placeholder {
  color: #fff;
}
#search_box .search_filter_search input[type=text]::placeholder {
  color: #fff;
}
#search_box .search_filter_category li {
  width: calc((100% - 36px) / 4);
  min-width: 140px;
}
@media screen and (max-width: 767.9px) {
  #search_box .search_filter_category li {
    width: 100%;
    max-width: 300px;
  }
}
#search_box .search_filter_category label:has(input[type=checkbox]:checked) {
  background: #ff85b7;
}
#search_box .search_filter_category label:has(input[type=checkbox]:focus-visible),
#search_box .search_filter_category label:focus-visible {
  outline: 3px solid rgba(255, 133, 183, 0.4);
  outline-offset: 2px;
}
#search_box .search_filter_cat_pref li {
  width: calc((100% - 24px) / 3);
  min-width: 120px;
}
@media screen and (max-width: 767.9px) {
  #search_box .search_filter_cat_pref li {
    width: calc((100% - 12px) / 2);
  }
}
#search_box .search_filter_cat_pref label:has(input[type=checkbox]:checked) {
  background: #fffa5a;
}
#search_box .search_filter_cat_pref label:has(input[type=checkbox]:focus-visible),
#search_box .search_filter_cat_pref label:focus-visible {
  outline: 3px solid rgba(255, 250, 90, 0.4);
  outline-offset: 2px;
}
#search_box .search_filter_cat_pref ul,
#search_box .search_filter_category ul {
  gap: 12px;
  margin-left: 12px;
　margin-top: 24px;
}
@media screen and (max-width: 767.9px) {
  #search_box .search_filter_cat_pref ul,
  #search_box .search_filter_category ul {
    margin-right: 12px;
  }
}
#search_box .search_filter_cat_pref label,
#search_box .search_filter_category label {
  width: 100%;
  position: relative;
  display: block;
  text-align: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 2px solid #462929;
  font-weight: 700;
  color: #462929;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  cursor: pointer;
  overflow: hidden;
  line-height: 1;
}
#search_box .search_filter_cat_pref label input[type=checkbox],
#search_box .search_filter_category label input[type=checkbox] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
#search_box li.search_filter_post_tag ul {
  margin-left: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 9px 7px;
  margin-top: 24px;
}
#search_box li.search_filter_post_tag label {
  position: relative;
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2px 16px 3px;
  border-radius: 100px;
  border: 2px solid #a79b9b;
  font-size: 1.2rem;
  font-weight: 700;
  color: #a79b9b;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  cursor: pointer;
  overflow: hidden;
  gap: 4px;
  line-height: 1.4;
}
#search_box li.search_filter_post_tag label::before {
  content: "#";
  font-weight: 700;
  color: inherit;
}
#search_box li.search_filter_post_tag label input[type=checkbox] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
#search_box li.search_filter_post_tag label:has(input[type=checkbox]:checked) {
  background: #ff85b7;
  color: #462929;
  border-color: #462929;
}
#search_box li.search_filter_post_tag label:has(input[type=checkbox]:focus-visible),
#search_box li.search_filter_post_tag label:focus-visible {
  outline: 3px solid rgba(255, 133, 183, 0.4);
  outline-offset: 2px;
}
#search_box input[type=submit] {
  background: #462929;
  color: #fff;
  padding: 10px 20px;
  border: none;
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  display: block;
  font-weight: 700;
  border-radius: 5px;
}

.accordion.is-opened #search_box {
  opacity: 1;
}

.heading1 {
  font-size: 5.2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .heading1 {
    font-size: 2.8rem;
  }
}
.heading1 span {
  display: block;
  text-align: center;
  font-size: 2.1rem;
  font-weight: 500;
  margin-bottom: -20px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767.9px) {
  .heading1 span {
    font-size: 1.6rem;
    margin-bottom: -5px;
  }
}

.page-real {
  position: relative;
}
.page-real::before {
  content: "";
  width: 529px;
  height: auto;
  aspect-ratio: 529/1132;
  position: absolute;
  top: 0;
  right: 30%;
  z-index: -1;
  background-image: url(../img/real_bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1783%) hue-rotate(324deg) brightness(108%) contrast(100%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1783%) hue-rotate(324deg) brightness(108%) contrast(100%);
}

.real_contents {
  margin-bottom: 187px;
}
@media screen and (max-width: 767.9px) {
  .real_contents {
    margin-bottom: 80px;
  }
}
.real_contents .real_contents_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.real_contents .real_contents_inner:nth-child(1) {
  background-image: url(../img/real_bg1.png);
}
.real_contents .real_contents_inner:nth-child(2) {
  background-image: url(../img/real_bg2.png);
}
.real_contents .real_contents_inner:nth-child(3) {
  background-image: url(../img/real_bg3.png);
}
.real_contents .real_contents_inner:nth-child(4) {
  background-image: url(../img/real_bg4.png);
}
.real_contents .real_contents_text {
  text-align: center;
  margin-bottom: 94px;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .real_contents .real_contents_text {
    text-align: left;
    margin-bottom: 40px;
    font-size: 1.5rem;
  }
}
.real_contents .real_contents_inner {
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 80px 76px 68px 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #202020;
}
@media screen and (max-width: 767.9px) {
  .real_contents .real_contents_inner {
    padding: 30px 20px;
    gap: 20px;
  }
}
.real_contents .real_contents_inner .detail {
  width: 44%;
}
@media screen and (max-width: 767.9px) {
  .real_contents .real_contents_inner .detail {
    width: 100%;
  }
}
.real_contents .real_contents_inner h2 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
  display: block;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .real_contents .real_contents_inner h2 {
    font-size: 2.4rem;
  }
}
.real_contents .real_contents_inner h2::first-letter {
  color: #fffa5a;
}
.real_contents .real_contents_inner span {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: -5px;
}
@media screen and (max-width: 767.9px) {
  .real_contents .real_contents_inner span {
    font-size: 1.4rem;
    margin-top: 0;
  }
}
.real_contents .real_contents_inner p {
  margin-top: 64px;
  color: #fff;
  line-height: 1.9;
}
@media screen and (max-width: 767.9px) {
  .real_contents .real_contents_inner p {
    margin-top: 20px;
  }
}
.real_contents .real_contents_inner .img {
  width: 48%;
  margin-top: 7px;
}
@media screen and (max-width: 767.9px) {
  .real_contents .real_contents_inner .img {
    width: 100%;
  }
}
.real_contents .real_contents_inner .img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 10px;
}
.real_contents .real_contents_inner:nth-child(2) {
  padding-top: 62px;
}
@media screen and (max-width: 767.9px) {
  .real_contents .real_contents_inner:nth-child(2) {
    padding-top: 30px;
  }
}
.real_contents .real_contents_inner:nth-child(2) p {
  margin-top: 36px;
}
@media screen and (max-width: 767.9px) {
  .real_contents .real_contents_inner:nth-child(2) p {
    margin-top: 20px;
  }
}

.page-about .page_top {
  background-image: url(../img/about_bg.png);
  background-color: #ff85b7;
  background-size: cover;
  background-position: top center;
  padding-bottom: 212px;
  position: relative;
  -webkit-mask-image: url("../img/mask.svg");
          mask-image: url("../img/mask.svg");
  -webkit-mask-position: bottom center;
          mask-position: bottom center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
}
@media screen and (max-width: 767.9px) {
  .page-about .page_top {
    padding-bottom: 110px;
  }
}
.page-about .page_top h1 {
  color: #fff;
  text-align: center;
  font-size: 4rem;
}
@media screen and (max-width: 767.9px) {
  .page-about .page_top h1 {
    font-size: 2.4rem;
  }
}
.page-about .about_top .cont {
  max-width: 1200px;
  margin-top: -150px;
  background: #fff;
  border-radius: 25px;
  position: relative;
  z-index: 2;
  -webkit-box-shadow: 0 2px 10px 0 rgba(70, 41, 41, 0.08);
          box-shadow: 0 2px 10px 0 rgba(70, 41, 41, 0.08);
  padding: 0 74px 92px;
  margin-bottom: 75px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_top .cont {
    margin-top: -70px;
    padding: 30px 20px 50px;
    margin-bottom: 50px;
  }
}
.page-about .about_top .cont .about_top_img {
  width: 666px;
  max-width: 100%;
  -webkit-transform: translateY(-102px);
          transform: translateY(-102px);
  margin: 0 auto -102px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_top .cont .about_top_img {
    -webkit-transform: unset;
            transform: unset;
    margin-bottom: 0;
    width: 90%;
    max-width: 400px;
  }
}
.page-about .about_top .cont h2 {
  text-align: center;
  font-size: 3.17rem;
  margin-bottom: 7px;
  padding-right: 20px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_top .cont h2 {
    font-size: 2rem;
    padding: 0;
  }
}
.page-about .about_top .cont h2 span {
  font-size: 2.56rem;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_top .cont h2 span {
    font-size: 1.6rem;
  }
}
.page-about .about_top .cont .text1 {
  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;
  margin-bottom: 21px;
  gap: 10px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_top .cont .text1 {
    gap: 5px;
  }
}
.page-about .about_top .cont .text1 span {
  line-height: 1.5;
  font-size: 4.2rem;
  padding: 1px 32px 6px;
  text-align: center;
  font-weight: 700;
  position: relative;
}
.page-about .about_top .cont .text1 span .sp-none {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_top .cont .text1 span {
    font-size: 2rem;
    padding: 0px 20px 4px;
  }
}
.page-about .about_top .cont .text1 span::before {
  content: "";
  width: 100%;
  height: calc(100% - 5px);
  background: #fffa5a;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: -1;
}
.page-about .about_top .cont .text2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_top .cont .text2 {
    font-size: 1.6rem;
    margin-bottom: 50px;
  }
}
.page-about .about_top .cont .mascots {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 27px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_top .cont .mascots {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    margin-bottom: 50px;
  }
}
.page-about .about_top .cont .mascots img {
  max-height: 163px;
  max-width: calc((100% - 135px) / 6);
}
@media screen and (max-width: 767.9px) {
  .page-about .about_top .cont .mascots img {
    max-width: calc((100% - 40px) / 3);
    max-height: 100px;
  }
}
.page-about .about_top .cont .description {
  font-size: 1.8rem;
  line-height: 2.3;
  max-width: 950px;
  margin: 0 auto;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_top .cont .description {
    font-size: 1.6rem;
    line-height: 2;
  }
}
.page-about .about_top .cont .description span {
  font-weight: 700;
}
.page-about .about_points {
  overflow: hidden;
  padding-bottom: 150px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_points {
    padding-bottom: 80px;
  }
}
.page-about .about_points h2 {
  margin-bottom: 58px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_points h2 {
    margin-bottom: 30px;
  }
}
.page-about .about_points .about_points_item {
  margin-bottom: 44px;
  position: relative;
  background: #ff85b7;
  border-radius: 10px;
  padding: 33px 34px 32px 39px;
  margin-inline: 25px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_points .about_points_item {
    margin-bottom: 20px;
    margin-inline: 0;
    padding: 20px;
  }
}
.page-about .about_points .about_points_item .inner {
  background: #fff5f9;
  border-radius: 20px;
  padding: 48px 56px 47px 60px;
  min-height: 356px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_points .about_points_item .inner {
    padding: 20px;
    min-height: unset;
  }
}
.page-about .about_points .about_points_item span {
  display: block;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: 0;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_points .about_points_item span {
    font-size: 1.8rem;
  }
}
.page-about .about_points .about_points_item h3 {
  font-size: 3.2rem;
  line-height: 1.8;
  margin-bottom: 11px;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_points .about_points_item h3 {
    font-size: 2.2rem;
    letter-spacing: 0;
  }
}
.page-about .about_points .about_points_item p {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_points .about_points_item p {
    font-size: 1.6rem;
  }
}
.page-about .about_points .about_points_item img {
  position: absolute;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_points .about_points_item img {
    display: none !important;
  }
}
.page-about .about_points .item1 span {
  margin-bottom: 11px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_points .item1 span {
    margin: 0;
  }
}
.page-about .about_points .item1 p {
  margin-right: 21.3%;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_points .item1 p {
    margin: 0;
  }
}
.page-about .about_points .item1 img {
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
  width: 27.5%;
  right: -2.5%;
  bottom: -12px;
  display: block;
}
.page-about .about_points .item2 h3 {
  text-align: right;
  margin-top: -8px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_points .item2 h3 {
    margin-top: 0;
    text-align: left;
  }
}
.page-about .about_points .item2 p {
  margin-left: 21.3%;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_points .item2 p {
    margin: 0;
  }
}
.page-about .about_points .item2 img {
  left: -7%;
  width: 32.3%;
  bottom: -43px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_points .item2 img {
    bottom: -20px;
  }
}
.page-about .about_points .item3 span {
  margin-bottom: 7px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_points .item3 span {
    margin-bottom: 0;
  }
}
.page-about .about_points .item3 p {
  margin-right: 21.3%;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_points .item3 p {
    margin: 0;
  }
}
.page-about .about_points .item3 img {
  width: 27.4%;
  right: -5%;
  bottom: -40px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_points .item3 img {
    bottom: -20px;
  }
}
.page-about .about_points .item4 h3 {
  text-align: right;
  margin-top: -8px;
  margin-bottom: 23px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_points .item4 h3 {
    margin-top: 0;
    text-align: left;
  }
}
.page-about .about_points .item4 p {
  margin-left: 21.3%;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_points .item4 p {
    margin: 0;
  }
}
.page-about .about_points .item4 img {
  left: -32%;
  width: 60.8%;
  bottom: -120px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_points .item4 img {
    bottom: -30px;
  }
}
.page-about .about_company {
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_company {
    padding-top: 40px;
  }
}
.page-about .about_company::before {
  content: "";
  width: calc(100% + 54px);
  height: 717px;
  border-radius: 50% 50% 0 0;
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 0 4px 44px 0 rgba(103, 103, 103, 0.07);
          box-shadow: 0 4px 44px 0 rgba(103, 103, 103, 0.07);
}
@media screen and (max-width: 767.9px) {
  .page-about .about_company::before {
    height: 200px;
  }
}
.page-about .about_company::after {
  content: "";
  width: 100%;
  height: calc(100% - 358px);
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_company::after {
    height: calc(100% - 100px);
  }
}
.page-about .about_company .cont {
  padding-bottom: 87px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_company .cont {
    padding-bottom: 60px;
  }
}
.page-about .about_company h2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_company h2 {
    margin-bottom: 30px;
  }
}
.page-about .about_company .about_company_img {
  margin: 0 auto 50px;
  width: 481px;
  max-width: 100%;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_company .about_company_img {
    width: 80%;
    max-width: 400px;
    margin-bottom: 30px;
  }
}
.page-about .about_company .about_company_img img {
  width: 100%;
}
.page-about .about_company p {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_company p {
    font-size: 1.6rem;
  }
}
.page-about .about_member {
  background: #fff;
  padding-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_member {
    padding-bottom: 0;
  }
}
.page-about .about_member .cont {
  padding-top: 92px;
  max-width: 1000px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_member .cont {
    padding-top: 50px;
  }
}
.page-about .about_member .cont::after {
  content: "";
  width: 100%;
  height: 1px;
  background-image: url(../img/border_dots.png);
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.page-about .about_member h2 {
  margin-bottom: 85px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_member h2 {
    margin-bottom: 40px;
  }
}
.page-about .about_member .about_member_item {
  gap: 17px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_member .about_member_item {
    margin-bottom: 40px;
  }
}
.page-about .about_member .about_member_item .detail {
  width: 50%;
  margin-top: 50px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_member .about_member_item .detail {
    margin-top: 0;
    width: 100%;
  }
}
.page-about .about_member .about_member_item .position {
  background: #ff85b7;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  padding: 4px 14px 7px;
  margin-bottom: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_member .about_member_item .position {
    font-size: 1.5rem;
    padding: 2px 10px 4px;
  }
}
.page-about .about_member .about_member_item .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_member .about_member_item .name {
    font-size: 2.6rem;
    gap: 20px;
  }
}
.page-about .about_member .about_member_item .name span {
  font-size: 1.8rem;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_member .about_member_item .name span {
    font-size: 1.5rem;
  }
}
.page-about .about_member .about_member_item .description {
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_member .about_member_item .description {
    line-height: 1.8;
  }
}
.page-about .about_member .about_member_item .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_member .about_member_item .img {
    max-width: 90%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767.9px) {
  .page-about .about_member .about_member_item:last-child {
    margin-bottom: 0;
  }
}
.page-about .about_closing {
  background: #fff;
  padding-bottom: 180px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_closing {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
.page-about .about_closing .cont {
  position: relative;
  max-width: 1144px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-about .about_closing .img1 {
  position: absolute;
  left: 38px;
  top: -18px;
  width: 188px;
  height: auto;
  aspect-ratio: 199/213;
  z-index: 2;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .page-about .about_closing .img1 {
    left: 0;
    width: 80px;
    top: -100px;
  }
}
.page-about .about_closing h2 {
  margin-left: 284px;
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
  line-height: 1.9;
}
@media screen and (max-width: 1024px) {
  .page-about .about_closing h2 {
    margin-left: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .page-about .about_closing h2 {
    font-size: 1.8rem;
  }
}
.page-about .about_closing h2 .pink {
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.9;
}
.page-about .about_closing .box {
  margin-left: 30px;
  background: #fffa5a;
  border-radius: 10px;
  position: relative;
  margin-right: 62px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 85px;
}
@media screen and (max-width: 1024px) {
  .page-about .about_closing .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 60px;
  }
}
.page-about .about_closing .box .img2 {
  position: absolute;
  z-index: 3;
  right: -57px;
  bottom: -70px;
  width: 205px;
  height: auto;
  aspect-ratio: 220/194;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .page-about .about_closing .box .img2 {
    width: 100px;
    right: 0;
    bottom: -50px;
  }
}
.page-about .about_closing .box .img3 {
  position: absolute;
  right: -62px;
  bottom: 13px;
  width: 159px;
  height: auto;
  aspect-ratio: 159/336;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .page-about .about_closing .box .img3 {
    right: -4%;
    bottom: -25px;
    width: 80px;
  }
}
.page-about .about_closing .box .img {
  -webkit-clip-path: polygon(40% 0%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(40% 0%, 100% 0, 100% 100%, 0% 100%);
  width: 46%;
  height: auto;
  border-radius: 0 10px 10px 0;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .page-about .about_closing .box .img {
    width: 33%;
  }
}
@media screen and (max-width: 1024px) {
  .page-about .about_closing .box .img {
    -webkit-clip-path: none;
            clip-path: none;
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
  }
}
.page-about .about_closing .box .img img {
  width: 100%;
  height: 100%;
  display: block;
}
.page-about .about_closing .box .detail {
  padding: 60px 0 60px 78px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-right: -100px;
}
@media screen and (max-width: 1024px) {
  .page-about .about_closing .box .detail {
    margin-right: 0;
    padding: 30px 20px 20px;
  }
}
.page-about .about_closing .box .detail h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 26px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .page-about .about_closing .box .detail h3 {
    margin-bottom: 16px;
  }
}
.page-about .about_closing .box .detail h3 span {
  z-index: 2;
  position: relative;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.5476190476;
  padding-right: 20px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .page-about .about_closing .box .detail h3 span {
    font-size: 2rem;
  }
}
.page-about .about_closing .box .detail h3 span::before {
  content: "";
  width: calc(100% + 78px);
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.page-about .about_closing .box .detail p {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .page-about .about_closing .box .detail p {
    font-size: 1.6rem;
  }
}
.page-about .about_closing .description {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.2;
  letter-spacing: 0.05em;
  margin-bottom: 85px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_closing .description {
    font-size: 1.6rem;
    margin-bottom: 40px;
    line-height: 2;
  }
}
.page-about .about_closing .btn {
  font-size: 2.86rem;
  max-width: 584px;
  padding: 25px 20px 26px;
}
@media screen and (max-width: 767.9px) {
  .page-about .about_closing .btn {
    font-size: 1.6rem;
    padding: 15px 20px;
    max-width: 360px;
  }
}

.contact_text {
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .contact_text {
    font-size: 1.5rem;
    text-align: left;
  }
}

.form {
  width: 100%;
  padding: 57px 100px 108px;
  border-radius: 20px;
  background: #fff;
  margin-bottom: 130px;
}
@media screen and (max-width: 767.9px) {
  .form {
    padding: 30px 20px 50px;
    margin-bottom: 80px;
  }
}
.form .check {
  color: #de2f90;
  font-size: 2rem;
  margin-left: 7px;
}
@media screen and (max-width: 767.9px) {
  .form .check {
    font-size: 1.6rem;
  }
}
.form table {
  width: 100%;
  display: block;
  margin-bottom: 30px;
}
.form table tbody {
  display: block;
}
.form table tr {
  margin-bottom: 20px;
  display: block;
}
.form table tr th {
  margin-bottom: 4px;
  display: block;
}
.form table tr th p {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 767.9px) {
  .form table tr th p {
    font-size: 1.6rem;
  }
}
.form table tr td {
  width: 100%;
  display: block;
  font-size: 1.6rem;
  line-height: 2;
}
.form table tr td br {
  display: none;
}
.form table tr td input[type=text],
.form table tr td input[type=email],
.form table tr td input[type=tel],
.form table tr td select,
.form table tr td textarea {
  font-weight: 500;
  width: 100%;
  font-size: 1.8rem;
  padding: 6px 25px;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0;
  margin-left: 0;
  border-radius: 5px;
  border: solid 2px #34200b;
  background: #f7f7f7;
  color: #34200b;
  min-height: 54px;
}
@media screen and (max-width: 767.9px) {
  .form table tr td input[type=text],
  .form table tr td input[type=email],
  .form table tr td input[type=tel],
  .form table tr td select,
  .form table tr td textarea {
    font-size: 1.6rem;
    padding: 3px 20px;
    min-height: 45px;
  }
}
.form table tr td textarea {
  height: 255px;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .form table tr td textarea {
    height: 180px;
  }
}
.form table tr td select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; /* デフォルトの矢印を無効 */
}
.form table tr td select::-ms-expand {
  display: none; /* デフォルトの矢印を無効(IE用) */
}
.form table tr td select {
  background-image: url(../img/select-arrow.svg);
  background-position: right 24px center;
  background-repeat: no-repeat;
  font-weight: 500;
  background-size: 13px 9px;
  vertical-align: bottom;
}
.form table tr td .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px 47px;
}
@media screen and (max-width: 767.9px) {
  .form table tr td .wpcf7-checkbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
}
.form table tr td .wpcf7-checkbox span {
  font-size: 1.6rem;
  vertical-align: middle;
  font-weight: 700;
}
.form input[type=checkbox] {
  width: 15px;
  min-width: 15px;
  height: 15px;
  margin-right: 12px;
  margin-top: 5px;
  -moz-appearance: none;
       appearance: none; /* 標準デザインを解除 */
  -webkit-appearance: none;
  border: 2px solid #34200b;
  border-radius: 1px;
  cursor: pointer;
  position: relative;
}
.form input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 3px;
  width: 4px;
  height: 7px;
  border: solid #34200b;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.form .wpcf7-list-item {
  margin-left: 0;
}
.form .privacy_policy_check {
  position: relative;
  text-align: center;
  margin-bottom: 66px;
}
@media screen and (max-width: 767.9px) {
  .form .privacy_policy_check {
    margin-bottom: 30px;
  }
}
.form .privacy_policy_check .wpcf7-not-valid-tip {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-wrap: nowrap;
}
.form .privacy_policy_check .wpcf7-list-item {
  margin-left: 0;
}
.form .privacy_policy_check label,
.form .privacy_policy_check p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .form .privacy_policy_check label,
  .form .privacy_policy_check p {
    display: block;
  }
}
@media screen and (max-width: 767.9px) {
  .form .privacy_policy_check label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.form .privacy_policy_check .wpcf7-list-item-label p {
  display: block;
  text-align: left;
}
.form .privacy_policy_check a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form .privacy_policy_check a,
.form .privacy_policy_check p {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and (max-width: 767.9px) {
  .form .privacy_policy_check a,
  .form .privacy_policy_check p {
    font-size: 1.4rem;
    text-align: left;
  }
}
.form .privacy_policy_check .wpcf7-list-item {
  vertical-align: middle;
}
.form .wpcf7-response-output {
  font-size: 1.5rem;
}
.form p.submit {
  position: relative;
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 408px;
  height: 65px;
  max-width: 100%;
}
@media screen and (max-width: 767.9px) {
  .form p.submit {
    height: auto;
  }
}
.form p.submit br {
  display: none;
}
.form p.submit .wpcf7-spinner {
  position: absolute;
}
.form p.submit input {
  width: 100%;
  height: 100%;
  background: #fff;
  color: #34200b;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 16px 20px 20px;
  border: solid 2px #34200b;
  font-family: "Zen Maru Gothic", sans-serif;
  cursor: pointer;
}
@media screen and (max-width: 767.9px) {
  .form p.submit input {
    font-size: 1.8rem;
    line-height: 1.4444444444;
    padding: 10px 22px;
  }
}
.form p.submit:hover input {
  background: #34200b;
  color: #fff;
}
.form p.submit2 {
  margin-top: 20px;
}
@media screen and (max-width: 767.9px) {
  .form p.submit2 {
    margin-top: 20px;
  }
}

.page-contact .contact_text {
  margin-bottom: 46px;
}
.page-contact .contact_check {
  margin-bottom: 86px;
  max-width: 940px;
  margin-inline: auto;
  border-radius: 15px;
  background: rgba(255, 133, 183, 0.14);
  padding: 17px 20px 16px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page-contact .contact_check {
    margin-bottom: 60px;
  }
}
.page-contact .contact_check .img1 {
  width: 100px;
  position: absolute;
  top: -20px;
  left: calc(50% - 400px);
}
@media screen and (max-width: 1024px) {
  .page-contact .contact_check .img1 {
    left: 14px;
  }
}
@media screen and (max-width: 767.9px) {
  .page-contact .contact_check .img1 {
    width: 60px;
    top: -10px;
  }
}
.page-contact .contact_check .img2 {
  width: 116px;
  position: absolute;
  bottom: -25px;
  right: calc(50% - 460px);
}
@media screen and (max-width: 1024px) {
  .page-contact .contact_check .img2 {
    right: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .page-contact .contact_check .img2 {
    width: 80px;
    bottom: -30px;
  }
}
.page-contact .contact_check .inner {
  background: #ff85b7;
  border-radius: 10px;
  padding: 24px 20px 40px;
}
@media screen and (max-width: 1024px) {
  .page-contact .contact_check .inner {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media screen and (max-width: 767.9px) {
  .page-contact .contact_check .inner {
    padding: 30px 20px;
  }
}
.page-contact .contact_check h3 {
  color: #fff;
  margin-bottom: 17px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.9;
}
@media screen and (max-width: 767.9px) {
  .page-contact .contact_check h3 {
    font-size: 1.8rem;
  }
}
.page-contact .contact_check p {
  color: #fff;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .page-contact .contact_check p {
    font-size: 1.5rem;
  }
}

.page-contact-thanks .contact_text {
  margin-bottom: 73px;
}
@media screen and (max-width: 767.9px) {
  .page-contact-thanks .contact_text {
    margin-bottom: 46px;
  }
}
.page-contact-thanks .inner {
  background: #fff;
  padding: 50px 20px 60px;
  margin-bottom: 150px;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page-contact-thanks .inner {
    margin-bottom: 80px;
  }
}
.page-contact-thanks .inner .img2 {
  position: absolute;
  top: -92px;
  right: 0;
  width: 170px;
}
@media screen and (max-width: 767.9px) {
  .page-contact-thanks .inner .img2 {
    width: 90px;
    top: -60px;
  }
}
.page-contact-thanks .inner p {
  font-size: 2rem;
  line-height: 1.9;
  text-align: center;
  font-weight: 700;
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .page-contact-thanks .inner p {
    font-size: 1.6rem;
    margin-bottom: 50px;
  }
}

.page-request .contact_text {
  margin-bottom: 104px;
}
@media screen and (max-width: 767.9px) {
  .page-request .contact_text {
    margin-bottom: 60px;
  }
}
.page-request .form {
  position: relative;
}
.page-request .form img {
  position: absolute;
  top: -85px;
  right: 8px;
  width: 150px;
}
@media screen and (max-width: 767.9px) {
  .page-request .form img {
    width: 90px;
    top: -60px;
  }
}

.page-id-334 .page-contact-thanks .contact_text {
  margin-bottom: 84px;
}
@media screen and (max-width: 767.9px) {
  .page-id-334 .page-contact-thanks .contact_text {
    margin-bottom: 60px;
  }
}

.single_wrapper {
  padding-top: 216px;
  color: #462929;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper {
    padding-top: 140px;
  }
}
.single_wrapper .cont {
  max-width: 1200px;
}
.single_wrapper .single_top {
  margin-bottom: 65px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .single_top {
    margin-bottom: 40px;
  }
}
.single_wrapper .single_top .time_wrap {
  gap: 20px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .single_top .time_wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.single_wrapper .single_top .post_category {
  gap: 10px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .single_top .post_category {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.single_wrapper .single_top .post_category p {
  background: #ff85b7;
  color: #fff;
  padding: 2px 15px 6px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4545454545;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .single_top .post_category p {
    font-size: 1.5rem;
    padding-bottom: 4px;
  }
}
.single_wrapper .single_top time {
  color: #bebebe;
  font-size: 2.1rem;
  font-weight: 300;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .single_top time {
    font-size: 1.5rem;
  }
}
.single_wrapper .single_top h1 {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.46;
  margin-bottom: 34px;
  padding-right: 200px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .single_top h1 {
    font-size: 2.6rem;
    padding-right: 0;
    margin-bottom: 50px;
  }
}
.single_wrapper .single_top .main_img {
  width: 100%;
  position: relative;
  z-index: 2;
}
.single_wrapper .single_top .main_img::before {
  content: "";
  width: 192px;
  height: auto;
  aspect-ratio: 204/180;
  background-image: url(../img/tori_02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -160px;
  right: -32px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper .single_top .main_img::before {
    width: 80px;
    top: -40px;
    right: 0;
  }
}
.single_wrapper .single_top .main_img img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  display: block;
}
.single_wrapper article {
  padding: 57px 58px 100px 58px;
  background: #fff;
  border-radius: 25px;
  -webkit-box-shadow: 0 2px 10px 0 rgba(70, 41, 41, 0.08);
          box-shadow: 0 2px 10px 0 rgba(70, 41, 41, 0.08);
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article {
    padding: 30px 20px;
    border-radius: 20px;
  }
}
.single_wrapper article p,
.single_wrapper article a {
  font-size: 1.8rem;
  line-height: 2.05;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article p,
  .single_wrapper article a {
    font-size: 1.5rem;
  }
}
.single_wrapper article figure {
  margin: 24px 0;
}
.single_wrapper article img {
  border-radius: 10px;
}
.single_wrapper article .post_profile {
  border: 2px solid #ff85b7;
  padding: 20px 40px 35px;
  border-radius: 5px;
  margin: 24px 0;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .post_profile {
    padding: 15px 20px 20px;
  }
}
.single_wrapper article .post_profile p:nth-child(1) {
  color: #ff85b7;
  font-weight: 700;
  padding-bottom: 3px;
  border-bottom: 1px solid #ff85b7;
  margin-bottom: 15px;
  font-size: 2rem;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .post_profile p:nth-child(1) {
    font-size: 1.8rem;
  }
}
.single_wrapper article .post_profile p:nth-child(2) {
  font-size: 1.8rem;
  margin-bottom: 4px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .post_profile p:nth-child(2) {
    font-size: 1.5rem;
  }
}
.single_wrapper article .post_profile p:nth-child(3) {
  font-size: 1.4rem;
  line-height: 1.85;
}
.single_wrapper article #ez-toc-container {
  margin: 36px 0 80px;
  padding: 34px 50px 50px;
  border-radius: 5px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article #ez-toc-container {
    padding: 30px 20px;
  }
}
.single_wrapper article #ez-toc-container .ez-toc-title-container {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article #ez-toc-container .ez-toc-title-container {
    margin-bottom: 20px;
  }
}
.single_wrapper article #ez-toc-container .ez-toc-title {
  font-family: "Baloo 2", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.13;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article #ez-toc-container .ez-toc-title {
    font-size: 3rem;
  }
}
.single_wrapper article #ez-toc-container nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article #ez-toc-container nav ul {
    gap: 8px;
  }
}
.single_wrapper article #ez-toc-container nav ul li a {
  font-size: 2.4rem;
  line-height: 2.05;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 22px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article #ez-toc-container nav ul li a {
    font-size: 1.6rem;
    gap: 15px;
  }
}
.single_wrapper article #ez-toc-container nav ul li a:hover {
  opacity: 1;
}
.single_wrapper article #ez-toc-container nav ul li a::before {
  content: "";
  width: 38px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../img/mokuji.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 5px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article #ez-toc-container nav ul li a::before {
    width: 26px;
  }
}
.single_wrapper article h2 {
  padding-left: 30px;
  padding-bottom: 9px;
  border-bottom: 2px solid #462929;
  position: relative;
  z-index: 2;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 35px;
  margin-top: 30px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article h2 {
    font-size: 2rem;
    padding-left: 20px;
    margin-bottom: 25px;
    margin-top: 20px;
  }
}
.single_wrapper article h2::before {
  content: "";
  width: 49px;
  height: 49px;
  background: #ff85b7;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article h2::before {
    width: 35px;
    height: 35px;
    top: 6px;
  }
}
.single_wrapper article h3 {
  padding: 6px 30px 11px;
  border-radius: 5px;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#ff8587), color-stop(33%, #fc74ac));
  background: linear-gradient(90deg, #ff8587 0%, #fc74ac 33%);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 32px;
  margin-top: 30px;
  line-height: 2.05;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article h3 {
    font-size: 1.8rem;
    padding: 6px 20px 11px;
  }
}
.single_wrapper article .post_question {
  margin-top: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #ff85b7;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .post_question {
    font-size: 1.6rem;
  }
}
.single_wrapper article .post_question::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  vertical-align: super;
  width: 90px;
  height: 2px;
  background: #ff85b7;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .post_question::before {
    width: 40px;
  }
}
.single_wrapper article .post_list {
  background: #fff2f7;
  padding: 26px 40px 32px 60px;
  border-radius: 5px;
  line-height: 1.85;
  margin: 24px 0;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .post_list {
    padding: 25px 20px 25px 40px;
  }
}
.single_wrapper article .post_list li {
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .post_list li {
    font-size: 1.5rem;
  }
}
.single_wrapper article ul li {
  list-style: disc;
}
.single_wrapper article ol li {
  list-style: decimal;
}
.single_wrapper article .wp-block-button {
  width: 100%;
  max-width: 580px;
  margin: 24px auto;
}
.single_wrapper article .wp-block-button a {
  padding: 11px 20px 15px;
  background: #462929;
  color: #fffa5a;
  font-size: 2.6rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .wp-block-button a {
    font-size: 1.6rem;
  }
}
.single_wrapper article .wp-block-button a:hover {
  opacity: 1;
  background: #fffa5a;
  color: #462929;
  font-weight: 700;
}
.single_wrapper article .information {
  border: solid 2px #462929;
  border-radius: 15px;
  padding: 0 50px 46px;
  margin: 40px 0;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .information {
    margin: 30px 0;
    padding: 0 20px 30px;
  }
}
.single_wrapper article .information h2 {
  color: #462929;
  border: none;
  background: #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0 18px;
  font-size: 3.8rem;
  line-height: 1.6;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .information h2 {
    font-size: 2.6rem;
  }
}
.single_wrapper article .information h2::before {
  content: none;
}
.single_wrapper article .information img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-bottom: 27px;
}
.single_wrapper article .information table {
  font-size: 2rem;
  margin-bottom: 30px;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .information table {
    font-size: 1.4rem;
    display: block;
  }
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .information table tbody {
    display: block;
  }
}
.single_wrapper article .information table tr {
  border-bottom: 1px solid #b4a7a7;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .information table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.single_wrapper article .information table th,
.single_wrapper article .information table td {
  padding: 16px 0 13px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .information table th,
  .single_wrapper article .information table td {
    padding: 10px 0 8px;
    line-height: 1.7 !important;
    width: 100%;
  }
}
.single_wrapper article .information table a {
  font-size: 2rem;
  word-wrap: break-word;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .information table a {
    font-size: 1.5rem;
  }
}
.single_wrapper article .information table td {
  padding-top: 5px;
}
.single_wrapper article .information table th {
  font-weight: 700;
}
.single_wrapper article .information table th {
  width: 178px;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .information table th {
    padding-bottom: 0;
  }
}
.single_wrapper article .information table .map_link {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
}
.single_wrapper article .information table .map_link::before {
  content: "";
  width: 15px;
  height: auto;
  aspect-ratio: 15/25;
  background-image: url(../img/map_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 5px;
}
.single_wrapper article .information .comment {
  font-size: 1.1rem;
  line-height: 1.67;
}
.single_wrapper article .share_card {
  margin: 20px 0;
}
.single_wrapper article .share_card a {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 2px 10px 0 rgba(70, 41, 41, 0.08);
          box-shadow: 0 2px 10px 0 rgba(70, 41, 41, 0.08);
  border-radius: 10px;
  background: #fff;
  min-height: 198px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .share_card a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.single_wrapper article .share_card img {
  width: 42.1%;
  border-radius: 0;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .share_card img {
    width: 100%;
  }
}
.single_wrapper article .share_card .right {
  padding: 20px 15px 18px 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .share_card .right {
    width: 100%;
    padding: 10px;
  }
}
.single_wrapper article .share_card .blog_card_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px 13px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 7px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .share_card .blog_card_meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.single_wrapper article .share_card time {
  font-size: 1.3rem;
  font-weight: 300;
  color: #bebebe;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .share_card time {
    font-size: 1.1rem;
  }
}
.single_wrapper article .share_card .blog_card_categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.single_wrapper article .share_card .blog_card_categories span {
  color: #fff;
  background: #ff85b7;
  padding: 1px 9px 3px;
  font-size: 1.37rem;
  font-weight: 700;
  line-height: 1.46;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .share_card .blog_card_categories span {
    font-size: 1.1rem;
  }
}
.single_wrapper article .share_card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.46;
  margin: 0 0 26px;
  background: none;
  padding: 0;
  color: #462929;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .share_card h3 {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }
}
.single_wrapper article .share_card .blog_card_tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
}
.single_wrapper article .share_card .blog_card_tags span {
  color: #a79b9b;
  border: 1px solid #a79b9b;
  padding: 1px 14px 3px;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: 0;
  border-radius: 100px;
}
.single_wrapper article .post_fukidashi-r,
.single_wrapper article .post_fukidashi-l {
  gap: 23px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 50px 0;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .post_fukidashi-r,
  .single_wrapper article .post_fukidashi-l {
    gap: 10px;
  }
}
.single_wrapper article .post_fukidashi-r p,
.single_wrapper article .post_fukidashi-l p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  font-size: 1.6rem;
  line-height: 1.8;
  padding: 21px 35px 22px 40px;
  border-radius: 10px;
  position: relative;
  background: #f7f7f7;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .post_fukidashi-r p,
  .single_wrapper article .post_fukidashi-l p {
    padding: 20px;
  }
}
.single_wrapper article .post_fukidashi-r p::before,
.single_wrapper article .post_fukidashi-l p::before {
  content: "";
  width: 13px;
  height: 18px;
  background: #f7f7f7;
  position: absolute;
  top: 30px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .post_fukidashi-r p::before,
  .single_wrapper article .post_fukidashi-l p::before {
    top: 20px;
  }
}
.single_wrapper article .post_fukidashi-r figure,
.single_wrapper article .post_fukidashi-l figure {
  width: 80px;
  height: 80px;
  background: #f7f7f7;
  border: solid 2px #462929;
  border-radius: 50%;
  overflow: hidden;
  margin: 0;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .post_fukidashi-r figure,
  .single_wrapper article .post_fukidashi-l figure {
    width: 60px;
    height: 60px;
  }
}
.single_wrapper article .post_fukidashi-r figure img,
.single_wrapper article .post_fukidashi-l figure img {
  width: 79px;
  margin: 12px auto 0;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .post_fukidashi-r figure img,
  .single_wrapper article .post_fukidashi-l figure img {
    width: 58px;
    margin-top: 6px;
  }
}
.single_wrapper article .post_fukidashi-r p {
  margin-right: 13px;
}
.single_wrapper article .post_fukidashi-r p::before {
  right: -13px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.single_wrapper article .post_fukidashi-l p {
  margin-left: 13px;
}
.single_wrapper article .post_fukidashi-l p::before {
  left: -13px;
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.single_wrapper article .post_share {
  border: solid 2px #462929;
  border-radius: 15px;
  padding: 0 38px 36px;
  margin: 60px 0 0;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .post_share {
    margin-top: 40px;
    padding: 0 20px 20px;
  }
}
.single_wrapper article .post_share h2 {
  color: #462929;
  border: none;
  background: #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  -webkit-transform: translateY(-63%);
          transform: translateY(-63%);
  padding: 0 18px;
  font-size: 2.6rem;
  line-height: 1.6;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .post_share h2 {
    font-size: 2rem;
  }
}
.single_wrapper article .post_share h2::before {
  content: none;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .post_share .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.single_wrapper article .post_share .flex a {
  width: 25%;
  height: 45px;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .post_share .flex a {
    height: 35px;
  }
}
.single_wrapper article .post_share .flex img {
  border-radius: 0;
}
.single_wrapper article .post_share .flex .sns__twitter {
  background: #292929;
}
.single_wrapper article .post_share .flex .sns__twitter img {
  width: 18px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .post_share .flex .sns__twitter img {
    width: 14px;
  }
}
.single_wrapper article .post_share .flex .sns__instagram {
  background: linear-gradient(137deg, #cf2e92 0%, #f26939 47%, #ffdd83 100%);
}
.single_wrapper article .post_share .flex .sns__instagram img {
  width: 21px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .post_share .flex .sns__instagram img {
    width: 16px;
  }
}
.single_wrapper article .post_share .flex .sns__facebook {
  background: #0866ff;
}
.single_wrapper article .post_share .flex .sns__facebook img {
  width: 20px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .post_share .flex .sns__facebook img {
    width: 16px;
  }
}
.single_wrapper article .post_share .flex .sns__line {
  background: #06c755;
}
.single_wrapper article .post_share .flex .sns__line img {
  width: 21px;
}
@media screen and (max-width: 767.9px) {
  .single_wrapper article .post_share .flex .sns__line img {
    width: 16px;
  }
}

.two_column_content {
  max-width: 1200px;
  gap: 46px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .two_column_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.two_column_content .left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 1024px) {
  .two_column_content .left {
    width: 100%;
  }
}

.sidebar {
  width: 330px;
}
@media screen and (max-width: 430px) {
  .sidebar {
    width: 100%;
  }
}
.sidebar img {
  display: block;
}
.sidebar .sidebar_banner1 {
  margin-bottom: 60px;
}
.sidebar .sidebar_banner1 img {
  border-radius: 20px;
}
.sidebar .sidebar_menu {
  background: #fff;
  border-radius: 20px;
  padding: 0 12px 40px 22px;
  margin-bottom: 54px;
}
.sidebar .sidebar_menu h2 {
  font-weight: 700;
  text-align: center;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  line-height: 1.13;
  letter-spacing: 0;
  margin-bottom: 13px;
  margin-right: 12px;
}
.sidebar .sidebar_menu h2 span {
  display: block;
  text-align: center;
  color: #ff85b7;
  font-size: 3.4rem;
  margin-bottom: 3px;
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: 0;
}
.sidebar .tags_list {
  gap: 9px;
}
@media screen and (max-width: 767.9px) {
  .sidebar .tags_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.sidebar .tags_list a {
  color: #a79b9b;
  border: 2px solid #a79b9b;
  border-radius: 100px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.46;
  padding: 1px 20px 2px;
}
.sidebar .sidebar_category {
  padding-right: 26px;
  padding-left: 33px;
  padding-bottom: 30px;
  margin-bottom: 130px;
}
@media screen and (max-width: 767.9px) {
  .sidebar .sidebar_category {
    margin-bottom: 60px;
  }
}
.sidebar .sidebar_category h2 {
  margin-bottom: 20px;
}
.sidebar .category_list a {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.13;
  padding: 20px 0 22px 1px;
  border-bottom: 2px dashed #462929;
}
@media screen and (max-width: 767.9px) {
  .sidebar .category_list a {
    font-size: 1.8rem;
  }
}
.sidebar .category_list a:last-child {
  border-bottom: none;
}
.sidebar .sidebar_pref {
  position: relative;
  background: #fffa5a;
  border-radius: 20px;
  padding: 50px 25px 33px;
}
.sidebar .sidebar_pref::before {
  content: "";
  width: 70px;
  height: auto;
  aspect-ratio: 63/77;
  background-image: url(../img/tori_04.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.sidebar .sidebar_pref h2 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.13;
}
.sidebar .sidebar_pref .pref_list {
  gap: 10px 13px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767.9px) {
  .sidebar .sidebar_pref .pref_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.sidebar .sidebar_pref .pref_list a {
  background: #fff;
  border-radius: 3px;
  width: calc(50% - 6.5px);
  height: auto;
  padding: 17px 10px 15px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1.3;
}
.sidebar .sidebar_pref .pref_list a img {
  max-height: 76px;
  margin: 0 auto 1px;
  display: block;
}
.sidebar .sidebar_pref .pref_list a:hover {
  opacity: 1;
  background: #ff85b7;
  color: #fff;
}
.sidebar .ad_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  margin-bottom: 77px;
}
.sidebar .ad_wrapper img {
  width: 100%;
  height: auto;
}
.sidebar .popular-posts {
  background: #fff;
  border-radius: 20px;
  padding: 0 12px 40px 22px;
  margin-bottom: 50px;
}
.sidebar .popular-posts h2 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.13;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.sidebar .popular-posts h2::before {
  content: "Ranking";
  display: block;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.13;
  color: #ff85b7;
  margin-bottom: 5px;
  text-align: center;
  font-family: "Baloo 2", sans-serif;
}
.sidebar .popular-posts ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px;
}
.sidebar .popular-posts ul li {
  overflow: unset;
}
.sidebar .popular-posts ul a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.sidebar .popular-posts ul .rank_number {
  position: absolute;
  top: -10px;
  left: 7px;
  background: #ff85b7;
  color: #fff;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 2px;
}
.sidebar .popular-posts ul .img_wrap {
  width: 117px;
  height: auto;
}
.sidebar .popular-posts ul .img_wrap img {
  width: 100%;
  display: block;
  height: auto;
  aspect-ratio: 117/76;
  border-radius: 5px;
}
.sidebar .popular-posts ul h3 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.46;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  display: -webkit-box;
}

@media screen and (max-width: 1024px) {
  .sidebar.lg-none {
    display: none;
  }
}

.sidebar_wrapper.lg-block {
  display: none;
  padding: 30px 0;
}
@media screen and (max-width: 1024px) {
  .sidebar_wrapper.lg-block {
    display: block;
    padding: 50px 0 80px;
  }
}

.blog_card img {
  display: block;
  height: auto;
  aspect-ratio: 348/225;
  border-radius: 8px;
  margin-bottom: 12px;
}
@media screen and (max-width: 767.9px) {
  .blog_card img {
    margin-bottom: 8px;
  }
}
.blog_card .blog_card_meta {
  gap: 11px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
}
@media screen and (max-width: 767.9px) {
  .blog_card .blog_card_meta {
    gap: 0 5px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.blog_card .blog_card_categories {
  gap: 5px;
}
@media screen and (max-width: 767.9px) {
  .blog_card .blog_card_categories {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.blog_card .blog_card_categories span {
  color: #fff;
  background: #ff85b7;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1px 7px 2px;
  line-height: 1.46;
}
@media screen and (max-width: 767.9px) {
  .blog_card .blog_card_categories span {
    font-size: 1rem;
  }
}
.blog_card time {
  color: #bebebe;
  font-size: 1.15rem;
  font-weight: 300;
}
.blog_card h3 {
  font-size: 1.9rem;
  line-height: 1.46;
  font-weight: 700;
  margin-bottom: 12px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
}
@media screen and (max-width: 767.9px) {
  .blog_card h3 {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }
}
.blog_card .blog_card_tags {
  gap: 6px;
}
@media screen and (max-width: 767.9px) {
  .blog_card .blog_card_tags {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.blog_card .blog_card_tags span {
  color: #a79b9b;
  font-size: 1rem;
  font-weight: 700;
  padding: 2px 12px 2px;
  line-height: 1.46;
  border-radius: 100px;
  border: 1px solid #a79b9b;
}

.related {
  padding-top: 268px;
  position: relative;
  overflow: hidden;
  padding-bottom: 68px;
}
@media screen and (max-width: 767.9px) {
  .related {
    padding-top: 110px;
    padding-bottom: 30px;
  }
}
.related::before {
  content: "";
  width: calc(100% + 54px);
  height: 717px;
  border-radius: 50% 50% 0 0;
  background: #fff;
  position: absolute;
  top: 300px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 0 4px 44px 0 rgba(103, 103, 103, 0.07);
          box-shadow: 0 4px 44px 0 rgba(103, 103, 103, 0.07);
}
@media screen and (max-width: 767.9px) {
  .related::before {
    height: 200px;
    top: 100px;
  }
}
.related::after {
  content: "";
  width: 100%;
  height: calc(100% - 977px);
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .related::after {
    height: calc(100% - 150px);
  }
}
.related .cont {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}
.related h2 {
  position: relative;
  text-align: center;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.46;
  color: #462929;
  margin-bottom: 75px;
  padding-left: 110px;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .related h2 {
    font-size: 2.6rem;
    padding-left: 0;
    margin-bottom: 30px;
  }
}
.related h2::before {
  content: "";
  width: 165px;
  height: auto;
  aspect-ratio: 165/116;
  background-image: url(../img/tori5.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -58px;
  left: calc(50% - 276px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .related h2::before {
    width: 85px;
    -webkit-transform: unset;
            transform: unset;
    top: -63px;
    left: 0;
  }
}
.related .blog_card_wrap {
  gap: 70px 30px;
}
@media screen and (max-width: 767.9px) {
  .related .blog_card_wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px 20px;
  }
}
.related .blog_card {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 767.9px) {
  .related .blog_card {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 430px) {
  .related .blog_card {
    width: 100%;
  }
}
.related .blog_card img {
  border-radius: 9px;
}
.related .blog_card .blog_card_meta {
  margin-bottom: 6px;
}
.related .blog_card .blog_card_meta time {
  font-size: 1.2rem;
}
@media screen and (max-width: 767.9px) {
  .related .blog_card .blog_card_meta time {
    font-size: 1.15rem;
  }
}
.related .blog_card .blog_card_meta .blog_card_categories span {
  font-size: 1.2rem;
}
@media screen and (max-width: 767.9px) {
  .related .blog_card .blog_card_meta .blog_card_categories span {
    font-size: 1rem;
  }
}
.related .blog_card h3 {
  font-size: 2.05rem;
  margin-bottom: 14px;
}
@media screen and (max-width: 767.9px) {
  .related .blog_card h3 {
    font-size: 1.6rem;
  }
}

.bottom_check {
  background: #fff;
  padding-bottom: 138px;
}
@media screen and (max-width: 767.9px) {
  .bottom_check {
    padding-bottom: 60px;
  }
}
.bottom_check .cont {
  max-width: 1100px;
}
.bottom_check h2 {
  text-align: center;
  position: relative;
  z-index: 2;
}
.bottom_check h2 img {
  width: 333px;
  max-width: 100%;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
@media screen and (max-width: 767.9px) {
  .bottom_check h2 img {
    width: 200px;
  }
}
.bottom_check .wrap {
  margin-top: -100px;
  background-image: url(../img/bottom_check_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding: 90px 62px 76px;
  gap: 30px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767.9px) {
  .bottom_check .wrap {
    margin-top: -70px;
    padding: 50px 20px 30px;
    gap: 20px;
  }
}
.bottom_check .wrap a {
  background: #fff;
  border-radius: 12px;
  width: calc(50% - 15px);
  min-height: 221px;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 20px 52px 27px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  .bottom_check .wrap a {
    width: 100%;
    min-height: unset;
    padding: 30px;
  }
}
.bottom_check .wrap a p.baloo {
  color: #ff85b7;
  font-size: 2.6rem;
  line-height: 1.13;
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (max-width: 767.9px) {
  .bottom_check .wrap a p.baloo {
    font-size: 1.8rem;
  }
}
.bottom_check .wrap a p:nth-child(2) {
  color: #462929;
  font-size: 3.4rem;
  line-height: 1.13;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  .bottom_check .wrap a p:nth-child(2) {
    font-size: 2rem;
  }
}
.bottom_check .wrap a:hover {
  background: #462929;
  opacity: 1;
}
.bottom_check .wrap a:hover p:nth-child(2) {
  color: #fff;
}

.category_page_top {
  position: relative;
  padding-bottom: 104px;
  -webkit-mask-image: url("../img/mask.svg");
          mask-image: url("../img/mask.svg");
  -webkit-mask-position: bottom center;
          mask-position: bottom center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: relative;
  margin-bottom: 130px;
}
@media screen and (max-width: 767.9px) {
  .category_page_top {
    padding-top: 0;
    padding-bottom: 60px;
    margin-bottom: 80px;
  }
}
.category_page_top .category_mv_img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}
.category_page_top::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(59, 58, 58, 0.54);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.category_page_top .cont {
  padding-top: 170px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767.9px) {
  .category_page_top .cont {
    padding-top: 100px;
  }
}
.category_page_top .cont img {
  margin: 0 auto 7px;
  width: 146px;
  display: block;
  height: 129px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767.9px) {
  .category_page_top .cont img {
    height: 80px;
    margin-bottom: 20px;
  }
}
.category_page_top .cont p {
  color: #fff;
  font-size: 1.6rem;
  font-family: "ADLaM Display", system-ui;
  font-weight: 400;
  line-height: 1.13;
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .category_page_top .cont p {
    font-size: 1.4rem;
  }
}
.category_page_top .cont h1 {
  color: #fff;
  font-size: 5rem;
  line-height: 1.13;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  text-shadow: 0 4px 4px 0 rgba(70, 41, 41, 0.25);
}
@media screen and (max-width: 767.9px) {
  .category_page_top .cont h1 {
    font-size: 3rem;
  }
}

.archive_wrapper {
  margin-bottom: 70px;
}
.archive_wrapper .search_box .cont {
  width: 100%;
}
.archive_wrapper .search_box {
  margin-bottom: 47px;
}
.archive_wrapper .post_list {
  padding: 50px 50px 100px;
  background: #fff;
  border-radius: 25px;
  -webkit-box-shadow: 0 2px 10px 0 rgba(70, 41, 41, 0.08);
          box-shadow: 0 2px 10px 0 rgba(70, 41, 41, 0.08);
  gap: 65px 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .archive_wrapper .post_list {
    padding: 30px 20px;
    gap: 30px 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.archive_wrapper .post_list li {
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 767.9px) {
  .archive_wrapper .post_list li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 430px) {
  .archive_wrapper .post_list li {
    width: 100%;
  }
}
.archive_wrapper .pagenation {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 11px;
}
@media screen and (max-width: 767.9px) {
  .archive_wrapper .pagenation {
    gap: 8px;
  }
}
.archive_wrapper .pagenation a,
.archive_wrapper .pagenation span {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 3rem;
  font-weight: 700;
  color: #ff85b7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .archive_wrapper .pagenation a,
  .archive_wrapper .pagenation span {
    width: 30px;
    font-size: 2rem;
    height: 30px;
  }
}
.archive_wrapper .pagenation .current {
  background: #ff85b7;
  color: #fff;
}
.archive_wrapper .pagenation a:hover {
  background: #ff85b7;
  color: #fff;
}
.archive_wrapper .pagenation .dots {
  background: none;
}
.archive_wrapper .pagenation .prev,
.archive_wrapper .pagenation .next {
  background: none;
}
.archive_wrapper .pagenation .prev::after,
.archive_wrapper .pagenation .next::after {
  content: "";
  width: 30px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../img/arrow.svg);
  -webkit-filter: brightness(0) saturate(100%) invert(72%) sepia(28%) saturate(3298%) hue-rotate(296deg) brightness(109%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(72%) sepia(28%) saturate(3298%) hue-rotate(296deg) brightness(109%) contrast(101%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 767.9px) {
  .archive_wrapper .pagenation .prev::after,
  .archive_wrapper .pagenation .next::after {
    width: 25px;
  }
}
.archive_wrapper .pagenation .prev:hover,
.archive_wrapper .pagenation .next:hover {
  background: none;
}
.archive_wrapper .pagenation .prev::after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.tag_page_top,
.search_page_top {
  padding: 230px 0 100px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .tag_page_top,
  .search_page_top {
    padding: 120px 0 60px;
  }
}
.tag_page_top::before,
.search_page_top::before {
  content: "";
  width: 20.1%;
  height: auto;
  aspect-ratio: 282/272;
  background-image: url(../img/page_ashirai1.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.tag_page_top::after,
.search_page_top::after {
  content: "";
  width: 56.2%;
  height: auto;
  aspect-ratio: 788/470;
  background-image: url(../img/page_ashirai2.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}
.tag_page_top .cont,
.search_page_top .cont {
  position: relative;
  z-index: 2;
  max-width: 1120px;
}
.tag_page_top h1,
.search_page_top h1 {
  color: #462929;
  font-size: 3.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .tag_page_top h1,
  .search_page_top h1 {
    font-size: 2.6rem;
  }
}

.search_page_top {
  padding-top: 160px;
  padding-bottom: 60px;
  padding: 120px 0 40px;
}
.search_page_top .cont {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}
.search_page_top h1 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .search_page_top h1 {
    margin-bottom: 20px;
  }
}
.search_page_top .search_conditions li {
  margin-bottom: 14px;
}
@media screen and (max-width: 767.9px) {
  .search_page_top .search_conditions li {
    margin-bottom: 10px;
  }
}
.search_page_top .search_conditions p,
.search_page_top .search_conditions span {
  font-weight: 700;
}
.search_page_top .search_conditions .search_conditions_category,
.search_page_top .search_conditions .search_conditions_prefs {
  margin-right: 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8px;
}
.search_page_top .search_conditions .search_conditions_category p,
.search_page_top .search_conditions .search_conditions_prefs p {
  color: #fff;
  border-radius: 100px;
  color: #462929;
  border: 2px solid #462929;
  padding: 10px 20px;
  line-height: 1;
  min-width: 160px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .search_page_top .search_conditions .search_conditions_category p,
  .search_page_top .search_conditions .search_conditions_prefs p {
    min-width: 120px;
  }
}
.search_page_top .search_conditions .search_conditions_category p {
  background: #ff85b7;
}
@media screen and (max-width: 767.9px) {
  .search_page_top .search_conditions .search_conditions_category p {
    font-size: 1.5rem;
  }
}
.search_page_top .search_conditions .search_conditions_prefs p {
  background: #fffa5a;
}
@media screen and (max-width: 767.9px) {
  .search_page_top .search_conditions .search_conditions_prefs p {
    font-size: 1.5rem;
  }
}
.search_page_top .search_conditions .search_conditions_tags {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px 7px;
}
.search_page_top .search_conditions .search_conditions_tags p {
  font-size: 1.5rem;
  color: #462929;
  border: 2px solid #462929;
  padding: 1px 20px 2px;
  line-height: 1.46;
  text-align: center;
  border-radius: 100px;
}
@media screen and (max-width: 767.9px) {
  .search_page_top .search_conditions .search_conditions_tags p {
    font-size: 1.3rem;
  }
}

.page-top {
  background: #fff;
}

.main_visual {
  position: relative;
  background-image: url(../img/main_visual_bg.png);
  background-size: cover;
  background-position: bottom center;
  padding-top: 130px;
  padding-bottom: 62px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  .main_visual {
    background-image: url(../img/main_visual_bg-sp.png);
    padding-bottom: 80px;
    margin-bottom: 0;
    padding-top: 100px;
  }
}
.main_visual .img1 {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}
.main_visual .img1 img {
  width: 748px;
  padding-left: 30px;
  max-width: 90%;
  margin: 0 auto;
  display: block;
}

.top_swiper {
  position: relative;
  z-index: 3;
  padding-bottom: 40px;
  overflow: hidden;
}
.top_swiper .swiper-slide {
  width: 47.4%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-inline: -3%;
}
@media screen and (max-width: 767.9px) {
  .top_swiper .swiper-slide {
    width: auto;
    margin-inline: 0;
  }
}
.top_swiper .swiper-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 664/429;
  border-radius: 20px;
  display: block;
  margin-bottom: 9px;
}
@media screen and (max-width: 767.9px) {
  .top_swiper .swiper-slide img {
    border-radius: 10px;
    margin-bottom: 5px;
  }
}
.top_swiper .swiper-slide h3 {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.46;
  margin-bottom: 3px;
  color: #462929;
}
@media screen and (max-width: 767.9px) {
  .top_swiper .swiper-slide h3 {
    font-size: 1.5rem;
  }
}
.top_swiper .swiper-slide time {
  color: #bebebe;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.46;
  margin-bottom: 3px;
  color: #bebebe;
  margin-bottom: 28px;
}
@media screen and (max-width: 767.9px) {
  .top_swiper .swiper-slide time {
    font-size: 1.1rem;
  }
}
.top_swiper .swiper-slide:not(.swiper-slide-active) {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  margin: 0;
}
.top_swiper .top_swiper_navigation {
  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;
  gap: 20px;
  margin-top: 14px;
  padding: 16px 24px;
  background: #fff;
  border-radius: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767.9px) {
  .top_swiper .top_swiper_navigation {
    gap: 10px;
    padding: 10px 10px;
    margin-top: 20px;
    zoom: 0.8;
  }
}
.top_swiper .top_swiper_navigation .swiper-button-prev,
.top_swiper .top_swiper_navigation .swiper-button-next {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #462929;
  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;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: relative;
  width: 30px;
  height: 25px;
}
@media screen and (max-width: 767.9px) {
  .top_swiper .top_swiper_navigation .swiper-button-prev,
  .top_swiper .top_swiper_navigation .swiper-button-next {
    height: 19px;
  }
}
.top_swiper .top_swiper_navigation .swiper-button-prev:hover,
.top_swiper .top_swiper_navigation .swiper-button-next:hover {
  opacity: 0.7;
}
.top_swiper .top_swiper_navigation .swiper-button-prev::after,
.top_swiper .top_swiper_navigation .swiper-button-next::after {
  display: none;
}
.top_swiper .top_swiper_navigation .swiper-button-prev span,
.top_swiper .top_swiper_navigation .swiper-button-next span {
  display: none;
}
.top_swiper .top_swiper_navigation .swiper-button-prev::before,
.top_swiper .top_swiper_navigation .swiper-button-next::before {
  content: "";
  display: block;
  width: 2px;
  height: 13px;
  background-color: #462929;
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: 2px;
}
@media screen and (max-width: 767.9px) {
  .top_swiper .top_swiper_navigation .swiper-button-prev::before,
  .top_swiper .top_swiper_navigation .swiper-button-next::before {
    height: 10px;
  }
}
.top_swiper .top_swiper_navigation .swiper-button-prev::after,
.top_swiper .top_swiper_navigation .swiper-button-next::after {
  content: "";
  display: block;
  width: 2px;
  height: 13px;
  background-color: #462929;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-top: 5px;
  margin-left: 2px;
}
@media screen and (max-width: 767.9px) {
  .top_swiper .top_swiper_navigation .swiper-button-prev::after,
  .top_swiper .top_swiper_navigation .swiper-button-next::after {
    height: 10px;
  }
}
.top_swiper .top_swiper_navigation .swiper-button-prev.swiper-button-prev::before,
.top_swiper .top_swiper_navigation .swiper-button-next.swiper-button-prev::before {
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  margin-left: -2px;
}
.top_swiper .top_swiper_navigation .swiper-button-prev.swiper-button-prev::after,
.top_swiper .top_swiper_navigation .swiper-button-next.swiper-button-prev::after {
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  margin-left: -2px;
}
.top_swiper .top_swiper_navigation .swiper-button-prev.swiper-button-disabled,
.top_swiper .top_swiper_navigation .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.top_swiper .top_swiper_navigation .top_swiper_pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.top_swiper .top_swiper_navigation .top_swiper_pagination .current-page,
.top_swiper .top_swiper_navigation .top_swiper_pagination .total-pages {
  font-size: 2.1rem;
  min-width: 30px;
  text-align: center;
  font-weight: 400;
  color: #462929;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .top_swiper .top_swiper_navigation .top_swiper_pagination .current-page,
  .top_swiper .top_swiper_navigation .top_swiper_pagination .total-pages {
    font-size: 1.6rem;
  }
}
.top_swiper .top_swiper_navigation .top_swiper_pagination .pagination-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767.9px) {
  .top_swiper .top_swiper_navigation .top_swiper_pagination .pagination-dots {
    gap: 5px;
  }
}
.top_swiper .top_swiper_navigation .top_swiper_pagination .pagination-dots .dot {
  width: 32px;
  height: 3px;
  background-color: #462929;
  border-radius: 2px;
}
@media screen and (max-width: 767.9px) {
  .top_swiper .top_swiper_navigation .top_swiper_pagination .pagination-dots .dot {
    width: 20px;
    height: 2px;
  }
}
.top_swiper .top_swiper_navigation .top_swiper_pagination .pagination-dots .dot.active {
  background-color: #ff69b4;
}

.top_logo-slide h2 {
  margin-bottom: 32px;
}

.p-logo-frame {
  display: block;
  overflow: hidden;
}

.logo_slider1 .p-logo-slide__wrap:first-child {
  -webkit-animation: slide1 40s -20s linear infinite;
          animation: slide1 40s -20s linear infinite;
}
.logo_slider1 .p-logo-slide__wrap:last-child {
  -webkit-animation: slide2 40s linear infinite;
          animation: slide2 40s linear infinite;
}

.p-logo-slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .p-logo-slide {
    zoom: 0.7;
  }
}

.p-logo-slide__wrap {
  padding: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-logo-slide__item {
  list-style: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  height: 100%;
  display: grid;
  place-content: center;
  margin-right: 50px;
}
.p-logo-slide__item img {
  vertical-align: bottom;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 100%;
  max-height: 54px;
}

@-webkit-keyframes slide1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes slide1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes slide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes slide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
.top_sub_title {
  text-align: center;
  color: #462929;
  font-size: 2.1rem;
  font-weight: 500;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .top_sub_title {
    font-size: 2rem;
  }
}

.top_about {
  position: relative;
  padding-top: 170px;
  padding-bottom: 158px;
  overflow: hidden;
  margin: 100px 0;
}
@media screen and (max-width: 767.9px) {
  .top_about {
    padding: 100px 0 60px;
    margin: 20px 0;
  }
}
.top_about .baloo {
  margin-bottom: 43px;
}
@media screen and (max-width: 767.9px) {
  .top_about .baloo {
    margin-bottom: 20px;
  }
}
.top_about .cont {
  position: relative;
  padding-top: 80px;
  padding-bottom: 260px;
}
@media screen and (max-width: 767.9px) {
  .top_about .cont {
    padding-top: 40px;
    padding-bottom: 130px;
  }
}
.top_about .cont .bg {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background-image: linear-gradient(145deg, #f7f7f7, #fef5fa);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
}
.top_about .cont .bg::before {
  content: "";
  width: calc(100% + 316px);
  height: auto;
  aspect-ratio: 1/1;
  background-image: linear-gradient(145deg, #f7f7f7, #fef5fa);
  position: absolute;
  top: -158px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
  opacity: 0.5;
}
@media screen and (max-width: 767.9px) {
  .top_about .cont .bg {
    display: none;
  }
}
.top_about .cont h2,
.top_about .cont p {
  position: relative;
  z-index: 2;
}
.top_about p.description {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2.35;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .top_about p.description {
    font-size: 1.6rem;
    line-height: 2;
    background: rgba(255, 255, 255, 0.4);
  }
}
.top_about h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .top_about h2 {
    gap: 8px;
    margin-bottom: 30px;
  }
}
.top_about h2 span {
  padding: 0 27px;
  background: #fffa5a;
  font-weight: 700;
}
.top_about h2 span:first-child {
  font-size: 2.8rem;
  line-height: 1.75;
}
@media screen and (max-width: 767.9px) {
  .top_about h2 span:first-child {
    font-size: 1.6rem;
  }
}
.top_about h2 span:last-child {
  font-size: 5.2rem;
  line-height: 1.5;
  padding: 0px 27px 6px;
}
@media screen and (max-width: 767.9px) {
  .top_about h2 span:last-child {
    font-size: 2.6rem;
  }
}
.top_about .tori1,
.top_about .tori2,
.top_about img {
  position: absolute;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .top_about .tori1,
  .top_about .tori2,
  .top_about img {
    z-index: 1;
  }
}
.top_about .tori1 {
  width: 184px;
  top: -86px;
  left: 50.5%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767.9px) {
  .top_about .tori1 {
    width: 100px;
    top: -50px;
  }
}
.top_about .tori2 {
  width: 258px;
  height: auto;
  aspect-ratio: 258/195;
  bottom: 0;
  left: 49%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767.9px) {
  .top_about .tori2 {
    width: 150px;
  }
}
.top_about .tori2 .shake {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 43.8%;
}
.top_about .tori2 .tana {
  position: absolute;
  top: 0;
  right: 0;
  width: 41.9%;
}
.top_about .img1 {
  width: 9.07%;
  right: calc(50% - 683px);
  top: 205px;
  max-width: 127px;
}
@media screen and (max-width: 1024px) {
  .top_about .img1 {
    display: none;
  }
}
.top_about .img2 {
  width: 13.7%;
  right: calc(50% - 555px);
  top: 367px;
  max-width: 192px;
}
@media screen and (max-width: 1024px) {
  .top_about .img2 {
    width: 70px;
    top: 130px;
    right: 0;
  }
}
.top_about .img3 {
  width: 27%;
  right: calc(50% - 770px);
  bottom: 277px;
  max-width: 378px;
}
@media screen and (max-width: 1024px) {
  .top_about .img3 {
    width: 120px;
    bottom: 110px;
    right: -50px;
  }
}
.top_about .img4 {
  width: 19.7%;
  left: calc(50% - 637px);
  bottom: 506px;
  max-width: 277px;
}
@media screen and (max-width: 1024px) {
  .top_about .img4 {
    width: 80px;
    left: -20px;
    bottom: 500px;
  }
}
.top_about .img5 {
  width: 7.78%;
  left: calc(50% - 719px);
  bottom: 319px;
  max-width: 109px;
}
@media screen and (max-width: 1024px) {
  .top_about .img5 {
    display: none;
  }
}
.top_about .img6 {
  width: 11.36%;
  left: calc(50% - 565px);
  bottom: 134px;
  max-width: 159px;
}
@media screen and (max-width: 1024px) {
  .top_about .img6 {
    width: 80px;
    bottom: 90px;
    left: 10px;
  }
}

.top_new_recommend {
  padding-bottom: 138px;
  position: relative;
  margin-bottom: 13px;
}
@media screen and (max-width: 767.9px) {
  .top_new_recommend {
    padding-bottom: 60px;
    margin-bottom: 30px;
  }
}
.top_new_recommend .img1 {
  width: 143px;
  height: auto;
  aspect-ratio: 155/165;
  position: absolute;
  bottom: 10px;
  right: 73px;
}
@media screen and (max-width: 767.9px) {
  .top_new_recommend .img1 {
    width: 80px;
    right: 0;
    bottom: 0;
  }
}
.top_new_recommend .cont {
  max-width: 1164px;
}
.top_new_recommend .top_sub_title {
  margin-bottom: -8px;
}
.top_new_recommend h2 {
  font-size: 5.2rem;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 42px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .top_new_recommend h2 {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}
.top_new_recommend .post_list {
  gap: 40px 30px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767.9px) {
  .top_new_recommend .post_list {
    gap: 30px 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.top_new_recommend .post_list li {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 767.9px) {
  .top_new_recommend .post_list li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 430px) {
  .top_new_recommend .post_list li {
    width: 100%;
  }
}
.top_new_recommend .post_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.top_new_recommend .post_list li img {
  margin-bottom: 9px;
}
.top_new_recommend .post_list li h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  line-height: 1.46;
}
@media screen and (max-width: 767.9px) {
  .top_new_recommend .post_list li h3 {
    font-size: 1.6rem;
  }
}
.top_new_recommend .post_list li time {
  margin-top: auto;
  line-height: 1.46;
}

.top_theme_list {
  position: relative;
}
.top_theme_list::before {
  content: "";
  width: 56.3%;
  height: auto;
  aspect-ratio: 788/628;
  background-image: url(../img/top_theme_list_bg1.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 44px;
  right: 0;
}
.top_theme_list .cont {
  position: relative;
  z-index: 2;
}
.top_theme_list .top_sub_title {
  margin-bottom: 7px;
}
.top_theme_list h2 {
  font-size: 5.2rem;
  text-align: center;
  line-height: 1.13;
  margin-bottom: 50px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .top_theme_list h2 {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}
.top_theme_list h2 span {
  font-size: 3rem;
  display: block;
  line-height: 1.13;
}
@media screen and (max-width: 767.9px) {
  .top_theme_list h2 span {
    font-size: 2rem;
  }
}
.top_theme_list h2 span span.row {
  font-weight: 300;
  display: inline-block;
}
.top_theme_list .theme_list_item {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .top_theme_list .theme_list_item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 60px;
    gap: 14px;
  }
}
.top_theme_list .theme_list_item li {
  width: calc((100% - 54px) / 4);
  max-width: 251px;
}
@media screen and (max-width: 767.9px) {
  .top_theme_list .theme_list_item li {
    width: calc((100% - 14px) / 2);
  }
}
.top_theme_list .theme_list_item li a {
  display: block;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #462929;
  display: grid;
  place-items: center;
  border-radius: 100px;
  border: solid 3px #462929;
  background: #fff;
  padding: 6px 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  .top_theme_list .theme_list_item li a {
    font-size: 1.8rem;
    border-width: 2px;
  }
}
.top_theme_list .theme_list_item li a:hover {
  background: #ff85b7;
  opacity: 1;
}

.theme_list_item_content_item {
  position: relative;
  z-index: 2;
  padding-bottom: 130px;
  background: #f7f7f7;
}
@media screen and (max-width: 767.9px) {
  .theme_list_item_content_item {
    padding-bottom: 60px;
  }
}
.theme_list_item_content_item .item_top {
  position: relative;
  padding: 85px 0 224px;
}
@media screen and (max-width: 767.9px) {
  .theme_list_item_content_item .item_top {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}
.theme_list_item_content_item .item_top .img1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.theme_list_item_content_item .item_top .img1 img {
  width: 100%;
  height: 100%;
}
.theme_list_item_content_item .item_top .img1::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #3b3a3a;
  opacity: 0.54;
}
.theme_list_item_content_item .item_top .cont {
  position: relative;
  z-index: 2;
  max-width: 1164px;
}
.theme_list_item_content_item .item_top .cont * {
  color: #fff;
}
.theme_list_item_content_item .item_top .cont .item_title {
  width: 50%;
  padding-left: 55px;
  padding-right: 20px;
}
@media screen and (max-width: 767.9px) {
  .theme_list_item_content_item .item_top .cont .item_title {
    width: 100%;
    padding: 0;
  }
}
.theme_list_item_content_item .item_top .cont .item_title p {
  font-family: "ADLaM Display", system-ui;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 9px;
  line-height: 1.13;
}
@media screen and (max-width: 767.9px) {
  .theme_list_item_content_item .item_top .cont .item_title p {
    font-size: 1.5rem;
  }
}
.theme_list_item_content_item .item_top .cont .item_title h3 {
  font-size: 7rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1.13;
}
@media screen and (max-width: 767.9px) {
  .theme_list_item_content_item .item_top .cont .item_title h3 {
    font-size: 3rem;
  }
}
.theme_list_item_content_item .item_top .cont .description_wrap {
  width: 50%;
  margin-top: 21px;
}
@media screen and (max-width: 767.9px) {
  .theme_list_item_content_item .item_top .cont .description_wrap {
    width: 100%;
  }
}
.theme_list_item_content_item .item_top .cont .description_wrap p {
  font-size: 1.8rem;
  line-height: 1.57;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .theme_list_item_content_item .item_top .cont .description_wrap p {
    font-size: 1.5rem;
  }
}
.theme_list_item_content_item .item_bottom {
  margin-top: -174px;
}
@media screen and (max-width: 767.9px) {
  .theme_list_item_content_item .item_bottom {
    margin-top: -50px;
  }
}
.theme_list_item_content_item .item_bottom .cont {
  padding: 60px 55px 55px;
  position: relative;
  z-index: 3;
  max-width: 1164px;
  background: #fff;
  border-radius: 25px;
  -webkit-box-shadow: 0 4px 24px 0 rgba(70, 41, 41, 0.08);
          box-shadow: 0 4px 24px 0 rgba(70, 41, 41, 0.08);
}
@media screen and (max-width: 767.9px) {
  .theme_list_item_content_item .item_bottom .cont {
    padding: 30px 20px 40px;
  }
}
.theme_list_item_content_item .item_bottom .latest_post {
  margin-bottom: 66px;
}
@media screen and (max-width: 767.9px) {
  .theme_list_item_content_item .item_bottom .latest_post {
    margin-bottom: 30px;
  }
}
.theme_list_item_content_item .item_bottom .latest_post .latest_post_img {
  width: 53%;
}
@media screen and (max-width: 767.9px) {
  .theme_list_item_content_item .item_bottom .latest_post .latest_post_img {
    width: 100%;
  }
}
.theme_list_item_content_item .item_bottom .latest_post .latest_post_img img {
  width: 100%;
  height: auto;
  aspect-ratio: 560/362;
  border-radius: 8px;
  display: block;
}
.theme_list_item_content_item .item_bottom .latest_post .latest_post_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding: 18px 0 0 34px;
}
@media screen and (max-width: 767.9px) {
  .theme_list_item_content_item .item_bottom .latest_post .latest_post_content {
    width: 100%;
    padding: 10px;
  }
}
.theme_list_item_content_item .item_bottom .latest_post .latest_post_content .blog_card_meta {
  gap: 11px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
}
@media screen and (max-width: 767.9px) {
  .theme_list_item_content_item .item_bottom .latest_post .latest_post_content .blog_card_meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.theme_list_item_content_item .item_bottom .latest_post .latest_post_content .blog_card_categories {
  gap: 5px;
}
@media screen and (max-width: 767.9px) {
  .theme_list_item_content_item .item_bottom .latest_post .latest_post_content .blog_card_categories {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.theme_list_item_content_item .item_bottom .latest_post .latest_post_content .blog_card_categories span {
  color: #fff;
  background: #ff85b7;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1px 7px 2px;
  line-height: 1.46;
}
@media screen and (max-width: 767.9px) {
  .theme_list_item_content_item .item_bottom .latest_post .latest_post_content .blog_card_categories span {
    font-size: 1.3rem;
  }
}
.theme_list_item_content_item .item_bottom .latest_post .latest_post_content time {
  color: #bebebe;
  font-size: 1.5rem;
  font-weight: 300;
}
.theme_list_item_content_item .item_bottom .latest_post .latest_post_content h3 {
  font-size: 2.5rem;
  line-height: 1.46;
  font-weight: 700;
  margin-bottom: 18px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
}
@media screen and (max-width: 767.9px) {
  .theme_list_item_content_item .item_bottom .latest_post .latest_post_content h3 {
    font-size: 1.6rem;
  }
}
.theme_list_item_content_item .item_bottom .latest_post .latest_post_content .blog_card_tags {
  gap: 9px;
  margin-bottom: 33px;
}
@media screen and (max-width: 767.9px) {
  .theme_list_item_content_item .item_bottom .latest_post .latest_post_content .blog_card_tags {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 15px;
  }
}
.theme_list_item_content_item .item_bottom .latest_post .latest_post_content .blog_card_tags span {
  color: #a79b9b;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 2px 12px 2px;
  line-height: 1.46;
  border-radius: 100px;
  border: 1px solid #a79b9b;
}
@media screen and (max-width: 767.9px) {
  .theme_list_item_content_item .item_bottom .latest_post .latest_post_content .blog_card_tags span {
    font-size: 1.1rem;
  }
}
.theme_list_item_content_item .item_bottom .latest_post .latest_post_content .latest_post_excerpt {
  margin-bottom: 20px;
}
.theme_list_item_content_item .item_bottom .latest_post .latest_post_content .latest_post_excerpt p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
}
.theme_list_item_content_item .item_bottom .latest_post .latest_post_content a {
  color: #fff;
  background: #462929;
  padding: 11px 53px;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.46;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: solid 2px #462929;
}
.theme_list_item_content_item .item_bottom .latest_post .latest_post_content a:hover {
  opacity: 1;
  background: #fff;
  color: #462929;
}
.theme_list_item_content_item .item_bottom .other_posts_slider {
  margin-top: 40px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767.9px) {
  .theme_list_item_content_item .item_bottom .other_posts_slider {
    margin-bottom: 20px;
  }
}
.theme_list_item_content_item .item_bottom .other_posts_slider .swiper-slide {
  width: calc((100% - 54px) / 3);
}
@media screen and (max-width: 767.9px) {
  .theme_list_item_content_item .item_bottom .other_posts_slider .swiper-slide {
    width: 100%;
  }
}
.theme_list_item_content_item .item_bottom .other_posts_slider .blog_card h3 {
  font-size: 1.8rem;
}
@media screen and (max-width: 767.9px) {
  .theme_list_item_content_item .item_bottom .other_posts_slider .blog_card h3 {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }
}
.theme_list_item_content_item .item_bottom .other_posts_slider .blog_card time,
.theme_list_item_content_item .item_bottom .other_posts_slider .blog_card .blog_card_category {
  font-size: 1.1rem;
}
.theme_list_item_content_item .item_bottom .other_posts_slider .blog_card .blog_card_tags span {
  font-size: 0.9rem;
}
.theme_list_item_content_item .category_link_btn a {
  display: block;
  color: #462929;
  background: #fff;
  border: solid 2px #462929;
  width: 100%;
  max-width: 408px;
  margin: 0 auto;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 10px 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  .theme_list_item_content_item .category_link_btn a {
    font-size: 1.6rem;
  }
}
.theme_list_item_content_item .category_link_btn a:hover {
  opacity: 1;
  background: #462929;
  color: #fff;
}

.other_posts_slider_controls {
  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;
  gap: 20px;
  margin-top: 38px;
}
@media screen and (max-width: 767.9px) {
  .other_posts_slider_controls {
    margin-top: 20px;
  }
}
.other_posts_slider_controls .swiper-pagination {
  position: static;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.other_posts_slider_controls .swiper-pagination span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: solid 2px #ff85b7;
  background: #fff;
  opacity: 1;
}
@media screen and (max-width: 767.9px) {
  .other_posts_slider_controls .swiper-pagination span {
    width: 10px;
    height: 10px;
  }
}
.other_posts_slider_controls .swiper-pagination .swiper-pagination-bullet-active {
  background: #ff85b7;
}
.other_posts_slider_controls .autoplay-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 20px;
  height: 20px;
  color: #ff85b7;
  background: #eaedef;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  display: grid;
  place-items: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  padding: 0;
}
.other_posts_slider_controls .autoplay-toggle:hover {
  opacity: 0.7;
}
.other_posts_slider_controls .autoplay-toggle .pause-icon,
.other_posts_slider_controls .autoplay-toggle .play-icon {
  display: inline-block;
  line-height: 1;
}
.other_posts_slider_controls .autoplay-toggle .pause-icon {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  padding-bottom: 1px;
}
.other_posts_slider_controls .autoplay-toggle .pause-icon img {
  width: 6px;
  height: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
.other_posts_slider_controls .autoplay-toggle .play-icon {
  font-size: 1rem;
}

#theme1 .theme_list_item_content_item::after {
  content: "";
  width: 20.1%;
  height: auto;
  aspect-ratio: 347/375;
  background-image: url(../img/top_theme_list_bg2.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -5.4%;
  left: 0;
}

#theme2 .theme_list_item_content_item::after {
  content: "";
  width: 56.3%;
  height: auto;
  aspect-ratio: 788/628;
  background-image: url(../img/top_theme_list_bg1.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -24.5%;
  right: 0;
}

#theme4 .theme_list_item_content_item {
  padding-bottom: 85px;
}
@media screen and (max-width: 767.9px) {
  #theme4 .theme_list_item_content_item {
    padding-bottom: 60px;
  }
}

.top_feature {
  padding-bottom: 32px;
  position: relative;
  overflow: hidden;
  background: #f7f7f7;
  padding-top: 12px;
}
.top_feature::before {
  content: "";
  width: 100%;
  height: 326px;
  background: #fffa5a;
  position: absolute;
  bottom: 0;
  left: 0;
}
.top_feature::after {
  content: "";
  width: calc(100% + 57px);
  height: 256px;
  border-radius: 100% 100% 0 0;
  background: #fffa5a;
  position: absolute;
  bottom: 195px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767.9px) {
  .top_feature::after {
    height: 100px;
    bottom: 320px;
  }
}
.top_feature .img1 {
  position: absolute;
  top: 14px;
  left: 80px;
  max-width: 316px;
  width: 22.6%;
}
@media (max-width: 1200px) {
  .top_feature .img1 {
    width: 17%;
    top: 70px;
    left: 4%;
  }
}
@media screen and (max-width: 767.9px) {
  .top_feature .img1 {
    width: 70px;
    top: 0;
  }
}
.top_feature .top_sub_title {
  margin-bottom: 9px;
}
.top_feature h2 {
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1.13;
  margin-bottom: 50px;
  text-align: center;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .top_feature h2 {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}
.top_feature h2 span {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.13;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .top_feature h2 span {
    font-size: 2rem;
  }
}
.top_feature .feature_list {
  position: relative;
  z-index: 2;
}
.top_feature .feature_list .cont {
  max-width: 1164px;
}
.top_feature .top_feature_slider {
  position: relative;
}
.top_feature .top_feature_slider .swiper-slide {
  width: 100%;
}
.top_feature .top_feature_slider .other_posts_slider_controls {
  margin-top: 18px;
}
.top_feature .top_feature_slider .swiper-button-prev,
.top_feature .top_feature_slider .swiper-button-next {
  position: absolute;
  top: 46%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #462929;
  display: grid;
  place-items: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 10;
}
.top_feature .top_feature_slider .swiper-button-prev:hover,
.top_feature .top_feature_slider .swiper-button-next:hover {
  opacity: 0.7;
}
.top_feature .top_feature_slider .swiper-button-prev::after,
.top_feature .top_feature_slider .swiper-button-next::after {
  content: "";
  display: block;
  width: 15px;
  height: 22px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: #462929;
}
.top_feature .top_feature_slider .swiper-button-prev.swiper-button-prev,
.top_feature .top_feature_slider .swiper-button-next.swiper-button-prev {
  left: -50px;
}
.top_feature .top_feature_slider .swiper-button-prev.swiper-button-prev::after,
.top_feature .top_feature_slider .swiper-button-next.swiper-button-prev::after {
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.top_feature .top_feature_slider .swiper-button-prev.swiper-button-next,
.top_feature .top_feature_slider .swiper-button-next.swiper-button-next {
  right: -50px;
}
.top_feature .top_feature_slider .swiper-button-prev.swiper-button-disabled,
.top_feature .top_feature_slider .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
@media screen and (max-width: 767.9px) {
  .top_feature .top_feature_slider .swiper-button-prev,
  .top_feature .top_feature_slider .swiper-button-next {
    display: none;
  }
}
.top_feature .top_feature_slider .latest_post {
  padding: 45px 55px;
  border: solid 5px #462929;
  border-radius: 25px;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .top_feature .top_feature_slider .latest_post {
    padding: 30px 20px;
    border-width: 3px;
  }
}
.top_feature .top_feature_slider .latest_post .latest_post_img {
  width: 53%;
}
@media screen and (max-width: 767.9px) {
  .top_feature .top_feature_slider .latest_post .latest_post_img {
    width: 100%;
  }
}
.top_feature .top_feature_slider .latest_post .latest_post_img img {
  width: 100%;
  height: auto;
  aspect-ratio: 560/362;
  border-radius: 8px;
  display: block;
}
.top_feature .top_feature_slider .latest_post .latest_post_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding: 18px 0 0 34px;
}
@media screen and (max-width: 767.9px) {
  .top_feature .top_feature_slider .latest_post .latest_post_content {
    width: 100%;
    padding: 10px;
  }
}
.top_feature .top_feature_slider .latest_post .latest_post_content .blog_card_meta {
  gap: 11px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
}
@media screen and (max-width: 767.9px) {
  .top_feature .top_feature_slider .latest_post .latest_post_content .blog_card_meta {
    margin-bottom: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.top_feature .top_feature_slider .latest_post .latest_post_content .blog_card_categories {
  gap: 5px;
}
@media screen and (max-width: 767.9px) {
  .top_feature .top_feature_slider .latest_post .latest_post_content .blog_card_categories {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.top_feature .top_feature_slider .latest_post .latest_post_content .blog_card_categories span {
  color: #fff;
  background: #ff85b7;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1px 7px 2px;
  line-height: 1.46;
}
@media screen and (max-width: 767.9px) {
  .top_feature .top_feature_slider .latest_post .latest_post_content .blog_card_categories span {
    font-size: 1.3rem;
  }
}
.top_feature .top_feature_slider .latest_post .latest_post_content time {
  color: #bebebe;
  font-size: 1.5rem;
  font-weight: 300;
}
.top_feature .top_feature_slider .latest_post .latest_post_content h3 {
  font-size: 2.5rem;
  line-height: 1.46;
  font-weight: 700;
  margin-bottom: 18px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
}
@media screen and (max-width: 767.9px) {
  .top_feature .top_feature_slider .latest_post .latest_post_content h3 {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }
}
.top_feature .top_feature_slider .latest_post .latest_post_content .blog_card_tags {
  gap: 9px;
  margin-bottom: 33px;
}
@media screen and (max-width: 767.9px) {
  .top_feature .top_feature_slider .latest_post .latest_post_content .blog_card_tags {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 15px;
  }
}
.top_feature .top_feature_slider .latest_post .latest_post_content .blog_card_tags span {
  color: #a79b9b;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 2px 12px 2px;
  line-height: 1.46;
  border-radius: 100px;
  border: 1px solid #a79b9b;
}
@media screen and (max-width: 767.9px) {
  .top_feature .top_feature_slider .latest_post .latest_post_content .blog_card_tags span {
    font-size: 1.1rem;
  }
}
.top_feature .top_feature_slider .latest_post .latest_post_content .latest_post_excerpt {
  margin-bottom: 20px;
}
.top_feature .top_feature_slider .latest_post .latest_post_content .latest_post_excerpt p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
}
.top_feature .top_feature_slider .latest_post .latest_post_content a {
  color: #fff;
  background: #462929;
  padding: 11px 53px;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.46;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: solid 2px #462929;
}
.top_feature .top_feature_slider .latest_post .latest_post_content a:hover {
  opacity: 1;
  background: #fff;
  color: #462929;
}

.top_search_box {
  padding-top: 177px;
  position: relative;
  padding-bottom: 122px;
  background: #f7f7f7;
}
@media screen and (max-width: 767.9px) {
  .top_search_box {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}
.top_search_box .img1 {
  width: 140px;
  height: auto;
  aspect-ratio: 149/160;
  position: absolute;
  top: 53px;
  left: 49%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767.9px) {
  .top_search_box .img1 {
    width: 100px;
    top: 40px;
    left: 20px;
    -webkit-transform: unset;
            transform: unset;
  }
}
.top_search_box .search_box .cont {
  max-width: 1200px;
  -webkit-box-shadow: 0 4px 24px 0 rgba(70, 41, 41, 0.08);
          box-shadow: 0 4px 24px 0 rgba(70, 41, 41, 0.08);
  border-radius: 20px;
  overflow: hidden;
}
.top_search_box .search_box h2 {
  background: #462929;
  color: #fff;
  padding: 27px 20px;
  text-align: center;
  width: 100%;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.13;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767.9px) {
  .top_search_box .search_box h2 {
    font-size: 2rem;
    padding: 16px 20px;
  }
}
.top_search_box .search_box #search_box {
  max-height: unset;
  opacity: 1;
}
.top_search_box .search_box #search_box form {
  padding: 62px 73px;
}
@media screen and (max-width: 767.9px) {
  .top_search_box .search_box #search_box form {
    padding: 30px 20px;
  }
}
.top_search_box .search_box #search_box h4 {
  font-size: 2.6rem;
  margin-bottom: 34px;
}
@media screen and (max-width: 767.9px) {
  .top_search_box .search_box #search_box h4 {
    font-size: 1.8rem;
    margin: 15px 0;
  }
}
.top_search_box .search_box #search_box ul {
  gap: 64px;
}
@media screen and (max-width: 767.9px) {
  .top_search_box .search_box #search_box ul {
    gap: 40px;
  }
}
.top_search_box .search_box #search_box ul ul {
  margin: 0 28px;
}
@media screen and (max-width: 767.9px) {
  .top_search_box .search_box #search_box ul ul {
    margin: 0 12px;
  }
}
.top_search_box .search_box #search_box ul label {
  letter-spacing: 0;
}
.top_search_box .search_box #search_box .search_filter_search {
  width: 100%;
  max-width: 717px;
  margin: 0 auto;
}
.top_search_box .search_box #search_box ul li.search_filter_category ul {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  .top_search_box .search_box #search_box ul li.search_filter_category ul {
    gap: 12px;
    margin-bottom: 0;
  }
}
.top_search_box .search_box #search_box ul li.search_filter_category ul li {
  width: 213px;
}
@media screen and (max-width: 767.9px) {
  .top_search_box .search_box #search_box ul li.search_filter_category ul li {
    width: 100%;
    max-width: 300px;
  }
}
.top_search_box .search_box #search_box ul li.search_filter_category ul li label {
  font-size: 2rem;
  padding: 14px 18px 16px;
}
@media screen and (max-width: 767.9px) {
  .top_search_box .search_box #search_box ul li.search_filter_category ul li label {
    font-size: 1.6rem;
    padding: 12px 18px;
  }
}
.top_search_box .search_box #search_box ul li.search_filter_cat_pref ul {
  gap: 15px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  .top_search_box .search_box #search_box ul li.search_filter_cat_pref ul {
    margin-bottom: 0;
    gap: 12px;
  }
}
.top_search_box .search_box #search_box ul li.search_filter_cat_pref ul li {
  width: auto;
  min-width: 150px;
}
@media screen and (max-width: 767.9px) {
  .top_search_box .search_box #search_box ul li.search_filter_cat_pref ul li {
    width: calc((100% - 12px) / 2);
    min-width: 120px;
  }
}
.top_search_box .search_box #search_box ul li.search_filter_cat_pref ul li label {
  font-size: 2rem;
  padding: 12px 18px;
}
@media screen and (max-width: 767.9px) {
  .top_search_box .search_box #search_box ul li.search_filter_cat_pref ul li label {
    font-size: 1.6rem;
  }
}
.top_search_box .search_box #search_box ul li.search_filter_post_tag ul {
  gap: 14px 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .top_search_box .search_box #search_box ul li.search_filter_post_tag ul {
    gap: 9px 7px;
  }
}
.top_search_box .search_box #search_box ul li.search_filter_post_tag ul li {
  width: auto;
}
.top_search_box .search_box #search_box ul li.search_filter_post_tag ul li label {
  font-size: 1.7rem;
}
@media screen and (max-width: 767.9px) {
  .top_search_box .search_box #search_box ul li.search_filter_post_tag ul li label {
    font-size: 1.2rem;
  }
}
.top_search_box .search_box #search_box input[type=submit] {
  font-size: 2rem;
  max-width: 408px;
  padding: 11px 20px;
}

.top_real {
  padding: 77px 0;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top_real {
    padding: 60px 0;
  }
}
.top_real::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/top_real_bg.jpg);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.top_real::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.65;
  position: absolute;
  top: 0;
  left: 0;
}
.top_real .cont {
  position: relative;
  z-index: 2;
}
.top_real h2 {
  color: #fff;
  font-size: 6.2rem;
  font-weight: 700;
  line-height: 1.23;
  text-align: center;
  margin-bottom: 54px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.9px) {
  .top_real h2 {
    font-size: 3.2rem;
    margin-bottom: 30px;
  }
}
.top_real .description {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.3;
  text-align: center;
  margin-bottom: 83px;
}
@media screen and (max-width: 767.9px) {
  .top_real .description {
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 40px;
  }
}
.top_real .description span {
  color: #fffa5a;
}
.top_real .btn {
  background: none;
  color: #fff;
  border: solid 2px #fff;
}

.page-top .bottom_check {
  padding-top: 67px;
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .page-top .bottom_check {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}
.page-top .bottom_check .img1 {
  width: 157px;
  height: auto;
  aspect-ratio: 163/156;
  position: absolute;
  right: 92px;
  top: -84px;
}
@media screen and (max-width: 767.9px) {
  .page-top .bottom_check .img1 {
    width: 100px;
    right: 0;
    top: -44px;
  }
}

#scroll-top {
  position: fixed;
  z-index: 20;
  bottom: 12px;
  right: 36px;
  width: 76px;
  height: 76px;
  display: none;
}
@media screen and (max-width: 767.9px) {
  #scroll-top {
    width: 45px;
    height: 45px;
    right: 20px;
  }
}
#scroll-top img {
  width: 100%;
  height: 100%;
}
#scroll-top a {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#scroll-top a:hover {
  opacity: 1;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.footer * {
  letter-spacing: 0;
}

.footer_top {
  position: relative;
  padding: 60px 0 50px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .footer_top {
    padding: 50px 0 30px;
  }
}
.footer_top::before {
  content: "";
  width: calc(100% + 71px);
  background: #ff85b7;
  height: 216px;
  border-radius: 100% 100% 0 0;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767.9px) {
  .footer_top::before {
    height: 100px;
  }
}
.footer_top::after {
  content: "";
  width: 100%;
  height: calc(100% - 200px);
  background: #ff85b7;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767.9px) {
  .footer_top::after {
    height: calc(100% - 100px);
  }
}
.footer_top .cont {
  max-width: 1000px;
  position: relative;
  z-index: 2;
}
.footer_top .f_logo {
  width: 100%;
  max-width: 770px;
  display: block;
  margin: 0 auto 34px;
}
@media screen and (max-width: 767.9px) {
  .footer_top .f_logo {
    width: 90%;
    margin-inline: auto;
    margin-bottom: 20px;
  }
}
.footer_top .fnav {
  padding-bottom: 24px;
  border-bottom: solid 1px #fff;
  gap: 10px 45px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .footer_top .fnav {
    gap: 20px;
  }
}
.footer_top .fnav ul:nth-child(1) {
  gap: 10px 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .footer_top .fnav ul:nth-child(1) {
    width: 100%;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px 20px;
  }
}
.footer_top .fnav ul:nth-child(1) a {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .footer_top .fnav ul:nth-child(1) a {
    font-size: 1.5rem;
  }
}
.footer_top .fnav ul:nth-child(2) {
  margin-right: 5px;
}
.footer_top .fnav ul:nth-child(2) a {
  background: #fffa5a;
  color: #462929;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.13;
  padding: 7px 40px 9px;
  border-radius: 100px;
  letter-spacing: 0;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .footer_top .fnav ul:nth-child(2) a {
    font-size: 1.6rem;
  }
}
.footer_top .f_banner {
  gap: 20px 43px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding-right: 26px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .footer_top .f_banner {
    margin-bottom: 20px;
    padding-right: 0;
  }
}
.footer_top .f_banner .f_banner_inner {
  gap: 26px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767.9px) {
  .footer_top .f_banner .f_banner_inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    gap: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer_top .f_banner .f_banner_inner a {
  width: calc((100% - 26px) / 2);
  max-width: 394px;
}
@media screen and (max-width: 767.9px) {
  .footer_top .f_banner .f_banner_inner a {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.footer_top .f_banner .f_sns {
  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;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767.9px) {
  .footer_top .f_banner .f_sns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}
.footer_top .f_banner .f_sns .instagram {
  width: 38px;
}
@media screen and (max-width: 767.9px) {
  .footer_top .f_banner .f_sns .instagram {
    width: 22px;
  }
}
.footer_top .f_banner .f_sns .x {
  width: 37px;
}
@media screen and (max-width: 767.9px) {
  .footer_top .f_banner .f_sns .x {
    width: 22px;
  }
}
.footer_top .f_other {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767.9px) {
  .footer_top .f_other {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.footer_top .f_other a {
  color: #fff;
  padding: 0 22px;
  border-right: solid 1px #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1428571429;
}
@media screen and (max-width: 767.9px) {
  .footer_top .f_other a {
    font-size: 1rem;
    padding: 0 10px;
  }
}
.footer_top .f_other li:last-child a {
  border-right: none;
}
.footer_top .f_other .f_company::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../img/link.svg);
  margin-left: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}
@media screen and (max-width: 767.9px) {
  .footer_top .f_other .f_company::after {
    width: 10px;
    vertical-align: middle;
    margin-left: 5px;
  }
}

.footer_bottom {
  background: #f7f7f7;
  padding: 19px 0 20px;
}
@media screen and (max-width: 767.9px) {
  .footer_bottom {
    padding: 10px 0;
  }
}
.footer_bottom small {
  color: #462929;
  font-size: 1.5rem;
  display: block;
  text-align: center;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .footer_bottom small {
    font-size: 1.1rem;
  }
}

body.single-post .footer,
.page-id-316 .footer,
body.home .footer {
  background: #fff;
}

@media screen and (max-width: 1024px) {
  body.single-post .footer {
    background: #f3f3f3;
  }
}

/* fadeUp */
.fade {
  opacity: 0;
}

.fade.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  text-align: center;
  z-index: 999;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 500px;
  height: 247px;
  margin: 0 auto;
}
@media screen and (max-width: 767.9px) {
  #splash_logo {
    width: 250px;
    height: 123.5px;
  }
}
#splash_logo div {
  height: auto;
  position: absolute;
}
#splash_logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#splash_logo .img1 {
  width: 340px;
  aspect-ratio: 340/95;
  top: 40px;
  left: 58px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  #splash_logo .img1 {
    width: 170px;
    aspect-ratio: 170/47.5;
    top: 20px;
    left: 29px;
  }
}
#splash_logo .img1 img {
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-animation: slideInRight 0.5s ease-out 1s forwards;
          animation: slideInRight 0.5s ease-out 1s forwards;
}
#splash_logo .img2 {
  width: 211px;
  aspect-ratio: 211/88;
  top: 135px;
  left: 124px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  #splash_logo .img2 {
    width: 108.5px;
    aspect-ratio: 108.5/44;
    top: 67.5px;
    left: 62px;
  }
}
#splash_logo .img2 img {
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-animation: slideInRightImg2 0.5s ease-out 1.8s forwards;
          animation: slideInRightImg2 0.5s ease-out 1.8s forwards;
}
#splash_logo .img3 {
  width: 118px;
  aspect-ratio: 118/247;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  #splash_logo .img3 {
    width: 59px;
    aspect-ratio: 59/123.5;
    top: 0;
    left: 0;
  }
}
#splash_logo .img3 img {
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-animation: popIn 0.6s ease-out 2.6s forwards;
          animation: popIn 0.6s ease-out 2.6s forwards;
}
#splash_logo .img4 {
  width: 139px;
  aspect-ratio: 139/158;
  bottom: 12px;
  right: 0;
}
@media screen and (max-width: 767.9px) {
  #splash_logo .img4 {
    width: 69.5px;
    aspect-ratio: 69.5/79;
    bottom: 6px;
    right: 0;
  }
}
#splash_logo .img4 img {
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-animation: popIn 0.6s ease-out 2.6s forwards;
          animation: popIn 0.6s ease-out 2.6s forwards;
}
#splash_logo .img5 {
  width: 26px;
  aspect-ratio: 1/1;
  top: 107px;
  right: 102px;
}
@media screen and (max-width: 767.9px) {
  #splash_logo .img5 {
    width: 13px;
    aspect-ratio: 13/13;
    top: 53.5px;
    right: 51px;
  }
}
#splash_logo .img5 img {
  opacity: 0;
  -webkit-animation: cameraFlash 0.6s ease-out 3.6s forwards;
          animation: cameraFlash 0.6s ease-out 3.6s forwards;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideInRightImg2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInRightImg2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes popIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes popIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes cameraFlash {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
  20% {
    opacity: 1;
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    -webkit-filter: brightness(3);
            filter: brightness(3);
  }
  40% {
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
  60% {
    -webkit-filter: brightness(2.5);
            filter: brightness(2.5);
  }
  80% {
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
}
@keyframes cameraFlash {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
  20% {
    opacity: 1;
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    -webkit-filter: brightness(3);
            filter: brightness(3);
  }
  40% {
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
  60% {
    -webkit-filter: brightness(2.5);
            filter: brightness(2.5);
  }
  80% {
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
}
.line_fixed {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 230px;
  z-index: 10;
  display: none;
}

@media screen and (max-width: 767.9px) {
  .line_fixed {
    width: 90px;
  }
}
.line_fixed img {
  display: none; 
}
.line_fixed .line_batu {
  position: absolute;
  top: 0;
  right: -10px;
  width: 30px;
  z-index: 11;
  cursor: pointer;
}
@media screen and (max-width: 767.9px) {
  .line_fixed .line_batu {
    width: 20px;
  }
}

.jump {
  -webkit-animation: jump 1s 0.1s steps(1) infinite both;
          animation: jump 1s 0.1s steps(1) infinite both;
}

@-webkit-keyframes jump {
  0% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

@keyframes jump {
  0% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
.shake {
  -webkit-animation: animation_shake 2s infinite;
          animation: animation_shake 2s infinite;
}

@-webkit-keyframes animation_shake {
  0%, 100% {
    rotate: 0deg;
  }
  15% {
    rotate: 0deg;
  }
  25% {
    rotate: -8deg;
  }
  55% {
    rotate: 4deg;
  }
  75% {
    rotate: -2deg;
  }
  85% {
    rotate: 0deg;
  }
}

@keyframes animation_shake {
  0%, 100% {
    rotate: 0deg;
  }
  15% {
    rotate: 0deg;
  }
  25% {
    rotate: -8deg;
  }
  55% {
    rotate: 4deg;
  }
  75% {
    rotate: -2deg;
  }
  85% {
    rotate: 0deg;
  }
}
.pyoko {
  -webkit-animation: pyoko 2s linear infinite alternate;
          animation: pyoko 2s linear infinite alternate;
}

@-webkit-keyframes pyoko {
  0%, 20% {
    -webkit-transform: translateX(6%);
            transform: translateX(6%);
  }
  46%, 55% {
    -webkit-transform: translateX(-3%);
            transform: translateX(-3%);
  }
  100%, 80% {
    -webkit-transform: translateX(-11%);
            transform: translateX(-11%);
  }
}

@keyframes pyoko {
  0%, 20% {
    -webkit-transform: translateX(6%);
            transform: translateX(6%);
  }
  46%, 55% {
    -webkit-transform: translateX(-3%);
            transform: translateX(-3%);
  }
  100%, 80% {
    -webkit-transform: translateX(-11%);
            transform: translateX(-11%);
  }
}
.pyoko2 {
  -webkit-animation: pyoko2 1s ease-in-out infinite alternate;
          animation: pyoko2 1s ease-in-out infinite alternate;
}

@-webkit-keyframes pyoko2 {
  0%, 100%, 35%, 93% {
    -webkit-transform: none;
            transform: none;
  }
  66% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
  }
}

@keyframes pyoko2 {
  0%, 100%, 35%, 93% {
    -webkit-transform: none;
            transform: none;
  }
  66% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
  }
}
.fuwa {
  -webkit-animation: jump 3s infinite;
          animation: jump 3s infinite;
}

.pyonpyon {
  -webkit-animation: pyonpyon 2s ease-in-out infinite;
          animation: pyonpyon 2s ease-in-out infinite;
}

@-webkit-keyframes pyonpyon {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
}

@keyframes pyonpyon {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
}/*# sourceMappingURL=common.css.map */