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

body {
  /* フォントの基本サイズを16pxに設定（基準幅1200px） */
  font-size: clamp(1rem, 1.33vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  text-align: justify;
  line-height: 1.5;
}
@media screen and (max-width: 519px) {
  body {
    /* フォントの基本サイズを14pxに設定（基準幅400px） */
    font-size: clamp(1rem, 3.5vw, 1.4rem);
  }
}

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

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

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

* {
  padding: 0;
  margin: 0;
}

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

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

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

a {
  background-color: transparent;
}

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

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

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

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

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

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

textarea {
  overflow: auto;
  resize: vertical;
}

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

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

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

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

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

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

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

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

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

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

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

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

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

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

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

[aria-controls] {
  cursor: pointer;
}

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

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

.drawer--open {
  overflow: hidden;
}

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

button:hover {
  opacity: 0.8;
}

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

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

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

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

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

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

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

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

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

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

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

/* layout
------------------------------------------------ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}
@media screen and (max-width: 519px) {
  .l-header {
    position: absolute;
  }
}

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

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

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

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

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

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

.l-main {
  padding-bottom: 3rem;
  background-color: #faf8f0;
  border-bottom: solid min(0.6rem, 0.5vw) #e5a300;
}

.l-main--page {
  margin-top: min(12.2rem, 10.17vw);
  padding-bottom: min(10rem, 8.33vw);
}
@media screen and (max-width: 519px) {
  .l-main--page {
    margin-top: min(8.04rem, 20.1vw);
    padding-bottom: min(8rem, 20vw);
  }
}

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

/* component
------------------------------------------------ */
.c-header {
  position: relative;
  width: 100%;
}

.c-header--page {
  padding: min(2rem, 1.67vw) min(2.8rem, 2.33vw);
  background-image: url(../images/common/bg_header.png);
  background-size: cover;
  background-position: center top;
  border-bottom: min(0.5rem, 0.42vw) solid #e5a300;
}
@media screen and (max-width: 519px) {
  .c-header--page {
    padding: min(1rem, 2.5vw);
    border-width: min(0.5rem, 1.25vw);
  }
}

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

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

.c-header__logo--page {
  margin: 0;
  width: min(28.2rem, 23.5vw) !important;
}
@media screen and (max-width: 519px) {
  .c-header__logo--page {
    width: 45vw !important;
  }
}

.c-header__catch {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  font-size: clamp(1rem, 1.83vw, 2.2rem);
  font-weight: 600;
  letter-spacing: min(0.3rem, 0.25vw);
}
@media screen and (max-width: 519px) {
  .c-header__catch {
    position: initial;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    font-size: 1em;
  }
}

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

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

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

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

.c-header__hamburger--open {
  right: calc(min(33rem, 27.5vw) + min(2.2rem, 1.9vw));
}
@media screen and (max-width: 519px) {
  .c-header__hamburger--open {
    right: 1.7rem;
  }
}
.c-header__hamburger--open .c-header__hamburger-border--top {
  top: calc(50% - 7.5px + 7.5px);
  top: calc(50% - min(0.75rem, 1.875vw) + min(0.75rem, 1.875vw));
  -webkit-transform: translate(-50%, 0) rotate(-225deg);
          transform: translate(-50%, 0) rotate(-225deg);
}
.c-header__hamburger--open .c-header__hamburger-border--middle {
  opacity: 0;
}
.c-header__hamburger--open .c-header__hamburger-border--bottom {
  top: calc(50% + 7.5px - 7.5px);
  top: calc(50% + min(0.75rem, 1.875vw) - min(0.75rem, 1.875vw));
  -webkit-transform: translate(-50%, 0) rotate(225deg);
          transform: translate(-50%, 0) rotate(225deg);
}

.c-header__drawer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.7s ease 0;
  transition: all 0.7s ease 0;
}
@media screen and (max-width: 519px) {
  .c-header__drawer-modal {
    display: none;
  }
}

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

.c-header__drawer {
  position: fixed;
  top: 0;
  right: min(-33rem, -27.5vw);
  z-index: 40;
  padding: min(3rem, 2.6vw);
  width: min(33rem, 27.5vw);
  height: 100vh;
  height: 100lvh;
  color: white;
  text-align: center;
  background-color: #e5a300;
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
  overflow: hidden scroll;
}
@media screen and (max-width: 519px) {
  .c-header__drawer {
    left: 0;
    right: auto;
    padding: min(3rem, 8vw) min(1rem, 2.67vw);
    width: 100vw;
    opacity: 0;
    visibility: hidden;
  }
}
.c-header__drawer::-webkit-scrollbar {
  width: 0.5rem;
  width: min(0.5rem, 1.25vw);
}
.c-header__drawer::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.c-header__drawer::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
}

.c-header__drawer--open {
  right: 0;
}
@media screen and (max-width: 519px) {
  .c-header__drawer--open {
    right: auto;
    opacity: 1;
    visibility: visible;
  }
}

.c-header__drawer-menus {
  font-size: 1.357em;
  font-weight: 600;
}
@media screen and (max-width: 519px) {
  .c-header__drawer-menus {
    font-size: 1.5em;
  }
}

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

.c-info {
  width: 100%;
}

.c-info__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(2rem, 1.67vw);
  margin: min(3rem, 2.5vw) auto 0;
}
@media screen and (max-width: 519px) {
  .c-info__cards {
    margin-top: min(2.5rem, 6.67vw);
  }
}

.c-info__card {
  padding: min(2.5rem, 2.08vw) min(3rem, 2.5vw) min(2rem, 1.67vw);
  width: calc(33.333% - min(4rem, 3.33vw) / 3);
  border: solid min(0.3rem, 0.25vw) #e5a300;
  border-radius: min(1rem, 0.83vw);
  background-color: #fff;
}
@media screen and (max-width: 519px) {
  .c-info__card {
    margin: 0 min(0.8rem, 2.13vw);
    padding: min(1.5rem, 4vw) min(2rem, 5.33vw);
    border-width: min(0.3rem, 0.8vw);
    border-radius: min(1rem, 2.67vw);
  }
}

.c-info__img {
  aspect-ratio: 95/65;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-info__title {
  margin-top: min(1rem, 0.83vw);
  font-weight: 500;
}
@media screen and (max-width: 519px) {
  .c-info__title {
    margin-top: min(1rem, 2.67vw);
  }
}

.c-info__date {
  display: block;
  margin-top: min(1rem, 0.83vw);
  text-align: center;
  font-weight: 600;
}

.c-head02 {
  margin: min(4rem, 3.33vw) auto 0;
  padding: 0 min(1rem, 0.83vw) min(0.5rem, 0.42vw);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: min(40rem, 33.33vw);
  color: #e5a300;
  font-size: 2em;
  font-weight: 600;
  text-align: center;
  letter-spacing: min(0.7rem, 0.58vw);
  border-bottom: solid min(0.6rem, 0.5vw) #e5a300;
}
@media screen and (max-width: 519px) {
  .c-head02 {
    font-size: 1.5em;
    width: 70%;
    border-width: 0.3rem;
    letter-spacing: 0.5rem;
  }
}

.c-main--page {
  padding-top: 0.1px;
}
@media screen and (max-width: 519px) {
  .c-main--page {
    padding-top: min(1rem, 2.5vw);
  }
}

.c-main__info {
  margin-top: min(3rem, 2.5vw);
  padding: min(1rem, 0.833333vw);
  width: 100%;
  color: #4c9c63;
  font-weight: bold;
  font-size: 1.3em;
  letter-spacing: min(0.1rem, 0.083333vw);
  text-align: center;
  background-color: #fff;
  border: solid min(0.5rem, 0.416667vw) #e5a300;
  border-radius: min(10rem, 8.333333vw);
}
@media screen and (max-width: 519px) {
  .c-main__info {
    margin-top: min(2rem, 5.33vw);
    padding: min(1.3rem, 3.47vw) min(1rem, 2.67vw);
    font-size: 1.05em;
    border-width: min(0.4rem, 1.07vw);
    border-radius: min(1rem, 2.67vw);
  }
}

.c-main__container {
  margin-top: min(3rem, 2.5vw);
}
@media screen and (max-width: 519px) {
  .c-main__container {
    margin-top: min(2rem, 5.33vw);
  }
}

.c-main__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: min(1.5rem, 1.25vw);
}
@media screen and (max-width: 519px) {
  .c-main__tabs {
    gap: min(0.8rem, 2.13vw);
  }
}

.c-main__tab {
  position: relative;
  padding: min(2.5rem, 2.083333vw) min(4rem, 3.333333vw) min(2.5rem, 2.083333vw) min(4rem, 3.333333vw);
  width: 30%;
  color: white;
  font-weight: 500;
  text-align: left;
  background-color: #4c9c63;
  border-top-left-radius: min(1.5rem, 1.25vw);
  border-top-right-radius: min(1.5rem, 1.25vw);
}
@media screen and (max-width: 519px) {
  .c-main__tab {
    padding: min(1.5rem, 4vw);
    width: calc(50% - min(0.8rem, 2.13vw) / 2);
    border-top-left-radius: min(1rem, 2.67vw);
    border-top-right-radius: min(1rem, 2.67vw);
  }
}
.c-main__tab:hover {
  opacity: 1;
}
.c-main__tab::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: min(0.2rem, 0.166667vw);
  right: min(1rem, 0.833333vw);
  aspect-ratio: 22/27;
  width: auto;
  height: 87%;
  background-image: url(../images/common/human_01.png);
  background-size: contain;
}
.c-main__tab h2 {
  -webkit-filter: drop-shadow(0 -1px 3px rgba(0, 0, 0, 0.438));
          filter: drop-shadow(0 -1px 3px rgba(0, 0, 0, 0.438));
}
@media screen and (max-width: 519px) {
  .c-main__tab h2 {
    font-size: 1em;
  }
}

.c-main__tab--business {
  background-color: #3ba7d8;
}
.c-main__tab--business::after {
  aspect-ratio: 25/29;
  background-image: url(../images/common/human_02.png);
}

.c-main__content {
  display: block;
  padding: min(4rem, 3.333333vw);
  border-radius: min(1.5rem, 1.25vw);
  background-color: #4c9c63;
}
@media screen and (max-width: 519px) {
  .c-main__content {
    padding: min(3rem, 7.5vw) min(1rem, 2.5vw) min(3rem, 7.5vw);
    border-radius: 0;
  }
}

.c-main__content--business {
  display: none;
  background-color: #3ba7d8;
}

.c-main__content--active {
  display: block;
}

.c-main__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(2.5rem, 2.083333vw);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 519px) {
  .c-main__wrap {
    gap: min(1rem, 2.67vw);
  }
}

.c-main__wrap--page {
  margin-top: min(3rem, 2.5vw);
}

.c-main__btn {
  position: relative;
  padding: min(2rem, 1.666667vw) min(3rem, 2.5vw) min(3.5rem, 2.916667vw);
  aspect-ratio: 517/146;
  width: calc(50% - min(2.5rem, 2.083333vw) / 2);
  height: auto;
  color: #4c9c63;
  font-weight: 900;
  font-size: 1.8em;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #fff;
  border: solid min(0.3rem, 0.25vw) #e5a300;
  border-radius: min(0.5rem, 0.416667vw);
  background-image: url(../images/top/btnbg_map.png);
  background-size: auto 100%;
  background-position: right center;
}
@media screen and (max-width: 519px) {
  .c-main__btn {
    padding: min(1.7rem, 4.53vw) min(2.5rem, 6.67vw) min(2.5rem, 6.67vw);
    aspect-ratio: auto;
    width: 100%;
    min-height: min(11.3rem, 30.13vw);
    font-size: 1.7em;
    border-radius: min(0.5rem, 1.33vw);
    border-width: min(0.3rem, 0.8vw);
  }
}
.c-main__btn::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: min(0.8rem, 0.666667vw);
  left: min(0.8rem, 0.666667vw);
  width: calc(100% - min(1.6rem, 1.333333vw));
  height: min(0.5rem, 0.416667vw);
  background-color: #e5a300;
}
@media screen and (max-width: 519px) {
  .c-main__btn::before {
    bottom: min(0.5rem, 1.33vw);
    left: min(0.5rem, 1.33vw);
    width: calc(100% - min(1rem, 2.67vw));
    height: min(0.4rem, 1.07vw);
  }
}

.c-main__btn--spot {
  background-image: url(../images/top/btnbg_spot.png);
}

.c-main__btn--free {
  background-image: url(../images/top/btnbg_free.png);
}

.c-main__btn--support {
  background-image: url(../images/top/btnbg_support.png);
}

.c-main__btn--tourism {
  background-image: url(../images/top/btnbg_tourism.png);
}

.c-main__btn--case {
  background-image: url(../images/top/btnbg_case.png);
}

.c-main__btn--member {
  background-image: url(../images/top/btnbg_member.png);
}

.c-main__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-main__menu span {
  margin-right: min(2rem, 1.67vw);
  color: white;
  font-size: clamp(1rem, 1.83vw, 2.2rem);
  font-weight: 600;
}
@media screen and (max-width: 519px) {
  .c-main__menu span {
    font-size: 1.1em;
  }
}
.c-main__menu select {
  padding: min(0.7rem, 0.58vw) min(8rem, 6.67vw) min(0.7rem, 0.58vw) min(1.5rem, 1.25vw);
  color: #000;
  font-size: clamp(1rem, 1.5vw, 1.8rem);
  background-color: #fff;
  background-image: url(../images/common/icon_select.png);
  background-size: contain;
  background-position: right;
}
@media screen and (max-width: 519px) {
  .c-main__menu select {
    padding: 0.3rem 5rem 0.3rem 1rem;
    font-size: 1.1em;
  }
}
.c-main__menu select:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.c-main__main {
  margin-top: min(2rem, 1.67vw);
  padding: min(2rem, 1.67vw) min(2rem, 1.67vw) min(4rem, 3.33vw);
  background-color: #fff;
  border-top: min(1rem, 0.83vw) solid #e5a300;
}
@media screen and (max-width: 519px) {
  .c-main__main {
    margin-top: min(1.3rem, 3.25vw);
    padding: min(1rem, 2.5vw) min(1rem, 2.5vw) min(3rem, 7.5vw);
    border-width: min(0.7rem, 1.75vw);
  }
}

.c-yamatabi {
  display: block;
  margin: min(3rem, 2.5vw) auto 0;
  width: min(54rem, 45vw);
}
@media screen and (max-width: 519px) {
  .c-yamatabi {
    margin-top: min(3rem, 8vw);
    width: 85%;
  }
}

.c-footer {
  padding: min(4rem, 3.33vw) 0 min(3rem, 2.5vw);
}
@media screen and (max-width: 519px) {
  .c-footer {
    padding: min(1.7rem, 4.53vw) min(1rem, 2.67vw);
  }
}

.c-footer__content {
  position: relative;
  font-weight: 500;
}

.c-footer__name {
  font-size: 1.5em;
  font-weight: 700;
}
@media screen and (max-width: 519px) {
  .c-footer__name {
    font-size: 1.4em;
  }
}

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

.c-footer__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: min(1.7rem, 1.42vw);
  line-height: 1.1;
}
@media screen and (max-width: 519px) {
  .c-footer__menus {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: min(1.5rem, 4vw) 0;
    margin-top: min(1.5rem, 4vw);
  }
}
.c-footer__menus a {
  padding: 0 min(0.7rem, 0.6vw);
  border-left: solid 1.5px #000;
}
@media screen and (max-width: 519px) {
  .c-footer__menus a {
    padding: 0 min(0.5rem, 1.33vw);
  }
}
@media screen and (max-width: 519px) {
  .c-footer__menus a:nth-child(3) {
    border-right: solid 1.5px #000;
  }
}
.c-footer__menus a:last-child {
  border-right: solid 1.5px #000;
}

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

.c-footer__top {
  position: absolute;
  bottom: 0;
  right: 0;
  width: min(4.7rem, 4.1vw);
}
@media screen and (max-width: 519px) {
  .c-footer__top {
    display: block;
    position: initial;
    margin: min(2rem, 5.33vw) auto 0;
    width: min(4rem, 10.67vw);
  }
}

.c-tourist {
  position: relative;
}

.c-tourist__head01 {
  position: relative;
  z-index: 1;
  padding-left: min(2rem, 1.67vw);
  color: #4c9c63;
  font-size: clamp(1rem, 3.67vw, 4.4rem);
  font-weight: 900;
  line-height: 1.3;
}
@media screen and (max-width: 519px) {
  .c-tourist__head01 {
    font-size: 1.85em;
  }
}

.c-tourist__illust {
  position: absolute;
  z-index: 0;
  top: min(0.4rem, 0.33vw);
  right: min(2rem, 1.67vw);
  width: 25%;
  max-height: min(16.5rem, 13.75vw);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right top;
     object-position: right top;
}
@media screen and (max-width: 519px) {
  .c-tourist__illust {
    width: 45%;
    max-height: min(8rem, 20vw);
  }
}

.c-tourist__main-img {
  margin-top: min(4rem, 3.33vw);
  width: 100%;
}
@media screen and (max-width: 519px) {
  .c-tourist__main-img {
    margin-top: min(2rem, 5vw);
  }
}

.c-tourist__body {
  padding: 0 min(1rem, 0.83vw) min(5rem, 4.17vw);
  line-height: 1.7;
}
@media screen and (max-width: 519px) {
  .c-tourist__body {
    font-size: clamp(1rem, 4vw, 1.6rem);
  }
}
.c-tourist__body h2 {
  margin-top: min(2rem, 1.67vw);
  font-size: 1.4em;
}
@media screen and (max-width: 519px) {
  .c-tourist__body h2 {
    margin-top: min(2rem, 5vw);
  }
}
.c-tourist__body em {
  display: block;
  font-size: 1.3em;
  font-style: normal;
  color: #3d9cc9;
  font-weight: bold;
}
.c-tourist__body h3 {
  margin-top: min(2rem, 1.67vw);
  font-size: 1.13em;
  color: #4c9c63;
}
@media screen and (max-width: 519px) {
  .c-tourist__body h3 {
    margin-top: min(2rem, 5vw);
  }
}
.c-tourist__body ul {
  margin-top: min(1rem, 0.83vw);
  padding-bottom: min(1rem, 0.83vw);
  list-style: none;
}
@media screen and (max-width: 519px) {
  .c-tourist__body ul {
    margin-top: min(1rem, 2.5vw);
    padding-bottom: min(1rem, 2.5vw);
  }
}
.c-tourist__body ul li {
  position: relative;
  padding-left: min(1.8rem, 1.5vw);
  font-weight: bold;
}
@media screen and (max-width: 519px) {
  .c-tourist__body ul li {
    padding-left: min(1.8rem, 4.5vw);
  }
}
.c-tourist__body ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #3d9cc9;
}

.c-tourist__float-img {
  float: right;
  margin-left: min(4rem, 3.33vw);
  width: min(30rem, 25vw);
}
@media screen and (max-width: 519px) {
  .c-tourist__float-img {
    width: 35vw;
  }
}

.c-tourist__float-img--spot {
  width: min(19rem, 15.83vw);
}
@media screen and (max-width: 519px) {
  .c-tourist__float-img--spot {
    width: 35vw;
  }
}

.c-tourist__h31 {
  height: min(31rem, 25.83vw);
}
@media screen and (max-width: 519px) {
  .c-tourist__h31 {
    height: auto;
  }
}

.c-link {
  padding: min(2rem, 1.67vw) min(3rem, 2.5vw);
  border: 1px solid #4c9c63;
}
@media screen and (max-width: 519px) {
  .c-link {
    padding: min(1rem, 2.5vw);
    font-size: clamp(1rem, 3.75vw, 1.5rem);
  }
}

.c-link__name {
  position: relative;
  padding-left: min(1.8rem, 1.5vw);
  font-weight: bold;
}
@media screen and (max-width: 519px) {
  .c-link__name {
    padding-left: min(1.8rem, 4.5vw);
  }
}
.c-link__name::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #3d9cc9;
}

.c-link__url {
  padding-left: min(1.8rem, 1.5vw);
  color: #3d9cc9;
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 519px) {
  .c-link__url {
    padding-left: min(1.8rem, 4.5vw);
    max-width: 100%;
  }
}

.c-link__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: min(1.5rem, 1.25vw);
}
@media screen and (max-width: 519px) {
  .c-link__flex {
    display: block;
    margin-top: min(1rem, 2.5vw);
  }
}

.c-business {
  position: relative;
}

.c-business__head01 {
  position: relative;
  z-index: 1;
  color: #3d9cc9;
  font-size: 2.1em;
  font-weight: 900;
  line-height: 1.3;
}

.c-business__illust {
  position: absolute;
  z-index: 0;
  top: min(0.4rem, 0.33vw);
  right: min(0.4rem, 0.33vw);
  width: 25%;
  max-height: min(16.5rem, 13.75vw);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right top;
     object-position: right top;
}
@media screen and (max-width: 519px) {
  .c-business__illust {
    width: 45%;
    max-height: min(8rem, 20vw);
  }
}

.c-business__body {
  padding-bottom: min(4rem, 3.33vw);
  line-height: 1.7;
}

.c-business__body--mt {
  margin-top: min(7rem, 5.83vw);
}

.c-business__anchor {
  margin-top: max(-12.2rem, -10.17vw);
  padding-top: min(12.2rem, 10.17vw);
}

.c-business__head02 {
  margin-top: min(3rem, 2.5vw);
  color: #4c9c63;
  font-size: 1.25em;
}
@media screen and (max-width: 519px) {
  .c-business__head02 {
    margin-top: min(3rem, 7.5vw);
  }
}

.c-business__head03 {
  margin-top: min(3rem, 2.5vw);
  color: #3d9cc9;
  font-size: 1em;
}
@media screen and (max-width: 519px) {
  .c-business__head03 {
    margin-top: min(3rem, 7.5vw);
    font-size: 1.1em;
  }
}

.c-business__head04 {
  position: relative;
  padding-left: min(1.8rem, 1.5vw);
  padding-bottom: 0.5rem;
  font-size: 1.05em;
  font-weight: bold;
}
@media screen and (max-width: 519px) {
  .c-business__head04 {
    padding-left: min(1.8rem, 4.5vw);
  }
}
.c-business__head04::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #3d9cc9;
}

.c-business__2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(2rem, 1.67vw);
  margin-top: min(2rem, 1.67vw);
}
@media screen and (max-width: 519px) {
  .c-business__2col {
    gap: min(1rem, 2.5vw);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: min(1rem, 2.5vw);
  }
}
.c-business__2col img {
  width: 35%;
}
@media screen and (max-width: 519px) {
  .c-business__2col img {
    width: 100%;
  }
}
.c-business__2col > div,
.c-business__2col > p {
  width: calc(65% - min(2rem, 1.67vw));
}
@media screen and (max-width: 519px) {
  .c-business__2col > div,
  .c-business__2col > p {
    width: 100%;
  }
}

.c-business__ol {
  list-style: none;
  margin-top: min(2rem, 1.67vw);
}
@media screen and (max-width: 519px) {
  .c-business__ol {
    margin-top: min(1rem, 2.5vw);
  }
}
.c-business__ol li {
  position: relative;
  margin-top: min(0.5rem, 0.42vw);
  padding-left: min(2rem, 1.67vw);
  font-size: 1.05em;
  font-weight: bold;
}
@media screen and (max-width: 519px) {
  .c-business__ol li {
    padding-left: min(1.5rem, 3.75vw);
  }
}
.c-business__ol li::before {
  content: "①";
  position: absolute;
  left: 0;
}
.c-business__ol li:nth-child(2)::before {
  content: "②";
}
.c-business__ol li:nth-child(3)::before {
  content: "③";
}
.c-business__ol li:nth-child(4)::before {
  content: "④";
}

.c-case {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: clamp(2rem, 2.5vw, 3rem);
  border: 1px solid #3f9eca;
}
.c-case:first-child {
  margin-top: min(11vw, 11rem);
}
@media screen and (max-width: 519px) {
  .c-case:first-child {
    margin-top: min(3rem, 7.5vw);
  }
}

.c-case__img {
  aspect-ratio: 356/201;
  width: 35%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 519px) {
  .c-case__img {
    width: 100%;
  }
}

.c-case__body {
  padding: 2rem 3rem;
  width: 65%;
}
@media screen and (max-width: 519px) {
  .c-case__body {
    padding: 1rem 1rem 2rem;
    width: 100%;
  }
}

.c-case__head {
  font-size: 1.25em;
}

.c-case__catch {
  margin-top: 0.5rem;
  font-size: 1.2em;
  color: #4c9c63;
}

.c-case__btn {
  margin: 3rem 0 0 auto;
}
@media screen and (max-width: 519px) {
  .c-case__btn {
    margin: 2rem auto 0;
  }
}

.c-btn {
  display: block;
  padding: 0.4rem;
  width: 23rem;
  max-width: 100%;
  color: #3f9eca;
  font-size: 0.9em;
  font-weight: 500;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  border: 1px solid #3f9eca;
  border-radius: 5rem;
}
.c-btn:hover {
  color: white;
  background-color: #3f9eca;
}

.c-pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin: 4rem 0 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.9em;
}
.c-pagination .page-numbers {
  aspect-ratio: 1;
  width: 2.5rem;
  height: auto;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  border: 1px solid #3f9eca;
  line-height: 1;
}
.c-pagination .page-numbers:hover {
  color: white;
  background-color: #3f9eca;
  opacity: 1;
}
.c-pagination .next, .c-pagination .prev {
  position: absolute;
  left: calc(100% + min(1.6rem, 4vw));
  font-weight: bold;
}
.c-pagination .next:hover, .c-pagination .prev:hover {
  color: white;
  background-color: #3f9eca;
}
.c-pagination .prev {
  left: auto;
  right: calc(100% + min(1.6rem, 4vw));
}
.c-pagination .current {
  color: white;
  background-color: #3f9eca;
}
.c-pagination .dots {
  pointer-events: none;
  border: none;
}

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

.c-pagination--center {
  margin-left: auto;
  margin-right: auto;
}
.c-pagination--center .page-numbers {
  width: 3.5rem;
  color: #4c9c63;
  border-color: #4c9c63;
}
@media screen and (max-width: 519px) {
  .c-pagination--center .page-numbers {
    width: 3rem;
  }
}
.c-pagination--center .page-numbers:hover {
  color: white;
  background-color: #4c9c63;
}
.c-pagination--center .current {
  color: white;
  background-color: #4c9c63;
}

.c-detail__head01 {
  margin-top: 2rem;
  font-size: 1.4em;
}

.c-detail__head02 {
  margin-top: 0.5rem;
  font-size: 1.35em;
  color: #4c9c63;
}

.c-detail__head02--movie {
  margin-top: 3.5rem !important;
  font-size: 1.3em !important;
  color: #4c9c63 !important;
}

.c-detail__eyecatch {
  margin-top: 2rem;
  width: 100%;
}

.c-detail__content {
  line-height: 1.7;
}
.c-detail__content h3 {
  margin-top: 3rem;
  font-size: 1em;
  color: #3f9eca;
}
.c-detail__content h4 {
  position: relative;
  margin-top: 3rem;
  padding-left: min(1.8rem, 1.5vw);
  font-weight: inherit;
}
@media screen and (max-width: 519px) {
  .c-detail__content h4 {
    padding-left: min(1.8rem, 4.5vw);
  }
}
.c-detail__content h4::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #3d9cc9;
}
.c-detail__content ol {
  list-style: none;
}
.c-detail__content ol li {
  position: relative;
  padding-left: min(1.8rem, 1.5vw);
}
@media screen and (max-width: 519px) {
  .c-detail__content ol li {
    padding-left: min(1.8rem, 4.5vw);
  }
}
.c-detail__content ol li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #3d9cc9;
}

.c-detail__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
@media screen and (max-width: 519px) {
  .c-detail__images {
    gap: 0.5rem;
  }
}
.c-detail__images img {
  width: 30%;
}
@media screen and (max-width: 519px) {
  .c-detail__images img {
    width: calc(33.333% - 0.3333333333rem);
  }
}

.c-detail__back {
  margin: min(4rem, 3.33vw) auto 0;
  padding: 0.7rem;
  color: #3f9eca;
  background-color: #fff;
}
@media screen and (max-width: 519px) {
  .c-detail__back {
    margin-top: min(3rem, 7.5vw);
  }
}

.c-movie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: min(2rem, 1.67vw);
  border: 1px solid #3f9eca;
}
@media screen and (max-width: 519px) {
  .c-movie {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 1rem;
  }
}

.c-movie__body {
  padding: min(1.5rem, 1.25vw) min(2rem, 1.67vw);
  width: 65%;
}
@media screen and (max-width: 519px) {
  .c-movie__body {
    padding: 1rem;
    width: 100%;
  }
}

h4.c-movie__title {
  margin-top: 0;
  padding: 0 0 min(1.5rem, 1.25vw);
  color: #3f9eca;
  font-size: 1.25em;
  font-weight: bold;
}
h4.c-movie__title::before {
  display: none;
}

.c-movie__thumb {
  position: relative;
  width: 35%;
  padding: min(0.7rem, 0.58vw) min(0.7rem, 0.58vw) 0 0;
}
@media screen and (max-width: 519px) {
  .c-movie__thumb {
    padding: 0;
    width: 100%;
    -webkit-transform: translateY(3%);
            transform: translateY(3%);
  }
}
.c-movie__thumb iframe {
  aspect-ratio: 1.5;
  width: 100%;
  height: auto;
}

.c-page {
  padding-top: 1px;
}

.c-page__title {
  margin: min(4rem, 3.33vw) auto 0;
  padding-bottom: min(4rem, 3.33vw);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.8em;
  font-weight: bold;
  color: #4c9c63;
  letter-spacing: 0.5rem;
}
@media screen and (max-width: 519px) {
  .c-page__title {
    margin-top: min(3rem, 7.5vw);
    padding-bottom: min(2.5rem, 6.25vw);
    font-size: 1.7em;
    letter-spacing: min(0.3rem, 0.75vw);
  }
}

.c-page__container {
  padding: min(3rem, 2.5vw) min(4rem, 3.33vw) 5rem;
  background-color: #fff;
  border: 1px solid #4c9c63;
  border-radius: 1rem;
}
@media screen and (max-width: 519px) {
  .c-page__container {
    padding: 3rem 2rem;
  }
}

.c-single h1, .c-single h2, .c-single h3, .c-single h4, .c-single h5, .c-single h6, .c-single p, .c-single figure, .c-single ul, .c-single ol {
  margin-bottom: 2rem;
}
.c-single ul, .c-single ol {
  padding-left: 2rem;
}

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

.p-top-mv__title {
  position: absolute;
  top: min(12rem, 10vw);
  right: 2rem;
  z-index: 1;
  color: white;
  font-weight: 600;
  text-align: right;
  line-height: 2;
  letter-spacing: min(0.8rem, 0.66vw);
  -webkit-filter: drop-shadow(0 0 3px black);
          filter: drop-shadow(0 0 3px black);
}
@media screen and (max-width: 519px) {
  .p-top-mv__title {
    top: min(11rem, 29.33vw);
  }
}

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

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

.p-support {
  margin-top: min(12rem, 10vw);
}
@media screen and (max-width: 519px) {
  .p-support {
    margin-top: min(6rem, 15vw);
  }
}

.p-support__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: min(2rem, 1.67vw);
  margin-top: min(2rem, 1.67vw);
  padding: min(1.5rem, 1.25vw) min(1.5rem, 1.25vw) min(1.5rem, 1.25vw) min(2.2rem, 1.83vw);
  border: 1px solid #4c9c63;
}
@media screen and (max-width: 519px) {
  .p-support__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: min(2rem, 5vw);
    margin-top: min(2rem, 5vw);
    padding: min(2rem, 5vw);
  }
}

.p-support__body {
  padding-left: min(1.8rem, 1.5vw);
  max-width: min(61.7rem, 51.42vw);
}
@media screen and (max-width: 519px) {
  .p-support__body {
    padding-left: min(1.8rem, 4.5vw);
    max-width: none;
  }
}

.p-support__head02 {
  position: relative;
  padding-bottom: min(1.5rem, 1.25vw);
  font-size: clamp(1rem, 1.5vw, 1.8rem);
  font-weight: bold;
}
@media screen and (max-width: 519px) {
  .p-support__head02 {
    font-size: clamp(1rem, 4.25vw, 1.7rem);
  }
}
.p-support__head02::before {
  content: "▶";
  position: absolute;
  left: max(min(-1.8rem, -1.5vw), -1.5vw);
  color: #3d9cc9;
}
@media screen and (max-width: 519px) {
  .p-support__head02::before {
    left: max(min(-1.8rem, -4.5vw), -4.5vw);
  }
}

.p-support__head03 {
  margin-top: min(1.5rem, 1.25vw);
  color: #4c9c63;
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  font-weight: bold;
}
@media screen and (max-width: 519px) {
  .p-support__head03 {
    font-size: clamp(1rem, 3.75vw, 1.5rem);
  }
}

.p-support__url {
  color: #3d9cc9;
  font-size: clamp(1rem, 1.08vw, 1.3rem);
  font-weight: bold;
  word-break: break-all;
}
@media screen and (max-width: 519px) {
  .p-support__url {
    font-size: clamp(1rem, 3.25vw, 1.3rem);
  }
}

.p-support__info {
  font-size: clamp(1rem, 1vw, 1.2rem);
  line-height: 1.7;
}
@media screen and (max-width: 519px) {
  .p-support__info {
    font-size: clamp(1rem, 3.25vw, 1.3rem);
  }
}

.p-support__img {
  width: min(13.2rem, 11vw);
}
@media screen and (max-width: 519px) {
  .p-support__img {
    width: 100%;
  }
}

.p-tourism-index {
  margin-top: min(7rem, 5.83vw);
  padding: min(2rem, 1.67vw) min(3rem, 2.5vw);
  border: 1px solid #4c9c63;
  border-radius: min(1rem, 0.83vw);
}
@media screen and (max-width: 519px) {
  .p-tourism-index {
    padding: min(1.5rem, 3.75vw);
  }
}

.p-tourism-index__head {
  color: #3d9cc9;
  font-weight: 600;
  letter-spacing: 0.5rem;
}

.p-tourism-index__list {
  list-style: none;
  margin-top: min(2rem, 1.67vw);
}
@media screen and (max-width: 519px) {
  .p-tourism-index__list {
    margin-top: min(1rem, 2.5vw);
  }
}

.p-tourism-index__item {
  position: relative;
  margin-top: min(1rem, 0.83vw);
  padding-left: min(1.8rem, 1.5vw);
  font-weight: bold;
}
@media screen and (max-width: 519px) {
  .p-tourism-index__item {
    margin-top: min(1rem, 2.5vw);
    padding-left: min(1.8rem, 4.5vw);
  }
}
.p-tourism-index__item::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #3d9cc9;
}

.p-tourism-attempt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(1.5rem, 1.25vw);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: min(2rem, 1.67vw);
}
@media screen and (max-width: 519px) {
  .p-tourism-attempt {
    gap: min(1.5rem, 3.75vw);
  }
}

.p-tourism-attempt__card {
  padding: min(1rem, 0.83vw) min(1.5rem, 1.25vw) min(1.5rem, 1.25vw);
  width: calc(50% - min(1.5rem, 1.25vw) / 2);
  border: 1px solid #3d9cc9;
}
@media screen and (max-width: 519px) {
  .p-tourism-attempt__card {
    padding: min(1rem, 2.5vw);
    width: 100%;
  }
}

.p-tourism-attempt__head {
  color: #3d9cc9;
  font-size: 1.25em;
}

.p-tourism-attempt__head--bl {
  color: #000;
  font-size: 1em;
}

.p-tourism-attempt__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(1.5rem, 1.25vw);
  margin-top: min(1rem, 0.83vw);
}
@media screen and (max-width: 519px) {
  .p-tourism-attempt__body {
    margin-top: min(1rem, 2.5vw);
  }
}
.p-tourism-attempt__body img {
  width: 30%;
}
.p-tourism-attempt__body p {
  width: calc(70% - min(1.5rem, 1.25vw));
}

.p-tourism-feature {
  margin-top: min(2rem, 1.67vw);
  line-height: 2;
}

.p-archive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(2.5rem, 2.08vw);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 519px) {
  .p-archive {
    gap: min(1rem, 2.5vw);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-archive__card {
  padding: min(2.5rem, 2.08vw) min(3rem, 2.5vw);
  width: calc(33.333% - min(5rem, 4.17vw) / 3);
  background-color: #fff;
  border: 1px solid #4c9c63;
  border-radius: min(0.5rem, 0.42vw);
}
@media screen and (max-width: 519px) {
  .p-archive__card {
    width: calc(50% - min(1rem, 2.5vw) / 2);
  }
}

.p-archive__image img {
  width: 100%;
}

.p-archive__title {
  margin-top: min(1.5rem, 1.25vw);
  font-size: 1.1em;
  text-align: center;
}
@media screen and (max-width: 519px) {
  .p-archive__title {
    font-size: 1.05em;
  }
}

.p-archive__date {
  display: block;
  margin-top: min(0.5rem, 0.42vw);
  text-align: center;
}

.p-policy {
  line-height: 2;
}

.p-policy__head {
  position: relative;
  margin-top: 3rem;
  padding-left: min(1.8rem, 1.5vw);
  font-size: 1.1em;
  font-weight: bold;
}
@media screen and (max-width: 519px) {
  .p-policy__head {
    padding-left: min(1.8rem, 4.5vw);
  }
}
.p-policy__head:first-of-type {
  margin-top: 0;
}
.p-policy__head::before {
  content: "▼";
  position: absolute;
  left: 0;
  color: #4c9c63;
}

.p-policy__content {
  padding-left: 2rem;
}
.p-policy__content ul {
  padding-left: 2rem;
}

/* utility
------------------------------------------------ */
.u-mt0 {
  margin-top: 0 !important;
}

.u-c-green {
  color: #4c9c63 !important;
}

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