@charset "UTF-8";
/* 機能とパーツごとに分けたscssファイルをcssファイルにコンパイル */
/* function
------------------------------------------------ */
/* setting
------------------------------------------------ */
/* スマホ：~519px
　 タブレット：520px~959px
　 パソコン：960px~ */
html {
  /* ルートのフォントサイズを10pxに設定 */
  font-size: 62.5%;
}

body {
  /* bodyの基本サイズを16pxに設定 */
  font-size: 1.6rem;
  font-size: clamp(1rem, 4vw, 1.6rem);
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  text-align: justify;
  letter-spacing: 0.01em;
  line-height: 1.75;
}

.f-maru {
  font-family: "Zen Maru Gothic", sans-serif;
}

.f-anti {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.f-over {
  font-family: "Overpass", sans-serif;
}

/* foundation
------------------------------------------------ */
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

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

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

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

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

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
  color: inherit;
}

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

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

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

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

body {
  overflow-x: hidden;
  /* 印刷禁止 */
}

.drawer--open {
  overflow: hidden;
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}

button:hover {
  opacity: 0.8;
}

img {
  font-size: 0;
  vertical-align: bottom;
  max-width: 100%;
  /* PCの右クリック禁止 */
  /* SPの長押し禁止 */
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

.br-tab {
  display: none;
}
@media screen and (max-width: 959px) {
  .br-tab {
    display: block;
  }
}

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

.nonbr-tab {
  display: block;
}
@media screen and (max-width: 959px) {
  .nonbr-tab {
    display: none;
  }
}

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

.link-disable {
  pointer-events: none;
  background-color: #aaa !important;
}

@media screen and (max-width: 519px) {
  .sptop {
    overflow: hidden;
  }
}

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

.anchor {
  margin-top: -10rem;
  padding-top: 10rem;
}
@media screen and (max-width: 519px) {
  .anchor {
    margin-top: -2rem;
    padding-top: 2rem;
  }
}

/* layout
------------------------------------------------ */
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}

/*　上に上がる動き　*/
.l-header.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes UpAnime {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
/*　下に下がる動き　*/
.l-header.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.l-inner {
  margin: 0 auto;
  padding: 0 3rem;
  padding: 0 min(3rem, 7.5vw);
  max-width: 120rem;
  width: 100%;
  height: auto;
}

.l-inner--1030 {
  max-width: 1030px;
}

.l-main {
  padding-top: 5.5rem;
}

.l-footer {
  margin-top: 5rem;
}
@media screen and (max-width: 959px) {
  .l-footer {
    margin-top: 0;
  }
}
@media screen and (max-width: 519px) {
  .l-footer {
    margin-top: 3rem;
  }
}

.l-content {
  position: relative;
  z-index: 2;
  margin: 0 30rem 0 calc(100% - 40rem - 30rem);
  width: 40rem;
  height: 100%;
  background-color: #fff;
}
@media screen and (max-width: 700px) {
  .l-content {
    margin: 0 auto 0 0;
  }
}
@media screen and (max-width: 400px) {
  .l-content {
    width: 100%;
  }
}

.l-cover {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 400px) {
  .l-cover {
    display: none;
  }
}

.l-cover__left {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 40rem - 30rem);
  height: 100%;
}
@media screen and (max-width: 400px) {
  .l-cover__left {
    display: none;
  }
}

.l-cover__right {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 30rem;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .l-cover__right {
    display: none;
  }
}
@media screen and (max-width: 631px) {
  .l-cover__right {
    display: block;
  }
}

/* component
------------------------------------------------ */
.c-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  height: 100vh;
}

.c-body__left {
  width: 50%;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .c-body__left {
    width: 43%;
  }
}
@media screen and (max-width: 959px) {
  .c-body__left {
    width: calc(100% - 40rem);
  }
}
@media screen and (max-width: 519px) {
  .c-body__left {
    display: none;
  }
}

.c-body__right {
  width: 50%;
  overflow: hidden scroll;
}
@media screen and (max-width: 1200px) {
  .c-body__right {
    width: 57%;
  }
}
@media screen and (max-width: 959px) {
  .c-body__right {
    width: 40rem;
  }
}
@media screen and (max-width: 519px) {
  .c-body__right {
    width: 100%;
  }
}

.c-body__content {
  width: 57%;
}
@media screen and (max-width: 959px) {
  .c-body__content {
    width: 100%;
  }
}

.c-pc-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.c-pc-images__slides {
  height: 100%;
}
.c-pc-images__slides .slick-list,
.c-pc-images__slides .slick-track {
  height: 100%;
}

.c-pc-images__image {
  height: 100%;
}
.c-pc-images__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-pc-images__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 2;
}
.c-pc-images__icons a {
  width: 2rem;
}

.c-header {
  width: 100%;
}

.c-header__logo {
  padding: 1.2rem 1.5rem;
  width: 100%;
  height: 6rem;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 830px) {
  .c-header__logo {
    text-align: left;
  }
}
@media screen and (max-width: 390px) {
  .c-header__logo {
    letter-spacing: 0;
  }
}
@media screen and (max-width: 400px) {
  .c-header__logo {
    font-size: clamp(1rem, 4.5vw, 1.8rem);
  }
}

.c-header__logo--sp {
  display: none;
}
@media screen and (max-width: 400px) {
  .c-header__logo--sp {
    display: block;
    line-height: 1.3;
  }
}

.c-header__hamburger {
  display: none;
  position: fixed;
  top: 2rem;
  top: min(2rem, 5vw);
  right: 1rem;
  right: min(1rem, 2.5vw);
  z-index: 100;
  width: 3rem;
  width: min(3rem, 7.5vw);
  height: 2rem;
  height: min(2rem, 5vw);
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media screen and (max-width: 630px) {
  .c-header__hamburger {
    display: block;
  }
}
@media screen and (max-width: 519px) {
  .c-header__hamburger {
    right: 1.5rem;
    right: min(1.5rem, 3.75vw);
  }
}

.c-header__hamburger-border {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  height: min(0.2rem, 0.5vw);
  background-color: black;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.c-header__hamburger-border--top {
  top: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.c-header__hamburger-border--bottom {
  top: auto;
  bottom: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.c-header__hamburger--open .c-header__hamburger-border--top {
  top: calc(50% - 7.5px + 7.5px);
  top: calc(50% - min(0.75rem, 1.875vw) + min(0.75rem, 1.875vw));
  -webkit-transform: translate(-50%, 0) rotate(-225deg);
          transform: translate(-50%, 0) rotate(-225deg);
}
.c-header__hamburger--open .c-header__hamburger-border--middle {
  opacity: 0;
}
.c-header__hamburger--open .c-header__hamburger-border--bottom {
  top: calc(50% + 7.5px - 7.5px);
  top: calc(50% + min(0.75rem, 1.875vw) - min(0.75rem, 1.875vw));
  -webkit-transform: translate(-50%, 0) rotate(225deg);
          transform: translate(-50%, 0) rotate(225deg);
}

.c-header__drawer {
  position: fixed;
  top: 0;
  right: 0%;
  z-index: 40;
  padding: 0 0 0 3.8rem;
  padding: 0 0 0 min(3.8rem, 9.5vw);
  width: 30rem;
  min-width: 23rem;
  min-width: min(23rem, 57.5vw);
  height: 100vh;
  height: 100lvh;
  background-color: white;
  -webkit-transition: right 0.8s ease 0s;
  transition: right 0.8s ease 0s;
  overflow: hidden scroll;
}
@media screen and (max-width: 700px) {
  .c-header__drawer {
    width: calc(100% - 40rem);
    -webkit-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
  }
}
@media screen and (max-width: 630px) {
  .c-header__drawer {
    right: -100%;
    width: 100%;
    min-width: auto;
  }
}
.c-header__drawer::-webkit-scrollbar {
  width: 0.5rem;
  width: min(0.5rem, 1.25vw);
}
.c-header__drawer::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.c-header__drawer::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
}

.c-header__drawer--open {
  right: 0;
}

.c-header__drawer-head {
  margin-top: 33vh;
  font-size: 2.2rem;
  font-size: clamp(1rem, 5.5vw, 2.2rem);
  font-weight: bold;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 629px) {
  .c-header__drawer-head {
    margin-top: 32.5vh;
    font-size: 0;
  }
}

.c-header__drawer-menus {
  font-size: 1.4rem;
  font-size: clamp(1rem, 3.5vw, 1.4rem);
  font-weight: bold;
  line-height: 3.2rem;
  line-height: min(3.2rem, 8vw);
  letter-spacing: 0.06em;
}
@media screen and (max-width: 629px) {
  .c-header__drawer-menus {
    font-size: 1.8rem;
    font-size: clamp(1rem, 4.5vw, 1.8rem);
  }
}

.c-header__drawer-menu {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
@media screen and (max-width: 629px) {
  .c-header__drawer-menu {
    margin-top: 0.8rem;
    margin-top: min(0.8rem, 2vw);
  }
  .c-header__drawer-menu:first-child {
    margin-top: 0;
  }
}
.c-header__drawer-menu:hover {
  opacity: 0.8;
}
.c-header__drawer-menu::before {
  content: "";
  display: inline-block;
  margin-right: 0.5rem;
  margin-right: min(0.5rem, 1.25vw);
  aspect-ratio: 8/10.6;
  width: 0.8rem;
  width: min(0.8rem, 2vw);
  height: auto;
  background-image: url(../images/common/arrow_menu.png);
  background-size: contain;
  -webkit-transition: all ease 0.5s 0s;
  transition: all ease 0.5s 0s;
}
@media screen and (max-width: 629px) {
  .c-header__drawer-menu::before {
    margin-right: 0.65rem;
    margin-right: min(0.65rem, 1.625vw);
    width: 1.1rem;
    width: min(1.1rem, 2.75vw);
  }
}

.c-header__drawer-menu--open::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.c-header__drawer-submenu {
  display: grid;
  grid-template-rows: 0fr;
  font-size: 1.2rem;
  font-size: clamp(1rem, 3vw, 1.2rem);
  line-height: 2.6rem;
  line-height: min(2.6rem, 6.5vw);
  letter-spacing: 0.06em;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
@media screen and (max-width: 629px) {
  .c-header__drawer-submenu {
    font-size: 1.6rem;
    font-size: clamp(1rem, 4vw, 1.6rem);
  }
}
.c-header__drawer-submenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 1.3rem;
  padding-left: min(1.3rem, 3.25vw);
  max-width: 23rem;
  max-width: min(23rem, 57.5vw);
  list-style: none;
  overflow: hidden;
}
@media screen and (max-width: 629px) {
  .c-header__drawer-submenu ul {
    max-width: min(32rem, 80vw);
  }
}
.c-header__drawer-submenu ul li {
  width: 50%;
}
.c-header__drawer-submenu ul li a::before {
  content: "・";
  margin-right: 0.3rem;
  margin-right: min(0.3rem, 0.75vw);
  color: #6bc7f1;
}
@media screen and (max-width: 629px) {
  .c-header__drawer-submenu ul li a::before {
    margin-right: 0.4rem;
    margin-right: min(0.4rem, 1vw);
  }
}

.c-header__drawer-submenu--open {
  grid-template-rows: 1fr;
  padding: 0.2rem 0 0.5rem;
  padding: min(0.2rem, 0.5vw) 0 min(0.5rem, 1.25vw);
}
@media screen and (max-width: 629px) {
  .c-header__drawer-submenu--open {
    padding: 0.9rem 0 2.7rem;
    padding: min(0.9rem, 2.25vw) 0 min(2.7rem, 6.75vw);
  }
}

.c-header__drawer-space {
  height: 3.3rem;
  height: min(3.3rem, 8.25vw);
}

.c-header__drawer-discovery {
  position: absolute;
  top: 2.2rem;
  top: min(2.2rem, 5.5vw);
  right: 1rem;
  right: min(1rem, 2.5vw);
  font-size: clamp(1rem, 5vw, 2rem);
  font-weight: bold;
  letter-spacing: -0.02em;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
@media screen and (max-width: 629px) {
  .c-header__drawer-discovery {
    top: min(5.5rem, 13.75vw);
    font-size: 2.4rem;
    font-size: clamp(1rem, 6vw, 2.4rem);
  }
}
.c-header__drawer-discovery span {
  display: none;
  margin-top: 1.1rem;
  margin-top: min(1.1rem, 2.75vw);
}
@media screen and (max-width: 629px) {
  .c-header__drawer-discovery span {
    display: inline;
  }
}

.c-header__drawer-logo01 {
  position: absolute;
  top: 5rem;
  top: min(5rem, 12.5vw);
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 19rem;
  width: min(19rem, 47.5vw);
}

.c-header__drawer-logo02 {
  position: absolute;
  bottom: 3rem;
  bottom: min(3rem, 7.5vw);
  right: 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: 19rem;
  width: min(19rem, 47.5vw);
}
@media screen and (max-width: 959px) {
  .c-header__drawer-logo02 {
    width: 16rem;
    width: min(16rem, 40vw);
  }
}

.c-head02 {
  position: relative;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.2rem;
  font-size: clamp(1rem, 5.5vw, 2.2rem);
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
.c-head02::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 0.2rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  aspect-ratio: 27.153/34;
  width: 2.7153rem;
  width: min(2.7143rem, 6.8vw);
  height: auto;
  background-image: url(../images/common/pin_skyblue.png);
  background-size: contain;
}
.c-head02 span {
  border-bottom: solid 1px black;
}

.c-head02--white::before {
  background-image: url(../images/common/pin_white.png);
}

.c-head02--pink::before {
  background-image: url(../images/common/pin_pink.png);
}

.c-head02--red::before {
  background-image: url(../images/common/pin_red.png);
}

.c-head02--apple::before {
  bottom: calc(100% + min(0.7rem, 1.8vw));
  aspect-ratio: 25.12/30;
  width: min(2.512rem, 6.3vw);
  background-image: url(../images/common/icon_apple.png);
}

.c-head02--cutlery::before {
  bottom: calc(100% + min(0.7rem, 1.8vw));
  aspect-ratio: 25.37/30;
  width: min(2.537rem, 6.3vw);
  background-image: url(../images/common/icon_cutlery.png);
}

.c-head02--ls02 {
  letter-spacing: 0.2em;
}
.c-head02--ls02 span {
  padding-left: 0.1em;
}

.c-head02--insta span {
  padding: 0 0.6rem;
  padding: 0 min(0.6rem, 1.5vw);
}

.c-topics {
  margin-top: 13.5rem;
  margin-top: min(13.5rem, 33.8vw);
}

.c-topics--page {
  margin-top: min(5rem, 12.5vw);
}

.c-topics__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem 2.2rem;
  gap: min(3rem, 7.5vw) min(2.2rem, 5.5vw);
  margin-top: 4rem;
  margin-top: min(4rem, 10vw);
}

.c-topics__card {
  width: calc(50% - 1.1rem);
  width: calc(50% - min(2.2rem, 5.5vw) / 2);
}

.c-topics__image {
  border-radius: 2rem;
  border-radius: min(2rem, 5vw);
  overflow: hidden;
}

.c-topics__cat {
  display: block;
  margin-top: 0.3rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 500;
  text-align: center;
  background-color: #fff;
  border: solid 1px #6bc7f1;
  border-radius: 2rem;
  line-height: 1.7;
}

.c-topics__time {
  display: block;
  font-weight: 500;
  line-height: 1.375;
}

.c-topics__title {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.375;
}

.c-btn {
  display: block;
  position: relative;
  margin: 5rem auto 0;
  margin: min(5rem, 12.5vw) auto 0;
  padding: 0.3rem 1.5rem;
  padding: min(0.3rem, 0.75vw) min(1.5rem, 3.75vw);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 11rem;
  min-width: min(11rem, 27.5vw);
  font-size: 1.3rem;
  font-size: clamp(1rem, 3.25vw, 1.3rem);
  font-weight: 500;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  letter-spacing: -0.02em;
  background-color: #fff;
  border: solid 1px black;
  border-radius: 2rem;
  border-radius: min(2rem, 5vw);
}
.c-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.6rem;
  width: min(1.6rem, 4vw);
  height: 1px;
  background-color: black;
}

.c-btn--mt1 {
  margin-top: min(1rem, 2.5vw);
}

.c-place {
  margin-top: 8rem;
  margin-top: min(8rem, 20vw);
  padding-top: 15.5rem;
  padding-top: min(15.5rem, 38.75vw);
  padding-bottom: 8.5rem;
  padding-bottom: min(8.5rem, 21.25vw);
  background-image: url(../images/common/about_bg.png);
  background-size: 100% 100%;
  background-position: center;
}
@media screen and (max-width: 319px) {
  .c-place {
    background-size: auto 100%;
  }
}

.c-place--page {
  margin-top: 6.3rem;
  margin-top: 6.3rem;
  padding: 15rem 0 12.1rem;
  padding: min(15rem, 37.5vw) 0 min(12.1rem, 30.25vw);
  background-image: url(../images/about/about_bg_page.png);
}

.c-place__map {
  margin-top: 5rem;
  margin-top: min(5rem, 12.5vw);
  width: 100%;
}

.c-place__map--page {
  margin-top: 3.5rem;
  margin-top: min(3.5rem, 8.75vw);
}

.c-place__head {
  margin-top: 2.2rem;
  margin-top: min(2.2rem, 5.5vw);
  text-align: center;
  font-size: 1.8rem;
  font-size: clamp(1rem, 4.5vw, 1.8rem);
  font-weight: bold;
}

.c-place__info {
  margin-top: 0.7rem;
}

.c-place__info--page {
  line-height: 1.62;
  letter-spacing: -0.8px;
}

.c-place__btn {
  margin-top: 4rem;
  margin-top: min(4rem, 10vw);
}

.c-course {
  margin-top: 11rem;
  margin-top: min(11rem, 27.5vw);
}

.c-course--page {
  margin-top: min(8.5rem, 21.3vw);
}

.c-course__card {
  margin-top: 4.5rem;
  margin-top: min(4.5rem, 11.25vw);
}

.c-course__card--page {
  margin-top: min(6.4rem, 16vw);
}

.c-course__card--special {
  margin-top: min(5.5rem, 13.75vw);
}

.c-course__sub {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  font-size: clamp(1rem, 4vw, 1.6rem);
  font-weight: 500;
  text-align: center;
}
.c-course__sub::before {
  content: "＼ ";
  color: #ee92ba;
}
.c-course__sub::after {
  content: " ／";
  color: #ee92ba;
}

.c-course__title--special {
  font-size: clamp(1rem, 5.5vw, 2.2rem) !important;
}

.c-course__title--gourmet {
  font-size: clamp(1rem, 4.5vw, 1.8rem) !important;
}
.c-course__title--gourmet::before {
  content: "●";
  color: #6bc7f1;
}

.c-course__frame {
  margin-top: 1.3rem;
  margin-top: min(1.3rem, 3.25vw);
  aspect-ratio: 340/220;
  width: 100%;
  height: auto;
  border-radius: 3rem;
  border-radius: min(3rem, 7.5vw);
  overflow: hidden;
}
.c-course__frame iframe {
  aspect-ratio: 340/220;
  width: 100%;
  height: auto;
}
.c-course__frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-course__frame--youtube {
  position: relative;
}
.c-course__frame--youtube::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  aspect-ratio: 244/171;
  width: 21%;
  height: auto;
  background-image: url(../images/common/icon_youtube_red.png);
  background-size: contain;
}

.c-course__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(1rem, 2.5vw);
  margin-top: min(2rem, 5vw);
  padding-left: min(0.8rem, 2vw);
}

.c-course__btn {
  margin-top: 0;
  width: 62%;
}

.c-course__play {
  width: calc(38% - min(1rem, 2.5vw));
  font-size: clamp(1rem, 3.25vw, 1.3rem);
  font-weight: 500;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  letter-spacing: min(0.6rem, 1.5vw);
  background-image: url(../images/common/bg_pink.png);
  border-radius: 3rem;
}
.c-course__play::after {
  content: "";
  display: inline-block;
  margin-left: min(0.5rem, 1.25vw);
  aspect-ratio: 8.6/10;
  width: min(1rem, 2.5vw);
  height: auto;
  background-image: url(../images/common/arrow_delta.png);
  background-size: contain;
}

.c-course__subtitle {
  margin-top: min(1.2rem, 3vw);
  font-size: clamp(1rem, 4.5vw, 1.8rem);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.04em;
}

.c-course__content {
  margin-top: min(0.5rem, 1.25vw);
  letter-spacing: -1px;
}

.c-course__content--food {
  margin-top: min(1.2rem, 3vw);
}

.c-info {
  position: relative;
  margin-top: 12.5rem;
  margin-top: min(12.5rem, 31.25vw);
  padding-top: 11rem;
  padding-top: min(11rem, 27.5vw);
  padding-bottom: 8rem;
  padding-bottom: min(8rem, 20vw);
}
.c-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #f0f0ed;
  border-top-left-radius: 40rem;
  border-top-left-radius: min(40rem, 100vw);
  border-top-right-radius: 40rem;
  border-top-right-radius: min(40rem, 100vw);
}

.c-info--page {
  margin-top: min(7rem, 17.5vw);
}

.c-info__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem 2rem;
  gap: min(3rem, 7.5vw) min(2rem, 5vw);
  margin-top: 5rem;
  margin-top: min(5rem, 12.5vw);
}

.c-info__btn {
  position: relative;
  padding-left: 0.15em;
  padding-left: min(0.15em, 0.375vw);
  aspect-ratio: 1;
  width: calc(33.333% - 1.3333333333rem);
  width: calc(33.333% - min(4rem, 10vw) / 3);
  height: auto;
  font-size: 1.8rem;
  font-size: clamp(1rem, 4.5vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  letter-spacing: min(0.15em, 0.375vw);
  line-height: 2.2rem;
  line-height: min(2.2rem, 5.5vw);
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
.c-info__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  aspect-ratio: 25.12/30;
  width: 2.512rem;
  width: min(2.512rem, 6.28vw);
  height: auto;
  background-image: url(../images/common/icon_apple.png);
  background-size: contain;
}
.c-info__btn::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  bottom: min(1rem, 2.5vw);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  aspect-ratio: 13.5/10;
  width: 1.35rem;
  width: min(1.35rem, 3.375vw);
  height: auto;
  background-image: url(../images/common/arrow_pink.png);
  background-size: contain;
}

.c-info__btn--food::before {
  aspect-ratio: 25.36/30;
  width: 2.536rem;
  width: min(2.536rem, 6.34vw);
  background-image: url(../images/common/icon_cutlery.png);
}
.c-info__btn--food::after {
  background-image: url(../images/common/arrow_blue.png);
}

.c-info__btn--spot::before {
  aspect-ratio: 30/25.4;
  width: 3rem;
  width: min(3rem, 7.5vw);
  background-image: url(../images/common/icon_camera.png);
}

.c-info__btn--onsen::before {
  aspect-ratio: 30/28.7;
  width: 3rem;
  width: min(3rem, 7.5vw);
  background-image: url(../images/common/icon_onsen.png);
}
.c-info__btn--onsen::after {
  background-image: url(../images/common/arrow_blue.png);
}

.c-info__btn--buy::before {
  aspect-ratio: 1;
  width: 3rem;
  width: min(3rem, 7.5vw);
  background-image: url(../images/common/icon_bag.png);
}

.c-info__btn--info::before {
  aspect-ratio: 29.5/30;
  width: 2.95rem;
  width: min(2.95rem, 7.375vw);
  background-image: url(../images/common/icon_info.png);
}
.c-info__btn--info::after {
  background-image: url(../images/common/arrow_blue.png);
}

.c-info__chara01 {
  position: absolute;
  top: 1rem;
  top: min(1rem, 2.5vw);
  left: 4.5rem;
  left: min(4.5rem, 11.25vw);
  width: 7.2rem;
  width: min(7.2rem, 18vw);
}

.c-info__chara02 {
  position: absolute;
  top: 6rem;
  top: min(6rem, 15vw);
  right: 2.8rem;
  right: min(2.8rem, 7vw);
  width: 7.94rem;
  width: min(7.94rem, 19.85vw);
}

.c-event {
  position: relative;
  padding-top: 11rem;
  padding-top: min(11rem, 27.5vw);
  padding-bottom: 5.5rem;
  padding-bottom: min(5.5rem, 13.75vw);
  background-color: #f0f0ed;
  z-index: 1;
  overflow: hidden;
}
.c-event::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: white;
  border-top-left-radius: 40rem;
  border-top-left-radius: min(40rem, 100vw);
  border-top-right-radius: 40rem;
  border-top-right-radius: min(40rem, 100vw);
}

.c-event__read {
  margin-top: min(2.4rem, 1.8vw);
  letter-spacing: 0.02em;
}

.c-event__cards {
  margin-top: 5rem;
  margin: 5rem auto 0 -15%;
  margin: min(5rem, 12.5vw) auto 0 -15%;
  width: 130%;
}

.c-event__card {
  margin: 0 1.2rem;
  margin: 0 min(1.2rem, 3vw);
}

.c-event__image {
  border-radius: 2rem;
  border-radius: min(2rem, 5vw);
  overflow: hidden;
}
.c-event__image img {
  aspect-ratio: 158/110;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-event__body {
  display: block;
  text-align: center;
}

.c-event__month {
  font-size: 1em;
  font-weight: bold;
  line-height: 2.4rem;
  line-height: min(2.4rem, 6vw);
}
.c-event__month::before {
  content: "・ ";
}
.c-event__month::after {
  content: " ・";
}

.c-event__title {
  font-size: 1em;
  font-weight: 400;
  line-height: 2.1rem;
  line-height: min(2.1rem, 5.25vw);
}

.c-note {
  text-align: center;
  padding-bottom: 6.4rem;
  padding-bottom: min(6.4rem, 16vw);
}

.c-note__sudamarin {
  width: 6.2rem;
  width: min(6.2rem, 15.5vw);
}

.c-note__title {
  margin-top: 0.2rem;
  color: #ee92ba;
  font-size: 2rem;
  font-size: clamp(1rem, 5vw, 2rem);
  letter-spacing: 0.06em;
}
.c-note__title span {
  font-size: 1.8rem;
  font-size: clamp(1rem, 4.5vw, 1.8rem);
}

.c-note__arrow {
  display: block;
  margin: 0.2rem auto 0;
  width: 1.35rem;
  width: min(1.35rem, 3.375vw);
}

.c-note__link {
  width: 9rem;
  width: min(9rem, 22.5vw);
}

.c-insta {
  position: relative;
  padding-top: 11rem;
  padding-top: min(11rem, 27.5vw);
  padding-bottom: 5rem;
  padding-bottom: min(5rem, 12.5vw);
}
.c-insta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #f0f0ed;
  border-top-left-radius: 40rem;
  border-top-left-radius: min(40rem, 100vw);
  border-top-right-radius: 40rem;
  border-top-right-radius: min(40rem, 100vw);
}

.c-insta__hash {
  margin-top: 4rem;
  margin-top: min(4rem, 10vw);
  font-size: 1.8rem;
  font-size: clamp(1rem, 4.5vw, 1.8rem);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.04em;
}

.c-insta__message {
  margin-top: 0.8rem;
  margin-top: min(0.8rem, 2vw);
  text-align: center;
  letter-spacing: 0.02em;
}

.c-insta__feeds {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem;
  gap: min(0.8rem, 2vw);
  margin-top: 2.2rem;
  margin-top: min(2.2rem, 5.5vw);
  list-style: none;
}
.c-insta__feeds li {
  width: calc(33.333% - 0.5333333333rem);
  width: calc(33.333% - min(1.6rem, 4vw) / 3);
}
.c-insta__feeds li img {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-insta__follow {
  margin: 2.5rem auto 0;
  margin: min(2.5rem, 6.25vw) auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.c-insta__follow::before {
  content: "＼ ";
  color: #ee92ba;
}
.c-insta__follow::after {
  content: " ／";
  color: #ee92ba;
}

.c-insta__account {
  display: block;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.8rem;
  font-size: clamp(1rem, 4.5vw, 1.8rem);
  font-weight: bold;
  letter-spacing: 0.04em;
}
.c-insta__account img {
  margin: 0 0.6rem 1.7px 0;
  margin: 0 min(0.6rem, 1.5vw) 1.7px 0;
  width: 2rem;
  width: min(2rem, 5vw);
}

.c-bn {
  position: relative;
  padding-top: 11rem;
  padding-top: min(11rem, 27.5vw);
  background-color: #f0f0ed;
  z-index: 1;
}
.c-bn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: white;
  border-top-left-radius: 40rem;
  border-top-left-radius: min(40rem, 100vw);
  border-top-right-radius: 40rem;
  border-top-right-radius: min(40rem, 100vw);
}

.c-bn__chara01 {
  position: absolute;
  top: -4.1rem;
  top: max(-4.1rem, -10.25vw);
  left: 52.8%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 8.1846rem;
  width: min(8.1846rem, 20.4615vw);
}
@media screen and (max-width: 400px) {
  .c-bn__chara01 {
    top: -10.4vw;
  }
}

.c-bn__bn {
  margin-top: 2rem;
  margin-top: min(2rem, 5vw);
  width: 100%;
}

.c-bn__2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  gap: min(2rem, 5vw);
  margin-top: 2rem;
  margin-top: min(2rem, 5vw);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-bn__btn {
  margin: 0;
  padding: 0.95rem 0.5rem;
  padding: min(0.95rem, 2.375vw) min(0.5rem, 1.25vw);
  width: calc(50% - 1rem);
  width: calc(50% - min(2rem, 5vw) / 2);
  font-size: 1.3rem;
  font-size: clamp(1rem, 3.25vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2rem;
  line-height: min(2rem, 5vw);
  border-radius: 5rem;
  border-radius: min(5rem, 12.5vw);
}
@media screen and (max-width: 315px) {
  .c-bn__btn {
    width: 100%;
  }
}

.c-footer {
  margin-top: 10rem;
  margin-top: min(10rem, 25vw);
  padding-bottom: 1rem;
  padding-bottom: min(1rem, 2.5vw);
  text-align: center;
}

.c-footer--page {
  position: relative;
  margin-top: 0;
  padding-top: 7.5rem;
  padding-top: min(7.5rem, 18.75vw);
  background-color: #f0f0ed;
  z-index: 1;
  overflow: hidden;
}
.c-footer--page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: white;
  border-top-left-radius: 40rem;
  border-top-left-radius: min(40rem, 100vw);
  border-top-right-radius: 40rem;
  border-top-right-radius: min(40rem, 100vw);
}

.c-footer__logo {
  text-align: center;
  font-size: 1.2rem;
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: bold;
  letter-spacing: -0.02em;
}
.c-footer__logo img {
  display: block;
  margin: 0 auto 0.7rem;
  margin: 0 auto min(0.7rem, 1.75vw);
  width: 9.24rem;
  width: min(9.24rem, 23.1vw);
}

.c-footer__name {
  margin-top: 2rem;
  margin-top: min(2rem, 5vw);
  font-size: 1.8rem;
  font-size: clamp(1rem, 4.5vw, 1.8rem);
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.c-footer__name small {
  display: block;
  font-size: 1.6rem;
  font-size: clamp(1rem, 4vw, 1.6rem);
}

.c-footer__from {
  font-size: 1.4rem;
  font-size: clamp(1rem, 3.5vw, 1.4rem);
}

.c-footer__address {
  margin-top: 2rem;
  margin-top: min(2rem, 5vw);
  font-weight: 500;
}

.c-footer__tel {
  font-weight: 500;
}

.c-footer__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  gap: min(1rem, 2.5vw);
  margin-top: 0.7rem;
  margin-top: min(0.7rem, 1.75vw);
}
.c-footer__icons a {
  display: block;
  width: 2rem;
  width: min(2rem, 5vw);
}
.c-footer__icons a img {
  vertical-align: top;
}

.c-footer__menus {
  margin-top: 2rem;
  margin-top: min(2rem, 5vw);
  font-size: 1.4rem;
  font-size: clamp(1rem, 3.5vw, 1.4rem);
  text-align: left;
  letter-spacing: 0;
  letter-spacing: -0.6px;
}
.c-footer__menus a:nth-of-type(1) {
  margin-right: 4rem;
  margin-right: min(4rem, 10vw);
}
.c-footer__menus a:nth-of-type(3) {
  margin-right: 2.5rem;
  margin-right: min(2.5rem, 6.25vw);
}
.c-footer__menus a:nth-of-type(5) {
  margin-right: 4rem;
  margin-right: min(4rem, 10vw);
}

.c-footer__copyright {
  margin-top: 3rem;
  margin-top: min(3rem, 7.5vw);
  font-size: 1.2rem;
  font-size: clamp(1rem, 3vw, 1.2rem);
}

.c-breadcrumbs {
  padding: 0.37rem 0;
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: bold;
  letter-spacing: 0.06em;
  border-top: solid 1px #f2f2f2;
  border-bottom: solid 1px #f2f2f2;
}

.c-page-header {
  padding-top: min(5rem, 12.5vw);
  text-align: center;
}

.c-page-header__img {
  width: min(15.9rem, 39.8vw);
}

.c-page-header__title {
  margin-top: min(3rem, 7.5vw);
  font-size: 2em;
  font-weight: bold;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.c-page-header__title small {
  display: block;
  position: relative;
  margin: min(0.2rem, 0.5vw) auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(1rem, 3.25vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
}
.c-page-header__title small::before, .c-page-header__title small::after {
  content: "・";
  position: relative;
  left: -0.9rem;
  color: #6bc7f1;
}
.c-page-header__title small::after {
  left: auto;
  right: -0.9rem;
}

.c-page-header__title--pink small::before, .c-page-header__title--pink small::after {
  color: #ee92ba;
}

.c-page-header__intro {
  margin: min(1.5rem, 3.8vw) auto 0;
  font-size: clamp(1rem, 4.5vw, 1.8rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}

.c-topic__cat {
  margin-top: min(4.9rem, 12.3vw);
  width: 100%;
  max-width: 15.8rem;
  font-size: clamp(1rem, 3.25vw, 1.3rem);
  font-weight: 500;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #fff;
  border: solid 1px #6bc7f1;
  border-radius: 3rem;
  line-height: 2.2;
}

.c-topic__title {
  margin-top: min(1.5rem, 3.75vw);
  font-size: clamp(1rem, 4.5vw, 1.8rem);
  font-weight: bold;
  word-break: keep-all;
  text-align: left;
  line-height: 1.5;
}

.c-topic__date {
  display: block;
  margin-top: min(0.5rem, 1.25vw);
  font-size: clamp(1rem, 3.25vw, 1.3rem);
  color: #808080;
  text-align: right;
  letter-spacing: 0.04em;
}

.c-topic__slides {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: min(0.7rem, 1.8vw) min(1.2rem, 3vw);
  margin-top: min(1.4rem, 3.5vw);
  margin-bottom: 0 !important;
}
.c-topic__slides img {
  aspect-ratio: 34/22;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-topic__slides .slick-list {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.c-topic__slides .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  position: initial;
  margin-top: 0rem;
  width: auto;
}
.c-topic__slides .slick-dots li {
  display: inline-block;
  margin: 0;
  padding: min(0.6rem, 1.5vw);
  width: auto;
  height: auto;
}
.c-topic__slides .slick-dots li button {
  padding: 0;
  aspect-ratio: 1;
  width: 3.8px;
  height: auto;
  border-radius: 50%;
  background-color: black;
}
.c-topic__slides .slick-dots li button::before {
  display: none;
}
.c-topic__slides .slick-dots li.slick-active button {
  background-color: #6bc7f1;
}

.c-topic__prev {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-weight: bold;
}

.c-topic__next {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  font-weight: bold;
}

.c-topic__content {
  margin-top: min(4rem, 10vw);
  letter-spacing: -0.7px;
}
.c-topic__content .wp-block-table {
  /* thead が「ある」場合 → tbody の偶数行を色付き */
  /* thead が「ない」場合 → tbody の奇数行を色付き */
}
.c-topic__content .wp-block-table table {
  margin-top: min(4rem, 10vw);
  width: 100%;
  font-size: clamp(1rem, 3.8vw, 1.5rem);
  border-collapse: collapse;
}
.c-topic__content .wp-block-table table thead tr {
  background-color: #f0f0ed;
}
.c-topic__content .wp-block-table table thead tr th::before {
  content: "■ ";
  color: #6bc7f1;
  vertical-align: baseline;
}
.c-topic__content .wp-block-table table tbody th {
  font-weight: 500;
}
.c-topic__content .wp-block-table table th, .c-topic__content .wp-block-table table td {
  padding: 0.2rem min(1rem, 2.5vw);
}
.c-topic__content .wp-block-table table:has(thead) tbody tr:nth-child(even) {
  background-color: #f0f0ed;
}
.c-topic__content .wp-block-table table:not(:has(thead)) tbody tr:nth-child(odd) {
  background-color: #f0f0ed;
}

.c-topic__flyer {
  display: inline-block;
  margin-top: min(2.5rem, 6.25vw);
  font-size: clamp(1rem, 3.8vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
  border-bottom: solid 1px black;
}
.c-topic__flyer a {
  color: #6bc7f1;
}

.c-topic__links {
  margin-top: min(2.7rem, 6.75vw);
  font-size: clamp(1rem, 3.8vw, 1.5rem);
  font-weight: 500;
}

.c-topic__links-head::before {
  content: "● ";
  color: #6bc7f1;
  vertical-align: baseline;
}

.c-topic__links-list {
  list-style: none;
}
.c-topic__links-list li {
  margin-top: min(0.2rem, 0.5vw);
}
.c-topic__links-list li::before {
  content: "";
  display: inline-block;
  margin-right: min(0.5rem, 1.25vw);
  aspect-ratio: 8.6/10;
  width: min(0.9rem, 2.25vw);
  height: auto;
  background-image: url(../images/common/arrow_delta.png);
  background-size: contain;
}

.c-topic__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: min(2.7rem, 6.75vw);
}

.c-topic__back {
  margin: 0 auto 0 0;
}

.c-topic__x {
  padding: 0 0.3rem 0.2rem;
  font-size: clamp(1rem, 3.25vw, 1.3rem);
  font-weight: bold;
  border-bottom: solid 1px black;
}

.c-fukidasi {
  position: relative;
  margin: min(2rem, 5vw) auto 0;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.375;
}
.c-fukidasi::before, .c-fukidasi:after {
  content: "＼";
  position: absolute;
  bottom: 0;
  right: calc(100% + 0.5rem);
  color: white;
}
.c-fukidasi:after {
  content: "／";
  left: calc(100% + 0.5rem);
  right: auto;
}

.c-fukidasi--blue::before, .c-fukidasi--blue::after {
  color: #6bc7f1;
}

.c-kakko {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1rem, 4.5vw, 1.8rem);
  font-weight: bold;
  text-align: center;
}
.c-kakko::before {
  content: "【 ";
  margin-right: min(0.2rem, 0.5vw);
  color: #ee92ba;
}
.c-kakko::after {
  content: " 】";
  margin-left: min(0.2rem, 0.5vw);
  color: #ee92ba;
}
.c-kakko small {
  font-size: clamp(1rem, 4vw, 1.6rem);
}

.c-pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(1.3rem, 3.25vw);
  margin: min(4.1rem, 10.25vw) auto 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: clamp(1rem, 3.5vw, 1.4rem);
}
.c-pagination .page-numbers {
  width: min(2rem, 5vw);
  height: min(2rem, 5vw);
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  border-radius: 50%;
}
@media screen and (max-width: 300px) {
  .c-pagination .page-numbers {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.c-pagination .page-numbers:hover {
  background-color: #6bc7f1;
  opacity: 1;
}
.c-pagination .next, .c-pagination .prev {
  position: absolute;
  left: calc(100% + min(1.6rem, 4vw));
  font-weight: bold;
}
.c-pagination .next:hover, .c-pagination .prev:hover {
  background-color: transparent;
}
.c-pagination .prev {
  left: auto;
  right: calc(100% + min(1.6rem, 4vw));
}
.c-pagination .current {
  background-color: #6bc7f1;
}

.c-pagination--pink .page-numbers:hover {
  background-color: #ee92ba;
}
.c-pagination--pink .current {
  background-color: #ee92ba;
}

.c-category {
  position: relative;
  margin-top: min(6.4rem, 16vw);
  padding-top: min(11rem, 27.5vw);
  padding-bottom: min(7.4rem, 18.5vw);
  background-color: white;
  z-index: 1;
  overflow: hidden;
}
.c-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #f0f0ed;
  border-top-left-radius: min(40rem, 100vw);
  border-top-right-radius: min(40rem, 100vw);
}

.c-category__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: min(1.3rem, 3.3vw) min(0.9rem, 2.3vw);
  margin-top: min(3rem, 7.5vw);
}

.c-category__btn {
  aspect-ratio: 165/30;
  width: calc(50% - min(0.9rem, 2.3vw) / 2);
  height: auto;
  font-size: clamp(1rem, 3.25vw, 1.3rem);
  font-weight: 500;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  border-radius: 3rem;
  background-image: url(../images/common/bg_blue.png);
}

/* project
------------------------------------------------ */
.p-top-mv {
  position: relative;
  padding-top: 6rem;
  padding-top: min(6rem, 15vw);
  width: 100%;
}

.p-top-mv__content {
  position: absolute;
  top: 2rem;
  top: min(2rem, 5vw);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}

.p-top-mv__logo {
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 1.4rem;
  font-size: clamp(1rem, 3.5vw, 1.4rem);
  font-weight: bold;
  letter-spacing: -0.02em;
}
.p-top-mv__logo img {
  display: block;
  margin: 0 auto 0.7rem;
  width: 10.7rem;
  width: min(10.7rem, 26.8vw);
}

.p-top-mv__title {
  margin: 1.6rem auto 0;
  color: white;
  font-weight: bold;
  font-size: 4.2rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  line-height: 1.19;
  letter-spacing: 7px;
}
@media screen and (max-width: 400px) {
  .p-top-mv__title {
    font-size: clamp(1rem, 10.4vw, 4.2rem);
  }
}

.p-top-mv__sub {
  margin: 1rem auto 0;
  color: white;
  font-weight: bold;
  font-size: 1.9rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  line-height: 1.42;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 400px) {
  .p-top-mv__sub {
    font-size: clamp(1rem, 4.7vw, 1.9rem);
  }
}

.p-top-mv__video {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1080/2349;
}
.p-top-mv__video iframe, .p-top-mv__video video {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 100rem;
  border-radius: min(100rem, 250vw);
}

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

.p-top-mv__frame-top {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  clip-path: circle(50% at 50% 50%);
}

.p-top-mv__scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 30rem;
}
@media screen and (max-width: 400px) {
  .p-top-mv__scroll {
    height: 75vw;
  }
}
.p-top-mv__scroll-text {
  position: absolute;
  top: 0;
  font-size: 1.2rem;
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: bold;
  letter-spacing: 0;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}

.p-top-mv__scroll-line {
  position: relative;
  width: 1px;
  height: 100%;
  background-color: transparent;
  overflow: hidden;
}
.p-top-mv__scroll-line::before {
  content: "";
  position: absolute;
  top: 0rem;
  left: 0;
  width: 1px;
  height: calc(100% + 0rem);
  margin: 0 auto;
  background-color: #000;
  -webkit-animation: arrow 2.8s cubic-bezier(1, 0, 0, 1) 0s infinite normal;
          animation: arrow 2.8s cubic-bezier(1, 0, 0, 1) 0s infinite normal;
}

@-webkit-keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, -100%, 0);
    transform: translate3d(-50%, -100%, 0);
  }
  50% {
    -webkit-transform: translate3d(-50%, 0%, 0);
    transform: translate3d(-50%, 0%, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 100%, 0);
    transform: translate3d(-50%, 100%, 0);
  }
}

@keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, -100%, 0);
    transform: translate3d(-50%, -100%, 0);
  }
  50% {
    -webkit-transform: translate3d(-50%, 0%, 0);
    transform: translate3d(-50%, 0%, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 100%, 0);
    transform: translate3d(-50%, 100%, 0);
  }
}
.p-top-mv__scroll-maru {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  width: 1rem;
  height: 1rem;
  background-color: #000;
  border-radius: 50%;
}

.p-about-charm {
  margin-top: min(11.4rem, 28.5vw);
}

.p-about-charm__title {
  margin-top: min(5.8rem, 14.5vw);
  font-size: clamp(1rem, 5.5vw, 2.2rem);
  letter-spacing: 0.08em;
}
.p-about-charm__title::before, .p-about-charm__title::after {
  color: #6bc7f1;
}

.p-about-charm__title--first {
  margin-top: min(3.8rem, 9.5vw);
}

.p-about-charm__subtitle {
  margin-top: min(0.5rem, 1.3vw);
  font-size: clamp(1rem, 4.5vw, 1.8rem);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.04em;
}

.p-about-charm__info {
  margin-top: min(0.7rem, 1.8vw);
  line-height: 1.61;
  letter-spacing: -0.5px;
}

.p-about-charm__slides {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: min(0.7rem, 1.8vw) min(1.2rem, 3vw);
  margin-top: min(1.4rem, 3.5vw);
}
.p-about-charm__slides img {
  aspect-ratio: 34/22;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: min(3rem, 7.5vw);
}
.p-about-charm__slides .slick-list {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.p-about-charm__slides .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  position: initial;
  margin-top: 0rem;
  width: auto;
}
.p-about-charm__slides .slick-dots li {
  display: inline-block;
  margin: 0;
  padding: min(0.6rem, 1.5vw);
  width: auto;
  height: auto;
}
.p-about-charm__slides .slick-dots li button {
  padding: 0;
  aspect-ratio: 1;
  width: 3.8px;
  height: auto;
  border-radius: 50%;
  background-color: black;
}
.p-about-charm__slides .slick-dots li button::before {
  display: none;
}
.p-about-charm__slides .slick-dots li.slick-active button {
  background-color: #6bc7f1;
}

.p-about-charm__prev {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-weight: bold;
}

.p-about-charm__next {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  font-weight: bold;
}

.p-about-access {
  position: relative;
  margin-top: min(8rem, 20vw);
  padding-top: min(11rem, 27.5vw);
  padding-bottom: min(7.5rem, 18.8vw);
}
.p-about-access::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #f0f0ed;
  border-top-left-radius: min(40rem, 100vw);
  border-top-right-radius: min(40rem, 100vw);
}

.p-about-access__title {
  margin-top: min(9rem, 22.5vw);
  font-size: clamp(1rem, 5.5vw, 2.2rem);
  font-weight: bold;
  letter-spacing: 0.08em;
}
.p-about-access__title::before, .p-about-access__title::after {
  color: #6bc7f1;
}

.p-about-access__title--first {
  margin-top: min(4rem, 10vw);
}

.p-about-access__img {
  margin-top: min(2.1rem, 5.3vw);
  width: 100%;
}

.p-about-access__chara01 {
  position: absolute;
  top: min(1rem, 2.5vw);
  left: min(4.5rem, 11.3vw);
  width: min(7.2rem, 18vw);
}

/* utility
------------------------------------------------ */
/* external
------------------------------------------------ *//*# sourceMappingURL=style.css.map */