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

body {
  /* bodyの基本サイズを16pxに設定 */
  font-size: clamp(1rem, 1.2vw, 1.4rem);
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #4A3A3A;
  text-align: justify;
}
@media screen and (max-width: 519px) {
  body {
    font-size: clamp(1rem, 3.7vw, 1.4rem);
  }
}

.f-zen {
  font-family: "Zen Kaku Gothic New", 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: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}
@media screen and (max-width: 519px) {
  .l-header {
    position: absolute;
  }
}

/*　上に上がる動き　*/
.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 min(3rem, 2.6vw);
  max-width: 116rem;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 519px) {
  .l-inner--sp0 {
    padding: 0;
  }
}

.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;
  }
}

/* component
------------------------------------------------ */
.c-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 519px) {
  .c-header {
    display: block;
  }
}

.c-header__logo {
  margin-top: min(1rem, 0.9vw);
  width: min(43.5rem, 37.8vw);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media screen and (max-width: 519px) {
  .c-header__logo {
    margin-top: 1rem;
    width: 77vw;
  }
}

.c-header__logo--scroll {
  width: 23vw;
}
@media screen and (max-width: 519px) {
  .c-header__logo--scroll {
    width: 77vw;
  }
}

.c-header__search-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(1rem, 0.9vw);
  margin: min(3.4rem, 3vw) min(9.1rem, 7.9vw) 0 0;
}
@media screen and (max-width: 959px) {
  .c-header__search-box {
    margin-right: 5.5rem;
  }
}
@media screen and (max-width: 519px) {
  .c-header__search-box {
    gap: 0.7rem;
    margin: min(2.5rem, 6.7vw) min(2rem, 5.3vw) 0;
  }
}

.c-header__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 519px) {
  .c-header__search {
    width: 60%;
  }
}
.c-header__search input {
  width: min(19rem, 16.5vw);
  padding: 0.3rem 0.6rem;
  background-color: #fff;
  border: solid 2px #d2d6d1;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
@media screen and (max-width: 519px) {
  .c-header__search input {
    width: 75%;
  }
}
.c-header__search input:focus {
  outline: none;
}
.c-header__search button {
  padding: 0 1.3rem;
  font-size: clamp(1rem, 1.2vw, 1.33rem);
  background-color: #fff;
  border: solid 2px #d2d6d1;
  border-left: none;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
@media screen and (max-width: 519px) {
  .c-header__search button {
    padding: 0;
    width: 25%;
    font-size: clamp(1rem, 3.5vw, 1.3rem);
  }
}

.c-header__lang {
  position: relative;
  padding: 0.35rem 3rem 0.4rem 3rem;
  width: min(17rem, 14.8vw);
  color: #4A3A3A;
  background-color: #fff;
  border: solid 2px #d2d6d1;
  border-radius: 0.5rem;
  background-image: url(../images/common/icon_lang.png);
  background-size: 95% auto;
  background-position: center;
}
@media screen and (max-width: 519px) {
  .c-header__lang {
    padding: min(0.32rem, 0.9vw) min(3rem, 8vw) min(0.34rem, 0.9vw) min(2.8rem, 7.5vw);
    width: 40%;
    background-size: 94% auto;
  }
}
.c-header__lang:focus {
  outline: none;
}

.c-header__hamburger {
  position: fixed;
  top: min(3.1rem, 2.7vw);
  right: min(2.2rem, 1.9vw);
  z-index: 100;
  width: min(4.3rem, 3.7vw);
  height: min(4rem, 3.5vw);
  border: solid 2px white;
  border-radius: 0.5rem;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
  -webkit-filter: drop-shadow(0 0 2px rgba(68, 68, 68, 0.563));
          filter: drop-shadow(0 0 2px rgba(68, 68, 68, 0.563));
}
@media screen and (max-width: 959px) {
  .c-header__hamburger {
    aspect-ratio: 43/40;
    width: 3.5rem;
    height: auto;
  }
}
@media screen and (max-width: 519px) {
  .c-header__hamburger {
    top: 2rem;
    right: 1.7rem;
    aspect-ratio: 43/40;
    width: 4rem;
    height: auto;
  }
}

.c-header__hamburger-border {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 75%;
  height: 0.3rem;
  background-color: white;
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}
@media screen and (max-width: 959px) {
  .c-header__hamburger-border {
    height: 0.2rem;
  }
}
@media screen and (max-width: 519px) {
  .c-header__hamburger-border {
    height: 0.2rem;
  }
}

.c-header__hamburger-border--top {
  top: min(0.9rem, 0.8vw);
}
@media screen and (max-width: 959px) {
  .c-header__hamburger-border--top {
    top: 0.7rem;
  }
}
@media screen and (max-width: 519px) {
  .c-header__hamburger-border--top {
    top: 0.9rem;
  }
}

.c-header__hamburger-border--bottom {
  top: auto;
  bottom: min(0.6rem, 0.5vw);
}
@media screen and (max-width: 959px) {
  .c-header__hamburger-border--bottom {
    bottom: 0.5rem;
  }
}
@media screen and (max-width: 519px) {
  .c-header__hamburger-border--bottom {
    bottom: 0.7rem;
  }
}

.c-header__hamburger--open {
  right: calc(min(26rem, 22.6vw) + min(2.2rem, 1.9vw));
}
@media screen and (max-width: 519px) {
  .c-header__hamburger--open {
    right: calc(min(20rem, 53.3vw) + min(2rem, 5.3vw));
  }
}
.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-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.7s ease 0;
  transition: all 0.7s ease 0;
}

.c-header__drawer-modal--open {
  opacity: 1;
  visibility: visible;
}

.c-header__drawer {
  position: fixed;
  top: 0;
  right: min(-26rem, -22.6vw);
  z-index: 40;
  padding: min(3rem, 2.6vw);
  width: min(26rem, 22.6vw);
  height: 100vh;
  height: 100lvh;
  text-align: center;
  background-color: #fffcfe;
  -webkit-transition: right 0.7s ease 0s;
  transition: right 0.7s ease 0s;
  overflow: hidden scroll;
}
@media screen and (max-width: 519px) {
  .c-header__drawer {
    padding: min(2.5rem, 6.7vw) min(1rem, 2.7vw);
    right: min(-20rem, -53.3vw);
    width: min(20rem, 53.3vw);
  }
}
.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-menus {
  font-size: 1.357em;
  font-weight: 500;
}
@media screen and (max-width: 519px) {
  .c-header__drawer-menus {
    font-size: 1.2em;
  }
}

.c-header__drawer-menu {
  display: block;
  margin-top: min(1.2rem, 1vw);
}
@media screen and (max-width: 519px) {
  .c-header__drawer-menu {
    margin-top: min(1rem, 2.7vw);
  }
}
.c-header__drawer-menu:first-child {
  margin-top: 0;
}

.c-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: min(3.5rem, 3vw);
}

.c-sns__line {
  margin-right: min(0.8rem, 0.7vw);
  width: min(2.95rem, 2.6vw);
}
@media screen and (max-width: 519px) {
  .c-sns__line {
    margin-right: min(0.8rem, 2.1vw);
    width: min(2.7rem, 7.2vw);
  }
}

.c-sns__insta {
  margin-right: min(0.5rem, 0.4vw);
  width: min(3.5rem, 3vw);
}
@media screen and (max-width: 519px) {
  .c-sns__insta {
    margin-right: min(0.5rem, 1.3vw);
    width: min(3.3rem, 8.8vw);
  }
}

.c-sns__x {
  width: min(3.66rem, 3.2vw);
}
@media screen and (max-width: 519px) {
  .c-sns__x {
    width: min(3.2rem, 8.5vw);
  }
}

.c-sns__fb {
  margin-bottom: 5%; /* %指定のため維持 */
  width: min(3.5rem, 3vw);
}
@media screen and (max-width: 519px) {
  .c-sns__fb {
    width: min(3.2rem, 8.5vw);
  }
}

.c-section {
  position: relative;
  padding: min(1.3rem, 1.1vw) 0 min(2.5rem, 2.2vw);
}
@media screen and (max-width: 519px) {
  .c-section {
    padding: min(1rem, 2.7vw) 0 min(2rem, 5.3vw);
  }
}

.c-calendar {
  position: relative;
  width: 100%;
  background-color: #f3eee5;
}
@media screen and (max-width: 519px) {
  .c-calendar {
    background-color: #fff;
  }
}

.c-calendar__container {
  overflow-x: scroll;
}

.c-calendar__img {
  width: 100%;
}
@media screen and (max-width: 519px) {
  .c-calendar__img {
    width: 200%;
    max-width: none;
  }
}

.c-calendar__arrow {
  display: none;
  position: absolute;
  top: min(0.4rem, 1.1vw);
  right: min(1rem, 2.7vw);
  width: 14vw;
}
@media screen and (max-width: 519px) {
  .c-calendar__arrow {
    display: block;
  }
}
.c-calendar__arrow:hover, .c-calendar__arrow:active {
  opacity: 0.8;
}

.c-calendar__arrow--prev {
  left: min(1rem, 2.7vw);
  right: auto;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.c-calendar__hanrei {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(1rem, 0.9vw);
  margin-top: min(1.5rem, 1.3vw);
  list-style: none;
  font-size: 0.85em; /* emのため維持 */
}
.c-calendar__hanrei li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(0.5rem, 0.4vw);
}
.c-calendar__hanrei li span {
  display: block;
  width: min(6.2rem, 5.4vw);
  height: min(1.44rem, 1.3vw);
}

.c-calendar__activity {
  background-color: #f6eda2;
}

.c-calendar__event {
  background-color: #93c451;
}

.c-calendar__flower {
  background-color: #ee8ba3;
}

.c-calendar__food {
  background-color: #b489e4;
}

.c-calendar__other {
  background-color: #bfb18a;
}

.c-head02 {
  margin: 0 auto;
  padding-bottom: min(1.6rem, 1.4vw);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(1rem, 2.5vw, 2.86rem);
  font-weight: 500;
}
@media screen and (max-width: 519px) {
  .c-head02 {
    padding-bottom: min(1.2rem, 3.2vw);
    font-size: 1.45em;
  }
}

.c-list {
  width: 100%;
  background-color: #fffcfe;
}

.c-list__slides {
  margin-left: min(-1rem, -0.9vw);
  width: calc(100% + min(2rem, 1.7vw));
}
@media screen and (max-width: 519px) {
  .c-list__slides {
    margin: 0;
    width: 100%;
  }
}

.c-list__article {
  margin: 0 min(1rem, 0.9vw);
}
@media screen and (max-width: 519px) {
  .c-list__article {
    margin: 0 0.5rem;
  }
}

.c-list__image {
  width: 100%;
  padding: min(1.2rem, 1vw) min(1rem, 0.9vw);
  background-color: #E38AAE;
  border: solid 1px black;
  border-radius: min(2rem, 1.7vw);
}
@media screen and (max-width: 519px) {
  .c-list__image {
    padding: min(0.8rem, 2.1vw) min(0.5rem, 1.3vw);
    border-radius: min(1rem, 2.7vw);
  }
}
.c-list__image img {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-list__title {
  margin: min(0.8rem, 0.7vw) auto 0;
  width: 80%;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 519px) {
  .c-list__title {
    font-size: 1em;
  }
}

.c-model {
  width: 100%;
  background-color: #fffaf1;
}

.c-model__slides {
  width: 100%;
}

.c-model__article {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  margin: 0 min(0.7rem, 0.6vw);
  background-color: #fff;
  border: solid 1px black;
  border-radius: 2px;
  overflow: hidden;
}
@media screen and (max-width: 519px) {
  .c-model__article {
    margin: 0 min(3rem, 2.6vw);
  }
}

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

.c-model__body {
  padding: min(1rem, 0.9vw) min(1.5rem, 1.3vw) min(1.5rem, 1.3vw);
  width: 65%;
}
@media screen and (max-width: 519px) {
  .c-model__body {
    padding: min(1rem, 2.7vw) min(1.5rem, 4vw) min(1.5rem, 4vw);
  }
}

.c-model__title {
  font-size: clamp(1rem, 1.3vw, 1.5rem);
  font-weight: 400;
}
@media screen and (max-width: 519px) {
  .c-model__title {
    font-size: 1.1em;
  }
}

.c-model__info {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: min(0.5rem, 0.4vw);
  font-size: clamp(1rem, 1vw, 1.1rem);
  color: #9B3B5A;
  line-height: 1.7;
}
@media screen and (max-width: 519px) {
  .c-model__info {
    margin-top: min(0.2rem, 0.5vw);
    font-size: 0.85em;
  }
}

.c-model__detail {
  margin-top: min(1rem, 0.9vw);
  color: #9B3B5A;
  font-size: clamp(1rem, 1vw, 1.1rem);
}
@media screen and (max-width: 519px) {
  .c-model__detail {
    margin-top: min(0.8rem, 2.1vw);
    font-size: 0.9em;
  }
}

.c-arrow {
  position: absolute;
  top: 35%;
  left: min(-1.5rem, -1.3vw);
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  aspect-ratio: 1;
  width: min(1.7rem, 1.5vw);
  height: auto;
  border-bottom: solid 1px black;
  border-left: solid 1px black;
}
@media screen and (max-width: 519px) {
  .c-arrow {
    top: min(-3.3rem, -8.8vw);
    left: min(1rem, 2.7vw);
    -webkit-transform: translateY(0) rotate(0) scaleX(-1);
            transform: translateY(0) rotate(0) scaleX(-1);
    aspect-ratio: 71/16;
    width: 14vw;
    border: none;
    background-image: url(../images/common/icon_arrow_01.png);
    background-size: contain;
  }
}
.c-arrow:hover, .c-arrow:active {
  opacity: 0.8;
}

.c-arrow--next {
  left: auto;
  right: min(-1.5rem, -1.3vw);
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}
@media screen and (max-width: 519px) {
  .c-arrow--next {
    right: min(1rem, 2.7vw);
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

.c-arrow--center {
  top: 50%;
}
@media screen and (max-width: 519px) {
  .c-arrow--center {
    top: min(-3.3rem, -8.8vw);
  }
}

.c-btn {
  display: block;
  padding: min(0.2rem, 0.2vw) min(2.1rem, 1.8vw);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  font-size: clamp(1rem, 1vw, 1.2rem);
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  font-weight: bold;
  background-color: #E38AAE;
  border-radius: min(1rem, 0.9vw);
}
@media screen and (max-width: 519px) {
  .c-btn {
    padding: min(0.25rem, 0.7vw) min(2rem, 5.3vw);
    font-size: 0.9em;
    border-radius: min(2rem, 5.3vw);
  }
}

.c-btn--more {
  position: absolute;
  top: min(2.5rem, 2.2vw);
  right: min(3rem, 2.6vw);
}
@media screen and (max-width: 519px) {
  .c-btn--more {
    position: initial;
    margin: min(1.5rem, 4vw) auto 0;
  }
}

.c-spot {
  width: 100%;
  background-color: #f3eee5;
}

.c-spot__slides {
  margin-left: min(-0.6rem, -0.5vw);
  width: calc(100% + min(1.2rem, 1vw));
}

.c-spot__article {
  margin: 0 min(0.6rem, 0.5vw);
  text-align: center;
  background-color: #fff;
  border: solid 1px #666;
  border-radius: 2px;
  overflow: hidden;
}
@media screen and (max-width: 519px) {
  .c-spot__article {
    margin: 0 min(0.5rem, 1.3vw);
  }
}

.c-spot__image {
  border-bottom: solid 1px #999;
}

.c-spot__title {
  padding: min(1.3rem, 1.1vw) min(1rem, 0.9vw);
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: clamp(1rem, 1.7vw, 1.95rem);
  font-weight: 400;
}
@media screen and (max-width: 519px) {
  .c-spot__title {
    font-size: 1.1em;
  }
}

.c-info {
  width: 100%;
  background-color: #fffcfe;
}

.c-info__article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(2rem, 1.7vw);
  margin-top: min(0.8rem, 0.7vw);
}
@media screen and (max-width: 519px) {
  .c-info__article {
    gap: min(1.3rem, 3.5vw);
    margin-top: min(0.7rem, 1.9vw);
  }
}
.c-info__article:first-child {
  margin-top: 0;
}

.c-info__date {
  padding: 0 min(1rem, 0.9vw);
  color: white;
  -ms-flex-line-pack: center;
      align-content: center;
  font-weight: bold;
  background-color: #E38AAE;
}
@media screen and (max-width: 519px) {
  .c-info__date {
    padding: min(0.1rem, 0.3vw) min(0.5rem, 1.3vw);
    font-size: 0.8em;
  }
}

.c-info__title {
  font-weight: 400;
}
@media screen and (max-width: 519px) {
  .c-info__title {
    font-size: 0.9em;
  }
  .c-info__title a {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.c-insta {
  padding-bottom: 0;
  width: 100%;
  background-color: #f3eee5;
}

.c-insta__feeds {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: min(0.8rem, 0.7vw);
  list-style: none;
}
.c-insta__feeds li {
  width: 20%;
}
@media screen and (max-width: 519px) {
  .c-insta__feeds li {
    width: 33.333%;
  }
  .c-insta__feeds li:nth-child(4), .c-insta__feeds li:nth-child(5) {
    display: none;
  }
}
.c-insta__feeds li a {
  display: block;
}
.c-insta__feeds li img {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-useful {
  width: 100%;
  background-color: #fffaf1;
}

.c-useful__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: min(1.3rem, 1.1vw) min(1rem, 0.9vw);
  list-style: none;
}
@media screen and (max-width: 519px) {
  .c-useful__lists {
    gap: min(1rem, 2.7vw) min(0.8rem, 2.1vw);
  }
}

.c-useful__list {
  width: calc(33.333% - min(1rem, 0.9vw) * 2 / 3);
  background-color: #e3ead5;
  border: solid 1px black;
  border-radius: min(4rem, 3.5vw);
}
@media screen and (max-width: 519px) {
  .c-useful__list {
    width: calc(50% - min(0.8rem, 2.1vw) / 2);
    border-radius: min(4rem, 10.7vw);
  }
}
.c-useful__list:nth-child(2) {
  background-color: #eae5e0;
}
.c-useful__list:nth-child(3) {
  background-color: #e0edef;
}
.c-useful__list:nth-child(4) {
  background-color: #e9e6ef;
}
.c-useful__list:nth-child(5) {
  background-color: #f1eccd;
}
.c-useful__list a {
  display: block;
  padding: min(1.5rem, 1.3vw);
  font-size: clamp(1rem, 1.9vw, 2.2rem);
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 519px) {
  .c-useful__list a {
    font-size: 0.9em;
  }
}

.c-footer {
  padding: min(2.5rem, 2.2vw) 0 min(3rem, 2.6vw);
  width: 100%;
  background-color: #fffcfe;
}
@media screen and (max-width: 519px) {
  .c-footer {
    padding: min(1.5rem, 4vw) 0;
  }
}

.c-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 519px) {
  .c-footer__container {
    display: block;
  }
}

.c-footer__name {
  font-size: clamp(1rem, 2.2vw, 2.55rem);
  font-weight: 400;
}
@media screen and (max-width: 519px) {
  .c-footer__name {
    font-size: 1.4em;
  }
}

.c-footer__address {
  margin-top: min(1rem, 0.9vw);
  font-size: clamp(1rem, 1vw, 1.2rem);
}
@media screen and (max-width: 519px) {
  .c-footer__address {
    font-size: 0.85em;
  }
}

.c-footer__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: min(1.3rem, 1.1vw);
  font-size: clamp(1rem, 1.5vw, 1.7rem);
  line-height: 1.1;
}
@media screen and (max-width: 519px) {
  .c-footer__menus {
    margin-top: min(1.5rem, 4vw);
    font-size: min(0.9rem, 2.4vw);
  }
}
.c-footer__menus a {
  padding: 0 min(0.7rem, 0.6vw);
  border-left: solid 1.5px #4A3A3A;
}
@media screen and (max-width: 519px) {
  .c-footer__menus a {
    border-width: 0.5px;
  }
}
.c-footer__menus a:last-child {
  border-right: solid 1.5px #4A3A3A;
}
@media screen and (max-width: 519px) {
  .c-footer__menus a:last-child {
    border-width: 0.5px;
  }
}

.c-footer__copyright {
  margin-top: min(1.8rem, 1.6vw);
  font-size: clamp(1rem, 1vw, 1.2rem);
}
@media screen and (max-width: 519px) {
  .c-footer__copyright {
    margin-top: min(1.5rem, 4vw);
  }
}

.c-footer__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: min(4rem, 3.5vw);
}
@media screen and (max-width: 519px) {
  .c-footer__btns {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.c-footer__top {
  width: min(4.7rem, 4.1vw);
}
@media screen and (max-width: 519px) {
  .c-footer__top {
    width: min(4rem, 11vw);
  }
}

/* project
------------------------------------------------ */
.p-top-mv {
  position: relative;
  width: 100%;
}

.p-top-mv__slides {
  position: relative;
  margin: 0 !important;
}
.p-top-mv__slides .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(0.9rem, 0.8vw);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: min(2.3rem, 2vw);
  right: min(2.5rem, 2.2vw);
}
@media screen and (max-width: 519px) {
  .p-top-mv__slides .slick-dots {
    gap: 0.8rem;
  }
}
.p-top-mv__slides .slick-dots li {
  margin: 0;
  aspect-ratio: 1;
  width: min(1.1rem, 1vw);
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 519px) {
  .p-top-mv__slides .slick-dots li {
    width: 0.8rem;
  }
}
.p-top-mv__slides .slick-dots li button {
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: solid 3px white;
  border-radius: 50%;
}
@media screen and (max-width: 519px) {
  .p-top-mv__slides .slick-dots li button {
    border-width: 2px;
  }
}
.p-top-mv__slides .slick-dots li button::before {
  display: none;
}
.p-top-mv__slides .slick-dots li.slick-active button {
  background-color: transparent;
}

.p-top-mv__slide img {
  aspect-ratio: 1146/553;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 519px) {
  .p-top-mv__slide img {
    aspect-ratio: 0.7;
  }
}

.p-top-mv__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(1.2rem, 1vw);
  position: absolute;
  bottom: -9%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 76%;
  max-width: min(90rem, 78.3vw);
}
@media screen and (max-width: 519px) {
  .p-top-mv__menus {
    gap: 0 1rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    bottom: 4%;
    width: calc(100% - 3rem);
    max-width: none;
  }
}

.p-top-mv__menu {
  position: relative;
  aspect-ratio: 170/173;
  width: 20%;
  height: auto;
  overflow: hidden;
  border-radius: 50%;
}
@media screen and (max-width: 519px) {
  .p-top-mv__menu {
    width: calc(33.333% - 0.6666666667rem);
  }
}
.p-top-mv__menu::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  border: solid 1px white;
  border-radius: 50%;
}
.p-top-mv__menu span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-size: clamp(1rem, 2.2vw, 2.5rem);
  font-weight: 700;
  color: white;
  letter-spacing: 0rem;
}
@media screen and (max-width: 519px) {
  .p-top-mv__menu span {
    font-size: clamp(1rem, 4.8vw, 1.8rem);
  }
}
.p-top-mv__menu span small {
  display: block;
}

.p-top-mv__menu--activity span {
  font-size: clamp(1rem, 1.8vw, 2.1rem);
}
@media screen and (max-width: 519px) {
  .p-top-mv__menu--activity span {
    font-size: 1.2rem;
  }
}
.p-top-mv__menu--activity span small {
  font-size: 0.97em;
}

.p-top-area {
  width: 100%;
  padding: min(6rem, 5.2vw) 0 min(1rem, 0.9vw);
  background-color: #FFFAF1;
}
@media screen and (max-width: 519px) {
  .p-top-area {
    margin-top: min(2.5rem, 6.7vw);
    padding: min(2.5rem, 6.7vw) 0 min(2rem, 5.3vw);
    background-color: #fffcfe;
  }
}

.p-top-area__switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: min(1rem, 0.9vw);
}
@media screen and (max-width: 519px) {
  .p-top-area__switch {
    position: relative;
    aspect-ratio: 465/407;
    width: 100%;
    height: auto;
    background-color: #FFFAF1;
    border: solid 0.5px black;
  }
}

.p-top-area__tab {
  display: none;
}
@media screen and (max-width: 519px) {
  .p-top-area__tab {
    display: block;
    position: absolute;
    top: 0;
    left: min(3rem, 8vw);
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    padding: min(0.2rem, 0.5vw) 7%;
    color: white;
    font-weight: 500;
    background-color: #E38AAE;
    border: solid 0.5px black;
  }
}
.p-top-area__tab input {
  display: none;
}

.p-top-area__tab--japan {
  left: 7%;
}

.p-top-area__tab--yamagata {
  left: 31.2%;
}

.p-top-area__tab--okitama {
  left: 59%;
}

/* チェックされたradioを含むlabelの「直後のdiv」だけ表示 */
@media screen and (max-width: 519px) {
  .p-top-area__tab:has(input:checked) {
    color: #E38AAE;
    background-color: #fffcfe;
  }
}

@media screen and (max-width: 519px) {
  .p-top-area__tab:has(input:checked) + .p-top-area__content {
    display: block;
  }
}

.p-top-area__content {
  position: relative;
}
@media screen and (max-width: 519px) {
  .p-top-area__content {
    display: none;
  }
}

.p-top-area__content--okitama {
  padding-top: 5.5%;
  width: 34.5%;
}
@media screen and (max-width: 519px) {
  .p-top-area__content--okitama {
    padding: min(1.5rem, 4vw);
    width: 100%;
    height: 100%;
  }
}

.p-top-area__content--yamagata {
  padding-top: 1.5%;
  width: 39.8%;
}
@media screen and (max-width: 519px) {
  .p-top-area__content--yamagata {
    padding: min(1.5rem, 4vw);
    width: 100%;
    height: 100%;
  }
}

.p-top-area__content--japan {
  padding-top: 2%;
  width: 25.7%;
}
@media screen and (max-width: 519px) {
  .p-top-area__content--japan {
    padding: min(1.5rem, 4vw);
    width: 100%;
    height: 100%;
  }
  .p-top-area__content--japan a {
    width: 100%;
    height: 100%;
    text-align: center;
  }
}

.p-top-area__head {
  position: absolute;
  top: 0;
  left: 0;
  color: #E38AAE;
  font-size: clamp(1rem, 2.6vw, 3rem);
  font-weight: 500;
}
@media screen and (max-width: 519px) {
  .p-top-area__head {
    display: none;
  }
}

@media screen and (max-width: 519px) {
  .p-top-area__map {
    width: auto;
    height: 100%;
  }
}

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