@charset "utf-8";

/* ==========================================================================
   Foundation
   ========================================================================== */

/* Reset ----------------------------------------------------------------- */
html {
  min-width: 100%;
  overflow-y: scroll;
}
body, header, footer, nav, main, section, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, textarea, p, span, table, tr, th, td, a, :after, :before, figure {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-style: normal;
  font: inherit;
  vertical-align: baseline;
}
object, embed {
  vertical-align: top;
}
img, abbr, acronym, fieldset {
  border: 0;
}
a img {
  outline: none;
  border: none;
}
img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
  border: none;
  outline: none;
}
ul, ol {
  list-style-type: none;
}
button, input, optgroup, select, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font: inherit;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  font: inherit;
}
button, input {
  overflow: visible;
}
button, select {
  text-transform: none;
}
button[disabled], [type='button'][disabled], [type='reset'][disabled], [type='submit'][disabled] {
  cursor: default;
}
[type='checkbox'], [type='radio'] {
  box-sizing: border-box;
  padding: 0;
}
[type='number']::-webkit-inner-spin-button, [type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none; 
  appearance: none;
  height: auto;
}
[type='search'] {
  -webkit-appearance: textfield;
  appearance: textfield;
}
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
::-webkit-input-placeholder {
  font: inherit;
}
:-ms-input-placeholder {
  font: inherit;
}
::-ms-input-placeholder {
  font: inherit;
}
:-ms-input-placeholder {
  font: inherit;
}
::placeholder {
  font: inherit;
}
a:focus, *:focus {
  outline:none;
}
label[for] {
  cursor: pointer;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
*, :after, :before {
  box-sizing: border-box;
}


/* root ----------------------------------------------------------------- */
:root {
  --c-black: #000;
  --c-gray: #F6F6F6;
  --c-red: #EF0F0F;
  --c-green: #16a085;
  --c-border_black: #666;
  --c-border_gray: #CCC;

  --100vw: 100vw;
  --1rem: 1rem;
  --window-width: calc(tan(atan2(var(--100vw), 1px))*min(1, 16 / tan(atan2(var(--1rem), 1px)))) ;
  --scale: max(1, var(--window-width) / 1440);
  --px: calc(1px * var(--scale));
  --rem: calc(1rem * var(--scale));
  --max-width: max(1440 * var(--px), 90 * var(--rem));
  --spacing-120-80: clamp(80 * var(--px), (var(--window-width) * .0376 + 65.915) * var(--px), 120 * var(--px));
  --spacing-100-60: clamp(60 * var(--px), (var(--window-width) * 0.0314 + 55.0) * var(--px), 100 * var(--px));
  --spacing-60-40: clamp(40 * var(--px), (var(--window-width) * .0188 + 32.958) * var(--px), 60 * var(--px));
  --spacing-40-30: clamp(30 * var(--px), (var(--window-width) * .00939 + 26.479) * var(--px), 40 * var(--px));
  --spacing-40-20: clamp(20 * var(--px), (var(--window-width) * .0188 + 12.958) * var(--px), 40 * var(--px));
  --spacing-30-20: clamp(20 * var(--px), (var(--window-width) * .00939 + 16.479) * var(--px), 30 * var(--px));
  --spacing-20-10: clamp(10 * var(--px), (var(--window-width) * .0047 + 8.239) * var(--px), 20 * var(--px));

  --header-height: 8rem;
}
@media screen and (max-width: 48.0625em){
  :root {
    --header-height: 6rem;
  }
}


/* Base ----------------------------------------------------------------- */
html {
  font-size: 62.5%;
}
body {
  position: relative;
  background-color: #FFF;
  color: var(--c-black);
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

img {
  width: 100%;
  height: auto;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--c-black);
  text-decoration: underline;
}
@media screen and (min-width: 48.0625em){
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}



/* ==========================================================================
   Layout
   ========================================================================== */

/* Wrapper  ----------------------------------------------------------------- */
.l-wrapper {
  min-width: 320px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


/* Header  ----------------------------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
  z-index: 1001;
}
.l-header__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
  padding-inline: 2rem;
  width: 100%;
  height: var(--header-height);
  background-color: #FFF;
}
.l-header__logo {
  position: relative;
  width: 20vw;
  max-width: 20rem;
  z-index: 1003;
}
.l-header__logo a {
  display: block;
  width: 100%;
}
@media screen and (max-width: 48.0625em){
  .l-header__inner {
    justify-content: center;
  }
  .l-header__logo {
    width: 19rem;
  }
}

/*hamburger*/
.l-header__hamburger {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: var(--header-height);
  height: var(--header-height);
  cursor: pointer;
}
.l-header__hamburger span {
  position: absolute;
  top: calc((100% - 2px) / 2);
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  width: 2rem;
  height: 2px;
  background-color: var(--c-black);
  border-radius: 2px;
  transition: all .2s ease-in;
  z-index: 1003;
}
.l-header__hamburger span:nth-child(1) {
  transform: translateY(-.7rem);
}
.l-header__hamburger span:nth-child(2) {
  transform: translateY(.7rem);
}
.l-header.is-open .l-header__hamburger span:nth-child(1) {
  transform: rotate(-45deg);
}
.l-header.is-open .l-header__hamburger span:nth-child(2) {
  transform: rotate(45deg);  
}
.l-header.is-open .l-header__hamburger span:nth-child(3) {
  opacity: 0;
}
@media screen and (min-width: 48.0625em){
  .l-header__hamburger {
    display: none;
  }
}

/*gnav*/
.l-header__gnav {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.l-header__search form {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 100vh;
  overflow: hidden;
}
.l-header__search input {
  width: 23rem;
  height: 4rem;
  padding-inline: 4rem;
  background-color: #F0F0F0;
  font-size: 1.5rem;
  line-height: 1;
}
.l-header__search input::placeholder{
  color: #888;
}
.l-header__search .c-input-clear {
  width: 4rem;
}
.l-header__search button {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 4rem;
  height: 100%;
  background-image: url(../img/icon_search.svg);
  background-size: 70%;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.l-header__menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  height: 100%;
}
.l-header__menu-item a {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--c-black);
  font-size: 1.4rem;
  font-weight: bold;
}
.l-header__spotlist a {
  font-weight: bold;
}
.l-header__menu-item img {
  display: block;
  width: auto;
  height: 2.5rem;
}
@media screen and (min-width: 48.0625em) and (max-width: 81.25em) {
  .l-header__menu {
    gap: 2rem;
  }
}
@media screen and (min-width: 48.0625em) and (max-width: 76.25em) {
  .l-header__menu {
    gap: 1.2rem;
  }
  .l-header__menu-item span {
    display: none;
  }
  .l-header__menu-item img {
    display: block;
    width: auto;
    height: 2.8rem;
  }
}
@media screen and (max-width: 48.0625em){
  .l-header__gnav {
    position: fixed;
    top: 0;
    right: -100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
    padding-block: calc(var(--header-height) + 1rem) 1rem;
    padding-inline: 1rem;
    width: 100%;
    height: 100dvh;
    background-color: #FFF;
    transition: right .4s;
    overflow: hidden;
    z-index: 1002;
  }
  .l-header.is-open .l-header__gnav {
    right: 0;
  }
  .l-header__search {
    width: 100%;
  }
  .l-header__search .c-input-wrap,
  .l-header__search input {
    width: 100%;
    height: 5rem;
  }
  .l-header__menu {
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    overflow-y: hidden;
  }
  .l-header__menu > * {
    width: 100%;
    border-top: 1px solid var(--c-border_gray);
  }
  .l-header__menu > .c-language {
    order: 0;
    border-top: none;
    padding: 0 1rem 1.5rem;
  }
  .l-header__spotlist {
    order: 1;
  }
  .l-header__feature {
    order: 2;
  }
  .l-header__modelcourse {
    order: 3;
  }
  .l-header__favorite {
    order: 4;
  }
  .l-header__menu-item a {
    position: relative;
    gap: 1rem;
    padding: 1.5rem 1rem;
    width: 100%;
    font-size: 1.6rem;
  }
  .l-header__menu-item a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.5rem;
    width: 1rem;
    height: 1rem;
    border-top: 1px solid var(--c-black);
    border-right: 1px solid var(--c-black);
    transform: translateY(-50%) rotate(45deg);
  }
  .l-header__recommend {
    order: 5;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
    overflow-y: hidden;
  }
  .l-header__recommend .c-card-list {
    flex: 1;
    margin: 1rem 0 0;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .l-header__recommend .c-card-list::-webkit-scrollbar {
    display: none;
  }
}


/* Footer  ----------------------------------------------------------------- */
.l-footer {
  position: relative;
  margin-top: auto;
  background-color: #333;
  color: #FFF;
}
.l-footer a:hover {
  color: #FFF;
}
.l-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  padding-block: var(--spacing-30-20);
  padding-inline: 1.5rem;
}
.l-footer__logo {
  width: 20rem;
}
.l-footer__logo a {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  letter-spacing: .06em;
  text-decoration: none !important;
}
.l-footer__social {
  margin-top: 2rem;
  font-weight: bold;
}
.l-footer__social a {
  display: inline-flex;
  align-items: center;
}
.l-footer__social a::before {
  content: "";
  width: 6rem;
  height: 6rem;
  background-image: url(../img/social_youtube.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.l-footer__links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: auto;
}
.l-footer__nav {
  display: flex;
  gap: 5rem;
}
.l-footer__nav-all {
  letter-spacing: .06em;
}
.l-footer__nav-contents li {
  margin-bottom: .5rem;
}
.l-footer__nav-list {
  display: inline-block;
  margin-bottom: -.5rem;
  column-count: 5;
  column-gap: 3rem;
}
.l-footer__nav-list li {
  margin-bottom: .5rem;
}
.l-footer__copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  width: 100%;
  border-top: 1px solid #888;
}
.l-footer__copyright p {
  font-size: 1.4rem;
}
@media screen and (max-width: 48.0625em){
  .l-footer__inner {
    flex-direction: column;
  }
  .l-footer__social {
    margin-top: 1rem;
  }
  .l-footer__nav {
    flex-direction: column;
    gap: 1rem;
  }
  .l-footer__nav-list {
    width: 100%;
    column-count: 4;
  }
  .l-footer__copyright {
    flex-direction: column;
    padding-block: 2rem;
  }
  .l-footer__copyright p {
    margin-bottom: 1rem;
  }
}



/* Main  ----------------------------------------------------------------- */
.l-main {
  position: relative;
  margin-top: var(--header-height);
  margin-bottom: var(--spacing-40-30);
  width: 100%;
}
@media screen and (max-width: 48.0625em){
}



/* Map ----------------------------------------------------------------- */
.l-map {
  position: relative;
  width: 100%;
  height: calc(75vh - var(--header-height));
  min-height: 700px;
}
@media screen and (max-width: 48.0625em){
  .l-map {
    aspect-ratio: 29 /40;
    height: auto;
    min-height: auto;
  }
}

.l-map__button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
  z-index: 999;
}
.l-map__button > div > .c-button {
  transition: none;
}
.l-map__button-pref .c-button {
  font-size: 1.4rem;
}
.l-map__button-category {
  display: none;
}

.l-map__mapicon {
  position: relative;
  width: 5rem;
  height: 5rem;
  border: 1px solid var(--c-border_black);
  border-radius: 100vh;
  background-color: #FFF;
  z-index: 2;
  cursor: pointer;
}
.l-map__mapicon.is-on {
  background-color: var(--c-black);
}
.l-map__mapicon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.8rem;
  height: 2.8rem;
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
.l-map__mapicon.--filter::after {
  background-image: url(../img/icon_filter.svg);
}
.l-map__mapicon.--range::after {
  background-image: url(../img/icon_range.svg);
}
.l-map__mapicon.is-on.--filter::after {
  background-image: url(../img/icon_filter-on.svg);
}
.l-map__mapicon.is-on.--range::after {
  background-image: url(../img/icon_range-on.svg);
}

.l-map__pref {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 1rem;
}
.l-map__pref .c-card {
  width: calc(calc(100% - 4rem) / 5);
}
@media screen and (max-width: 96em){
  .l-map__pref .c-card {
    width: calc(calc(100% - 3rem) / 4);
  }
}
@media screen and (max-width: 80em){
  .l-map__pref .c-card {
    width: calc(calc(100% - 2rem) / 3);
  }
}
@media screen and (max-width: 56.25em){
  .l-map__pref .c-card {
    width: calc(calc(100% - 1rem) / 2);
  }
}
@media screen and (max-width: 48.0625em){
  .l-map__pref .c-card {
    width: calc(100%);
  }
}

.l-map__pref .c-card {
  border: none;
  border-radius: 0;
  font-size: 1.3rem;
}
.l-map__pref .c-card__link {
  flex-direction: row;
}
.l-map__pref .c-card__head {
  width: 20%;
}
.l-map__pref .c-card__image {
  aspect-ratio: 1 / 1;
  border-radius: .6em;
  overflow: hidden;
}
.l-map__pref .c-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .5rem;
  padding: 0 .8em;
}

.l-map__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 1rem;
}
@media screen and (max-width: 48.0625em){
  .l-map__filter li {
    min-width: calc(50% - .5rem);
  }
  .l-map__filter .c-label {
    width: 100%;
  }
}

.l-map.pin-filter .l-leaflet-pin {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-map.pin-filter .l-leaflet-pin img {
  width: 100%;
}

/* Leaflet ----------------------------------------------------------------- */
.leaflet-touch .leaflet-bar a {
  text-decoration: none;
}
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
  background-color: #FFF;
  box-shadow: 0 3px 5px rgba(0, 0, 0, .4);
}
.leaflet-popup-content-wrapper {
  padding: 0;
  width: auto;
  border-radius: .8rem;
  text-align: center;
}
.leaflet-popup-content {
  margin: 0;
  padding: 1rem;
  width: 100% !important;
}
.l-leaflet-popup__pref {
  width: 30rem;
}
.l-leaflet-popup__spot {
  width: 40rem;
  text-align: right;
}
.leaflet-popup-close-button {
  display: none;
}
.leaflet-popup-content .l-leaflet-popup__title {
  margin: 0;
  padding: 0;
  color: var(--c-black);
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.2;
}
.leaflet-popup-content .l-leaflet-popup__text {
  margin: .5rem 0 0;
  padding: 0;
  color: var(--c-black);
  font-size: 1.4rem;
  text-align: left;
  line-height: 1.2;
}
.leaflet-popup-content .l-leaflet-popup__categories {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin: 1rem 0 0;
  padding: 0;
  color: var(--c-black);
  font-size: 1.3rem;
  text-align: left;
  line-height: 1;
}
.leaflet-popup-content .l-leaflet-popup__category {
  padding: .5rem;
  border: 1px solid var(--c-border_black);
  border-radius: .3rem;
  line-height: 1;
}
.leaflet-popup-content .l-leaflet-popup__category-pref {
  padding: .5rem 1.2rem;
  border-radius: 100vh;
}
.leaflet-popup-content .l-leaflet-popup__image {
  position: relative;
  margin-top: .8rem;
  aspect-ratio: 3 / 2;
  width: 100%;
}
.leaflet-popup-content .l-leaflet-popup__image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.leaflet-popup-content .l-leaflet-popup__image img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.leaflet-popup-content .l-leaflet-popup__readmore {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: black;
}
.leaflet-popup-content .l-leaflet-popup__head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.leaflet-popup-content .l-leaflet-popup__head .l-leaflet-popup__title {
  flex: 1;
}
.leaflet-popup-content .l-leaflet-popup__head .l-leaflet-popup__image {
  margin-top: 0;
  aspect-ratio: 1 / 1;
  width: 25%;
  border-radius: .8rem;
  overflow: hidden;
}
@media screen and (max-width: 48.0625em){
  .l-leaflet-popup__spot {
    width: 80vw;
  }
  .l-leaflet-popup__spot {
    width: 85vw;
  }
}

.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large {
  width: 3.6rem !important;
  height: 3.6rem !important;
  background-color: #F9EDED;
  border: 2px solid #FFF;
  border-radius: 50%;
  box-shadow: none;
  overflow: hidden;
}
.marker-cluster div {
  margin: 0;
  width: 100%;
  height: 100%;
  background: transparent !important;
  
  border: 1px solid var(--c-red);
  border-radius: 50%;
  color: var(--c-red);
  font-size: 1.6rem;
  line-height: 3.2rem;
}

.l-modal[data-modal="modal-spots"] .l-modal__content {
  gap: 1rem;
  padding-top: 1rem;
  width: max-content;
}
.l-modal[data-modal="modal-spots"] .l-modal__inner {
  padding-inline: 0;
}
.l-map__spot {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.l-map__spot .l-leaflet-popup__spot {
  padding: 1rem;
  border: 1px solid var(--c-border_gray);
  border-radius: 1rem;
}

.l-leaflet-pin .l-leaflet-pin__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 2px solid #FFF;
  border-radius: 100vh;
  background-color: var(--c-red);
}
.l-leaflet-pin .l-leaflet-pin__icon.is-on {
  background-color: #333;
}
.l-leaflet-pin .l-leaflet-pin__icon span {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}


/* Modal ----------------------------------------------------------------- */
.l-modal {
  display: none;
  position: fixed;
  isolation: isolate;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  color: var(--c-black);
  z-index: 9999;
  overflow: hidden;
  cursor: default;
}
.l-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.7);
  z-index: 1;
}
.l-modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 90%;
  min-width: 30rem;
  max-width: 90%;
  max-height: 92dvh;
  padding: 2rem 0 1rem;
  background-color: #FFF;
  border-radius: 1rem;
  z-index: 2;
}
.l-modal[data-modal="modal-filter"] .l-modal__content {
  width: max-content;
}
.l-modal__title {
  padding-inline: 2rem;
  width: 100%;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: left;
}
.l-modal a {
  color: var(--c-black);
}
.l-modal__inner {
  flex: 1;
  display: block;
  width: 100%;
  padding-inline: 2rem;
  scrollbar-gutter: stable both-edges;
  overflow-y: auto;
}
.l-modal__close .c-button__text {
  font-size: 1.4rem;
}

@media screen and (max-width: 48.0625em){
  .l-modal__content {
    width: 95%;
    height: 90vh;
  }
  .l-modal[data-modal="modal-filter"] .l-modal__content {
    height: max-content;
  }
  .l-modal__inner {
    align-items: center;
  }
}



/* ==========================================================================
  Component
  ========================================================================== */

/* section ----------------------------------------------------------------- */
.c-section {
  position: relative;
  margin-inline: auto;
  padding-block: var(--spacing-30-20);
  padding-inline: 5rem;
  width: 100%;
  max-width: 1500px;
}
.c-section__head {
  position: relative;
}
.c-section__inner {
 padding-block: var(--spacing-30-20);
}
@media screen and (min-width: 48.0625em) and (max-width: 64em) {
  .c-section {
    padding-inline: 2rem;
  }
}
@media screen and (max-width: 48.0625em){
  .c-section {
    padding-inline: 1.5rem;
  }
  .c-section__inner {
    padding-block: 1rem;
  }
  .c-section__head  {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
  }
  .l-map + .c-section {
    margin-top: var(--spacing-20-10);
  }
}


/* Title ----------------------------------------------------------------- */
.c-title {
  position: relative;
  width: 100%;
  color: var(--c-black);
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 48.0625em){
  .c-title {
    font-size: 2.5rem;
  }
}
.c-title--sm {
  font-size: 2.5rem;
}
@media screen and (max-width: 48.0625em){
  .c-title--sm {
    font-size: 2rem;
  }
}
.c-title:has(.c-button) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
}
.c-title .c-button {
  font-size: 1.4rem;
}
@media screen and (max-width: 48.0625em){
  .c-title:has(.c-button) {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .c-title .c-button {
    font-size: 1.3rem;
  }
}
.c-description {
  position: relative;
  margin-top: .5rem;
  width: 100%;
  color: var(--c-black);
  font-size: 1.8rem;
  line-height: 1.4;
}


/* heading ----------------------------------------------------------------- */
.c-heading {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  padding-block: var(--spacing-30-20);
  padding-inline: 5rem;
  width: 100%;
}
.c-heading--pref {
  background-color: var(--c-gray);
}
.c-heading--spot {
  background-color: #333;
  color: #FFF;
}
.c-heading__contents {
  flex: 1;
}
.c-heading__title {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
}
.c-heading__description {
  margin-top: 1rem;
  line-height: 1.6;
}
.c-heading__access {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: 1.5rem;
}
.c-heading__access dl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.c-heading__access dt {
  margin-right: 1rem;
  font-weight: bold;
}
.c-heading__access dd {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.c-heading__access i img {
  width: 2.5rem;
}
.c-heading__image {
  margin-inline: auto;
  width: 20rem;
}
.c-heading--spot .c-heading__image {
  aspect-ratio: 3 / 2;
}
.c-heading--spot .c-heading__image img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-heading__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
.c-heading__category {
  padding: .5rem .8rem;
  border: 1px solid var(--c-border_black);
  border-radius: .3rem;
  background-color: #FFF;
  color: var(--c-black);
  line-height: 1;
}
.c-heading__category-pref {
  padding: .5rem 1.5rem;
  border-radius: 100vh;
}
.c-heading__tools {
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  width: 100%;
  line-height: 1;
}
.c-heading__tool {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 3.2rem;
  gap: .5rem;
  padding: 0 1.2rem;
  border: 1px solid var(--c-black);
  border-radius: 100vh;
  background-color: #FFF;
  color: var(--c-black);
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}
.c-heading__tool-share::before {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  background-image: url(../img/icon_share.svg);
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
}
.c-heading__tool-favorite button {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background-image: url(../img/icon_favorite-off.svg);
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: center;
  cursor: pointer;
}
.c-heading__tool-favorite button.is-active {
  background-image: url(../img/icon_favorite-on.svg);
  animation: anime-favorite .4s ease-in-out forwards;
}
.c-heading__tool-wrap {
  position: relative;
}
.c-heading__tooltip {
  display: none;
  position: absolute;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  width: max-content;
  border-radius: .2rem;
  background-color: #FFF;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
}
.c-heading__tooltip > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  gap: 2rem;
  width: max-content;
}
.c-heading__tooltip::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-style: solid;
  border-width: 0 .6rem .8rem .6rem;
  border-color: transparent transparent #FFF;
  translate: -50% -100%;
}
.c-heading__tooltip-item {
  color: var(--c-black);
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
}
.c-heading__tooltip-item:hover {
  text-decoration: underline;
}
@media screen and (max-width: 48.0625em){
  .c-heading {
    flex-direction: column;
    padding-inline: 1.5rem;
  }
  .c-heading__title {
    font-size: 2.8rem;
  }
  .c-heading__image {
    width: 100%;
  }
  .c-heading__access dl {
    align-items: flex-start;
    gap: .5rem;
  }
  .c-heading__access dt {
    margin-right: 0;
    width: 100%;
  }
  .c-heading__access dd {
    display: flex;
    align-items: center;
    gap: .5rem;
  }
  .c-heading__access dl + dl {
    margin-top: .8rem;
  }
  .c-heading--pref .c-heading__image {
    position: absolute;
    padding-top: 0;
    right: 1.5rem;
    width: 10rem;
  }
  .c-heading--pref .c-heading__description {
    margin-top: .5rem;
  }
  .c-heading__titles {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding-right: 13rem;
    min-height: 11rem;
  }
}


/* Card ----------------------------------------------------------------- */
.c-card {
  position: relative;
  border: 1px solid var(--c-border_gray);
  border-radius: 1rem;
  font-size: 1.6rem;
  overflow: hidden;
}
*:not(.swiper-wrapper) .c-card {
  height: auto;
}
.c-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}
.c-card__head {
  position: relative;
}
.c-card__image {
  position: relative;
  aspect-ratio: 3 / 2;
  width: 100%;
  opacity: 1;
  transition: opacity .2s ease-in;
}
.c-card__image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.c-card__image img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-card__label-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.c-card__label {
  position: absolute;
  display: inline-block;
  top: .8em;
  left: .4em;
  padding: .6em 1.4em;
  border-radius: 100vh;
  background-color: var(--c-black);
  color: #FFF;
  font-size: .9em;
  font-weight: bold;
  line-height: 1;
}
.c-card__body {
  padding: .5em .8em 1em;
}
.c-card__title {
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.4;
}
.c-card__description {
  margin-top: .5em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}
.c-card__categories {
  display: flex;
  flex-wrap: wrap;
  margin-top: .8em;
  gap: .4em;
}
.c-card__category {
  padding: .4em;
  border: 1px solid var(--c-border_black);
  border-radius: .3rem;
  font-size: .8em;
  line-height: 1;
}
.c-card__category-pref {
  padding: .4em 1rem;
  border-radius: 100vh;
  border: 1px solid var(--c-black);
  background-color: var(--c-black);
  color: #FFF;
}
.c-card__favorite {
  position: absolute;
  top: .5em;
  right: .5em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  background-color: #FFF;
  cursor: pointer;
  overflow: hidden;
}
.c-card__favorite button {
  display: block;
  width: 2.5em;
  height: 2.5em;
  background-image: url(../img/icon_favorite-off.svg);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: center;
  cursor: pointer;
}
.c-card__favorite button.is-active {
  background-image: url(../img/icon_favorite-on.svg);
  animation: anime-favorite .4s ease-in-out forwards;
}
@keyframes anime-favorite {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.c-card__link:hover {
  text-decoration: none;
}
.c-card__link:hover .c-card__title {
  text-decoration: underline;
}
.c-card__link:hover .c-card__image {
  opacity: .8;
}

.c-card__plan {
  margin-bottom: 1rem;
  border: 2px solid var(--c-red);
  border-radius: .4rem;
  padding: .5rem .8rem;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}

/*list*/
.c-card-list {
  position: relative;
  margin-top: 1.5rem;
  overflow: hidden;
}
.c-card-list .c-card__category-pref {
  display: none;
}

/*slider*/
.c-card-list--slider3 .c-card {
  width: calc(87% / 3);
}
.c-card-list--slider4 .c-card {
  width: calc(86% / 4);
}
.c-card-list--slider__arrow {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
  margin-top: 1rem;
}
.c-card-list--slider__arrow .c-card-list--slider__prev,
.c-card-list--slider__arrow .c-card-list--slider__next {
  width: 4rem;
  height: 4rem;
  border: 1px solid var(--c-border_black);
  border-radius: .4rem;
  background-color: #FFF;
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 2;
}
.c-card-list--slider__prev {
  background-image: url(../img/icon_arrow-left.svg);
}
.c-card-list--slider__next {
  background-image: url(../img/icon_arrow-right.svg);
}
.c-card-list--slider__arrow .swiper-button-disabled {
  opacity: .3;
  cursor: default;
}
@media screen and (max-width: 48.0625em){
  .c-card-list--slider3 {
    margin-top: 1rem;
  }
  .c-card-list--slider3 .c-card {
    width: 80%;
  }
  .c-card-list--slider4 .c-card {
    width: 70%;
  }
  .c-card-list--slider__arrow {
    margin-left: auto;
  }
}

/*grid2*/
.c-card-list--grid2 {
  display: flex;
  flex-wrap: wrap;
  gap: 1vw 1%;
}
.c-card-list--grid2 .c-card {
  width: calc(99% / 2);
}
@media screen and (max-width: 48.0625em){
  .c-card-list--grid2 {
    gap: 1.5rem 0;
  }
  .c-card-list--grid2 .c-card {
    width: 100%;
  }
}

/*grid3*/
.c-card-list--grid3 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw 1.5%;
}
.c-card-list--grid3 .c-card {
  width: calc(97% / 3);
}
@media screen and (max-width: 48.0625em){
  .c-card-list--grid3 {
    gap: 1.5rem 0;
  }
  .c-card-list--grid3 .c-card {
    width: 100%;
  }
}

/*grid4*/
.c-card-list--grid4 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw 1.5%;
}
.c-card-list--grid4 .c-card {
  width: calc(95.5% / 4);
}
@media screen and (max-width: 48.0625em){
  .c-card-list--grid4 {
    gap: 1.5rem 1rem;
  }
  .c-card-list--grid4 .c-card {
    width: calc(50% - .5rem);
  }
  .c-card-list--grid4 .c-card__description {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}

/*lg*/
.c-card-list--lg .c-card {
  font-size: 1.8rem;
}


/*sm*/
.c-card-list--sm {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw 1.5%;
}
.c-card-list--sm .c-card {
  border: none;
  border-radius: 0;
  font-size: 1.3rem;
}
.c-card-list--sm .c-card .c-card__link {
  flex-direction: row;
}
.c-card-list--sm .c-card .c-card__head {
  width: 25%;
}
.c-card-list--sm .c-card .c-card__image {
  aspect-ratio: 1 / 1;
  border-radius: .6em;
  overflow: hidden;
}
.c-card-list--sm .c-card .c-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 .8em;
}
.c-card-list--sm .c-card__label,
.c-card-list--sm .c-card__description,
.c-card-list--sm .c-card__favorite {
  display: none;
}
.c-card-list.c-card-list--sm .c-card__category-pref {
  display: block;
}
@media screen and (max-width: 48.0625em){
  .c-card-list--sm {
    gap: 2rem 0;
  }
  .c-card-list--sm .c-card {
    width: 100%;
  }
}

/*card modelcourse*/
.c-card--mc {
  padding: .5em;
}
.c-card--mc .c-card__link {
  flex-direction: row;
  align-items: flex-start;
  gap: .5em;
}
.c-card--mc .c-card__head {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 60%;
  height: 100%;
  padding: 2rem .5rem;
}
.c-card--mc .c-card__title {
  font-size: 2.2rem;
}
.c-card--mc .c-card__label-list {
  margin-bottom: 1rem;
}
.c-card--mc .c-card__label {
  position: relative;
  top: unset;
  left: unset;
}
.c-card--mc .c-card__link:hover .c-card__image {
  opacity: 1;
}
.c-card--mc .c-card__images {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: .2em;
}
.c-card--mc .c-card__image {
  aspect-ratio: 1 / 1;
  width: calc(calc(100% - .2em) / 2);
  border-radius: .5rem;
  overflow: hidden;
}
@media screen and (max-width: 48.0625em){
  .c-card--mc {
    padding: .8em .5em;
  }
  .c-card--mc .c-card__link {
    flex-direction: column;
  }
  .c-card--mc .c-card__head {
    width: 100%;
    padding: 0;
  }
  .c-card--mc .c-card__label {
    font-size: 1.4rem;
  }
  .c-card--mc .c-card__title {
    font-size: 2rem;
  }
  .c-card--mc .c-card__images {
    margin-top: .5rem;
  }
  .c-card--mc .c-card__image {
    width: calc(calc(100% - .6em) / 4);
  }
}

/*card feature*/
.c-card--ft__wrap {
  padding-block: 2rem;
  border-top: 2px solid var(--c-green);
}
.c-card--ft__wrap:nth-last-of-type(1) {
  border-bottom: 2px solid var(--c-green);
}
.c-title + .c-card--ft__wrap {
  margin-top: 1.5rem;
}
.c-card--ft {
  width: calc(96% / 5);
  border: none;
  border-radius: 0;
}
.c-card--ft .c-card__head {
  font-size: 1.4rem;
}
.c-card--ft .c-card__image {
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
  overflow: hidden;
}
.c-card--ft .c-card__body {
  padding: .5em 0 0;
}
.c-card--ft .c-card__title {
    font-size: 1.1em;
}
.c-card--ft__more {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  width: 100%;
  border: 1px solid var(--c-border_gray);
  border-radius: 1rem;
}
.c-card--ft__more-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  font-size: 1.5rem;
  font-weight: bold;
}
.c-card--ft__more-text::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-image: url(../img/icon_arrow-right.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 48.0625em){
  .c-card--ft__wrap {
    padding-block: 1.5rem;
  }
  .c-card--ft {
    width: 60%;
    border: none;
  }
}



/* Search ----------------------------------------------------------------- */
.c-search {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

/*search__head*/
.c-search__head {
  width: 100%;
}

/*search__keyword*/
.c-search__keyword {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 2rem;
  border: 1px solid var(--c-border_gray);
  border-radius: 100vh;
  overflow: hidden;
}
.c-search__keyword .c-input-wrap {
  width: 100%;
}
.c-search__keyword input {
  padding-inline: 4.5rem;
  width: 100%;
  height: 5rem;
  line-height: 1;
  background-color: #FFF;
}
.c-search__keyword input::placeholder{
  color: #888;
}
.c-search__keyword .c-input-clear {
  width: 4.5rem;
}
.c-search__keyword button {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 4.5rem;
  height: 100%;
  background-image: url(../img/icon_search.svg);
  background-size: 80%;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
}
@media screen and (max-width: 48.0625em){
  .c-search__keyword {
    margin-top: 1.5rem;
  }
}

/*search__filter*/
.c-search__filter {
  width: 25rem;
}
.c-search__form {
  position: sticky;
  top: var(--header-height);
  padding-top: 2rem;
}
.c-search__form-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 48.0625em){
  .c-search__filter-toggle {
    display: block;
    width: 100%;
    text-align: right;
    cursor: pointer;
  }
  .c-search__filter-toggle .c-button {
    font-size: 1.4rem;
  }
  .c-search__filter-toggle .c-button.is-selected {
    border: 1px solid var(--c-red);
  }
  .c-search__filter {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, .4);
    z-index: 9999;
  }
  .c-search__form {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-block: 2rem 8rem;
    padding-inline: 1rem;
    background-color: #FFF;
    transition: right .4s;
  }
  .c-search__filter.is-open .c-search__form {
    right: 0;
  }
  .c-search__form-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem 2rem;
  }
  .c-search__form-title p {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
    text-align: left;
  }
  .c-search__form-title span {
    display: block;
    margin-right: .3rem;
    width: 2rem;
    height: 2rem;
    background-image: url(../img/icon_close.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .c-search__form-inner {
    flex: 1;
    gap: 0;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .c-search__form-inner::-webkit-scrollbar {
    display: none;
  }
}

/*search__conditions*/
.c-search__conditions-title {
  font-weight: bold;
}
.c-search__item {
  margin-top: .5rem;
}
.c-search__item:first-child {
  margin-top: .8rem;
}
.c-search__label {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  cursor: pointer;
}
.c-search__label input {
  appearance: none;
  position: relative;
  width: 1.8rem;
  height: 1.8rem;
  border: 2px solid #CCC;
  border-radius: .4rem;
  cursor: pointer;
}
.c-search__label input:checked {
  border: 2px solid var(--c-red);
  background-color: var(--c-red);
}
.c-search__label input:checked::after {
  content: "";
  position: absolute;
  top: .3rem;
  left: .2rem;
  width: 1rem;
  height: .6rem;
  border-bottom: 2px solid #FFF;
  border-left: 2px solid #FFF;
  transform: rotate(-45deg);
}
.c-search__label_name {
  padding-left: .8rem;
}
@media screen and (max-width: 48.0625em){
  .c-search__conditions {
    padding: 1rem;
    border-top: 1px solid var(--c-border_gray);
  }
}

/*search__conditions pref*/
.c-search__conditions-pref .c-search__conditions-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.c-search__conditions-pref .c-search__conditions-title::after {
  content: "";
  display: block;
  width: 1.6em;
  height: 1.6em;
  background-image: url(../img/icon_toggle.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.c-search__conditions-pref .c-search__conditions-title.is-active::after {
  transform: rotate(180deg);
}
.c-search__conditions-pref .c-search__list-wrap {
  display: none;
  text-align: right;
}
.c-search__conditions-pref .c-search__list {
  text-align: left;
}
.c-search__conditions-pref .c-button {
  margin-top: 1rem;
  font-size: 1.4rem;
}

/*search__button*/
.c-search__button .c-button {
  width: 100%;
}
@media screen and (max-width: 48.0625em){
  .c-search__button {
    position: absolute;
    bottom: 2rem;
    left: 0;
    padding-inline: 2rem;
    width: 100%;
  }
}

/*search__choice*/
.c-search__choice {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0 .5rem;
}
.c-search__choice li {
  display: flex;
  align-items: center;
  gap: .2rem;
  margin: .5rem 0;
  padding: .5rem 1rem;
  border: 1px solid var(--c-red);
  border-radius: 100vh;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.c-search__choice li::after {
  content: "";
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  background-image: url(../img/icon_close.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
}

/*search__result*/
.c-search__result {
  flex: 1;
  padding-top: 2rem;
}
.c-search__result .c-card-list {
  margin-top: 0;
}
.c-search__notfound {
  text-align: center;
}
@media screen and (max-width: 80em){
  .c-search__result .c-card {
    width: calc(97% / 3);
  }
}
@media screen and (max-width: 61.25em){
  .c-search__result .c-card {
    width: calc(98.5% / 2);
  }
}
@media screen and (max-width: 48.0625em){
  .c-search__result {
    padding-top: 0;
  }
  .c-search__result .c-card {
    width: calc(50% - .5rem);
  }
}


/* Button ----------------------------------------------------------------- */
.c-button {
  display: inline-flex;
  align-items: center;
  gap: .2em;
  padding: .8em 1.5em;
  border: 1px solid var(--c-black);
  border-radius: 100vh;
  background-color: #FFF;
  color: var(--c-black);
  font-size: 1.6rem;
  text-align: center;
  line-height: 1;
  transition: background-color .2s ease-in, color .2s ease-in;
  cursor: pointer;
}
.c-button:hover {
  text-decoration: none;
}
.c-button i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5em;
  height: 1.5em;
}
.c-button i img {
  width: 100%;
}
.c-button__text {
  color: var(--c-black);
}

/*black*/
.c-button--black {
  background-color: var(--c-black);
  color: #FFF;
}
.c-button--black .c-button__text {
  color: #FFF;
}
.c-button--black:hover {
  background-color: #333;
}

/*is-on*/
.c-button.is-on {
  background-color: var(--c-black);
  color: #FFF;
}
.c-button.is-on .c-button__text {
  color: #FFF;
}


/* Language switcher ----------------------------------------------------------------- */
.c-language .wpml-ls-legacy-dropdown-click {
  width: auto;
}
.c-language .wpml-ls-sub-menu.is-open {
  visibility: visible;
}
.c-language .wpml-ls-legacy-dropdown-click a {
  color: var(--c-black);
  border: 1px solid var(--c-border_black);
  border-top: none;
  border-bottom: none;
  background-color: #FFF;
  padding: 1rem 2rem;
  width: 14rem;
  height: 4rem;
  line-height: 1;
}
.c-language .wpml-ls-legacy-dropdown-click a:hover {
  background-color: var(--c-gray);
  font-weight: bold;
  text-decoration: none;
}
.c-language .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #FFF !important;
  border: 1px solid var(--c-border_black);
  border-radius: 2rem;
}
.c-language .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle.is-open {
  border-bottom-color: transparent;
  border-radius: 2rem 2rem 0 0;
}
.c-language .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:hover {
  background-color: #FFF !important;
  text-decoration: none;
  font-weight: 400;
}
.c-language .wpml-ls-item-toggle::before {
  content: "";
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  background-image: url(../img/icon_language.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.c-language .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
  border: none;
}
.c-language .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu a {
  padding-left: 4.8rem;
}
.c-language .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu li:last-child a {
  border-radius: 0 0 2rem 2rem;
  border-bottom: 1px solid var(--c-border_black);
}
.c-language .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after {
  content: none;
}
.l-footer .c-language .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
  top: auto;
  bottom: 4rem;
}
.l-footer .c-language .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle.is-open {
  border-top-color: transparent;
  border-bottom-color: var(--c-border_black);
  border-radius: 0 0 2rem 2rem;
}
.l-footer .c-language .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu li:last-child a {
  border-radius: 0;
  border-bottom: none;
}
.l-footer .c-language .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu li:first-child a {
  border-radius: 2rem 2rem 0 0;
  border-top: 1px solid var(--c-border_black);
}


/* Pager ----------------------------------------------------------------- */
.c-pager {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}
.c-pager .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid var(--c-border_gray);
  cursor: pointer;
  line-height: 1;
}
.c-pager .page-numbers.dots {
  border: 1px solid transparent;
  cursor: default;
}
.c-pager .page-numbers.current {
  border: 1px solid var(--c-black);
  background-color: var(--c-black);
  color: #FFF;
  cursor: default;
}
.c-pager .page-numbers:not(.dots):not(.current):hover {
  background-color: var(--c-gray);
  text-decoration: none;
}
.c-pager .page-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  line-height: 1;
}
.c-pager .page-arrow.prev {
  margin-right: 1rem;
}
.c-pager .page-arrow.next {
  margin-left: 1rem;
}
.c-pager .page-arrow.is-disabled {
  pointer-events: none;
  opacity: .4;
}
@media screen and (max-width: 48.0625em){
  .c-pager {
    gap: .5rem;
    padding-bottom: 5.5rem;
  }
  .c-pager .page-arrow {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 10rem;
    height: 4rem;
    border: 1px solid var(--c-border_gray);
    border-radius: .5rem;
  }
  .c-pager .page-arrow img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
  .c-pager .page-arrow.prev {
    margin: 0;
    transform: translateX(calc(-100% - .5rem));
  }
  .c-pager .page-arrow.next {
    margin: 0;
    transform: translateX(.5rem);
  }
}


/* Label ----------------------------------------------------------------- */
.c-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem 1rem 4.5rem;
  border: 1px solid var(--c-black);
  border-radius: 100vh;
  background-color: #FFF;
  color: var(--c-black);
  font-size: 1.6rem;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}
.c-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.c-label:after {
  content: "";
  position: absolute; 
  top: 50%;
  left: .9rem;
  transform: translateY(-50%);
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.c-label-cat001:after {
  background-image: url(../img/cat001_off.svg);
}
.c-label-cat002:after {
  background-image: url(../img/cat002_off.svg);
}
.c-label-cat003:after {
  background-image: url(../img/cat003_off.svg);
}
.c-label-cat004:after {
  background-image: url(../img/cat004_off.svg);
}
.c-label-cat005:after {
  background-image: url(../img/cat005_off.svg);
}
.c-label-cat006:after {
  background-image: url(../img/cat006_off.svg);
}
.c-label-cat007:after {
  background-image: url(../img/cat007_off.svg);
}
.c-label-cat008:after {
  background-image: url(../img/cat008_off.svg);
}
.c-label-cat001:has(input:checked):after {
  background-image: url(../img/cat001_on.svg);
}
.c-label-cat002:has(input:checked):after {
  background-image: url(../img/cat002_on.svg);
}
.c-label-cat003:has(input:checked):after {
  background-image: url(../img/cat003_on.svg);
}
.c-label-cat004:has(input:checked):after {
  background-image: url(../img/cat004_on.svg);
}
.c-label-cat005:has(input:checked):after {
  background-image: url(../img/cat005_on.svg);
}
.c-label-cat006:has(input:checked):after {
  background-image: url(../img/cat006_on.svg);
}
.c-label-cat007:has(input:checked):after {
  background-image: url(../img/cat007_on.svg);
}
.c-label-cat008:has(input:checked):after {
  background-image: url(../img/cat008_on.svg);
}
@media screen and (max-width: 48.0625em){
  .c-label {
    padding: 1.2rem 2rem 1.2rem 4rem;
  }
}

.c-input-wrap {
  position: relative;
}
.c-input-clear {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 100%;
  background-image: url(../img/icon_close.svg);
  background-size: 40%;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  opacity: .0;
  pointer-events: none;
}
.c-input-clear.is-visible {
  opacity: .5;
  pointer-events: auto;
}



/* ==========================================================================
  Project
  ========================================================================== */

/* index ----------------------------------------------------------------- */


/* pref ----------------------------------------------------------------- */


/* spot ----------------------------------------------------------------- */
.p-spot-movie {
  padding-block: var(--spacing-40-30);
  padding-inline: 5rem;
}
.p-spot-movie__main {
  margin-block: 0 var(--spacing-30-20);
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 1000px;
}
.p-spot-movie__main iframe {
  width: 100%;
  height: 100%;
}
.p-spot-movie__list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}
.p-spot-movie__item {
  padding: 2rem;
  width: calc(100% / 3);
  border-radius: 1rem;
  cursor: pointer;
}
.p-spot-movie__item.is-active {
  background-color: #F9EDED;
  cursor: default;
}
.p-spot-movie__thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
}
.p-spot-movie__thumbnail img {
  position: relative;
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity .2s ease-in;
  z-index: 1;
}
.p-spot-movie__title {
  margin-top: 1rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}
.p-spot-movie__item iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.p-spot-movie__item .p-spot-movie__thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  background-image: url(../img/logo_circle.svg);
  background-size: 15%;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .2s ease-in;
  z-index: 2;
}
@media screen and (min-width: 48.0625em){
  .p-spot-movie__item.is-active .p-spot-movie__thumbnail::before {
    content: none;
  }
  .p-spot-movie__item:not(.is-active):hover .p-spot-movie__thumbnail::before {
    opacity: 1;
  }
  .p-spot-movie__item:not(.is-active):hover .p-spot-movie__thumbnail img {
    opacity: .8;
  }
}
@media screen and (max-width: 48.0625em){
  .p-spot-movie {
    padding-inline: 1.5rem;
  }
  .p-spot-movie__list {
    gap: 3rem;
  }
  .p-spot-movie__item {
    padding: 0;
    width: 100%;
    border-radius: 0;
    cursor: default;
  }
  .p-spot-movie__item.is-active {
    background-color: transparent;
  }
  .p-spot-movie__title {
    margin-top: .5rem;
  }
  .p-spot-movie__item .p-spot-movie__thumbnail::before {
    opacity: 1;
  }
}

.p-spot-info {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 0;
  padding-inline: 5rem;
}
.p-spot-info__list {
  flex: 1;
  padding: 1.5rem;
  background-color: var(--c-gray);
}
.p-spot-info__title {
  font-size: 2rem;
  font-weight: bold;
}
.p-spot-info__list dt {
  margin-top: 1rem;
  padding-left: 1rem;
  font-weight: bold;
}
.p-spot-info__list dd {
  padding-left: 3rem;
}
.p-spot-info .c-title {
  margin-top: var(--spacing-40-30);
  width: 100%;
  text-align: left;
}
.p-spot-info__map {
  width: 40%;
  max-width: 500px;
  text-align: center;
}
.p-spot-info__map-data {
  position: relative;
  aspect-ratio: 3 / 2;
  width: 100%;
}
.p-spot-info__map-data .leaflet-interactive {
  cursor: default;
}
.p-spot-info__map .c-button {
  margin-top: 2rem;
}
@media screen and (max-width: 48.0625em){
  .p-spot-info {
    flex-direction: column;
    padding-block: 0 var(--spacing-30-20);
    padding-inline: 1.5rem;
  }
  .p-spot-info__list {
    width: 100%;
  }
  .p-spot-info__list dd {
    padding-left: 2rem;
  }
  .p-spot-info .c-title {
    margin-top: var(--spacing-30-20);
  }
  .p-spot-info__map {
    width: 100%;
    max-width: none;
  }
}
.p-spot-info__map-child {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: none;
}
.p-spot-info__map-child .p-spot-info__map-data {
  flex: 1;
  aspect-ratio: auto;
  width: auto;
  height: 50rem;
}
.p-spot-info__map-child .p-spot-info__map-list {
  padding: .5rem 1rem;
  width: 30rem;
  height: 50rem;
  border: 1px solid var(--c-border_gray);
  border-radius: 1rem 0 0 1rem;
  background-color: #FFF;
  text-align: left;
}
.p-spot-info__map-child .p-spot-info__map-list ul {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.p-spot-info__map-child .p-spot-info__map-list ul::-webkit-scrollbar {
  display: none;
}
.p-spot-info__map-child .p-spot-info__map-list li {
  position: relative;
  padding: 1rem;
  padding-left: 4rem;
  border-bottom: 1px solid var(--c-border_gray);
  cursor: pointer;
}
.p-spot-info__map-child .p-spot-info__map-list li:hover {
  text-decoration: underline;
}
.p-spot-info__map-child .p-spot-info__map-list li::before {
  content: "";
  position: absolute;
  top: .8rem;
  left: .2rem;
  display: block;
  width: 3rem;
  height: 3rem;
  background-image: url(../img/pref_pin_off.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.p-spot-info__map-child .p-spot-info__map-data .leaflet-interactive {
  cursor: pointer;
}
.p-spot-info__map-child > .c-button {
  display: none;
}
@media screen and (max-width: 48.0625em){
  .p-spot-info__map-child {
    display: block;
    overflow: hidden;
  }

  .p-spot-info__map-child .p-spot-info__map-data {
    aspect-ratio: 29 / 40;
    height: auto;
    min-height: auto;
    z-index: 1;
  }
  .p-spot-info__map-child .p-spot-info__map-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 1rem;
    width: 5rem;
    height: 5rem;
    border: 1px solid var(--c-black);
    border-radius: 100vh;
    background-color: #FFF;
    z-index: 2;
  }
  .p-spot-info__map-child .p-spot-info__map-list {
    position: absolute;
    top: 0;
    right: -60vw;
    padding: .5rem;
    width: 60vw;
    height: 100%;
    border-radius: 0;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
    transition: right .4s;
    z-index: 3;
  }
  .p-spot-info__map-child .p-spot-info__map-list.is-open {
    right: 0;
  }
  .p-spot-info__map-child .l-leaflet-popup__spot {
    width: calc(85vw - 3rem);
  }
}


/* modelcourse ----------------------------------------------------------------- */
.p-modelcourse-plan {
  margin-bottom: .5rem;
}
.p-modelcourse-list {
  counter-reset: number 0;
}
.p-modelcourse-list__day {
  position: relative;
  margin-bottom: 5rem;
  z-index: 1;
}
.p-modelcourse-list__day::after {
  content: "";
  position: absolute;
  top: 1rem;
  left: calc(2rem - 2px);
  display: block;
  width: 4px;
  height: calc(100% + 4rem);
  background-color: var(--c-border_gray);
  z-index: -1;
}
.p-modelcourse-list__day p {
  padding: 1.5rem;
  width: 100%;
  background-color: #FFF;
  border: 3px solid var(--c-red);
  border-radius: 1rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  z-index: 2;
}
.p-modelcourse-list__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem 2rem;
  flex-wrap: wrap;
  counter-increment: number 1;
  padding-left: 6rem;
}
.p-modelcourse-list__item:not(:last-child) {
  margin-bottom: 5rem;
}
.p-modelcourse-list__item::before {
  content: counter(number);
  position: absolute;
  top: -.6rem;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--c-red);
  color: #FFF;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  z-index: 2;
}
.p-modelcourse-list__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(2rem - 2px);
  display: block;
  width: 4px;
  height: calc(100% + 5rem);
  background-color: var(--c-border_gray);
  z-index: 1;
}
.p-modelcourse-list__item-day {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 4rem 2rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
  padding-left: 6rem;
}
.p-modelcourse-list__item-day::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(2rem - 2px);
  display: block;
  width: 4px;
  height: calc(100% + 5rem);
  background-color: var(--c-border_gray);
  z-index: 1;
}
.p-modelcourse-list__item:last-child::after {
  height: 100%;
}
.p-modelcourse-list__info {
  width: calc(100% - 50rem - 2rem);
}
.p-modelcourse-list__head {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.p-modelcourse-list__title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
}
.p-modelcourse-list__text {
  margin-top: 1rem;
  line-height: 1.4;
}
.p-modelcourse-list__item .c-button {
  margin-top: 1rem;
  font-size: 1.4rem;
}
.p-modelcourse-list__item .c-card {
  padding: 1rem;
  width: 50rem;
  border: 1px solid var(--c-border_gray);
  border-radius: .5rem;
  font-size: 1.6rem;
}
.p-modelcourse-list__accsess-wrap {
  position: relative;
  left: -6rem;
  width: 100%;
  z-index: 4;
}
.p-modelcourse-list__accsess {
  display: inline-flex;
  align-items: center;
  gap: .2em;
  padding: .8rem 1.5rem;
  border: 2px solid var(--c-red);
  border-radius: 100vh;
  background-color: #FFF;
  color: var(--c-black);
  font-size: 1.6rem;
  text-align: center;
  line-height: 1;
  z-index: 4;
}
@media screen and (max-width: 48.0625em){
  .p-modelcourse-list__day {
    margin-bottom: 3rem;
  }
  .p-modelcourse-list__day::after {
    left: calc(1.5rem - 2px);
    height: calc(100% + 2rem);
  }
  .p-modelcourse-list__item {
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.5rem;
    padding-left: 4rem;
  }
  .p-modelcourse-list__item::before {
    top: -.3rem;
    width: 3rem;
    height: 3rem;
    font-size: 1.6rem;
  }
  .p-modelcourse-list__item::after {
    left: calc(1.5rem - 2px);
  }
  .p-modelcourse-list__item-day {
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.5rem;
    padding-left: 4rem;
  }
  .p-modelcourse-list__item-day::after {
    left: calc(1.5rem - 2px);
  }
  .p-modelcourse-list__info {
    width: 100%;
  }
  .p-modelcourse-list__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }
  .p-modelcourse-list__title {
    font-size: 2rem;
  }
  .p-modelcourse-list__item .c-card {
    padding: .5rem;
    width: 100%;
    font-size: 1.4rem;
  }
  .p-modelcourse-list__accsess-wrap {
    left: -4rem;
    margin-top: 2rem;
  }
}


/* account ----------------------------------------------------------------- */
/*signup*/
.p-account-message {
  margin-bottom: 2rem;
}
.p-account-message h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: bold;
}
.p-account-message p:not(:last-child) {
  margin-bottom: .5rem;
}
.p-account-message__error {
  color: var(--c-red);
}

.p-account-message + .p-account-input__form {
  margin-top: 3rem;
}
.p-account-input__items {
  display: inline-flex;
  flex-direction: column;
  padding: 2rem;
  width: 100%;
  border-top: 1px solid var(--c-border_gray);
}
.p-account-input__item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: .5rem;
  width: 100%;
  max-width: 50rem;
  text-align: left;
}
.p-account-input__item:not(:last-child) {
  margin-bottom: 2rem;
}
.p-account-input__item dt {
  width: 100%;
}
.p-account-input__item dd {
  width: 100%;
}
.p-account-input__item input[type=text],
.p-account-input__item input[type=tel],
.p-account-input__item input[type=email],
.p-account-input__item input[type=password] {
  padding: 1rem;
  width: 100%;
  border: none;
  border: 1px solid #CCC;
  border-radius: .4rem;
}
.p-account-input__item dd textarea {
  padding: 1rem;
  width: 100%;
  height: 15rem;
  border: 1px solid #CCC;
  border-radius: .4rem;
  line-height: 1.4;
  resize: vertical;
}
.p-account-input__item dd:has(select) {
  position: relative;
}
.p-account-input__item dd:has(select)::after {
  content: "";
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  width: 1rem;
  height: 1rem;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
}
.p-account-input__item dd select {
  padding: 1rem;
  width: 100%;
  border: none;
  border: 1px solid #CCC;
  border-radius: .4rem;
  cursor: pointer;
}
.p-account-input__text {
  margin-bottom: 1rem;
  padding-block: 1rem;
  width: 100%;
  max-width: 50rem;
  border-top: 1px solid var(--c-border_gray);
  text-align: left;
  font-weight: bold;
}
.p-account-input__link a {
  text-decoration: underline;
}
.p-account-input__note {
  margin-bottom: .5rem;
  color: var(--c-border_black);
  font-size: 1.4rem;
}
.p-account-input__error {
  display: none;
  margin-top: .5rem;
  color: var(--c-red);
  font-size: 1.4rem;
}
.p-account-input__enter {
  margin-top: 3rem;
  padding-inline: 2rem;
}
.p-account-input__enter input {
  display: block;
  margin: 0;
  padding: 1rem;
  width: 20rem;
  background-color: rgba(0,0,0,1);
  border-radius: 100vh;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 700;
  transition: background-color 0.4s;
  cursor: pointer;
}
.p-account-input__enter input:disabled,
.p-account-input__enter input.is-disabled {
  opacity: .5;
  cursor: default;
  pointer-events: none;
}
.p-account-input__form .cf-turnstile {
  margin-top: 4rem;
  text-align: right;
}


/* contact ----------------------------------------------------------------- */
.p-contact {
  text-align: center;
}
.p-contact .c-section__inner {
  padding: 0;
}
.p-contact__list {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  max-width: 50rem;
}
.p-contact__item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: .5rem;
  width: 100%;
  text-align: left;
}
.p-contact__item:not(:last-child) {
  margin-bottom: 3rem;
}
.p-contact__item dt {
  width: 100%;
}
.p-contact__item.is-required dt::after {
  content: "※";
  margin-left: .5rem;
  font-size: 1.2rem;
  color: var(--c-red);
}
.p-contact__item dd {
  width: 100%;
}
.p-contact__item dd span {
  width: 100%;
}
.p-contact__item dd input[type=text],
.p-contact__item dd input[type=tel],
.p-contact__item dd input[type=email] {
  padding: 1rem;
  width: 100%;
  border: none;
  border: 1px solid #CCC;
  border-radius: .4rem;
}
.p-contact__item dd textarea {
  padding: 1rem;
  width: 100%;
  height: 15rem;
  border: 1px solid #CCC;
  border-radius: .4rem;
  line-height: 1.4;
  resize: vertical;
}
.p-contact__item dd span:has(select) {
  position: relative;
}
.p-contact__item dd span:has(select)::after {
  content: "";
  position: absolute;
  top: .5rem;
  right: 2rem;
  width: 1rem;
  height: 1rem;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
}
.p-contact__item dd select {
  padding: 1rem;
  width: 100%;
  border: none;
  border: 1px solid #CCC;
  border-radius: .4rem;
  cursor: pointer;
}
.p-contact__enter {
  margin-top: 4rem;
}
.p-contact__enter input {
  display: block;
  margin: 0 auto;
  padding: 1rem;
  width: 20rem;
  background-color: rgba(0,0,0,1);
  border-radius: 100vh;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 700;
  transition: background-color 0.4s;
  cursor: pointer;
}
.p-contact__enter input:disabled {
  opacity: .5;
  cursor: default;
}

.p-contact .sent .p-contact__list,
.p-contact .sent .p-contact__enter,
.p-contact .sent .wpcf7-turnstile {
  display: none;
}
.p-contact .screen-reader-response ul {
  display: none;
}
.p-contact.is-send .wpcf7-not-valid-tip {
  display: block;
}
.wpcf7-not-valid-tip {
  margin-top: .5rem;
  color: #F00;
  font-size: 1.2rem;
}
.wpcf7-response-output {
  margin-top: 3rem;
}
.wpcf7-list-item {
  margin: 0 !important;
}
.wpcf7-spinner {
  display: none !important;
}
.wpcf7-turnstile {
  margin-top: 4rem;
  text-align: center;
}


/* privacypolicy ----------------------------------------------------------------- */
.p-privacypolicy p {
  margin-top: 1rem;
}
.p-privacy__list {
  margin-top: 2rem;
  counter-reset: li;
}
.p-privacy__list > li {
  position: relative;
  padding-left: 3rem;
  font-weight: bold;
}
.p-privacy__list > li:not(:first-child) {
  margin-top: 1rem;
}
.p-privacy__list > li::before {
  content: counters(li, "") ". ";
  counter-increment: li;
  position: absolute;
  top: 0;
  left: 0;
}
.p-privacy__list > li span {
  display: block;
  margin-top: .5rem;
  font-weight: normal;
}
.p-privacy__list > li ul {
  margin-top: .5rem;
  padding-left: 2rem;
  font-weight: normal;
  list-style: disc;
}


/* 404 ----------------------------------------------------------------- */
.p-404-title {
  margin-top: var(--spacing-60-40);
  color: var(--c-border_gray);
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 48.0625em){
  .p-404-title {
    font-size: 10vw;
  }
}


/* ==========================================================================
  管理者用
  ========================================================================== */
.admin-check_pref {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 999;
}
.admin-check_pref__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.admin-check_pref__button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  width: 11rem;
  height: 3rem;
  font-weight: bold;
  cursor: pointer;
}
.admin-check_pref__button.is-on {
  background-color: #000;
  color: #FFF;
}



/* ==========================================================================
  Utility
  ========================================================================== */

/*-- Font --*/
.u-font-bold {
  font-weight: bold;
}
.u-font-size14 {
  font-size: 1.4rem;
}
.u-font-size18 {
  font-size: 1.8rem;
}
.u-text-al {
  text-align: left;
}
.u-text-ac {
  text-align: center;
}
.u-text-ar {
  text-align: right;
}
.u-text-underline {
  text-decoration: underline;
}
@media screen and (min-width: 48.0625em){
  .u-text-al--pc-ac {
    text-align: center;
  }
  .u-text-ac--pc-al {
    text-align: left;
  }
}

/*-- Margin --*/
.u-mb0 {
  margin-bottom: 0 !important;
}
.u-mb20 {
  margin-bottom: var(--spacing-20-10) !important;
}
.u-mb30 {
  margin-bottom: var(--spacing-30-20) !important;
}
.u-mb40 {
  margin-bottom: var(--spacing-40-30) !important;
}
.u-mb60 {
  margin-bottom: var(--spacing-60-40) !important;
}
.u-mt0 {
  margin-top: 0 !important;
}
.u-mt20 {
  margin-top: var(--spacing-20-10) !important;
}
.u-mt30 {
  margin-top: var(--spacing-30-20) !important;
}
.u-mt40 {
  margin-top: var(--spacing-40-30) !important;
}
.u-mt60 {
  margin-top: var(--spacing-60-40) !important;
}

/*-- Display none --*/
@media screen and (min-width: 48.0625em){
  .--nopc {
    display: none;
  }
}
@media screen and (max-width: 48.0625em){
  .--nosp {
    display: none;
  }
}