@charset "UTF-8";
:root {
  --black: #141414;
  --main_color: #009fb2;
  --gray: #717070;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  min-height: 100vh;
  line-height: 1.8;
  margin: 0;
}

body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

h1, h2, h3, h4 {
  line-height: 1.6;
}

button, input, label {
  line-height: 1.1;
}

img,
picture {
  max-width: 100%;
}

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

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

body {
  color: var(--black);
  font-size: 16px;
  font-family: "Kozuka Gothic Pr6N", "小塚ゴシック Pr6N", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  letter-spacing: 0.1em;
  line-height: 2;
  transition: background-color 0.6s ease;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  height: auto;
}

iframe, video {
  max-width: 100%;
}

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

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

.insta_link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.insta_link svg {
  margin-right: 0.8em;
}

.c_btn {
  background: var(--main_color);
  border-radius: 50px;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
  width: 280px;
  height: 70px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c_btn {
    width: 260px;
    height: 60px;
  }
}
.c_btn::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #fff;
  position: relative;
  left: 87%;
  transition: 0.3s;
}
.c_btn .btn_text {
  width: 86%;
}
.c_btn .btn_arrow {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 24px;
  top: 50%;
  translate: -30px -8px;
  transition: 0.3s;
}
.c_btn:hover::before {
  opacity: 0;
  transition: 0.3s;
}
.c_btn:hover .btn_arrow {
  visibility: visible;
  opacity: 1;
  translate: 0 -8px;
  transition: 0.3s;
}

.sec_ttl_wrap {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec_ttl_wrap {
    width: 84%;
  }
}
@media screen and (min-width: 769px) {
  .sec_ttl_wrap.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.sec_ttl_wrap p {
  margin-top: 0;
}
.sec_ttl_wrap .section_title {
  color: var(--main_color);
  display: flex;
  align-items: center;
  gap: 10px 30px;
  margin: 0;
}
.sec_ttl_wrap .section_title .en {
  font-family: "Poppins", sans-serif;
  font-size: 50px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sec_ttl_wrap .section_title .en {
    font-size: 25px;
  }
}
.sec_ttl_wrap .section_title .ja {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sec_ttl_wrap .section_title .ja {
    font-size: 12px;
  }
}

.c_cat_list {
  font-size: 0.875rem;
  font-weight: 500;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .c_cat_list {
    font-size: 0.8125rem;
    display: flex;
    gap: 10px 28px;
    flex-wrap: wrap;
  }
}
.c_cat_list .cat_item {
  list-style: none;
}
@media screen and (min-width: 769px) {
  .c_cat_list .cat_item {
    margin: 10px 0;
  }
}
.c_cat_list .cat_item a {
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}
.c_cat_list .cat_item a::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--black);
  display: inline-block;
}
.c_cat_list .cat_item a:hover {
  color: var(--main_color);
  opacity: 1;
}
.c_cat_list .cat_item a:hover::before {
  background: var(--main_color);
}

.c_tags_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}
.c_tags_list .tag_item {
  font-size: 0.75rem;
  list-style: none;
  line-height: 1.2;
  padding: 0;
}
.c_tags_list .tag_item a {
  border: 1px solid #8c8c8c;
  border-radius: 30px;
  letter-spacing: 0;
  padding: 5px 10px;
  display: block;
}
.c_tags_list .tag_item a::before {
  content: "＃";
}
.c_tags_list .tag_item a:hover {
  color: var(--main_color);
}

.page_fv_ttl {
  background-color: #f9f9f9;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .page_fv_ttl {
    height: 350px;
  }
}
.page_fv_ttl .page_fv_inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}
.page_fv_ttl .ttl_text {
  color: var(--main_color);
  font-family: "Poppins", sans-serif;
  font-size: 3.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px 30px;
  letter-spacing: 0.15em;
  line-height: 1.2;
  margin-top: 1.4em;
}
@media screen and (max-width: 768px) {
  .page_fv_ttl .ttl_text {
    font-size: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2.4em;
  }
}
.page_fv_ttl .ttl_text .ja {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .page_fv_ttl .ttl_text .ja {
    font-size: 0.875rem;
  }
}

.page_fv_ttl.tag_ttl .ttl_text {
  font-size: 2.875rem;
}
@media screen and (max-width: 768px) {
  .page_fv_ttl.tag_ttl .ttl_text {
    font-size: 2.125rem;
    margin-top: 2.8em;
  }
}

/***************************************************
 * Generated by SVG Artista on 2/6/2026, 9:04:51 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-1 {
  animation: animate-svg-fill-1 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 0.8s both;
}
@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-2 {
  animation: animate-svg-fill-2 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 0.9s both;
}
@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-3 {
  animation: animate-svg-fill-3 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 1s both;
}
@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-4 {
  animation: animate-svg-fill-4 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 1.1s both;
}
@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-5 {
  animation: animate-svg-fill-5 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 1.2s both;
}
@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-6 {
  animation: animate-svg-fill-6 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 1.3s both;
}
@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-7 {
  animation: animate-svg-fill-7 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 1.4s both;
}
@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-8 {
  animation: animate-svg-fill-8 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 1.5s both;
}
@keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-9 {
  animation: animate-svg-fill-9 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 1.6s both;
}
@keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-10 {
  animation: animate-svg-fill-10 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 1.7s both;
}
@keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-11 {
  animation: animate-svg-fill-11 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 1.8s both;
}
@keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-12 {
  animation: animate-svg-fill-12 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 1.9s both;
}
@keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-13 {
  animation: animate-svg-fill-13 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 2s both;
}
@keyframes animate-svg-fill-14 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-14 {
  animation: animate-svg-fill-14 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 2.1s both;
}
@keyframes animate-svg-fill-15 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-15 {
  animation: animate-svg-fill-15 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 2.2s both;
}
@keyframes animate-svg-fill-16 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-16 {
  animation: animate-svg-fill-16 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 2.3s both;
}
@keyframes animate-svg-fill-17 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-17 {
  animation: animate-svg-fill-17 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 2.4s both;
}
@keyframes animate-svg-fill-18 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-18 {
  animation: animate-svg-fill-18 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 2.5s both;
}
@keyframes animate-svg-fill-19 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-19 {
  animation: animate-svg-fill-19 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 2.6s both;
}
@keyframes animate-svg-fill-20 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-20 {
  animation: animate-svg-fill-20 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 2.7s both;
}
@keyframes animate-svg-fill-21 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-21 {
  animation: animate-svg-fill-21 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 2.8s both;
}
@keyframes animate-svg-fill-22 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-22 {
  animation: animate-svg-fill-22 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 2.9s both;
}
@keyframes animate-svg-fill-23 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-23 {
  animation: animate-svg-fill-23 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 3s both;
}
@keyframes animate-svg-fill-24 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-24 {
  animation: animate-svg-fill-24 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 3.1s both;
}
@keyframes animate-svg-fill-25 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-25 {
  animation: animate-svg-fill-25 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 3.2s both;
}
@keyframes animate-svg-fill-26 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-26 {
  animation: animate-svg-fill-26 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 3.3s both;
}
@keyframes animate-svg-fill-27 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-27 {
  animation: animate-svg-fill-27 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 3.4s both;
}
@keyframes animate-svg-fill-28 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-28 {
  animation: animate-svg-fill-28 0.7s cubic-bezier(0.755, 0.05, 0.855, 0.06) 3.5s both;
}

/* ==============================================
  ロゴエリア
============================================== */
.logo_area {
  padding: 1.25rem 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}
.logo_area .logo_wrap {
  display: flex;
  align-items: flex-end;
  gap: 20px 50px;
  pointer-events: auto;
  padding-left: 3.125rem;
}
@media screen and (max-width: 768px) {
  .logo_area .logo_wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 0 50px;
    padding-left: 7%;
  }
}
.logo_area .logo {
  color: #fff;
  display: block;
  font-size: 1.75rem;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .logo_area .logo {
    width: 56%;
    max-width: 325px;
  }
}
.logo_area .logo img {
  vertical-align: middle;
}
.logo_area .logo_side {
  color: var(--gray);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.5;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .logo_area .logo_side {
    font-size: 0.75rem;
  }
}

/* ==============================================
  ヘッダー（フローティング）
============================================== */
.header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1002;
  pointer-events: none;
}
.header .container {
  padding: 0;
}

.header_nav {
  padding: 1.25rem 3.125rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header_nav {
    padding: 1.25rem 0.625rem;
  }
}

.header_nav_right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  pointer-events: auto;
}

/* ハンバーガーメニュー（2本線） */
.hamburger {
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 50px;
  height: 50px;
  z-index: 1001;
  transition: all 0.3s ease;
}

.hamburger_line {
  width: 16px;
  height: 2px;
  background: var(--main_color);
  transition: all 0.3s ease;
}

.hamburger.active .hamburger_line:first-child {
  transform: rotate(45deg) translate(3px, 3px);
  background: var(--main_color);
}
.hamburger.active .hamburger_line:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
  background: var(--main_color);
}
.hamburger.active + .reserve_btn {
  visibility: hidden;
}

.header_reserve_btn_wrap {
  background: var(--main_color);
  border-radius: 50px;
  height: 164px;
  transition: 0.3s;
}
.header_reserve_btn_wrap:hover {
  height: auto;
}

.reserve_btn {
  background: var(--main_color);
  border-radius: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  padding: 1.5rem 5px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  transition: all 0.3s ease;
  width: 50px;
}
.reserve_btn .reserve_text {
  display: block;
}

.reserve_btn + .hidden_reserve {
  color: #fff;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 26px;
  width: 50px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  transition: all 0.3s ease;
  padding: 1.5rem 0;
  margin-top: -24px;
}
.reserve_btn + .hidden_reserve .reserve_text {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.reserve_btn + .hidden_reserve .reserve_text::before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  background-color: #fff;
  border-radius: 20px;
}

.header_reserve_btn_wrap:hover .reserve_btn.btn1 {
  opacity: 0.5;
}
.header_reserve_btn_wrap:hover .reserve_btn + .hidden_reserve {
  visibility: visible;
  opacity: 1;
  background-color: var(--main_color);
  border-radius: 0 0 50px 50px;
  transition: all 0.3s ease;
}

.nav_close {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  height: 36px;
  width: 36px;
  background: none;
  border: none;
  position: absolute;
  top: 20px;
  right: 20px;
}
.nav_close:hover {
  cursor: pointer;
}
.nav_close .line {
  background: #fff;
  display: block;
  width: 16px;
  height: 1px;
}
.nav_close .line:first-of-type {
  transform: rotate(45deg) translate(3px, 2px);
}
.nav_close .line:last-of-type {
  transform: rotate(-45deg) translate(3px, -2px);
}

/* ナビメニュー */
.nav_menu {
  background: var(--main_color);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  font-weight: 500;
  position: fixed;
  top: 20px;
  right: 50px;
  width: 70%;
  max-width: 400px;
  z-index: -1;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  opacity: 0;
  max-height: 100%;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .nav_menu {
    right: 3%;
  }
}
.nav_menu ul {
  list-style: none;
  padding: 0;
}
.nav_menu .nav_btn {
  background-color: #fff;
  color: var(--main_color);
  margin: 16px auto;
}
@media screen and (max-width: 768px) {
  .nav_menu .nav_btn {
    width: auto;
    font-size: 12px;
    height: 50px;
  }
}
.nav_menu .nav_btn::before {
  background-color: var(--main_color);
}

.nav_menu.active {
  opacity: 1;
  z-index: 1002;
  transition: opacity 0.4s ease;
}

.nav_menu_inner {
  padding: 3rem 2rem;
}

.nav_menu_list {
  color: #fff;
  text-align: center;
  margin: 0;
}

.nav_menu_link {
  color: #fff;
  font-size: 1rem;
  display: block;
  padding: 1rem 0;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .nav_menu_link {
    font-size: 0.75rem;
    padding: 0.375rem 0;
  }
}

.nav_menu_list.sub_menu {
  font-size: 0.75rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .nav_menu_list.sub_menu {
    font-size: 0.625rem;
  }
}
.nav_menu_list.sub_menu p {
  margin: 0;
}
.nav_menu_list.sub_menu .insta_wrap {
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .nav_menu_list.sub_menu .insta_wrap {
    margin: 30px 0;
  }
}
.nav_menu_list.sub_menu .insta_link {
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .nav_menu_list.sub_menu .insta_link {
    font-size: 0.625rem;
  }
}
.nav_menu_list.sub_menu .insta_link svg {
  fill: #fff;
}
.nav_menu_list.sub_menu .sub_menu_item {
  margin-top: 12px;
}

.footer {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.footer .insta_link {
  margin-left: 3.75rem;
}
@media screen and (min-width: 769px) {
  .footer .insta_link.sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .footer .insta_link {
    font-size: 0.75rem;
  }
  .footer .insta_link.pc {
    display: none;
  }
}

.toppage .footer {
  height: calc(100vh + 100px);
  margin-top: -100px;
}
@media screen and (max-width: 768px) {
  .toppage .footer {
    height: calc(100vh + 50px);
    margin-top: -50px;
  }
}

.footer_video_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.footer_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* フッターコンテンツ（下半分、メインカラー背景） */
.footer_content_wrapper {
  background: var(--main_color);
  border-radius: 100px 100px 0 0;
  color: #fff;
  padding: 6.25rem 0 4.375rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  transform: translateY(100%); /* 初期位置：画面外（下） */
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .footer_content_wrapper {
    border-radius: 50px 50px 0 0;
    padding: 1.625rem 0;
  }
}

.footer_content {
  max-width: 1400px;
  margin: 0 auto;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .footer_content {
    width: 87%;
  }
}

@media screen and (min-width: 769px) {
  .footer_upper {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_upper .first {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .footer_upper .logo_wrap {
    max-width: 230px;
    width: 45%;
  }
}
.footer_upper .insta_link svg {
  width: 15px;
}

.footer_links {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  list-style: none;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .footer_links {
    text-align: right;
  }
}
@media screen and (max-width: 768px) {
  .footer_links {
    margin-top: 1.5rem;
  }
}
.footer_links .menu_wrap {
  max-width: 490px;
  margin-left: auto;
}
.footer_links .link_text {
  display: inline-block;
  line-height: 2;
  margin: 10px 10px 10px 2rem;
}
@media screen and (max-width: 768px) {
  .footer_links .link_text {
    margin: 2px 6px;
  }
}
.footer_links .link_text:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer_bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3.75rem;
  padding-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .footer_bottom {
    font-size: 0.75rem;
    justify-content: center;
    margin-top: 1.625rem;
    padding-top: 1.625rem;
  }
}

.back_top {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .back_top {
    text-align: center;
    margin-bottom: 1.875rem;
  }
}
.back_top .arrow {
  margin-left: 14px;
  rotate: -90deg;
  vertical-align: middle;
  transition: 0.3s;
}

.back_top:hover {
  cursor: pointer;
}
.back_top:hover .arrow {
  translate: 0 -3px;
}
@media screen and (min-width: 769px) {
  .back_top:hover.sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .back_top:hover {
    display: block;
    text-align: center;
  }
  .back_top:hover.pc {
    display: none;
  }
}

.privacy_p_text:hover,
.transaction_text:hover {
  cursor: pointer;
}

.popup_wrapper {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 1003;
}

.popup_inside {
  width: 80%;
  max-width: 800px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.popup_box {
  background: #fff;
  border-radius: 25px;
  padding: 60px;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .popup_box {
    padding: 40px 30px;
  }
}

.privacy_title {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-top: 30px;
  text-align: center;
}

.privacy_contet {
  font-size: 0.875rem;
  margin-top: 3.75rem;
}
.privacy_contet .mt {
  margin-top: 30px;
}

.close_popup {
  position: absolute;
  top: 30px;
  right: 5px;
  cursor: pointer;
  color: #fff;
  z-index: 2;
}

.close_cont {
  display: flex;
  align-items: center;
  position: relative;
  line-height: 1;
  top: 70px;
  right: 20px;
}
.close_cont .menu_buger {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 1.25rem;
  width: 1.25rem;
  margin-right: 6px;
  cursor: pointer;
}
.close_cont .menu_buger_line {
  position: absolute;
  left: 0;
  display: block;
  width: 1.25rem;
  height: 1px;
  background: var(--black);
  transition: transform 0.3s ease-out;
  transform-origin: left;
}
.close_cont .menu_buger_line:first-of-type {
  top: 3px;
  transform: rotate(45deg) translateY(0px) scale(1, 1.4);
  transition: transform 0.3s ease-out;
}
.close_cont .menu_buger_line:last-of-type {
  bottom: 2px;
  transform: rotate(-45deg) translateY(0px) scale(1, 1.4);
  transition: transform 0.3s ease-out;
}

/* ==============================================
  ページネーション
============================================== */
.post_paginav {
  max-width: 1200px;
  margin: 70px auto 20px;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .post_paginav {
    width: 84%;
    margin: 40px auto 20px;
  }
}
.post_paginav .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .post_paginav .nav-links {
    max-width: fit-content;
    margin: 0 auto;
  }
}
.post_paginav a:hover {
  opacity: 0.6;
}

.page-numbers {
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page-numbers {
    font-size: 1rem;
    width: 36px;
    height: 36px;
  }
}

.page-numbers.current {
  background-color: #e6e6e6;
}

.page-numbers.prev,
.page-numbers.next {
  background-color: var(--main_color);
}

.page-numbers.prev svg {
  rotate: 180deg;
}

/* ==============================================
  投稿詳細ページ
============================================== */
.page_fv_inner_single {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.page_fv_inner_single .content {
  margin-top: 8%;
  padding-right: 28px;
}
.page_fv_inner_single .date_cat {
  display: flex;
  align-items: center;
  gap: 10px 6px;
}
.page_fv_inner_single .date_cat .date {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0;
}
.page_fv_inner_single .date_cat .post-categories {
  color: var(--main_color);
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
}
.page_fv_inner_single .post_ttl {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 4px 0;
}
.page_fv_inner_single .ttl_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
}
.page_fv_inner_single .tag_item {
  font-size: 0.75rem;
  list-style: none;
  line-height: 1.2;
  padding: 0;
}
.page_fv_inner_single .tag_item a {
  border: 1px solid var(--black);
  border-radius: 30px;
  letter-spacing: 0;
  padding: 5px 10px;
  display: block;
}
.page_fv_inner_single .tag_item a::before {
  content: "＃";
}
.page_fv_inner_single .tag_item a:hover {
  color: var(--main_color);
}

@media screen and (max-width: 768px) {
  .page_fv_inner_single {
    width: 90%;
    margin: 0 auto;
  }
  .page_fv_inner_single .content {
    margin-top: 30%;
  }
  .page_fv_inner_single .date_cat {
    gap: 10px 1px;
  }
  .page_fv_inner_single .date_cat .date {
    font-size: 0.8125rem;
  }
  .page_fv_inner_single .date_cat .post-categories {
    font-size: 0.75rem;
  }
  .page_fv_inner_single .post_ttl {
    font-size: 1.1875rem;
    margin: 4px 0;
  }
  .page_fv_inner_single .ttl_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 16px 0 0;
  }
  .page_fv_inner_single .tag_item {
    font-size: 0.6875rem;
    letter-spacing: 0;
  }
  .page_fv_inner_single .tag_item a {
    padding: 5px 8px;
  }
}
@media screen and (min-width: 769px) {
  .topics_container.single_cont .main_cont {
    width: 75%;
  }
}
@media screen and (max-width: 768px) {
  .topics_container.single_cont {
    flex-direction: column;
  }
  .topics_container.single_cont .sidebar {
    margin-top: 60px;
  }
}

.single_page_nav {
  border-top: 1px solid #e6e6e6;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 90px;
  padding-top: 50px;
}
.single_page_nav p {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .single_page_nav {
    font-size: 0.8125rem;
  }
}
.single_page_nav .prev_next_text {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .single_page_nav .prev_next_text {
    font-size: 0.9375rem;
  }
}
.single_page_nav .prev_next_text a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.single_page_nav .prev_next_text.prev svg {
  rotate: 180deg;
}
.single_page_nav .prev_next_text .arrow {
  background-color: var(--main_color);
  border-radius: 30px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .single_page_nav .prev_next_text .arrow {
    font-size: 1rem;
    width: 36px;
    height: 36px;
  }
}
.single_page_nav a:hover {
  opacity: 0.6;
}

body.is-loading {
  background: var(--main_color);
  overflow: hidden;
  height: 100vh;
}

#loading-screen {
  inset: 0;
  position: fixed;
  width: 100%;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.8s ease-out, z-index 0.8s ease-out;
  background-color: var(--main_color);
  z-index: 999999;
}

#loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

.splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

/* body全体の背景色変化 */
body[data-bg=main] {
  background-color: var(--main_color) !important;
}

.toppage .logo_area {
  position: fixed;
  opacity: 1;
  transition: opacity 1s 0.3s ease;
}
.toppage .logo_area .logo_wrap {
  flex-direction: column;
  align-items: flex-start;
}

.toppage .logo_area.fade_out {
  opacity: 0;
  transition: all 1s 0.3s ease;
  z-index: -1;
}

.more_text {
  font-size: 0.875rem;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .more_text {
    font-size: 0.75rem;
  }
}
.more_text::after {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  background: var(--main_color);
  border-radius: 1em;
  margin-left: 10px;
}
.more_text .more_arrow {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0.3em;
  translate: -40px;
}
@media screen and (max-width: 768px) {
  .more_text .more_arrow {
    width: 13px;
    height: 13px;
  }
}
.more_text:hover::after {
  opacity: 0;
}
.more_text:hover .more_arrow {
  visibility: visible;
  opacity: 1;
  translate: 0;
  transition: 0.3s;
}

/* スクロールダウンの位置 */
.scrolldown {
  position: fixed;
  right: 10%;
  top: calc(50% - 75px);
  writing-mode: vertical-rl;
  z-index: 999;
  opacity: 1;
  transition: 0.3s;
}
.scrolldown::before, .scrolldown::after {
  content: "";
  bottom: -115px;
  left: 0;
  right: 0;
  position: absolute;
  margin: auto;
  height: 150px;
  width: 1px;
}
@media screen and (max-width: 768px) {
  .scrolldown::before, .scrolldown::after {
    height: 120px;
  }
}

.scrolldown::before {
  animation: scrolldown 3s infinite;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  background-color: var(--gray);
  z-index: 2;
}

.scrolldown::after {
  background-color: #ccc;
}

/* 線のアニメーション */
@keyframes scrolldown {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* ==============================================
  ファーストビュー（動画 + スクロール切り替え）
============================================== */
.fv {
  position: relative;
  width: 100%;
  height: 400vh;
  overflow: hidden;
}

.fv_video {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.5s ease, visibility 0.5s ease; /* フェード用 */
}

.fv_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--main_color);
  background: transparent;
  z-index: -1;
}

.fv_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease; /* フェード用 */
}

.fv_slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.fv_slide.active {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 1s 0.3s ease;
}

.fv_content {
  max-width: 1400px;
  margin: 0 auto;
  width: 90%;
}

.fv_title {
  color: var(--gray);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .fv_title {
    font-size: 1.375rem;
  }
}

.fv_content.cont01 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 95%;
}
@media screen and (max-width: 768px) {
  .fv_content.cont01 {
    align-items: normal;
    justify-content: flex-end;
    flex-direction: column;
  }
}
.fv_content.cont01 .title_text {
  display: block;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .fv_content.cont01 .title_text {
    margin-top: 16px;
  }
}
.fv_content.cont01 .title_text img {
  vertical-align: bottom;
}

.fv_news {
  border-top: 1px solid rgba(113, 112, 112, 0.6);
  color: var(--gray);
  font-size: 0.9375rem;
  position: relative;
  transition: 0.3s ease-in;
}
@media screen and (min-width: 769px) {
  .fv_news {
    width: 340px;
  }
}
@media screen and (max-width: 768px) {
  .fv_news {
    margin-top: 24px;
  }
}
.fv_news .news_text {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.fv_news .post_content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  font-weight: 500;
  margin-top: 6px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .fv_news .post_content {
    margin-top: 0;
  }
}
.fv_news .news_date {
  font-family: "Poppins", sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
}
.fv_news .arrow {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0.6em;
}
.fv_news .arrow::after {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  background: #717070;
  border-radius: 1em;
  margin-left: 10px;
  transition: 0.3s;
}
.fv_news .arrow .more_arrow {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0.3em;
  translate: -40px;
  transition: 0.1s;
}
@media screen and (max-width: 768px) {
  .fv_news .arrow .more_arrow {
    width: 13px;
    height: 13px;
  }
}

.fv_news:hover {
  color: var(--main_color);
  transition: 0.3s ease-in;
}
.fv_news:hover .arrow::after {
  opacity: 0;
}
.fv_news:hover .arrow .more_arrow {
  visibility: visible;
  opacity: 1;
  translate: 0;
  transition: 0.3s;
}

.fv_content.cont02 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 2;
}
.fv_content.cont02 .fv_description {
  color: #fff;
  font-size: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .fv_content.cont02 .fv_description {
    font-size: 0.75rem;
  }
}
.fv_content.cont02 .fv_description p {
  line-height: 2;
  margin-top: 2em;
}
.fv_content.cont02 .fv_description .ttl_logo {
  width: min(56%, 188px);
}
@media screen and (max-width: 768px) {
  .fv_content.cont02 .fv_description .ttl_logo {
    width: 50%;
  }
}
.fv_content.cont02 .fv_description .title {
  font-size: 2rem;
  font-weight: 500;
  margin: 1.875rem 0 2.5rem;
}
@media screen and (max-width: 768px) {
  .fv_content.cont02 .fv_description .title {
    font-size: 1.25rem;
  }
}

.mask_bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 41, 43, 0.25);
  position: absolute;
}

/* ==============================================
  お客様の声
============================================== */
.voice {
  position: relative;
  background: #fff;
  z-index: 2;
  margin-top: -100vh; /* 動画に重なるように */
  min-height: 100vh; /* 固定表示用の高さ */
  overflow: hidden;
  transition: background-color 1s 1s ease;
}
.voice .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .voice .container {
    width: 84%;
    padding-bottom: 5.625rem;
  }
}

body[data-bg=main] .voice {
  background-color: transparent;
  transition: background-color 0.1s ease;
}

.voice .sec_ttl_wrap {
  padding: 1.875rem 0;
}
@media screen and (max-width: 768px) {
  .voice .sec_ttl_wrap {
    padding: 1.25rem 0;
  }
}

.voice_ttl_right span {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0;
}
.voice_ttl_right .cont1 {
  display: flex;
  align-items: center;
}
.voice_ttl_right .font_s {
  font-size: 0.8125rem;
  letter-spacing: 0;
}
.voice_ttl_right .font_m {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
.voice_ttl_right .font_l {
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
}
.voice_ttl_right .num {
  color: var(--main_color);
  font-family: "Poppins", sans-serif;
  font-size: 3.375rem;
  font-weight: 600;
  line-height: 1;
  margin-left: 16px;
  margin-right: 12px;
  letter-spacing: -0.03em;
}
.voice_ttl_right .num_answer {
  line-height: 1.3;
  text-align: center;
}
.voice_ttl_right .strength {
  border-left: 1px solid var(--black);
  font-weight: 500;
  line-height: 1.6;
  margin-left: 24px;
  padding: 10px 0 10px 24px;
}

@media screen and (min-width: 769px) {
  .voice_ttl_right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .voice_ttl_right {
    width: max-content;
    margin: 2.5rem auto 0;
  }
  .voice_ttl_right .font_s {
    font-size: 0.75rem;
  }
  .voice_ttl_right .font_m {
    font-size: 0.75rem;
  }
  .voice_ttl_right .font_l {
    font-size: 0.75rem;
  }
  .voice_ttl_right .num {
    font-size: 2.5rem;
  }
  .voice_ttl_right .strength {
    border-top: 1px solid var(--black);
    border-left: 0;
    padding: 18px 0 0;
    margin: 10px 0 0;
    font-size: 0.8125rem;
  }
}
/* プログレスバー */
.voice_progress_bar {
  width: 100%;
  height: 2px;
  background: #f2f2f2;
  border-radius: 2px;
  overflow: hidden;
}

.voice_progress_fill {
  height: 100%;
  background: #c8c8c8;
  width: 0%;
  border-radius: 2px;
}

.voice_grid {
  display: flex;
  gap: 2.5rem;
  margin-top: 4.25rem;
  width: max-content;
  will-change: transform;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .voice_grid {
    margin-top: 2.25rem;
  }
}

.voice_card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 30px 30px 76px 0 rgba(16, 25, 33, 0.1);
  list-style: none;
  padding: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  width: 580px;
  opacity: 1;
  transform: translateY(0);
  padding: 1.875rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .voice_card {
    width: 90vw;
    padding: 1.875rem 1.875rem;
  }
}
.voice_card::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 50px;
  background: #fff;
  filter: drop-shadow(30px 30px 76px rgba(16, 25, 33, 0.1));
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  bottom: -20px;
  right: 50px;
  rotate: -45deg;
}

.voice_card:hover {
  transform: translateY(-5px);
}

.voice_upper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
@media screen and (max-width: 768px) {
  .voice_upper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.voice_upper p {
  margin: 0;
}
.voice_upper .user_prof {
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
  margin: 0;
}
.voice_upper .voice_name {
  font-weight: 500;
  margin-left: 16px;
}
.voice_upper .voice_age {
  font-size: 0.75rem;
}
.voice_upper .voice_shop {
  background-color: var(--main_color);
  border-radius: 1em;
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1.4;
  padding: 2px 6px 0;
}
@media screen and (max-width: 768px) {
  .voice_upper .voice_shop {
    align-self: flex-end;
  }
}

.voice_content .rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rate {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 16px;
  font-size: 16px;
}
.rate:before, .rate:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "★★★★★";
  display: inline-block;
  height: 16px;
  line-height: 16px;
}
.rate:before {
  color: #ddd;
}
.rate:after {
  color: var(--main_color);
  overflow: hidden;
  white-space: nowrap;
}

.rate0:after {
  width: 0;
}

.rate1:after {
  width: 16px;
}

.rate2:after {
  width: 35.2px;
}

.rate3:after {
  width: 51.2px;
}

.rate4:after {
  width: 67.2px;
}

.rate5:after {
  width: 84.8px;
}

.voice_content {
  border-top: 1px solid rgba(221, 221, 221, 0.8);
  margin: 10px 0;
  font-size: 0.875rem;
  position: relative;
  transition: color 0.3s ease;
}
.voice_content .more_wrap {
  text-align: right;
}

.voice_text {
  height: 120px;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .voice_text {
    height: 170px;
    font-size: 0.75rem;
  }
}

.voice_notice {
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.25rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .voice_notice {
    flex-direction: column;
    font-size: 0.625rem;
  }
}
.voice_notice .note_text {
  margin: 0;
  letter-spacing: 0.02em;
}
.voice_notice .links {
  display: flex;
}
@media screen and (max-width: 768px) {
  .voice_notice .links {
    margin-top: 34px;
  }
}
.voice_notice .note_text {
  display: flex;
  align-items: center;
}
.voice_notice .more_text {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .voice_notice .more_text {
    font-size: 11px;
    letter-spacing: 0.02em;
  }
}
.voice_notice .more_text:last-of-type {
  border-left: 1px solid #b8b8b8;
  margin-left: 14px;
  padding-left: 16px;
}

body[data-bg=main] .voice_notice {
  color: #fff;
  transition: color 0.2s ease;
}
body[data-bg=main] .voice_notice .more_text::after {
  background-color: #fff;
  transition: background-color 0.2s ease;
}

/* ==============================================
   選ばれる理由
============================================== */
.reason {
  background: transparent;
  position: relative;
  transition: background-color 0.3s ease;
  overflow: hidden;
}

.reason .sec_ttl_wrap {
  padding: 1.875rem 0;
}
@media screen and (max-width: 768px) {
  .reason .sec_ttl_wrap {
    padding: 1.25rem 0;
  }
}

.reason .section_title {
  transition: color 0.3s ease;
}

/* プログレスバー */
.reason_progress_bar {
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  margin-bottom: 4.25rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .reason_progress_bar {
    margin-bottom: 2.25rem;
  }
}

.reason_progress_fill {
  height: 100%;
  background: var(--main_color);
  width: 0%;
  border-radius: 2px;
}

/* 背景色変化時のプログレスバー背景 */
body[data-bg=main] .reason .section_title {
  color: #fff;
}
body[data-bg=main] .reason_progress_bar {
  background: rgba(13, 13, 13, 0.2);
}
body[data-bg=main] .reason_progress_fill {
  background: #fff;
}

.reason .container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 5.625rem;
}
@media screen and (max-width: 768px) {
  .reason .container {
    width: 84%;
    padding-bottom: 3.75rem;
  }
}

.reason_grid {
  display: flex;
  position: relative;
  padding: 0;
  margin: 0;
  width: max-content;
  gap: 4.25rem;
}

.reason_card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  gap: 4.25rem;
  transition: background-color 0.3s ease;
  will-change: transform;
  width: 90vw;
  max-width: 1200px;
}
@media screen and (min-width: 769px) {
  .reason_card {
    height: 62vh;
    min-height: 450px;
    min-width: 990px;
  }
}
@media screen and (max-width: 768px) {
  .reason_card {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }
}

.reason_img_wrap {
  flex-basis: 48%;
  border-radius: 100px;
  overflow: hidden;
  margin: 0;
}
@media screen and (min-width: 769px) {
  .reason_img_wrap {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .reason_img_wrap {
    flex-basis: auto;
    height: 148px;
    border-radius: 50px;
    width: 100%;
  }
}
.reason_img_wrap img {
  vertical-align: bottom;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .reason_card:first-of-type .reason_img_wrap img {
    object-position: 0% 30%;
  }
}
.reason_content {
  flex-basis: 45%;
}
@media screen and (max-width: 768px) {
  .reason_content {
    flex-basis: auto;
  }
}

.reason_number {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.3s ease;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .reason_number {
    font-size: 1.0625rem;
  }
}

.reason_title {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--black);
  font-weight: bold;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .reason_title {
    font-size: 1.125rem;
  }
}

.reason_description {
  color: var(--gray);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 2.4;
  transition: color 0.3s ease;
  position: relative;
  margin-top: 40px;
}
.reason_description::before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .reason_description {
    font-size: 0.75rem;
    line-height: 1.8;
    margin-top: 20px;
  }
  .reason_description::before {
    margin-bottom: 20px;
  }
}

body[data-bg=main] .reason_number {
  color: #fff;
}
body[data-bg=main] .reason_title {
  color: #fff;
}
body[data-bg=main] .reason_description {
  color: rgb(255, 255, 255);
}

/* ==============================================
  店舗情報
============================================== */
.shop {
  overflow: hidden;
}

.shop .sec_ttl_wrap {
  padding: 1.875rem 0;
}
@media screen and (max-width: 768px) {
  .shop .sec_ttl_wrap {
    padding: 1.25rem 0;
  }
}

.shop .section_title {
  transition: color 0.3s ease;
}

body[data-bg=main] .shop .section_title {
  color: #fff;
}

/* プログレスバー */
.shop_progress_bar {
  width: 100%;
  height: 2px;
  background: #f2f2f2;
  border-radius: 2px;
  overflow: hidden;
}

.shop_progress_fill {
  height: 100%;
  background: #c8c8c8;
  width: 0%;
  border-radius: 2px;
}

.shop .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .shop .container {
    width: 84%;
    padding-bottom: 6.25rem;
  }
}

.shop_grid {
  display: flex;
  padding: 0;
  margin: 3.125rem 0 0;
  width: max-content;
  gap: 4.25rem;
}
@media screen and (max-width: 768px) {
  .shop_grid {
    margin: 1.25rem 0 0;
  }
}

.shop_card {
  display: flex;
  width: 90vw;
  max-width: 1200px;
}
@media screen and (min-width: 769px) {
  .shop_card {
    min-width: 1020px;
  }
}
@media screen and (max-width: 768px) {
  .shop_card {
    flex-direction: column;
    width: 86vw;
  }
}

.shop_main_img {
  width: 46%;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .shop_main_img {
    width: 100%;
    height: 18vh;
    border-radius: 50px;
  }
}
.shop_main_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}

@media screen and (max-width: 768px) {
  .shop_main_img:first-of-type img {
    object-position: 0 36%;
  }
}
.shop_content {
  width: 46%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .shop_content {
    width: 100%;
  }
}

.shop_main_ttl {
  font-size: 2.25rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1;
  position: relative;
  z-index: 2;
  margin: 0;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .shop_main_ttl {
    font-size: max(18px, 6vw);
    margin-top: -0.6em;
    text-align: center;
  }
}

.shop_info_wrap {
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .shop_info_wrap {
    margin-top: 1.25rem;
  }
}

.shop_info {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  display: grid;
  grid-template-columns: 7em 1fr;
  gap: 20px 0;
}
@media screen and (max-width: 768px) {
  .shop_info {
    font-size: 0.6875rem;
    gap: 0;
    display: flex;
    flex-wrap: wrap;
  }
}

.shop_info_dt, .shop_info_dd {
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .shop_info_dt, .shop_info_dd {
    padding-bottom: 10px;
    padding-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .shop_info_dt {
    min-width: 6em;
  }
  .shop_info_dt.spnocolumn {
    border: none;
    padding: 10px 0 4px 0;
  }
  .shop_info_dt.spnocolumn + .shop_info_dd {
    padding-top: 0;
    width: 100%;
  }
}

.shop_info_dd {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .shop_info_dd {
    align-self: flex-end;
    min-width: calc(100% - 6em);
  }
}
.shop_info_dd .map_link {
  font-size: 0.8125rem;
  font-weight: 500;
  display: flex;
  gap: 6px;
}
@media screen and (max-width: 768px) {
  .shop_info_dd .map_link {
    font-size: 0.6875rem;
  }
}

.shop_btn_wrap {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .shop_btn_wrap {
    margin-top: 1.25rem;
  }
  .shop_btn_wrap .c_btn {
    margin: 0 auto;
  }
}

/* ==============================================
  トピックス
============================================== */
.topics {
  background: #f6f6f6;
  border-radius: 100px;
  padding: 6.25rem 0 7.5rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .topics {
    border-radius: 50px;
    padding: 3.75rem 0;
  }
}
.topics .sec_ttl_wrap.flex {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .topics .sec_ttl_wrap.flex .topics_more {
    display: none;
  }
}
.topics .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .topics .container {
    width: 84%;
  }
}
.topics .sp_more_wrap {
  text-align: right;
}
@media screen and (min-width: 769px) {
  .topics .sp_more_wrap {
    display: none;
  }
}

.topics_wrap {
  margin-top: 5rem;
}
@media screen and (min-width: 769px) {
  .topics_wrap {
    display: flex;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .topics_wrap {
    margin-top: 2.5rem;
  }
}

.topics_list {
  max-width: 900px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .topics_list {
    margin: 0 auto;
  }
}

.topics_item {
  border-bottom: 1px solid #e6e6e6;
  opacity: 0;
  transform: translateY(20px);
  padding: 2.5rem 0 2.5rem;
  max-width: 900px;
}
@media screen and (max-width: 768px) {
  .topics_item {
    padding: 2.5rem 0 2.5rem;
  }
}
@media screen and (min-width: 769px) {
  .topics_item .inner {
    display: flex;
    gap: 40px;
  }
}
.topics_item .post_img {
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .topics_item .post_img {
    width: 210px;
  }
}
.topics_item .post_img img {
  vertical-align: top;
}
.topics_item .post_content {
  position: relative;
}
@media screen and (min-width: 769px) {
  .topics_item .post_content {
    padding-right: 4.375rem;
    width: calc(100% - 210px);
  }
  .topics_item .post_content + .arrow {
    position: absolute;
    top: 50%;
    right: 20px;
  }
  .topics_item .post_content + .arrow::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--main_color);
    border-radius: 1em;
    margin-left: 10px;
    transition: 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .topics_item .post_content + .arrow {
    display: none;
  }
}
.topics_item .post_content .upper {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 769px) {
  .topics_item:hover .post_content + .arrow::after {
    opacity: 0;
  }
  .topics_item:hover .post_content + .arrow .more_arrow {
    visibility: visible;
    opacity: 1;
    translate: 0;
    transition: 0.3s;
  }
}
.toppage .topics_item:last-child {
  border-bottom: none;
}

.topics_date {
  font-family: "Poppins", sans-serif;
  display: inline-block;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .topics_date {
    font-size: 0.75rem;
  }
}

.topics_cat {
  background-color: #4f4f4f;
  border-radius: 2em;
  color: #fff;
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  padding: 0 10px;
  margin: 0 0 0 20px;
}
@media screen and (max-width: 768px) {
  .topics_cat {
    font-size: 0.625rem;
  }
}

.topics_title {
  font-size: 1rem;
  font-weight: 500;
  margin: 1.25rem 0;
  color: var(--black);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .topics_title {
    font-size: 0.875rem;
  }
}

.topics_text {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .topics_text {
    font-size: 0.75rem;
  }
}

.topics_container {
  max-width: 1200px;
  margin: 5.625rem auto 7.5rem;
  width: 90%;
  display: flex;
}
@media screen and (max-width: 768px) {
  .topics_container {
    flex-direction: column-reverse;
    margin: 2.5rem auto 6.25rem;
    width: 84%;
  }
}
@media screen and (min-width: 769px) {
  .topics_container .topics_list {
    width: 75%;
  }
}

/* ==============================================
  サイドバー
============================================== */
@media screen and (min-width: 769px) {
  .sidebar {
    padding-left: 3%;
    width: 25%;
  }
}

.sidebar_title {
  background-image: linear-gradient(to right, #8c8c8c 1px, transparent 1px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  color: var(--main_color);
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  padding-bottom: 12px;
}

.sidebar_item {
  margin-bottom: 3.125rem;
}

.page_container {
  max-width: 1200px;
  margin: 100px auto;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .page_container {
    width: 84%;
  }
}/*# sourceMappingURL=main.css.map */