@charset "UTF-8";
/*! modern-css-reset */
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.6;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
h1, h2, h3, h4, h5 {
  font-weight: 500;
}

@font-face {
  font-family: "CenturyGothicB";
  font-style: normal;
  font-weight: 700;
  src: url("/wp-content/themes/karuizawa/assets/font/CenturyGothicB.woff2") format("woff2"), url("/wp-content/themes/karuizawa/assets/font/CenturyGothicB.woff") format("woff"), url("/wp-content/themes/karuizawa/assets/font/CenturyGothicB.ttf") format("truetype");
}
:root {
  /* Dimensions */
  --pagewidth: calc(100vw - 17px);
  --viewheight: 100vh;
}

@media print, screen and (min-width: 768px) {
  /* PC */
  :root {
    /* Dimensions */
    --khm-header-height: 80px;
    --khm-wall-width: 90%;
    --khm-max-wall-width: 1100px;
  }
}
@media screen and (max-width: 767px) {
  /* SP */
  :root {
    /* Dimensions */
    --khm-header-height: 60px;
    --khm-wall-width: 92%; /* 345 / 375 */
    --khm-max-wall-width: none;
  }
}
@media screen and (min-width: 783px) { /* WP Admin Bar */
  :root {
    /* Dimensions */
    --wp-admin-bar-height: 32px;
  }
}
@media screen and (max-width: 782px) { /* WP Admin Bar */
  :root {
    /* Dimensions */
    --wp-admin-bar-height: 46px;
  }
}
@media print { /* WP Admin Bar */
  :root {
    /* Dimensions */
    --wp-admin-bar-height: 0px;
  }
}
/*===================================
	共通レイアウト
=====================================*/
html,
body {
  width: 100%;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--khm-header-height);
}
html:has(body.admin-bar) { /* on Firefox, the layout.css.has-selector.enabled preference needs to be set true */
  scroll-padding-top: calc(var(--khm-header-height) + var(--wp-admin-bar-height));
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  color: #323232;
  background-color: #fff;
  margin: 0;
}

main {
  position: relative;
  display: block;
}

.content_wrap {
  padding-top: var(--khm-header-height);
}

@media print, screen and (min-width: 768px) {
  .main_wrap {
    margin-bottom: 115px;
  }
}
@media screen and (max-width: 767px) {
  .main_wrap {
    margin-bottom: 60px;
  }
}

.inner {
  max-width: calc(1100px + 8%);
  width: 100%;
  margin: auto;
  padding: 0 4%;
}
.inner::after {
  content: "";
  display: block;
  clear: both;
}

.youtube iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  display: block;
}

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

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.low_main_visual {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .low_main_visual {
    margin-bottom: 35px;
    padding-top: 23.4375%;
  }
}
@media screen and (max-width: 767px) {
  .low_main_visual {
    margin-bottom: 20px;
    padding-top: 33.3333%;
  }
}
.low_main_visual::before {
  position: absolute;
  content: "";
  background-color: #323232;
  opacity: 0.2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.low_main_visual__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  line-height: 1.4;
  z-index: 1;
}
@media print, screen and (min-width: 768px) {
  .low_main_visual__ttl {
    font-size: 2.875em;
  }
}
@media screen and (max-width: 767px) {
  .low_main_visual__ttl {
    font-size: 2.1rem;
  }
}

@media print, screen and (min-width: 768px) {
  .container:not(:last-child) {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 767px) {
  .container:not(:last-child) {
    margin-bottom: 50px;
  }
}

.container02:not(:last-child) {
  margin-bottom: 30px;
}

@media print, screen and (min-width: 768px) {
  #breadcrumbs {
    margin-bottom: 60px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  #breadcrumbs {
    margin-bottom: 30px;
    font-size: 1.2rem;
  }
}
#breadcrumbs a {
  text-decoration: underline;
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#breadcrumbs a:hover {
  opacity: 0.7;
}

#nav-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: auto;
}
@media print, screen and (min-width: 768px) {
  #nav-single {
    max-width: 360px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  #nav-single {
    max-width: 280px;
    font-size: 1.4rem;
  }
}
#nav-single a {
  text-decoration: underline;
  display: block;
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#nav-single a:hover {
  opacity: 0.7;
}
#nav-single .nav-previous, #nav-single .nav-next {
  width: 67px;
}
#nav-single .nav-previous a, #nav-single .nav-next a {
  position: relative;
}
#nav-single .nav-previous a::after, #nav-single .nav-next a::after {
  position: absolute;
  content: "";
  background-color: #323232;
  width: 10px;
  height: 14px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#nav-single .nav-previous a {
  padding-left: 20px;
}
#nav-single .nav-previous a::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  left: 0;
}
#nav-single .nav-next a {
  padding-right: 20px;
}
#nav-single .nav-next a::after {
  right: 0;
}

.bg_cmn__inner {
  position: fixed;
  z-index: -1;
  height: 100lvh;
  width: 100%;
  top: 0;
  left: 0;
}
.bg_cmn__tree, .bg_cmn__forest, .bg_cmn__run {
  position: absolute;
}
@media print, screen and (min-width: 768px) {
  .bg_cmn__tree {
    max-width: 380px;
    width: 28%;
    right: -2%;
    top: calc(80px + 2%);
  }
  .bg_cmn__forest {
    max-width: 629px;
    width: 47%;
    top: 80px;
    bottom: 0;
    margin: auto;
    left: -5%;
  }
  .bg_cmn__run {
    max-width: 600px;
    width: 45%;
    bottom: 1%;
    right: -4%;
  }
}
@media screen and (max-width: 767px) {
  .bg_cmn__tree {
    max-width: 162px;
    width: 43.2%;
    top: calc(60px + 2%);
    right: -4.8%;
  }
  .bg_cmn__forest {
    max-width: 268px;
    width: 71.4666%;
    top: 60px;
    bottom: 0;
    margin: auto;
    left: -8.2666%;
  }
  .bg_cmn__run {
    max-width: 256px;
    width: 68.2666%;
    bottom: 1%;
    right: -8.8%;
  }
}

a.btn {
  width: 100%;
  margin: auto;
  display: block;
  color: white;
  background-color: #18b7cd;
  text-align: center;
  border-radius: 100px;
  position: relative;
  line-height: 1.5;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media print, screen and (min-width: 768px) {
  a.btn {
    max-width: 310px;
    padding: 13px 40px;
  }
}
@media screen and (max-width: 767px) {
  a.btn {
    max-width: 290px;
    font-size: 1.4rem;
    padding: 9.5px 40px;
  }
}
a.btn::after {
  position: absolute;
  content: "";
  background-color: white;
  width: 10px;
  height: 14px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
a.btn__wht {
  background-color: unset;
  border: 1px solid white;
}
a.btn:hover {
  background-color: #6fb92c;
}
a.btn02 {
  width: 100%;
  margin: auto;
  display: block;
  color: #18b7cd;
  border: 1px solid #18b7cd;
  text-align: center;
  border-radius: 100px;
  line-height: 1.5;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media print, screen and (min-width: 768px) {
  a.btn02 {
    max-width: 316px;
    padding: 16px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  a.btn02 {
    max-width: 290px;
    font-size: 1.4rem;
    padding: 9px;
  }
}
a.btn02:hover {
  background-color: #6fb92c;
  color: white;
}
a.btn03 {
  width: 100%;
  margin: auto;
  display: block;
  color: white;
  background-color: #18b7cd;
  text-align: center;
  border-radius: 100px;
  line-height: 1.5;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media print, screen and (min-width: 768px) {
  a.btn03 {
    max-width: 316px;
    padding: 16px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  a.btn03 {
    max-width: 290px;
    font-size: 1.4rem;
    padding: 9px;
  }
}
a.btn03:hover {
  background-color: #6fb92c;
}
a.link {
  text-decoration: underline;
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
a.link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  a.link {
    font-size: 1.4rem;
  }
}

.ttl_cmn {
  text-align: center;
  line-height: 1.5;
  padding-bottom: 25px;
  position: relative;
  color: #6fb92c;
}
@media print, screen and (min-width: 768px) {
  .ttl_cmn {
    font-size: 3rem;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .ttl_cmn {
    font-size: 2rem;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
}
.ttl_cmn::after {
  position: absolute;
  content: "";
  background-color: #323232;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media print, screen and (min-width: 768px) {
  .ttl_cmn::after {
    width: 213px;
  }
}
@media screen and (max-width: 767px) {
  .ttl_cmn::after {
    width: 140px;
  }
}

.ttl_cmn02 {
  border-top: 3px solid #6fb92c;
  border-bottom: 1px solid #dbedca;
  color: #6fb92c;
  padding: 1.3em 0;
}
@media print, screen and (min-width: 768px) {
  .ttl_cmn02 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .ttl_cmn02 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}

.ttl_cmn03 {
  border-left: 2px solid #6fb92c;
  padding: 0.6em 0 0.6em 1em;
  color: #6fb92c;
}
@media print, screen and (min-width: 768px) {
  .ttl_cmn03 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .ttl_cmn03 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .tbl_cmn {
    font-size: 1.2rem;
    width: 100%;
  }
}
.tbl_cmn.ctr {
  text-align: center;
}
.tbl_cmn caption {
  text-align: left;
  margin-bottom: 0.5em;
}
@media print, screen and (min-width: 768px) {
  .tbl_cmn caption {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .tbl_cmn caption {
    font-size: 1.4rem;
  }
}
.tbl_cmn tr {
  background-color: #fff;
}
.tbl_cmn tr.bg_gray td {
  background-color: #f5f5f5;
}
.tbl_cmn th {
  border: 1px solid #c1c1c1;
  padding: 0.5em 1.5em;
  font-weight: 500;
  background-color: #d1f1f5;
}
.tbl_cmn td {
  border: 1px solid #c1c1c1;
  padding: 0.5em 1.5em;
}

.tbl_scroll_wrapper {
  position: relative;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .tbl_scroll_wrapper .tbl_cmn {
    width: auto;
    max-width: none;
  }
}
.tbl_scroll_wrapper .scroll-prompt {
  display: none;
  position: absolute;
  width: 120px;
  height: 80px;
  top: calc(50% - 40px);
  left: calc(50% - 60px);
}
.tbl_scroll_wrapper .scroll-prompt.show {
  display: block;
}

.mb1em {
  margin-bottom: 1em;
}

.mb2em {
  margin-bottom: 2em;
}

.mt1em {
  margin-top: 1em;
}

.txt_clr__blue {
  color: #18b7cd;
}

@media print, screen and (min-width: 768px) {
  .list_cmn {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .list_cmn {
    font-size: 1.4rem;
  }
}
.list_cmn__item {
  margin-left: 1.1em;
}

.list_cmn02 {
  counter-reset: list-counter;
}
@media print, screen and (min-width: 768px) {
  .list_cmn02 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .list_cmn02 {
    font-size: 1.4rem;
  }
}
.list_cmn02.digits02 .list_cmn02__item {
  padding-left: 2em;
}
.list_cmn02__item {
  counter-increment: list-counter;
  position: relative;
  padding-left: 1.1em;
}
.list_cmn02__item::before {
  content: counter(list-counter) ". ";
  position: absolute;
  left: 0;
}

.list_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 645px;
  margin: auto;
}
.list_btn__item {
  width: 48.2%;
}

.list_2columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin-bottom: -4%;
}
.list_2columns__item {
  width: 48%;
  margin-bottom: 4%;
}

.list_3columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin-bottom: -4%;
}
.list_3columns__item {
  width: 30.66%;
  margin-bottom: 4%;
}
.list_3columns__item:not(:nth-child(3n)) {
  margin-right: 4%;
}

.txt_ctr {
  text-align: center;
}

.txt_rgt {
  text-align: right;
}

.txt_lft {
  text-align: left;
}

@media print, screen and (min-width: 768px) {
  .font_18 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .font_18 {
    font-size: 1.4rem;
  }
}

.mark_ann {
  position: relative;
  padding-left: 1em;
}
.mark_ann::before {
  position: absolute;
  content: "※";
  left: 0;
  top: 0;
}

.map iframe {
  width: 100%;
  height: 100%;
}
@media print, screen and (min-width: 768px) {
  .map iframe {
    aspect-ratio: 11/6;
  }
}
@media screen and (max-width: 767px) {
  .map iframe {
    aspect-ratio: 1/1;
  }
}

/* 2024.11 KAZ: copied from the original CSS
-------------------------------------------------------------- */
/* Alignment */
.alignleft {
  float: left;
  margin-right: 1.625em;
  /* display: inline; */
}

.alignright {
  float: right;
  margin-left: 1.625em;
  /* display: inline; */
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.left {
  text-align: left;
  display: block;
}

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

.right {
  text-align: right;
  display: block;
}

td.right, th.right, td.center, th.center, td.left, th.left {
  display: table-cell;
}

li.right, li.right, li.center {
  display: list-item;
}

.middle {
  vertical-align: middle;
}

.imgonly {
  line-height: 0;
}

.imgonly a,
a.imgonly {
  display: inline-block;
}

.bold {
  font-weight: bold;
}

.clear {
  clear: both;
}

a.current img {
  opacity: 0.7;
}

.nomargin {
  margin: 0 !important;
}

.nopadding {
  padding: 0 !important;
}

.noborder {
  border: 0px !important;
}

.border {
  border: 1px solid gray;
}

.noclear {
  clear: none !important;
}

.nobackground {
  background: transparent none !important;
}

.nobr {
  white-space: nowrap;
}

@media print, screen and (min-width: 768px) {
  .sponly {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pconly {
    display: none !important;
  }
}

/*===================================
	ヘッダー
=====================================*/
.header {
  position: fixed;
  width: 100%;
  height: 80px;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 2.6%;
  background-color: #e9f4df;
  z-index: 9999;
}
.admin-bar .header {
  top: var(--wp-admin-bar-height);
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
}
@media print {
  .header {
    position: absolute;
  }
}
.header__l {
  width: 231px;
}
@media screen and (max-width: 767px) {
  .header__l {
    width: 177px;
  }
}
.header__r {
  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;
  height: 100%;
}
@media print, screen and (max-width: 1280px) {
  .header__r {
    width: calc(5.2% + 60px + 195px);
  }
}
@media screen and (max-width: 767px) {
  .header__r {
    width: auto;
  }
}
.header__ttl a {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header__ttl a:hover {
  opacity: 0.7;
}
.header__count {
  background-color: #18b7cd;
  color: white;
  width: 195px;
  height: 100%;
  text-align: center;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .header__count {
    width: 100%;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .header__count__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__count__txt {
  font-size: 1.4rem;
}
@media print, screen and (min-width: 768px) {
  .header__count__txt {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .header__count__txt {
    margin-right: 10px;
  }
}
.header__count__date {
  font-family: monospace;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 768px) {
  .header__count__date {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 767px) {
  .header__count__date {
    font-size: 1.8rem;
  }
}
.header__count__date span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  margin: 0 0.7em 0 0.2em;
}
@media screen and (max-width: 767px) {
  .header__count__date span {
    margin: 0 0.4em 0 0.1em;
  }
}

@media print, screen and (max-width: 1280px) {
  .global-nav {
    max-width: 305px;
    margin: auto;
  }
}
.global-nav__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 1281px) {
  .global-nav__wrap {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin: 0 25px 5px 0;
  }
}
@media print, screen and (max-width: 1280px) {
  .global-nav__wrap {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    margin-bottom: 15px;
  }
}
.global-nav__wrap__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 1281px) {
  .global-nav__wrap__list {
    font-size: 1.3rem;
  }
}
@media print, screen and (max-width: 1280px) {
  .global-nav__wrap__list {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
}
@media print, screen and (max-width: 1280px) {
  .global-nav__wrap__list__up {
    display: none;
  }
}
@media screen and (min-width: 1281px) {
  .global-nav__wrap__list__low {
    display: none;
  }
}
@media screen and (min-width: 1281px) {
  .global-nav__wrap__list__item {
    margin-right: 22px;
  }
}
@media print, screen and (max-width: 1280px) {
  .global-nav__wrap__list__item {
    margin: 0 10px;
  }
}
.global-nav__wrap__list__item a {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.global-nav__wrap__list__item a:hover {
  opacity: 0.7;
}
.global-nav__wrap__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 1281px) {
  .global-nav__wrap__sns-list {
    width: 119.5px; /* was 87px 2026.3 MAC */
  }
}
@media print, screen and (max-width: 1280px) {
  .global-nav__wrap__sns-list {
    width: 164px; /* was 130px 2026.3 MAC */
  }
}
@media screen and (min-width: 1281px) {
  .global-nav__wrap__sns-list__item {
    width: 22px;
  }
}
@media print, screen and (max-width: 1280px) {
  .global-nav__wrap__sns-list__item {
    width: 34px;
  }
}
.global-nav__wrap__sns-list__item a {
  display: block;
  overflow: hidden;
  border-radius: 50%;
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.global-nav__wrap__sns-list__item a:hover {
  opacity: 0.7;
}
.global-nav__list {
  font-size: 1.5rem;
}
@media screen and (min-width: 1281px) {
  .global-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media print, screen and (max-width: 1280px) {
  .global-nav__list {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1281px) {
  .global-nav__list__item {
    margin-right: 25px;
    position: relative;
  }
}
@media print, screen and (max-width: 1280px) {
  .global-nav__list__item {
    border-bottom: 1px solid #6fb92c;
  }
}
.global-nav__list__item a {
  display: block;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.global-nav__list__item a:hover {
  opacity: 0.7;
}
@media print, screen and (max-width: 1280px) {
  .global-nav__list__item a {
    padding: 15px 0;
  }
}
@media screen and (min-width: 1281px) {
  .global-nav__list__item > a {
    height: 39px;
  }
}
@media print, screen and (max-width: 1280px) {
  .global-nav__list__item > a.drp_point {
    position: relative;
  }
  .global-nav__list__item > a.drp_point::before {
    position: absolute;
    content: "";
    background-color: #6fb92c;
    width: 14px;
    height: 10px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .global-nav__list__item > a.drp_point.active::before {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.global-nav__list__item__drp {
  display: none;
  font-size: 1.4rem;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (min-width: 1281px) {
  .global-nav__list__item__drp {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    white-space: nowrap;
    text-align: center;
    background-color: #18b7cd;
    padding: 5px 0;
    color: white;
  }
}
@media print, screen and (max-width: 1280px) {
  .global-nav__list__item__drp {
    height: auto !important;
    padding-top: 0 !important;
    padding-bottom: 10px !important;
  }
}
.global-nav__list__item__drp.active {
  opacity: 1;
}
@media print, screen and (max-width: 1280px) {
  .global-nav__list__item__drp__item:not(:last-child) {
    margin-bottom: 2px;
  }
}
@media screen and (min-width: 1281px) {
  .global-nav__list__item__drp__item a {
    line-height: 30px;
    padding: 0 20px;
  }
}
@media print, screen and (max-width: 1280px) {
  .global-nav__list__item__drp__item a {
    background-color: #d4eac0;
    padding: 5px 10px;
  }
}

@media screen and (min-width: 1281px) {
  #header_overlay {
    width: calc(100% - 195px);
  }
}
@media print, screen and (max-width: 1280px) {
  #header_overlay {
    width: 100%;
    height: calc(100% - var(--khm-header-height));
    position: fixed;
    top: var(--khm-header-height);
    right: 0;
    padding: 80px 5%;
    overflow-y: scroll;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    visibility: hidden;
    background-color: #e9f4df;
  }
  #header_overlay.active {
    opacity: 1;
    visibility: visible;
  }
}
@media print, screen and (max-width: 1280px) {
  .admin-bar #header_overlay {
    height: calc(100% - var(--khm-header-height) - var(--wp-admin-bar-height));
    top: calc(var(--khm-header-height) + var(--wp-admin-bar-height));
  }
}
@media screen and (max-width: 767px) {
  #header_overlay {
    padding: 30px 5%;
  }
}
@media print {
  #header_overlay {
    position: absolute;
  }
}

#menu_trigger, #menu_trigger span {
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#menu_trigger {
  position: fixed;
  top: 10px;
  right: 2.6%;
  width: 60px;
  height: 60px;
  z-index: 3;
  background-color: #8cc756;
  cursor: pointer;
  border-radius: 50%;
}
.admin-bar #menu_trigger {
  top: calc(var(--wp-admin-bar-height) + 10px);
}
@media screen and (min-width: 1281px) {
  #menu_trigger {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #menu_trigger {
    width: 42px;
    height: 42px;
  }
}
@media print {
  #menu_trigger {
    position: absolute;
  }
}
#menu_trigger {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#menu_trigger:hover {
  opacity: 0.7;
}
#menu_trigger span {
  position: absolute;
  z-index: 4;
  left: 0;
  width: 30px;
  height: 4px;
  background: white;
  right: 0;
  margin: auto;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  #menu_trigger span {
    width: 20px;
    height: 2px;
  }
}
@media print, screen and (min-width: 768px) {
  #menu_trigger span:nth-of-type(1) {
    top: 23px;
  }
}
@media screen and (max-width: 767px) {
  #menu_trigger span:nth-of-type(1) {
    top: 17px;
  }
}
@media print, screen and (min-width: 768px) {
  #menu_trigger span:nth-of-type(2) {
    bottom: 23px;
  }
}
@media screen and (max-width: 767px) {
  #menu_trigger span:nth-of-type(2) {
    bottom: 17px;
  }
}
#menu_trigger.active span:nth-of-type(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media print, screen and (min-width: 768px) {
  #menu_trigger.active span:nth-of-type(1) {
    top: 28px;
  }
}
@media screen and (max-width: 767px) {
  #menu_trigger.active span:nth-of-type(1) {
    top: 20px;
  }
}
#menu_trigger.active span:nth-of-type(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media print, screen and (min-width: 768px) {
  #menu_trigger.active span:nth-of-type(2) {
    bottom: 28px;
  }
}
@media screen and (max-width: 767px) {
  #menu_trigger.active span:nth-of-type(2) {
    bottom: 20px;
  }
}

/*===================================
	フッター
=====================================*/
.fix_bnr {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
@media print, screen and (min-width: 768px) {
  .fix_bnr {
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .fix_bnr {
    display: none;
  }
}
@media print {
  .fix_bnr {
    display: none !important;
  }
}
.fix_bnr::before {
  position: absolute;
  content: "";
  background-color: #6fb92c;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.6;
  z-index: -1;
}
.fix_bnr__close {
  position: absolute;
}
@media print, screen and (min-width: 768px) {
  .fix_bnr__close {
    left: 20px;
    top: 20px;
    width: 22px;
    height: 22px;
  }
}
@media screen and (max-width: 767px) {
  .fix_bnr__close {
    left: 10px;
    top: 10px;
    width: 15px;
    height: 15px;
  }
}

.footer {
  position: relative;
  background-color: #8cc756;
  color: white;
}
@media print, screen and (min-width: 768px) {
  .footer {
    padding: 45px 0 70px;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 30px 0;
  }
}
.footer .pagetop {
  position: fixed;
  z-index: 9000;
  border-radius: 50%;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .footer .pagetop {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer .pagetop {
    width: 40px;
    height: 40px;
    bottom: 10px;
    right: 10px;
  }
}
.footer .pagetop {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.footer .pagetop:hover {
  opacity: 0.7;
  opacity: 0.7 !important;
}
@media print {
  .footer .pagetop {
    display: none !important;
  }
}
@media print, screen and (min-width: 768px) {
  .footer__wrap {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .footer__wrap {
    margin-bottom: 30px;
  }
}
.footer__bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
@media print, screen and (min-width: 768px) {
  .footer__bnr {
    margin-bottom: -1.5%;
  }
}
@media screen and (max-width: 767px) {
  .footer__bnr {
    margin-bottom: -4%;
  }
}
@media print, screen and (min-width: 768px) {
  .footer__bnr__item {
    width: 18.5%;
    margin: 0 0.75% 1.5%;
  }
}
@media screen and (max-width: 767px) {
  .footer__bnr__item {
    width: 46%;
    margin: 0 2% 4%;
  }
}
.footer__bnr__item a {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.footer__bnr__item a:hover {
  opacity: 0.7;
}
.footer__bnr__item a img {
  height: auto;
}
.footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.5;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .footer__link {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .footer__link {
    font-size: 1.4rem;
    margin-bottom: 30px;
    margin-inline: -0.7em;
  }
}
@media print, screen and (min-width: 768px) {
  .footer__link__item {
    padding: 0 1.5em;
  }
}
@media screen and (max-width: 767px) {
  .footer__link__item {
    padding: 0 0.7em;
  }
}
.footer__link__item:not(:last-child) {
  border-right: 1px solid white;
}
.footer__link__item a {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.footer__link__item a:hover {
  opacity: 0.7;
}
.footer__bnr2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  max-width: 490px;
}
@media print, screen and (min-width: 768px) {
  .footer__bnr2 {
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer__bnr2 {
    margin: 0 auto 20px;
  }
}
.footer__bnr2__item {
  width: 30.7%;
}
.footer__bnr2__item a {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.footer__bnr2__item a:hover {
  opacity: 0.7;
}
@media print, screen and (min-width: 768px) {
  .footer__bnr3 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer__bnr3 {
    margin-bottom: 20px;
  }
}
.footer__bnr3 img {
  margin-inline: auto;
}
@media print, screen and (min-width: 768px) {
  .footer__bnr3 img {
    width: 220px;
  }
}
@media screen and (max-width: 767px) {
  .footer__bnr3 img {
    width: 60%;
    max-width: 220px;
  }
}
.footer__company {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .footer__company {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .footer__company {
    margin-bottom: 30px;
  }
}
.footer__company__ttl {
  font-weight: bold;
  margin-bottom: 15px;
}
@media print, screen and (min-width: 768px) {
  .footer__company__ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__company__ttl {
    font-size: 1.6rem;
  }
}
.footer__company__txt {
  margin-bottom: 10px;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .footer__company__txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__company__txt {
    font-size: 1.2rem;
  }
}
.footer__privacy {
  margin-bottom: 1.5em;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .footer__privacy {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__privacy {
    font-size: 1.2rem;
  }
}
.footer__privacy a {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.footer__privacy a:hover {
  opacity: 0.7;
}
.footer__copy {
  text-align: center;
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  .footer__copy {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__copy {
    font-size: 1rem;
  }
}

/*===================================
	animation
=====================================*/
/*# sourceMappingURL=common.css.map */@charset "UTF-8";
@font-face {
  font-family: "CenturyGothicB";
  font-style: normal;
  font-weight: 700;
  src: url("/wp-content/themes/karuizawa/assets/font/CenturyGothicB.woff2") format("woff2"), url("/wp-content/themes/karuizawa/assets/font/CenturyGothicB.woff") format("woff"), url("/wp-content/themes/karuizawa/assets/font/CenturyGothicB.ttf") format("truetype");
}
/*===================================
	TOP
=====================================*/
.main_visual {
  margin-bottom: 35px;
}
.main_visual img {
  width: 100%;
}

@media print, screen and (min-width: 768px) {
  .top_detail {
    margin-bottom: 65px;
  }
}
@media screen and (max-width: 767px) {
  .top_detail {
    margin-bottom: 35px;
  }
}
.top_detail__ttl {
  text-align: center;
  color: #6fb92c;
  margin-bottom: 30px;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .top_detail__ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .top_detail__ttl {
    font-size: 1.6rem;
  }
}
.top_detail__list:not(.slick-initialized) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media print, screen and (min-width: 768px) {
  .top_detail__list .slick-list {
    margin-inline: -1.3636%;
  }
}
@media screen and (max-width: 767px) {
  .top_detail__list .slick-list {
    margin-inline: -2.3188%;
  }
}
@media print, screen and (min-width: 768px) {
  .top_detail__list .slick-slide {
    padding-inline: 1.3274%;
  }
}
@media screen and (max-width: 767px) {
  .top_detail__list .slick-slide {
    padding-inline: 1.108%;
  }
}
.top_detail__list__item {
  border: 2px solid #18b7cd;
  border-radius: 10px;
}
@media print, screen and (min-width: 768px) {
  .top_detail__list__item {
    padding: 15px 30px 20px;
  }
}
@media screen and (max-width: 767px) {
  .top_detail__list__item {
    padding: 15px;
  }
}
.top_detail__list:not(.slick-initialized) .top_detail__list__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media print, screen and (min-width: 768px) {
  .top_detail__list:not(.slick-initialized) .top_detail__list__item {
    width: 50%;
    margin-inline: 1.3274%;
  }
}
@media screen and (max-width: 767px) {
  .top_detail__list:not(.slick-initialized) .top_detail__list__item {
    width: 100%;
    margin-inline: 1.108%;
  }
}
.top_detail__list__item__ttl {
  color: #6fb92c;
  margin-bottom: 7px;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .top_detail__list__item__ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .top_detail__list__item__ttl {
    font-size: 1.6rem;
  }
}
.top_detail__list__item__ttl span {
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .top_detail__list__item__ttl span.mini {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .top_detail__list__item__ttl span.mini {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .top_detail__list__item__txt {
    font-size: 1.2rem;
  }
}
.top_detail__list__item__txt span {
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .top_detail__list__item__txt span {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .top_detail__list__item__txt span {
    font-size: 1.2rem;
  }
}
.top_detail__list + .slick-dots {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 2px;
  margin: 10px 0 0;
  line-height: 0;
}
#my-entry .top_detail__list + .slick-dots {
  margin-bottom: 10px;
}
.top_detail__list + .slick-dots li button {
  background-color: #999999;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  text-indent: -9999px;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: scale(0.3333);
          transform: scale(0.3333);
}
.top_detail__list + .slick-dots li.slick-active button {
  background-color: #333333;
}

.top_topics {
  margin-bottom: 50px;
}
.top_topics__ttl {
  text-align: center;
  font-family: "Oswald", sans-serif;
  color: #8cc756;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 768px) {
  .top_topics__ttl {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .top_topics__ttl {
    font-size: 3.6rem;
  }
}
.top_topics__list {
  max-width: 800px;
}
@media print, screen and (min-width: 768px) {
  .top_topics__list {
    margin: 0 auto 65px;
  }
}
@media screen and (max-width: 767px) {
  .top_topics__list {
    margin-bottom: 25px;
  }
}
.top_topics__list__item {
  border-bottom: 1px solid #989898;
  padding: 20px 10px;
}
@media print, screen and (min-width: 768px) {
  .top_topics__list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.top_topics__list__item__ttl {
  color: #6fb92c;
  line-height: 1.45;
}
@media print, screen and (min-width: 768px) {
  .top_topics__list__item__ttl {
    margin-right: 15px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .top_topics__list__item__ttl {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
@media print, screen and (min-width: 768px) {
  .top_topics__list__item a.btn {
    margin: 0;
  }
}

.top_youtube {
  max-width: 720px;
  margin: auto;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .top_youtube {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .top_youtube {
    font-size: 1.4rem;
  }
}
.top_youtube iframe {
  margin-bottom: 10px;
}

.top_news {
  background-color: #8cc756;
  color: white;
}
@media print, screen and (min-width: 768px) {
  .top_news {
    padding: 60px 0 70px;
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 767px) {
  .top_news {
    padding: 25px 0 28px;
    margin-bottom: 40px;
  }
}
@media print, screen and (min-width: 768px) {
  .top_news__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1060px;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .top_news__ttl {
    margin-bottom: 8px;
    text-align: center;
  }
}
.top_news__ttl__en {
  font-family: "Oswald", sans-serif;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 768px) {
  .top_news__ttl__en {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .top_news__ttl__en {
    font-size: 3.6rem;
  }
}
@media print, screen and (min-width: 768px) {
  .top_news__ttl__jp {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .top_news__ttl__jp {
    font-size: 1.4rem;
  }
}
.top_news__list {
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
  .top_news__list {
    font-size: 1.8rem;
    width: calc(90.9434% - 115px);
  }
}
@media screen and (max-width: 767px) {
  .top_news__list {
    margin-bottom: 35px;
    font-size: 1.4rem;
  }
}
.top_news__list__item:not(:last-child) {
  margin-bottom: 20px;
}
.top_news__list__item a {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.top_news__list__item a:hover {
  opacity: 0.7;
}
@media print, screen and (min-width: 768px) {
  .top_news__list__item a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
@media print, screen and (min-width: 768px) {
  .top_news__list__item__day {
    width: 115px;
  }
}
@media print, screen and (min-width: 768px) {
  .top_news__list__item__ttl {
    width: calc(100% - 115px);
  }
}
@media print, screen and (min-width: 768px) {
  .top_news a.btn {
    line-height: 1.26;
    font-size: 1.8rem;
  }
}

@media print, screen and (min-width: 768px) {
  .top_content {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .top_content {
    margin-bottom: 60px;
  }
}
@media print, screen and (min-width: 768px) {
  .top_content__inner {
    max-width: calc(1188px + 8%);
    width: 100%;
    margin: auto;
    padding: 0 4%;
  }
  .top_content__inner::after {
    content: "";
    display: block;
    clear: both;
  }
}

.top_slider {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .top_slider {
    padding: 0 32px;
  }
}
@media screen and (max-width: 767px) {
  .top_slider {
    padding: 0 5%;
  }
}
.top_slider__list:not(.slick-initialized) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .top_slider__list .slick-list {
    margin-inline: -2.381%;
  }
}
@media print, screen and (min-width: 768px) {
  .top_slider__list__item {
    padding-inline: 3.3333%;
  }
}
@media screen and (max-width: 767px) {
  .top_slider__list__item {
    padding-inline: 4.5454%;
  }
}
.top_slider__list:not(.slick-initialized) .top_slider__list__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media print, screen and (min-width: 768px) {
  .top_slider__list:not(.slick-initialized) .top_slider__list__item {
    width: 33.3333%;
  }
}
@media screen and (max-width: 767px) {
  .top_slider__list:not(.slick-initialized) .top_slider__list__item {
    width: 50%;
  }
}
.top_slider__list__item a {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: block;
}
.top_slider__list__item a:hover .top_slider__list__item__img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.top_slider__list__item__img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top_slider__list__item__ttl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  text-align: center;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .top_slider__list__item__ttl {
    font-size: 1.8rem;
    padding: 11.5px;
  }
}
@media screen and (max-width: 767px) {
  .top_slider__list__item__ttl {
    font-size: 1.2rem;
    padding: 3px;
  }
}
.top_slider__list__item__ttl::after {
  position: absolute;
  content: "";
  background-color: #18b7cd;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.8;
}
.top_slider .slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  z-index: 3;
  cursor: pointer;
  width: 32px;
  height: 32px;
}
.top_slider .slick-arrow.slick-disabled {
  opacity: 0;
}
@media (any-hover: hover) {
  .top_slider .slick-arrow:not(.slick-disabled):hover {
    opacity: 0.7;
  }
}
.top_slider .slick-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: 0;
}
.top_slider .slick-next {
  right: 0;
}

@media print, screen and (min-width: 768px) {
  .top_sns__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 828px;
    margin: auto;
  }
}
@media print, screen and (min-width: 768px) {
  .top_sns__list__item {
    width: 46%;
  }
}
@media screen and (max-width: 767px) {
  .top_sns__list__item:not(:last-child) {
    margin-bottom: 30px;
  }
}
.top_sns__list__item.fcb {
  color: #39599c;
}
.top_sns__list__item__ttl {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 10px;
}
.top_sns__list__item__ttl a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top_sns__list__item__ttl a img {
  width: 22px;
  margin-right: 10px;
}
.top_sns .fb_iframe_widget,
.top_sns .twitter-timeline {
  aspect-ratio: 1/1;
}
@media print, screen and (min-width: 768px) {
  .top_sns .fb_iframe_widget,
  .top_sns .twitter-timeline {
    overflow: hidden;
  }
}
.top_sns .fb_iframe_widget {
  width: 100%;
}
.top_sns .fb_iframe_widget span, .top_sns .fb_iframe_widget iframe {
  width: 100% !important;
}

/*===================================
	NEWS
=====================================*/
@media screen and (max-width: 767px) {
  .list_news {
    font-size: 1.4rem;
  }
}
.list_news__item:not(:last-child) {
  margin-bottom: 30px;
}
.list_news__item a {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.list_news__item a:hover {
  opacity: 0.7;
}
@media print, screen and (min-width: 768px) {
  .list_news__item a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
@media print, screen and (min-width: 768px) {
  .list_news__item__day {
    width: 115px;
  }
}
.list_news__item__ttl {
  text-decoration: underline;
}
@media print, screen and (min-width: 768px) {
  .list_news__item__ttl {
    width: calc(100% - 115px);
  }
}

@media print, screen and (min-width: 768px) {
  .news_post {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .news_post {
    margin-bottom: 50px;
  }
}
@media print, screen and (min-width: 768px) {
  .news_post__day {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .news_post__day {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
.news_post__ttl {
  color: #6fb92c;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .news_post__ttl {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .news_post__ttl {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .news_post__txt {
    font-size: 1.4rem;
  }
}
.news_post__txt img {
  margin-bottom: 1em;
  height: auto;
}
.news_post__txt p, .news_post__txt ol, .news_post__txt ul {
  margin-bottom: 1.5em;
}

/*===================================
	FAQ
=====================================*/
.faq_list__item {
  border-bottom: 1px solid #6fb92c;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.faq_list__item__q {
  color: #6fb92c;
  position: relative;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .faq_list__item__q {
    padding-left: 47px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .faq_list__item__q {
    padding-left: 42px;
  }
}
.faq_list__item__q::before {
  position: absolute;
  content: "Q";
  left: 0;
  top: -3px;
  color: white;
  background-color: #6fb92c;
  border-radius: 50%;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .faq_list__item__q::before {
    width: 37px;
    height: 37px;
    line-height: 37px;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 767px) {
  .faq_list__item__q::before {
    width: 33px;
    height: 33px;
    line-height: 33px;
    font-size: 1.8rem;
  }
}
.faq_list__item__a {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .faq_list__item__a {
    font-size: 1.4rem;
  }
}

/*===================================
	CORSE
=====================================*/
.course_map {
  border: 4px solid #d6d6d6;
  background-color: white;
}
@media print, screen and (min-width: 768px) {
  .course_map {
    padding: 60px 50px;
  }
}
@media screen and (max-width: 767px) {
  .course_map {
    padding: 10px;
  }
}

.course_youtube {
  max-width: 700px;
  margin: auto;
}

/*===================================
	POINT
=====================================*/
.point_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin-bottom: -2.6%;
}
.point_list__item {
  border: 2px solid #18b7cd;
  border-radius: 10px;
  position: relative;
  margin: 15px 0 2.6%;
}
@media print, screen and (min-width: 768px) {
  .point_list__item {
    width: 48.7%;
    padding: 20px 25px;
  }
}
@media screen and (max-width: 767px) {
  .point_list__item {
    padding: 10px 15px 15px;
  }
}
.point_list__item.wide {
  width: 100%;
}
.point_list__item__num {
  text-align: center;
  color: white;
  font-family: "CenturyGothicB", sans-serif;
  line-height: 0.9;
  position: absolute;
  left: 20px;
  z-index: 1;
}
@media print, screen and (min-width: 768px) {
  .point_list__item__num {
    width: 56px;
    font-size: 1.4rem;
    top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .point_list__item__num {
    width: 36px;
    font-size: 1rem;
    top: 12px;
  }
}
.point_list__item__num::before {
  position: absolute;
  content: "";
  background: url(/wp-content/themes/karuizawa/assets/img/index/icon_tree.svg) no-repeat center/100%;
  width: 100%;
  top: -12px;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}
@media print, screen and (min-width: 768px) {
  .point_list__item__num::before {
    height: 91px;
  }
}
@media screen and (max-width: 767px) {
  .point_list__item__num::before {
    height: 58px;
  }
}
.point_list__item__num span {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .point_list__item__num span {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 767px) {
  .point_list__item__num span {
    font-size: 1.4rem;
  }
}
.point_list__item__ttl {
  line-height: 1.6;
  color: #6fb92c;
}
@media print, screen and (min-width: 768px) {
  .point_list__item__ttl {
    font-size: 2.1rem;
    margin-left: 65px;
    min-height: 56px;
  }
}
@media screen and (max-width: 767px) {
  .point_list__item__ttl {
    font-size: 1.4rem;
    margin-left: 55px;
    min-height: 36px;
  }
}
.point_list__item__txt {
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .point_list__item__txt {
    font-size: 1.2rem;
  }
}

.goods_list {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .goods_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 1.4rem;
    margin: 15px 0 45px;
  }
}
@media screen and (max-width: 767px) {
  .goods_list {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .goods_list__item {
    width: 48%;
  }
}
@media print, screen and (min-width: 768px) {
  .goods_list__item:last-child {
    margin-top: 2%;
  }
}
@media screen and (max-width: 767px) {
  .goods_list__item:last-child {
    margin-top: 10px;
  }
}

.designer_pl {
  background-color: #e9f4df;
  padding: 15px 20px;
}
@media print, screen and (min-width: 768px) {
  .designer_pl {
    margin-bottom: 10px;
  }
}
.designer_pl__ttl {
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .designer_pl__ttl {
    font-size: 1.4rem;
  }
}
.designer_pl__txt {
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
}
@media print, screen and (min-width: 768px) {
  .designer_pl__txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .designer_pl__txt {
    font-size: 1.2rem;
  }
}

/*===================================
	OUTLINE
=====================================*/
.list_outline__item {
  border-bottom: 1px solid #6fb92c;
}
@media print, screen and (min-width: 768px) {
  .list_outline__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .list_outline__item {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
@media print, screen and (min-width: 768px) {
  .list_outline__item__l {
    width: 190px;
  }
}
.list_outline__item__l__ttl {
  color: #6fb92c;
}
@media print, screen and (min-width: 768px) {
  .list_outline__item__l__ttl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .list_outline__item__l__ttl {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .list_outline__item__r {
    font-size: 1.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .list_outline__item__r {
    width: calc(100% - 190px);
  }
}
.list_outline__item__r__dlist:not(:last-child) {
  margin-bottom: 20px;
}
.list_outline__item__r__dlist dt {
  margin-bottom: 5px;
}
@media print, screen and (min-width: 768px) {
  .list_outline__item__r__dlist dt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .list_outline__item__r__dlist dt {
    font-size: 1.4rem;
  }
}
.list_outline__item__r__list__item {
  padding-left: 1.5em;
  position: relative;
}
.list_outline__item__r__list__item::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}
@media print, screen and (min-width: 768px) {
  .list_outline__item__r__sc01 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .list_outline__item__r__sc01 {
    margin-bottom: 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .list_outline__item__r__sc02 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .list_outline__item__r__sc02 {
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .list_outline__item__r__sc03 {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .list_outline__item__r__sc03 {
    margin-bottom: 5px;
  }
}
@media print, screen and (min-width: 768px) {
  .list_outline__item__r__unn {
    color: #18b7cd;
  }
}
@media screen and (max-width: 767px) {
  .list_outline__item__r__unn {
    color: #6fb92c;
  }
}
@media screen and (max-width: 767px) {
  .list_outline__item__r .tbl_scroll_wrapper .tbl_cmn {
    width: 580px;
  }
}
@media screen and (max-width: 767px) {
  .list_outline__item__r .tbl_scroll_wrapper .tbl_cmn td {
    padding: 0.5em 1em;
  }
}

/*===================================
	ACCESS
=====================================*/
.access_note__box {
  border: 2px solid #6fb92c;
  border-radius: 10px;
  text-align: center;
  color: #18b7cd;
  font-weight: bold;
  margin-bottom: 25px;
}
@media print, screen and (min-width: 768px) {
  .access_note__box {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .access_note__box {
    padding: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .access_note__box__txt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .access_note__box__txt {
    font-size: 1.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .access_note__box__txt02 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .access_note__box__txt02 {
    font-size: 1.8rem;
  }
}
.access_note .list_cmn {
  margin-bottom: 40px;
}
.access_note .list_cmn__item {
  padding-left: 0.4em;
}

.access_route.access_parking .tbl_cmn {
  max-width: 910px;
}
.access_route .tbl_cmn {
  width: 100%;
  white-space: nowrap;
}
@media print, screen and (min-width: 768px) {
  .access_route .tbl_cmn {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .access_route .tbl_cmn {
    font-size: 1.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .access_route .txt_ctr {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .access_route .txt_ctr {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}
.access_route .txt_rgt, .access_route .txt_lft {
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .access_route .txt_rgt, .access_route .txt_lft {
    font-size: 1.4rem;
  }
}

.access_map {
  border: 1px solid #c1c1c1;
  max-width: 800px;
}
@media print, screen and (min-width: 768px) {
  .access_map {
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .access_map {
    margin: 30px auto 0;
  }
}

.parking_map {
  max-width: 800px;
}
@media print, screen and (min-width: 768px) {
  .parking_map {
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .parking_map {
    margin: 30px auto 0;
  }
}

/*===================================
	ENTRY
=====================================*/
.entry_recp__date {
  text-align: center;
  color: #18b7cd;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  letter-spacing: 1px;
  line-height: 1.5;
  margin-bottom: 5px;
}
@media print, screen and (min-width: 768px) {
  .entry_recp__date {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .entry_recp__date {
    font-size: 1.8rem;
  }
}
@media print, screen and (min-width: 768px) {
  .entry_recp__date span {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .entry_recp__date span {
    font-size: 3rem;
  }
}
.entry_recp__nn {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .entry_recp__nn {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .entry_recp__nn {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}
.entry_recp__txt {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .entry_recp__txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .entry_recp__txt02 {
    font-size: 1.2rem;
  }
}
.entry_recp a.btn {
  margin-bottom: 20px;
}
.entry_recp .top_detail__list {
  margin: 40px 0 10px;
}

.entry_met__list {
  max-width: 680px;
  margin: auto;
}
.entry_met__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media print, screen and (min-width: 768px) {
  .entry_met__list__item:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .entry_met__list__item:not(:last-child) {
    margin-bottom: 25px;
  }
}
@media print, screen and (min-width: 768px) {
  .entry_met__list__item:nth-child(3) .entry_met__list__item__ttl img {
    width: 65px;
  }
}
@media screen and (max-width: 767px) {
  .entry_met__list__item:nth-child(3) .entry_met__list__item__ttl img {
    width: 46px;
  }
}
@media print, screen and (min-width: 768px) {
  .entry_met__list__item__l {
    width: 43px;
  }
}
@media screen and (max-width: 767px) {
  .entry_met__list__item__l {
    width: 32px;
  }
}
@media print, screen and (min-width: 768px) {
  .entry_met__list__item__r {
    width: calc(97% - 43px);
  }
}
@media screen and (max-width: 767px) {
  .entry_met__list__item__r {
    width: calc(96% - 32px);
  }
}
.entry_met__list__item__num {
  background-color: #6fb92c;
  color: white;
  width: 100%;
  border-radius: 50%;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .entry_met__list__item__num {
    height: 43px;
    line-height: 43px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .entry_met__list__item__num {
    height: 32px;
    line-height: 32px;
    font-size: 1.6rem;
  }
}
.entry_met__list__item__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #6fb92c;
}
@media print, screen and (min-width: 768px) {
  .entry_met__list__item__ttl {
    font-size: 2.1rem;
    min-height: 48px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .entry_met__list__item__ttl {
    font-size: 1.6rem;
    min-height: 34px;
    margin-bottom: 5px;
  }
}
@media print, screen and (min-width: 768px) {
  .entry_met__list__item__ttl img {
    width: 49px;
    height: 48px;
    margin-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .entry_met__list__item__ttl img {
    width: 35px;
    height: 34px;
    margin-right: 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .entry_met__list__item__txt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .entry_met__list__item__txt {
    font-size: 1.4rem;
  }
}
.entry_met__list__item__txt02 {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .entry_met__list__item__txt02 {
    font-size: 1.2rem;
  }
}

.entry_notes__txt {
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .entry_notes__txt {
    font-size: 1.4rem;
  }
}
.entry_notes .list_cmn02 {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .entry_notes .list_cmn02 {
    font-size: 1.4rem;
  }
}

.entry_contact__txt {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .entry_contact__txt {
    font-size: 1.4rem;
  }
  .entry_contact__txt:not(:last-child) {
    margin-bottom: 8px;
  }
}

/*===================================
	UNDER CONSTRUCTION
=====================================*/
.underconstruction {
  padding: 50px 0 100px;
  color: #18b7cd;
  font-family: "Oswald", sans-serif;
  font-size: 3.2rem;
  text-align: center;
}

/*===================================
	GUEST
=====================================*/
@media print, screen and (min-width: 768px) {
  .guest_wrap .ttl_cmn {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .guest_wrap .ttl_cmn {
    margin-bottom: 40px;
    font-size: 1.8rem;
  }
}

@media print, screen and (min-width: 768px) {
  .list_guest__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media print, screen and (min-width: 768px) {
  .list_guest__item:not(:last-child) {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .list_guest__item:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media print, screen and (min-width: 768px) {
  .list_guest__item__l {
    width: 30.5%;
  }
}
@media screen and (max-width: 767px) {
  .list_guest__item__l {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .list_guest__item__r {
    width: 61.9%;
  }
}
@media print, screen and (min-width: 768px) {
  .list_guest__item__r__position {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .list_guest__item__r__position {
    font-size: 1.4rem;
  }
}
.list_guest__item__r__name {
  color: #6fb92c;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) {
  .list_guest__item__r__name {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 767px) {
  .list_guest__item__r__name {
    font-size: 1.6rem;
  }
}
@media print, screen and (min-width: 768px) {
  .list_guest__item__r__img {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .list_guest__item__r__img {
    float: right;
    width: 53.1%;
    padding: 0 0 3% 3%;
  }
}
@media print, screen and (min-width: 768px) {
  .list_guest__item__r__txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .list_guest__item__r__txt {
    font-size: 1.4rem;
  }
}

/*===================================
	SIGHTSEEING
=====================================*/
@media print, screen and (min-width: 768px) {
  .sightseeing_spot {
    margin-bottom: 80px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .sightseeing_spot .ttl_cmn {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .sightseeing_spot .ttl_cmn {
    font-size: 1.8rem;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.sightseeing_spot__txt {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .sightseeing_spot__txt {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .sightseeing_spot__txt {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .sightseeing_spot__list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sightseeing_spot__list__item:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse;
            flex-flow: row-reverse;
  }
}
@media print, screen and (min-width: 768px) {
  .sightseeing_spot__list__item:not(:last-child) {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .sightseeing_spot__list__item:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .sightseeing_spot__list__item__img {
    width: 47.8%;
  }
}
@media screen and (max-width: 767px) {
  .sightseeing_spot__list__item__img {
    margin-bottom: 15px;
  }
}
@media print, screen and (min-width: 768px) {
  .sightseeing_spot__list__item__content {
    width: 47.8%;
  }
}
.sightseeing_spot__list__item__content__ttl {
  color: #6fb92c;
  margin-bottom: 5px;
}
@media print, screen and (min-width: 768px) {
  .sightseeing_spot__list__item__content__ttl {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 767px) {
  .sightseeing_spot__list__item__content__txt {
    font-size: 1.4rem;
  }
}

@media print, screen and (min-width: 768px) {
  .sightseeing_info .ttl_cmn {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .sightseeing_info .ttl_cmn {
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 10px;
  }
}
.sightseeing_info__list {
  border-bottom: 1px solid #6fb92c;
}
.sightseeing_info__list__item {
  border-top: 1px solid #6fb92c;
}
.sightseeing_info__list__item a {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media print, screen and (min-width: 768px) {
  .sightseeing_info__list__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 26px 0;
  }
}
@media screen and (max-width: 767px) {
  .sightseeing_info__list__item a {
    display: block;
    padding: 10px 0;
    font-size: 1.4rem;
  }
}
.sightseeing_info__list__item a:hover {
  opacity: 0.7;
}
.sightseeing_info__list__item__ttl {
  color: #6fb92c;
  margin-right: 1.5em;
  white-space: nowrap;
}

/*===================================
	VOLUNTEER
=====================================*/
.volunteer_rct__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
@media print, screen and (min-width: 768px) {
  .volunteer_rct__list {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 767px) {
  .volunteer_rct__list {
    margin-bottom: 15px;
  }
}
.volunteer_rct__list__item {
  width: 25%;
}
.volunteer_rct__txt {
  color: #18b7cd;
  line-height: 2.4;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .volunteer_rct__txt {
    font-size: 2.1rem;
  }
}

.volunteer_guide__tbl {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .volunteer_guide__tbl {
    margin-top: -30px;
  }
}
@media screen and (max-width: 767px) {
  .volunteer_guide__tbl {
    margin-top: -20px;
  }
}
.volunteer_guide__tbl tr {
  border-bottom: 1px solid #6fb92c;
}
.volunteer_guide__tbl th {
  text-align: left;
  color: #6fb92c;
  font-weight: 500;
  vertical-align: top;
}
@media print, screen and (min-width: 768px) {
  .volunteer_guide__tbl th {
    width: 180px;
    padding: 30px 1.5em 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .volunteer_guide__tbl th {
    display: block;
    padding: 20px 0 5px;
    font-size: 1.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .volunteer_guide__tbl td {
    width: calc(100% - 180px);
    padding: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .volunteer_guide__tbl td {
    display: block;
    padding-bottom: 20px;
    font-size: 1.3rem;
  }
}
@media print, screen and (min-width: 768px) {
  .volunteer_guide__tbl td .list_cmn02 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .volunteer_guide__tbl td .list_cmn02 {
    font-size: 1.3rem;
  }
}
.volunteer_guide__tbl td .list_cmn02__item:not(:last-child) {
  margin-bottom: 15px;
}
@media print, screen and (min-width: 768px) {
  .volunteer_guide__tbl td .list_cmn02__item a.btn {
    margin: 10px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .volunteer_guide__tbl td .list_cmn02__item a.btn {
    margin: 10px auto 0;
  }
}
@media print, screen and (min-width: 768px) {
  .volunteer_guide__tbl td .list_cmn {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .volunteer_guide__tbl td .list_cmn {
    font-size: 1.3rem;
  }
}

@media print, screen and (min-width: 768px) {
  .volunteer_ac .ttl_cmn {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .volunteer_ac .ttl_cmn {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.volunteer_ac__txt {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .volunteer_ac__txt {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .volunteer_ac__txt {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .volunteer_ac__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
}
@media print, screen and (min-width: 768px) {
  .volunteer_ac__list__item {
    width: 47.8%;
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 767px) {
  .volunteer_ac__list__item {
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .volunteer_ac__list__item img {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .volunteer_ac__list__item img {
    margin-bottom: 10px;
  }
}
.volunteer_ac__list__item__ttl {
  color: #6fb92c;
  margin-bottom: 5px;
}
@media print, screen and (min-width: 768px) {
  .volunteer_ac__list__item__ttl {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 767px) {
  .volunteer_ac__list__item__txt {
    font-size: 1.4rem;
  }
}

.volunteer_flow__list {
  padding-bottom: 25px;
}
.volunteer_flow__list__item {
  border: 2px solid #18b7cd;
  border-radius: 10px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (min-width: 768px) {
  .volunteer_flow__list__item {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .volunteer_flow__list__item {
    padding: 15px 20px;
  }
}
.volunteer_flow__list__item:not(:last-child) {
  margin-bottom: 40px;
}
.volunteer_flow__list__item:not(:last-child)::after {
  position: absolute;
  content: "";
  width: 13px;
  height: 8px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #18b7cd;
  bottom: -26px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.volunteer_flow__list__item:last-child {
  background-color: #18b7cd;
  color: #fff;
}
.volunteer_flow__list__item:last-child .volunteer_flow__list__item__ttl {
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .volunteer_flow__list__item__l {
    width: 70%;
    min-height: 150px;
  }
}
@media screen and (max-width: 767px) {
  .volunteer_flow__list__item__l {
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .volunteer_flow__list__item__r {
    width: 29%;
  }
}
@media screen and (max-width: 767px) {
  .volunteer_flow__list__item__r {
    max-width: 280px;
    margin: auto;
    min-height: 70px;
    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;
  }
}
.volunteer_flow__list__item__ttl {
  color: #6fb92c;
  margin-bottom: 5px;
}
@media print, screen and (min-width: 768px) {
  .volunteer_flow__list__item__ttl {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 767px) {
  .volunteer_flow__list__item__txt {
    font-size: 1.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .volunteer_flow__list__item .list_cmn02 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .volunteer_flow__list__item .list_cmn02 {
    font-size: 1.4rem;
  }
}

.volunteer_trt__wrap {
  border: 2px solid #18b7cd;
  border-radius: 10px;
}
@media print, screen and (min-width: 768px) {
  .volunteer_trt__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 40px 20px;
  }
}
@media screen and (max-width: 767px) {
  .volunteer_trt__wrap {
    padding: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .volunteer_trt__wrap__l {
    width: 47.5%;
  }
}
@media screen and (max-width: 767px) {
  .volunteer_trt__wrap__l {
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .volunteer_trt__wrap__r {
    width: 50%;
  }
}
.volunteer_trt__wrap__ttl {
  color: #6fb92c;
  margin-bottom: 8px;
}
@media print, screen and (min-width: 768px) {
  .volunteer_trt__wrap__ttl {
    font-size: 2.1rem;
  }
}
.volunteer_trt__wrap .list_cmn {
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) {
  .volunteer_trt__wrap .list_cmn {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .volunteer_trt__wrap .list_cmn {
    font-size: 1.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .volunteer_trt__wrap__txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .volunteer_trt__wrap__txt {
    font-size: 1.3rem;
  }
}

@media print, screen and (min-width: 768px) {
  .volunteer_info .list_cmn {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .volunteer_info .list_cmn {
    font-size: 1.4rem;
  }
}

@media print, screen and (min-width: 768px) {
  .volunteer_form {
    margin-bottom: 85px !important;
  }
}
.volunteer_form__img {
  border: 1px solid #9e9f9f;
  max-width: 250px;
  width: 50%;
  margin: 0 auto 25px;
}

.volunteer_contact__txt {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .volunteer_contact__txt {
    font-size: 1.4rem;
  }
}

/*===================================
	STAY
=====================================*/
@media print, screen and (min-width: 768px) {
  .stay_exp {
    margin-bottom: 100px !important;
  }
}

@media print, screen and (min-width: 768px) {
  .stay_exp__txt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .stay_exp__txt {
    font-size: 1.4rem;
  }
}

.stay_date {
  text-align: center;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 768px) {
  .stay_date {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .stay_date {
    font-size: 1.4rem;
  }
}
.stay_date span {
  display: block;
  color: #18b7cd;
  margin-bottom: 5px;
}

@media print, screen and (min-width: 768px) {
  .list_stay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    margin-bottom: -60px;
  }
}
@media print, screen and (min-width: 768px) {
  .list_stay__item {
    width: 30%;
    margin-bottom: 70px;
  }
  .list_stay__item:not(:nth-child(3n)) {
    margin-right: 5%;
  }
}
@media screen and (max-width: 767px) {
  .list_stay__item {
    margin-bottom: 30px;
  }
}
.list_stay__item__img {
  margin-bottom: 19px; /* 2024.12 KAZ: was 15px */
}
.list_stay__item__ttl {
  color: #6fb92c;
  font-size: 1.8rem;
  line-height: 1.3333; /* 24px; 2024.12 KAZ */
  margin-bottom: 14px; /* 2024.12 KAZ: was 10px */
}
.list_stay__item__ttl a {
  text-decoration: underline !important;
}
.list_stay__item__txt {
  font-size: 1.4rem;
}
.list_stay__item__tbl {
  font-size: 1.4rem;
  color: #18b7cd;
}
.list_stay__item__tbl th {
  vertical-align: top;
  text-align: left;
  font-weight: 500;
  white-space: nowrap;
}
.list_stay__item__cmt {
  border-top: 1px solid #b4b4b5;
  border-bottom: 1px solid #b4b4b5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 7px 0;
  margin-top: 15px;
}
.list_stay__item__cmt dt {
  width: 52px;
  font-size: 1.1rem;
  background-color: #6fb92c;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  position: relative;
  padding: 4px 0;
  margin-bottom: 6px;
  letter-spacing: -0.05em;
}
.list_stay__item__cmt dt::after {
  position: absolute;
  content: "";
  clip-path: polygon(0 20%, 100% 100%, 80% 0);
  width: 10px;
  height: 8px;
  left: 60%;
  bottom: -6px;
  background-color: #6fb92c;
}
.list_stay__item__cmt dd {
  width: calc(100% - 65px);
  font-size: 1.4rem;
  margin: 2px 0 4px;
}

@media print, screen and (min-width: 768px) {
  .stay_map {
    margin-top: 160px;
  }
}

/*===================================
	TRAFFIC
=====================================*/
@media print, screen and (min-width: 768px) {
  .traffic_note {
    margin-bottom: 100px !important;
  }
}
.traffic_note__box {
  border: 2px solid #6fb92c;
  border-radius: 10px;
  text-align: center;
  color: #18b7cd;
  font-weight: bold;
  margin-bottom: 25px;
}
@media print, screen and (min-width: 768px) {
  .traffic_note__box {
    padding: 24px;
  }
}
@media screen and (max-width: 767px) {
  .traffic_note__box {
    padding: 20px;
  }
}
.traffic_note__box__txt {
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  letter-spacing: 1px;
}
@media print, screen and (min-width: 768px) {
  .traffic_note__box__txt {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .traffic_note__box__txt {
    font-size: 1.6rem;
  }
}

.traffic_map__img {
  border: 4px solid #d6d6d6;
}
@media print, screen and (min-width: 768px) {
  .traffic_map__img {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .traffic_map__img {
    margin-bottom: 15px;
  }
}
/*# sourceMappingURL=index.css.map *//* Common
----------------------------------------------- */
#service_intro {
	margin-bottom: 57px;
}
.service_note__box {
	border: 2px solid #6fb92c;
	border-radius: 10px;
	margin-top: 40px;
	margin-bottom: 37px;	/* 2026.1 KAZ */
	padding: 20px;
	text-align: center;
}
.service_note__box .item_ttl,
.orange_txt {	/* 2026.1 KAZ: was .service_note__box :is(.item_ttl, .orange_txt) */
	font-weight: bold;
}
.service_note__box .item_ttl {
	margin-bottom: 11px;	/* 2026.1 KAZ */
}
/* .service_note__box */ .orange_txt {
	color: #f29700;
}
.service_participate {	/* 2026.1 KAZ */
	text-align: center;
}
.service_participate .orange_txt {	/* 2026.1 KAZ */
	margin-bottom: 32px;
}
.service_participate .stay_exp__txt {	/* 2026.1 KAZ */
	margin-bottom: 21px;
}
.service_participate .btn_line a.btn {
}
#service_shops {
}
.service_category {
	display: inline-block;
	color: white;
	background-color: #6fb92c;
	font-size: 1.4rem;	/* 14px */
	text-align: center;
	font-weight: 600;
	border-radius: 15px;
	padding: 0 15px;
	margin-bottom: 3px;
}
.service_container .list_stay {
	margin-bottom: 0;
}
.service_container .list_stay__item__cmt {
	padding-bottom: 5px;
	margin-top: 23px;
	padding-top: 10px;
	margin-bottom: 10px;
}
.service_container .list_stay__item__cmt__ttl {
	background-color: transparent;
	padding-top: 8px;
	padding-left: 8px;
}
.service_container .list_stay__item__cmt__ttl::after {
	content: none;
}
.service_container .list_stay__item__cmt__txt {
	color: #18b7cd;
	font-weight: bold;
}
.list_stay__item__txt.details {
	margin-top: 20px;
}
.psp_logo_img img {
	margin: 0 auto;
}
.stay_exp__txt a {
	text-decoration: underline;
}
.grn_cat { /* MTL MAC 2026.4 */
	background-color: #6fb92c;
	color: #ffffff;
	display: inline-block;
	font-size: 1.4rem;
	border-radius: 15px;
	padding: 0px 15.5px;
	margin-bottom: 4px;
}
.perk_box { /* MTL MAC 2026.4 */
	display: flex;
	padding: 10px 5px 13px; /* was 18px 5px 13px*/
	justify-content: left;
/*	align-items: center; */
	border-top: 1px solid #b4b4b5;
	border-bottom: 1px solid #b4b4b5;
	gap: 16px;
}
.perk_box img { /* MTL MAC 2026.4 */
	height: 42px;
	margin-top: 8px;
}
.perk_box .perk_txt { /* MTL MAC 2026.4 */
	color: #18b7cd;
	font-size: 1.4rem;
	line-height: calc(24.5/14);
	align-self: flex-start;
}
.service_txt + .service_txt { /* MTL MAC 2026.4 */
	margin-top: 20px;
}
.service_txt { /* MTL MAC 2026.4 */
	font-size: 1.4rem;
	line-height: calc(24.5/14);
	font-weight: bold;
	margin-top: 10px;
}
.not_visible { /* MTL MAC 2026.4 */
	visibility: hidden;
}
#service_mid .service_mid_title { /* MTL MAC 2026.4 */
	border-top: #6fb92c 3px solid;
	border-bottom: #dbedca 1px solid;
	color: #6fb92c;
	font-size: 1.8rem;
	line-height: calc(31.5/18);
	padding: 25px 5px;
}
#service_mid .service_mid_2 { /* MTL MAC 2026.4 */
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	padding-top: 35px;
}
#service_mid .service_mid_2 img { /* MTL MAC 2026.4 */
	width: 240px;
}
#service_mid .service_mid_2 p { /* MTL MAC 2026.4 */
	font-weight: bold;
	font-size: 1.8rem;
	line-height: calc(31.5/18);
}
.service_location .list_stay__item__ttl { /* MTL MAC 2026.4 */
	margin-bottom: 25px;
}
#service_mid .service_mid_2 p a {
	text-decoration: underline;
}
/* PC専用のスタイル
----------------------------------------------- */
@media print, screen and (min-width: 768px) {

	.service_note__box {
	}
	.service_note__box .item_ttl {
		font-size: 2.4rem;	/* 24px */
	}
	/* .service_note__box */ .orange_txt {
		font-size: 2.1rem;	/* 21px */
	}
	.service_note__box .stay_exp__txt {
		margin-bottom: 7px;	/* 2026.1 KAZ */
	}
	.service_container {
	}
	.service_container .list_stay__item {
		margin-bottom: 35px;
	}
	#service_prince {
	}
	#service_prince .stay_exp__txt {
		margin-top: 40px;
		margin-bottom: 57px;
	}
}

/* Special Break Point */
@media print, screen and (max-width: 1120px) {
	.service_container .list_stay {
		gap: 0 5%;
	}
	.service_container .list_stay__item {
		width: 47.5%;
		min-width: 300px;
		margin-right: 0;
	}
}

/* =Print
----------------------------------------------- */
@media print {
}


/* Smartphone専用のスタイル
----------------------------------------------- */
@media screen and (max-width: 767px) {

	.service_note__box {
		padding: 20px 6px;	/* 2026.1 KAZ: was 20px 10px */
	}
	.service_note__box .item_ttl {
	}
	/* .service_note__box */ .orange_txt {
	}
	.service_participate .stay_exp__txt {	/* 2026.1 KAZ */
		margin-inline: -0.2em;
	}
	.service_container {
	}
	.service_container .list_stay__item {
		width: 100%;
	}
	#service_prince {
	}
	#service_prince .stay_exp__txt {
	}

}
