@charset "UTF-8";
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* settings: サイト全体の設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: 変数・ミックスイン */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __10: CSS変数（:root） */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
:root {
  --font-family: Hiragino Sans, Hiragino Kaku Gothic ProN, Helvetica Neue, Arial, Hiragino Sans, Noto Sans JP, sans-serif;
  --main-color: #009e41;
  --white: #fff;
  --black: #000000;
  --gray: #808080;
  --light_gray: #e7e7e7;
  --red: #e73828;
  --yellow: #fff23f;
  --blue: #569dd6;
  --light_green: #8dc21f;
  --pink: #eb6d73;
  --bg_color: #fffbda;
  --width: 2000;
  --font-size-xxx-large: clamp(
  	34 * 0.05rem,
  	calc(34 / var(--width)) * 100vw,
  	34 * 0.1rem
  );
  --font-size-xx-large: clamp(
  	32 * 0.05rem,
  	calc(32 / var(--width)) * 100vw,
  	32 * 0.1rem
  );
  --font-size-x-large: clamp(
  	30 * 0.05rem,
  	calc(30 / var(--width)) * 100vw,
  	30 * 0.1rem
  );
  --font-size-large: clamp(
  	28 * 0.05rem,
  	calc(28 / var(--width)) * 100vw,
  	28 * 0.1rem
  );
  --font-size-medium: clamp(
  	23 * 0.05rem,
  	calc(23 / var(--width)) * 100vw,
  	23 * 0.1rem
  );
  --font-size-small: clamp(
  	21 * 0.05rem,
  	calc(21 / var(--width)) * 100vw,
  	21 * 0.1rem
  );
  --font-size-x-small: clamp(
  	18 * 0.05rem,
  	calc(18 / var(--width)) * 100vw,
  	18 * 0.1rem
  );
  --font-size-xx-small: clamp(
  	14 * 0.05rem,
  	calc(14 / var(--width)) * 100vw,
  	14 * 0.1rem
  );
}

@media only screen and (max-width: 768px) {
  :root {
    --width: 750;
  }
}
/* __20: リセット・ベーススタイル */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
body,
html,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-family: inherit;
  -webkit-font-feature-settings: "palt" on;
  font-feature-settings: "palt" on;
  font-weight: inherit;
  font-style: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

body,
html {
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

:focus {
  outline: 0;
}

ol,
ul {
  list-style: none;
}

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

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

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

blockquote,
q {
  quotes: "" "";
}

a img {
  border: 0;
}

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

/* __30: html・body */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
html {
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  font-size: 62.5%;
}

html * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-feature-settings: "palt" on;
  font-feature-settings: "palt" on;
  word-break: break-all;
  line-break: strict;
}

::-webkit-scrollbar {
  display: none;
}

body {
  background-color: var(--white);
  color: var(--black);
  font-family: var(--font-family);
  font-size: 62.5%;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 2;
  font-size: 1.6rem;
  background: #fff;
}
body a {
  color: var(--black);
}
body a:hover, body a:active {
  color: var(--main-color);
}

@media only screen and (max-width: 960px) {
  body {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
body.open {
  overflow: hidden;
  -ms-touch-action: pinch-zoom;
  touch-action: pinch-zoom;
}

/* __40: レイアウト */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #wrapper {
    min-height: 100vh;
  }
}

main {
  width: 100%;
  margin: 0 auto;
}

/* __50: 画像・図 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  pointer-events: none;
}

figure {
  margin: 0;
}

a svg {
  fill: #1a1311;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  a:hover svg {
    fill: var(--yellow);
  }
}
/* __60: ユーティリティクラス */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
}

/* 768px以下で非表示・表示 */
@media only screen and (max-width: 768px) {
  .notb {
    display: none;
  }
}

.tb {
  display: none;
}
@media only screen and (max-width: 768px) {
  .tb {
    display: block;
  }
}

/* 599px以下で非表示・表示 */
@media only screen and (max-width: 599px) {
  .nosp {
    display: none;
  }
}

.nopc {
  display: none;
}
@media only screen and (max-width: 599px) {
  .nopc {
    display: block;
  }
}

/* アンカーリンク用 */
.anchor {
  display: block;
  pointer-events: none;
  padding-top: 100px;
  margin-top: -100px;
}
@media only screen and (max-width: 599px) {
  .anchor {
    padding-top: 60px;
    margin-top: -60px;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* settings: サイト全体の設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: 変数・ミックスイン */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __10: CSS変数（:root） */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
:root {
  --font-family: Hiragino Sans, Hiragino Kaku Gothic ProN, Helvetica Neue, Arial, Hiragino Sans, Noto Sans JP, sans-serif;
  --main-color: #009e41;
  --white: #fff;
  --black: #000000;
  --gray: #808080;
  --light_gray: #e7e7e7;
  --red: #e73828;
  --yellow: #fff23f;
  --blue: #569dd6;
  --light_green: #8dc21f;
  --pink: #eb6d73;
  --bg_color: #fffbda;
  --width: 2000;
  --font-size-xxx-large: clamp(
  	34 * 0.05rem,
  	calc(34 / var(--width)) * 100vw,
  	34 * 0.1rem
  );
  --font-size-xx-large: clamp(
  	32 * 0.05rem,
  	calc(32 / var(--width)) * 100vw,
  	32 * 0.1rem
  );
  --font-size-x-large: clamp(
  	30 * 0.05rem,
  	calc(30 / var(--width)) * 100vw,
  	30 * 0.1rem
  );
  --font-size-large: clamp(
  	28 * 0.05rem,
  	calc(28 / var(--width)) * 100vw,
  	28 * 0.1rem
  );
  --font-size-medium: clamp(
  	23 * 0.05rem,
  	calc(23 / var(--width)) * 100vw,
  	23 * 0.1rem
  );
  --font-size-small: clamp(
  	21 * 0.05rem,
  	calc(21 / var(--width)) * 100vw,
  	21 * 0.1rem
  );
  --font-size-x-small: clamp(
  	18 * 0.05rem,
  	calc(18 / var(--width)) * 100vw,
  	18 * 0.1rem
  );
  --font-size-xx-small: clamp(
  	14 * 0.05rem,
  	calc(14 / var(--width)) * 100vw,
  	14 * 0.1rem
  );
}

@media only screen and (max-width: 768px) {
  :root {
    --width: 750;
  }
}
/* __20: リセット・ベーススタイル */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
body,
html,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-family: inherit;
  -webkit-font-feature-settings: "palt" on;
  font-feature-settings: "palt" on;
  font-weight: inherit;
  font-style: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

body,
html {
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

:focus {
  outline: 0;
}

ol,
ul {
  list-style: none;
}

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

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

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

blockquote,
q {
  quotes: "" "";
}

a img {
  border: 0;
}

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

/* __30: html・body */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
html {
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  font-size: 62.5%;
}

html * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-feature-settings: "palt" on;
  font-feature-settings: "palt" on;
  word-break: break-all;
  line-break: strict;
}

::-webkit-scrollbar {
  display: none;
}

body {
  background-color: var(--white);
  color: var(--black);
  font-family: var(--font-family);
  font-size: 62.5%;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 2;
  font-size: 1.6rem;
  background: #fff;
}
body a {
  color: var(--black);
}
body a:hover, body a:active {
  color: var(--main-color);
}

@media only screen and (max-width: 960px) {
  body {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
body.open {
  overflow: hidden;
  -ms-touch-action: pinch-zoom;
  touch-action: pinch-zoom;
}

/* __40: レイアウト */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #wrapper {
    min-height: 100vh;
  }
}

main {
  width: 100%;
  margin: 0 auto;
}

/* __50: 画像・図 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  pointer-events: none;
}

figure {
  margin: 0;
}

a svg {
  fill: #1a1311;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  a:hover svg {
    fill: var(--yellow);
  }
}
/* __60: ユーティリティクラス */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
}

/* 768px以下で非表示・表示 */
@media only screen and (max-width: 768px) {
  .notb {
    display: none;
  }
}

.tb {
  display: none;
}
@media only screen and (max-width: 768px) {
  .tb {
    display: block;
  }
}

/* 599px以下で非表示・表示 */
@media only screen and (max-width: 599px) {
  .nosp {
    display: none;
  }
}

.nopc {
  display: none;
}
@media only screen and (max-width: 599px) {
  .nopc {
    display: block;
  }
}

/* アンカーリンク用 */
.anchor {
  display: block;
  pointer-events: none;
  padding-top: 100px;
  margin-top: -100px;
}
@media only screen and (max-width: 599px) {
  .anchor {
    padding-top: 60px;
    margin-top: -60px;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* header: ヘッダー専用スタイル */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.site-header {
  width: 100%;
  height: 100%;
  padding: clamp(2rem, 8vh, 8rem) 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-y: auto;
}
@media only screen and (max-width: 768px) {
  .site-header {
    display: block;
    padding: 0;
    height: auto;
    min-height: 0;
    width: 100%;
    overflow: visible;
  }
}

.site-header::-webkit-scrollbar {
  display: none;
}

/* 768px以下: ロゴ左・メニューボタン右の横並びヘッダー */
.site-header__mobile-bar {
  display: none;
}
@media only screen and (max-width: 768px) {
  .site-header__mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 1.4rem 2.8rem 1.4rem;
    background: #fff;
    width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    box-shadow: none;
    position: relative;
    z-index: 10;
    transition: box-shadow 0.3s ease;
  }
}

@media only screen and (max-width: 768px) {
  #header.is-scrolled .site-header__mobile-bar {
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
  }
}

@media only screen and (max-width: 768px) {
  .site-header__mobile-logo {
    width: 62%;
    max-width: 302px;
    display: block;
    line-height: 0;
  }
  .site-header__mobile-logo img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }
}

/* ロゴ */
.site-header__logo {
  position: fixed;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: calc((100% - 37.5vw) / 2);
  height: 100vh;
}
@media only screen and (min-width: 1920px) {
  .site-header__logo {
    width: calc((100vw - 750px) / 2);
  }
}
@media only screen and (max-width: 1024px) {
  .site-header__logo {
    width: calc((100vw - 375px) / 2);
  }
}
@media only screen and (max-width: 768px) {
  .site-header__logo {
    position: relative;
    display: block;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    height: auto;
  }
}
.site-header__logo .sitelogo {
  width: 80%;
  max-width: 286px;
}
@media only screen and (max-width: 768px) {
  .site-header__logo .sitelogo {
    width: 61.3333333333vw;
    max-width: 300px;
    margin: 0 auto;
    padding: 0 0 4rem;
  }
}
.site-header__logo .tagline {
  width: 80%;
  max-width: 320px;
}
.site-header__logo .tagline img {
  border-radius: 20px;
}
@media only screen and (max-width: 768px) {
  .site-header__logo h1 {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .site-header #site-h__logo {
    display: none;
  }
}

/* ドロワーナビゲーション */
.site-header__drawer-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  min-height: calc(var(--vh, 1vh) * 100);
  min-height: 100svh;
  overflow: hidden;
  z-index: 999;
  background: rgba(0, 158, 65, 0.8);
  pointer-events: none;
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.3s cubic-bezier(0.4, 0, 1, 1) 0.3s;
}
.site-header__drawer-nav .drawer-nav__inner {
  margin: 0 auto;
  position: relative;
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 1, 1) 0.3s;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0 5.3333333333vw;
  overflow-y: scroll;
  scrollbar-width: none;
}
@media only screen and (max-width: 768px) {
  .site-header__drawer-nav .drawer-nav__inner {
    padding: 5.3333333333vh 5.3333333333vw;
  }
}

.site-header__drawer-nav .drawer-nav__inner::-webkit-scrollbar {
  display: none;
}

/* グローバルナビ */
.site-header__global-nav {
  position: fixed;
  right: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: calc((100% - 32.5vw) / 2);
  height: 100vh;
}
@media only screen and (min-width: 1920px) {
  .site-header__global-nav {
    width: calc((100vw - 750px) / 2);
  }
}
@media only screen and (max-width: 1024px) {
  .site-header__global-nav {
    width: calc((100vw - 375px) / 2);
  }
}
@media only screen and (max-width: 768px) {
  .site-header__global-nav {
    display: none;
  }
}

.global-nav {
  width: 80%;
  max-width: 290px;
}
@media only screen and (max-width: 768px) {
  .global-nav {
    width: 100%;
    max-width: 100%;
    padding-bottom: 3rem;
  }
}
.global-nav li {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  margin-bottom: 20px;
  background-color: #fff;
}
.global-nav li .icon {
  width: 20px;
  height: 30px;
  margin-right: 10px;
}
.global-nav a {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #000;
  font-size: clamp(1.6rem, 1.65vw, 1.8rem);
  font-weight: 600;
  line-height: 1;
  transition: 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
}
@media only screen and (max-width: 768px) {
  .global-nav a {
    font-size: clamp(1.65rem, 4.4vw, 3.3rem);
  }
}
@media (hover: hover) and (pointer: fine) {
  .global-nav a:hover {
    color: var(--main-color);
  }
}

.qr-container {
  width: 74%;
  max-width: 255px;
  padding: 30px 0;
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .qr-container {
    margin: 0 auto;
    padding: 20px 0;
  }
}
.qr-container a {
  width: 60%;
  color: var(--main-color);
  font-size: clamp(1.6rem, 1.65vw, 1.8rem);
  text-align: center;
}
.qr-container a p {
  margin-top: 10px;
}

/* ドロワーオープン時 */
body.open .site-header__drawer-nav {
  pointer-events: all;
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.3s cubic-bezier(0.4, 0, 1, 1);
}
body.open .site-header__drawer-nav .drawer-nav__inner {
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 1, 1);
}

/* トグルボタン（768px以下でヘッダー右に配置） */
.drawer-nav-btn {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  position: fixed;
  z-index: 1000 !important;
  display: none;
  transition: 0.5s cubic-bezier(0.4, 0, 1, 1);
}
@media only screen and (max-width: 768px) {
  .drawer-nav-btn {
    width: 19%;
    max-width: 74px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
    background: var(--main-color);
    padding: 14px 0 12px 0;
    margin: 0;
  }
}
@media only screen and (max-width: 599px) {
  .drawer-nav-btn {
    width: 16%;
    max-width: 59px;
    padding: 11px 0 9px 0;
  }
}
.drawer-nav-btn .d-btn__toggle_box {
  width: 64%;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .drawer-nav-btn .d-btn__toggle_box {
    height: auto;
    aspect-ratio: auto;
  }
}
.drawer-nav-btn .d-btn__toggle_icon {
  position: relative;
  display: block;
  width: 100%;
  height: 30px;
}
@media only screen and (max-width: 599px) {
  .drawer-nav-btn .d-btn__toggle_icon {
    height: 24px;
  }
}
@media only screen and (max-width: 390px) {
  .drawer-nav-btn .d-btn__toggle_icon {
    height: 20px;
  }
}
.drawer-nav-btn .d-btn__toggle_line {
  will-change: transform;
  transform: rotateZ(0);
  transition: 0.5s cubic-bezier(0.4, 0, 1, 1);
  width: 100%;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.drawer-nav-btn .d-btn__toggle_line:nth-child(1) {
  top: 0;
}
.drawer-nav-btn .d-btn__toggle_line:nth-child(2) {
  top: 50%;
}
.drawer-nav-btn .d-btn__toggle_line:nth-child(3) {
  top: 100%;
}
.drawer-nav-btn .d-btn__label {
  font-size: 1.1rem;
  white-space: nowrap;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  display: block;
  position: relative;
  width: 100%;
  margin-top: 0.6rem;
  min-height: 1.2rem;
}
.drawer-nav-btn .d-btn__label span {
  will-change: transform;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 1, 1);
  display: block;
  width: 100%;
  color: #fff;
  text-transform: lowercase;
}
.drawer-nav-btn .d-btn__label .--open,
.drawer-nav-btn .d-btn__label .--close {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
.drawer-nav-btn .d-btn__label .--close {
  opacity: 0;
}

/* ハンバーガーメニュー open（×に変形） */
.drawer-nav-btn.open .d-btn__toggle_line:nth-child(1) {
  top: 11px;
  transform: rotateZ(45deg);
}
.drawer-nav-btn.open .d-btn__toggle_line:nth-child(2) {
  opacity: 0;
}
.drawer-nav-btn.open .d-btn__toggle_line:nth-child(3) {
  top: 11px;
  transform: rotateZ(-45deg);
}
.drawer-nav-btn.open .d-btn__label .--open {
  opacity: 0;
}
.drawer-nav-btn.open .d-btn__label .--close {
  opacity: 1;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* settings: サイト全体の設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __00: 変数・ミックスイン */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __10: CSS変数（:root） */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
:root {
  --font-family: Hiragino Sans, Hiragino Kaku Gothic ProN, Helvetica Neue, Arial, Hiragino Sans, Noto Sans JP, sans-serif;
  --main-color: #009e41;
  --white: #fff;
  --black: #000000;
  --gray: #808080;
  --light_gray: #e7e7e7;
  --red: #e73828;
  --yellow: #fff23f;
  --blue: #569dd6;
  --light_green: #8dc21f;
  --pink: #eb6d73;
  --bg_color: #fffbda;
  --width: 2000;
  --font-size-xxx-large: clamp(
  	34 * 0.05rem,
  	calc(34 / var(--width)) * 100vw,
  	34 * 0.1rem
  );
  --font-size-xx-large: clamp(
  	32 * 0.05rem,
  	calc(32 / var(--width)) * 100vw,
  	32 * 0.1rem
  );
  --font-size-x-large: clamp(
  	30 * 0.05rem,
  	calc(30 / var(--width)) * 100vw,
  	30 * 0.1rem
  );
  --font-size-large: clamp(
  	28 * 0.05rem,
  	calc(28 / var(--width)) * 100vw,
  	28 * 0.1rem
  );
  --font-size-medium: clamp(
  	23 * 0.05rem,
  	calc(23 / var(--width)) * 100vw,
  	23 * 0.1rem
  );
  --font-size-small: clamp(
  	21 * 0.05rem,
  	calc(21 / var(--width)) * 100vw,
  	21 * 0.1rem
  );
  --font-size-x-small: clamp(
  	18 * 0.05rem,
  	calc(18 / var(--width)) * 100vw,
  	18 * 0.1rem
  );
  --font-size-xx-small: clamp(
  	14 * 0.05rem,
  	calc(14 / var(--width)) * 100vw,
  	14 * 0.1rem
  );
}

@media only screen and (max-width: 768px) {
  :root {
    --width: 750;
  }
}
/* __20: リセット・ベーススタイル */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
body,
html,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-family: inherit;
  -webkit-font-feature-settings: "palt" on;
  font-feature-settings: "palt" on;
  font-weight: inherit;
  font-style: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

body,
html {
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

:focus {
  outline: 0;
}

ol,
ul {
  list-style: none;
}

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

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

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

blockquote,
q {
  quotes: "" "";
}

a img {
  border: 0;
}

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

/* __30: html・body */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
html {
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  font-size: 62.5%;
}

html * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-feature-settings: "palt" on;
  font-feature-settings: "palt" on;
  word-break: break-all;
  line-break: strict;
}

::-webkit-scrollbar {
  display: none;
}

body {
  background-color: var(--white);
  color: var(--black);
  font-family: var(--font-family);
  font-size: 62.5%;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 2;
  font-size: 1.6rem;
  background: #fff;
}
body a {
  color: var(--black);
}
body a:hover, body a:active {
  color: var(--main-color);
}

@media only screen and (max-width: 960px) {
  body {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
body.open {
  overflow: hidden;
  -ms-touch-action: pinch-zoom;
  touch-action: pinch-zoom;
}

/* __40: レイアウト */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #wrapper {
    min-height: 100vh;
  }
}

main {
  width: 100%;
  margin: 0 auto;
}

/* __50: 画像・図 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  pointer-events: none;
}

figure {
  margin: 0;
}

a svg {
  fill: #1a1311;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  a:hover svg {
    fill: var(--yellow);
  }
}
/* __60: ユーティリティクラス */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
}

/* 768px以下で非表示・表示 */
@media only screen and (max-width: 768px) {
  .notb {
    display: none;
  }
}

.tb {
  display: none;
}
@media only screen and (max-width: 768px) {
  .tb {
    display: block;
  }
}

/* 599px以下で非表示・表示 */
@media only screen and (max-width: 599px) {
  .nosp {
    display: none;
  }
}

.nopc {
  display: none;
}
@media only screen and (max-width: 599px) {
  .nopc {
    display: block;
  }
}

/* アンカーリンク用 */
.anchor {
  display: block;
  pointer-events: none;
  padding-top: 100px;
  margin-top: -100px;
}
@media only screen and (max-width: 599px) {
  .anchor {
    padding-top: 60px;
    margin-top: -60px;
  }
}

footer {
  width: 100%;
  position: relative;
}
footer .footer-btn {
  width: clamp(37.5rem, 750 / var(--width) * 100vw, 75rem);
  margin: 0 auto 80px;
}
@media only screen and (max-width: 768px) {
  footer .footer-btn {
    width: 90%;
    margin: 0 auto 40px;
  }
}
footer .footer-btn a {
  font-size: clamp(1.6rem, 1.65vw, 2.6rem);
  border-radius: 50px;
  padding: 30px 10px;
  background-color: #fff;
  text-align: center;
  color: #000;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  footer .footer-btn a {
    padding: 20px 10px;
  }
}
footer .footer-inner {
  /* 最小 37.5rem (375px) / 最大 75rem (750px) */
  width: clamp(37.5rem, 750 / var(--width) * 100vw, 75rem);
  padding: 20px 10px 10rem 10px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  footer .footer-inner {
    width: 94%;
    padding: 20px 0 50px 0;
    flex-direction: column;
  }
}
footer .footer-inner .ken {
  width: 18%;
}
@media only screen and (max-width: 768px) {
  footer .footer-inner .ken {
    width: 30%;
    max-width: 160px;
    margin-bottom: 30px;
  }
}
footer .footer-inner .footer-text {
  width: 79%;
}
@media only screen and (max-width: 768px) {
  footer .footer-inner .footer-text {
    width: 100%;
    text-align: center;
  }
}
footer .footer-inner p {
  font-size: clamp(1.1rem, 1.65vw, 1.24rem);
  color: #fff;
  font-weight: 600;
  letter-spacing: normal;
}
footer .footer-inner p span {
  display: inline-block;
}
footer .footer-inner p span img {
  width: 0.88rem;
}

/* appli-info（このアプリについてページ） */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __0: 共通設定 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/* __10: ページ固有スタイル */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#appli-info .lead h3 {
  font-size: clamp(3.4rem, 1.65vw, 4.7rem);
  color: var(--main-color);
}
@media only screen and (min-width: 1366px) {
  #appli-info .lead h3 {
    font-size: 4.7rem;
  }
}
#appli-info .lead h4 {
  width: 70%;
  margin: 70px auto 24px;
}
@media only screen and (max-width: 599px) {
  #appli-info .lead h4 {
    margin: 35px auto 20px;
  }
}
#appli-info .lead .example-box {
  width: 100%;
  background-color: #dcedd9;
  border-radius: 15px;
  padding: 20px 0;
  margin-top: 20px;
  display: inline-block;
}
#appli-info .lead .example-box .example-list {
  width: 90%;
  margin: 0 auto;
}
#appli-info .lead .example-box .example-list li {
  font-size: clamp(1.5rem, 1.65vw, 1.6rem);
  padding-left: 9.6rem;
  text-indent: -9.6rem;
  line-height: 1.8;
}
#appli-info .lead .example-box .example-list li:not(:last-child) {
  margin-bottom: 15px;
}
#appli-info .lead .example-box .label {
  background-color: var(--gray);
  color: var(--white);
  padding: 4px 15px;
  border-radius: 50px;
  white-space: nowrap;
}
#appli-info .lead .example-box .text {
  color: var(--black);
  letter-spacing: 0.05em;
}
#appli-info .contents__title {
  padding: 0 0 20px 0;
  background-color: transparent;
}
#appli-info .contents.contents01 {
  background-color: var(--pink);
  padding: 50px 0;
  margin-bottom: 50px;
}
#appli-info .contents.contents01 .item {
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
}
#appli-info .contents.contents01 .item .flex {
  align-items: center;
}
#appli-info .contents.contents01 .item .flex .flex-item:first-child {
  width: 30%;
}
#appli-info .contents.contents01 .item .flex .flex-item:last-child {
  width: 62%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
#appli-info .contents.contents01 .item .flex .flex-item:last-child p {
  flex-grow: 1;
  color: var(--white);
  text-align: left;
}
#appli-info .contents.contents02 {
  background-color: transparent;
  padding: 0 0 30px 0;
  margin-bottom: 0;
}
#appli-info .contents.contents02 h3 {
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  #appli-info .contents.contents02 h3 {
    margin-bottom: 60px;
  }
}
#appli-info .contents.contents02 .color-wrapper {
  background-color: var(--bg_color);
  border-radius: 0;
  padding: 40px 6.5% 80px 6.5%;
  margin: 0 auto 90px;
  position: relative;
}
@media only screen and (max-width: 599px) {
  #appli-info .contents.contents02 .color-wrapper {
    padding: 40px 6.5% 60px 6.5%;
    margin: 0 auto 60px;
  }
}
#appli-info .contents.contents02 .color-wrapper h4 {
  color: var(--main-color);
  text-align: center;
  font-weight: 600;
  border-bottom: none;
  padding-bottom: 0;
  margin: 40px auto;
  font-size: clamp(2.4rem, 1.65vw, 3.5rem);
}
@media only screen and (min-width: 1366px) {
  #appli-info .contents.contents02 .color-wrapper h4 {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 599px) {
  #appli-info .contents.contents02 .color-wrapper h4 {
    margin: 20px auto;
  }
}
#appli-info .contents.contents02 .color-wrapper .flow {
  text-align: center;
}
#appli-info .contents.contents02 .color-wrapper .flow .number {
  width: 15%;
  max-width: 70px;
  background-color: var(--yellow);
  border-radius: 50%;
  position: absolute;
  top: -6%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 1;
}
@media only screen and (max-width: 599px) {
  #appli-info .contents.contents02 .color-wrapper .flow .number {
    width: 18%;
    top: -1%;
  }
}
#appli-info .contents.contents02 .color-wrapper .flow .number.no2 {
  top: -1%;
}
#appli-info .contents.contents02 .color-wrapper .flow .number.no3 {
  top: -2%;
}
#appli-info .contents.contents02 .color-wrapper .flow .number img {
  width: 100%;
}
#appli-info .contents.contents02 .color-wrapper .flow .link {
  width: 100%;
  margin: 20px auto 40px;
}
#appli-info .contents.contents02 .color-wrapper .flow .link a {
  width: 100%;
  position: relative;
  display: block;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.05em;
  background-color: var(--main-color);
  border-radius: 20px;
  padding: 14px 10px;
}
#appli-info .contents.contents02 .color-wrapper .flow .link a span {
  position: absolute;
  top: 42%;
  right: 10%;
  transform: translateY(-42%);
  -webkit-transform: translateY(-42%);
  -ms-transform: translateY(-42%);
  width: 6.5%;
  max-width: 26px;
}
#appli-info .contents.contents02 .color-wrapper .flow .link a span img {
  width: 100%;
}
#appli-info .contents.contents02 .color-wrapper .flow .link-qr {
  width: 35%;
  margin: 0 auto;
}
#appli-info .contents.contents02 .color-wrapper .flow .link-qr a img {
  width: 100%;
}
#appli-info .contents.contents02 .color-wrapper .flow-inner {
  width: 82%;
  margin: 80px auto 70px;
}
@media only screen and (max-width: 599px) {
  #appli-info .contents.contents02 .color-wrapper .flow-inner {
    margin: 40px auto 30px;
  }
}
#appli-info .contents.contents02 .color-wrapper .flow-inner .box {
  margin-bottom: 70px;
}
@media only screen and (max-width: 599px) {
  #appli-info .contents.contents02 .color-wrapper .flow-inner .box {
    margin-bottom: 40px;
  }
}
#appli-info .contents.contents02 .color-wrapper .flow-inner h5 {
  font-size: clamp(1.6rem, 1.65vw, 2.2rem);
  color: var(--white);
  text-align: center;
  font-weight: 600;
  line-height: 1;
  padding: 4px;
  background-color: var(--pink);
  border-radius: 15px;
  margin-bottom: 20px;
}
#appli-info .contents.contents02 .color-wrapper .flow-inner .img {
  width: 44%;
  margin: 0 auto 36px;
}
#appli-info .contents.contents02 .color-wrapper .flow-inner .img img {
  width: 100%;
}
#appli-info .contents.contents02 .color-wrapper .flow-inner + .link {
  margin-bottom: 0;
}
#appli-info .contents.contents02 .color-wrapper.last {
  padding: 40px 0 20px 0;
  margin-bottom: 0;
}
#appli-info .contents.contents02 .color-wrapper.last h4 {
  padding: 0 6.5%;
}
#appli-info .contents.contents02 .color-wrapper.last h4 + p {
  text-align: left;
  padding: 0 6.5%;
  margin-bottom: 30px;
}
#appli-info .contents.contents02 .inner03 {
  width: 97%;
  margin: 0 auto 8px;
  padding: 40px 5% 50px 5%;
  background-color: var(--white);
}
#appli-info .contents.contents02 .app-icon {
  text-align: center;
  margin-bottom: 30px;
}
#appli-info .contents.contents02 .app-icon img {
  width: 23%;
  background-color: var(--blue);
  margin-bottom: 14px;
  border-radius: 20px;
}
#appli-info .contents.contents02 .app-icon.kankyou img {
  background-color: var(--light_green);
}
#appli-info .contents.contents02 .dl {
  background-color: var(--gray);
  margin-bottom: 20px;
}
#appli-info .contents.contents02 .dl p {
  color: var(--white);
  padding: 3px 0;
}
#appli-info .contents.contents02 .flex .flex-item {
  width: 45%;
}
#appli-info .contents.contents02 .flex .flex-item .tag {
  width: 100%;
  background-color: transparent;
  margin-bottom: 5px;
}
#appli-info .contents.contents02 .flex .flex-item .link {
  margin: 10px auto 0;
}
#appli-info .contents.contents02 .flex .flex-item .link a {
 background: none;
 padding: 0 !important;
}
/* 追記0308 
-------------------------------------------------------- */
section .t_left{
 text-align: left;
}
.home .kenmin_app .flex{
 margin-bottom: 20px;
}

section .mv{
 text-align: center;
}
.main-wrapper.home .bg{
 padding-top: 60px;
}

#appli-info .flexbox-1 {
 margin-top: 20px;
}
#appli-info .flexbox-1 .flex-item-1{
 width: 45%;
}

#appli-info .flexbox-1 .tag{
 margin-bottom: 20px;
}
#appli-info .flexbox-1 .link a {
 background: none !important;
 padding: 0 !important;
}
.flow.box .underline{
  text-decoration-color: #fff23f;
  text-decoration-line: underline;
  text-decoration-thickness: 10px;
} 
#appli-info .contents.contents02 .color-wrapper .flow .link {
  width: 80%;
  margin: 20px auto 40px;
}


/* よくある質問
------------------------------ */
.pc-head{
 padding: 60px 30px 0 30px;
 margin-bottom: 65px;
}

.main-wrapper.manual,
.main-wrapper.qa{
 background-color: #fff;
 padding-bottom: 50px;
}
/* 768px以下で非表示・表示 */
@media only screen and (max-width: 768px) {
.main-wrapper.home .bg{
 padding-top: 100px;
}

.main-wrapper.manual,
.main-wrapper.qa{
 padding-top: 100px;
 background-color: #fff;
 padding-bottom: 50px;
}
}

.main-wrapper.manual h3,
.main-wrapper.qa h3{
 font-size: 4.7rem;
 font-size: clamp(3.4rem, 1.65vw, 4.7rem);
 text-align: center;
 font-weight: 600;
 color: #009e41;
 margin-bottom: 20px; 
}

.qa .details {
 margin:0 auto 45px auto;
 width: 100%;
 max-width: 800px;
}
.qa .details-summary {
  position: relative;
  display: block;
  padding: 20px 10% 20px 50px;
  color: #fff;
  font-size: 130%;
  font-weight: bold;
  text-align: left;
  background-color: #009e41;
}
.qa .details-summary:hover {
  cursor: pointer;
  opacity: 0.8;
}
.qa .details-summary .icon-q {
 position: absolute;
 top: 25px;
 left: 15px;
 display: inline-block;
 width: 26px;
 height: 26px;
 background: url(../img/qa/icon-q.png) no-repeat center;
}

.qa .details-content .icon-a {
 background: url(../img/qa/icon-a.png) no-repeat center;
}


.qa .details-summary .btn {
  position: absolute;
  top: 33%;
  right: 5%;
  width: 26px;
  height: 26px;
  transform-origin: center center;
  transition-duration: 0.2s;
}
.qa .details-summary .btn:before,
.qa .details-summary .btn:after {
  content: "";
  background-color: #fff;
  border-radius: 0px;
  width: 26px;
  height: 5px;
  position: absolute;
  top: 10px;
  left: 0;
  transform-origin: center center;
}
.qa .details-summary .btn:before {
  width: 5px;
  height: 26px;
  top: 0;
  left: 10px;
}
.qa .details-summary.is-active .btn {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.qa .details-summary.is-active .btn:before {
  content: none;
}
.qa .details-summary::-webkit-details-marker {
  display: none;
}
.qa .details-content {
  position: relative;
  padding: 30px 30px 30px 50px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background:#e0efdb url(../img/qa/icon-a.png) no-repeat 15px 30px;

}
.qa .details-content p {
  margin: 0 0 20px;
  color: #000;
  font-size: clamp(0.8rem, 2vw + 0.5rem, 1.6rem);
  text-align: left;
}
.qa .details-content p.bold {
 font-weight: 800;
 margin-bottom: 5px !important;
}
.qa .details-content p:last-of-type {
  margin: 0 0 0;
}
.qa .details-summary .barlow{
  font-family: "Barlow";
  font-weight: bold;
  font-size: 140%;
  margin-right: 20px;
}
/* 市区町村企画
------------------------------ */
.main-wrapper.projects{
 background-color: #fff;
}
.main-wrapper.projects .inner02{
 margin-bottom: 2.5vw;
}

.main-wrapper.projects h3.mt{
 font-size: 4.7rem;
 font-size: clamp(3.4rem, 1.65vw, 4.7rem);
 text-align: center;
 font-weight: 600;
 color: #009e41;
 margin-bottom: 20px; 
}
.projects .color-bg{
 background-color: #fffada;
 padding: 40px 30px;
}
.projects .color-bg h4{
 text-align: center;
 color: #009e41;
 font-size: 3.5rem;
 font-weight: 600;
 margin-bottom: 30px;
}
.projects .color-bg h4 span{
     position: relative;
     display: inline-block;
     padding: 0 8px;
}      
.projects .color-bg h4 span::before,
.projects .color-bg h4 span::after{
     position: absolute;
     content: '';
     top: 50%;
     width: 40px;
     height: 2px;
     background-color: #009e41;
} 
.projects .color-bg h4 span::before {
     left: 100%;
}
.projects .color-bg h4 span::after { 
     right: 100%;
}
.projects .group-box{
 background-color: #fff;
 padding: 40px;
 border-radius: 20px;
 margin-bottom: 40px;
}
.projects .color-bg h5{
 text-align: center;
 color: #009e41;
 font-size: 2.5rem;
 font-weight: 600;
 margin-bottom: 10px;
 margin-top: 40px;
 border-bottom: 2px solid #009e41;
}
.projects .group-box p{
 text-align: center;
 font-size: 2.8rem;
 font-weight: 600;
}
.projects .group-box a{
  width: 100%;
  position: relative;
  display: block;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  background-color: #f5ac3c;
  border-radius: 20px;
  padding: 14px 10px;
  margin-top: 40px;
  font-size: 140%;
}
/* 利用者向けマニュアル
------------------------------ */
.main-wrapper.manual h4{
 background-color: #009e41;
 padding: 20px 0;
 font-size: 2em;
 color: #fff;
 text-align: center;
 margin: 60px 0 20px 0;
}
.main-wrapper.manual h5{
 background-color: #eb6d73;
 padding: 6px 0;
 font-size: 1.5em;
 color: #fff;
 text-align: center;
 margin: 60px 0 20px 0;
}
.main-wrapper.manual ul.type{
 display: flex;
}
.main-wrapper.manual ul.type span{
 color: #009e41; 
}
.main-wrapper.manual ul.type li:nth-child(2),
.main-wrapper.manual ul.type li:nth-child(1){
 margin-right: 15px;
}


.main-wrapper.manual .img{
 text-align: center;
 margin-top: 30px;
}
.main-wrapper.manual .slide {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
  }
.main-wrapper.manual .slide li.slick-slide {
    position: relative;
    max-width: 320px;
    margin-left: 1.5vw;
    margin-right: 1.5vw;
}
.slide .next-arrow {
    position: absolute;
    top: 46%;
    right: -60px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    background: url(../img/manual/arrow-right.svg) no-repeat center center;
}
.slide .prev-arrow {
    position: absolute;
    top: 46%;
    left: -60px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    background: url(../img/manual/arrow-left.svg) no-repeat center center;
}
.slick-disabled {
  display: none !important;
}


/* 768px以下で非表示・表示 */
@media only screen and (max-width: 768px) {
.main-wrapper.projects{
 padding-top: 100px;
}
.main-wrapper.manual h3,
.main-wrapper.qa h3,
.main-wrapper.projects h3.mt{
 font-size: clamp(3.4rem, 1.65vw, 4.7rem);
}
.projects .color-bg h4{
 font-size: clamp(2.4rem, 1.65vw, 3.5rem);
}
.projects .group-box p{
 font-size: clamp(2.4rem, 1.65vw, 3.5rem);
}
.slide .next-arrow {
    position: absolute;
    top: 46%;
    right: -20px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    background: url(../img/manual/arrow-right.svg) no-repeat center center;
}
.slide .prev-arrow {
    position: absolute;
    top: 46%;
    left: -20px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    background: url(../img/manual/arrow-left.svg) no-repeat center center;
}
.anchor-target {
  padding-top: 100px;
  margin-top: -100px;
  display: block; 
}
}



/* 追加分ここまで
------------------------------------------------------ */
body {
  background-color: #009e41;
  background-image: url(../img/bg.png);
  background-size: 100%;
  background-position: center;
  background-repeat: repeat-y;
  position: relative;
}
body .body-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background-image: url(../img/bg-corner01.png), url(../img/bg-corner02.png), url(../img/bg-corner03.png), url(../img/bg-corner04.png);
  background-position: top left, top right, bottom left, bottom right;
  background-repeat: no-repeat;
  background-size: clamp(0px, 21%, 242px);
}
body .body-bg02 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background-image: url(../img/bg-img01.svg), url(../img/bg-img02.svg);
  background-position: left center, right center;
  background-repeat: no-repeat;
  background-size: clamp(0px, 15.2%, 304px);
}
@media only screen and (max-width: 768px) {
  body .body-bg02 {
    background-image: none;
  }
}
body p {
  font-size: clamp(1.5rem, 1.65vw, 1.6rem);
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--black);
}
body p.caption {
  font-size: clamp(1.2rem, 1.65vw, 1.4rem);
}

a {
  text-decoration: none;
  display: block;
  transition: opacity 0.3s ease-in-out;
}
a:hover {
  opacity: 0.8;
}

main {
  width: 100%;
  position: relative;
}

.main-wrapper {
  /* 最小 37.5rem (375px) / 最大 75rem (750px) */
  width: clamp(37.5rem, 750 / var(--width) * 100vw, 75rem);
  margin: 0 auto 40px;
}
@media only screen and (max-width: 768px) {
  .main-wrapper {
    width: 100%;
    max-width: 100%;
  }
}
.main-wrapper .bg {
  background-color: var(--white);
}
@media only screen and (max-width: 768px) {
  .main-wrapper .bg {
    padding-top: 20%;
  }
}
@media only screen and (max-width: 599px) {
  .main-wrapper .bg {
    padding-top: 30%;
  }
}

.inner {
  width: 88%;
  margin: 0 auto;
}

.inner02 {
  width: 77%;
  margin: 0 auto;
}

.mv {
  margin-bottom: 60px;
}

.lead {
  margin-bottom: 90px;
}
.lead h3 {
  text-align: center;
  font-weight: 600;
  font-size: clamp(2rem, 1.65vw, 2.5rem);
  margin-bottom: 20px;
}
.lead h3 span {
  font-size: clamp(1.2rem, 1.65vw, 1.6rem);
}
.lead p {
  text-align: left;
}

.movie-wrapper {
  margin-bottom: 90px;
}
.movie-wrapper .movie .inner {
  height: auto;
  margin: 0 auto;
  padding: 0 !important;
}
.movie-wrapper .movie .inner .movie_img {
  margin: 0 auto;
}
.movie-wrapper .movie .inner .movie_img .box {
  position: relative;
  height: 0;
  padding: 0 0 56.25%;
  overflow: hidden;
}
.movie-wrapper .movie .inner .movie_img iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contents {
  margin-bottom: 60px;
}
.contents__title {
  padding: 40px 0;
  background-color: var(--yellow);
}
.contents.contents02 {
  background-color: var(--yellow);
  padding: 0 0 80px;
  margin-bottom: 50px;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.item {
  background-color: #e0efdb;
  padding: 20px 0 30px;
  margin-bottom: 50px;
}
.item h3 {
  padding-bottom: 6px;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--main-color);
}
.item h4 {
  margin-bottom: 20px;
}
.item .flex .flex-item {
  width: 45%;
  text-align: center;
}
.item .flex .flex-item .tag {
  width: 100%;
  background-color: #666;
  margin-bottom: 20px;
}
.item .flex .flex-item .tag p {
  color: var(--white);
  font-weight: 600;
}
.item .flex .flex-item .tag + a img {
  width: 60%;
  margin: 0 auto;
}
.item .flex .flex-item .link {
  width: 80%;
  margin: 0 auto;
}
.item .flex .flex-item .link a {
  margin-top: 10px;
}
.item.item01 {
  background-color: var(--white);
  padding: 40px 0;
  margin-bottom: 0;
}
.item.item01 .flex {
  width: 93%;
  margin: 0 auto;
}
.item.item01 .flex .flex-item {
  width: 27%;
}
.item.item01 .flex .flex-item img {
  background-color: var(--blue);
  margin-bottom: 14px;
  border-radius: 20px;
}
.item.item01 .flex .flex-item:nth-child(2) img {
  background-color: var(--light_green);
}
.item.item01 .flex .flex-item:nth-child(3) img {
  background-color: var(--yellow);
}
.item.item01 .flex .flex-item p {
  text-align: center;
  font-weight: 600;
  line-height: normal;
}
.item.item04 {
  padding: 20px 0 40px;
  margin-bottom: 0;
}


.color-wrapper {
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px 6.5% 60px 6.5%;
  margin: 30px auto 20px;
}
.color-wrapper h4 {
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 4px solid #91a4b7;
}
.color-wrapper h4:nth-of-type(2) {
  border-bottom: 4px solid #dbbd40;
}
.color-wrapper .prize-item {
  width: 80%;
  margin: 0 auto 80px;
  position: relative;
}
.color-wrapper .prize-item p {
  font-size: clamp(1.5rem, 1.65vw, 2rem);
  margin-top: 10px;
  padding-right: 31%;
}
@media only screen and (max-width: 599px) {
  .color-wrapper .prize-item p {
    margin-top: 5px;
    padding-right: 21%;
  }
}
.color-wrapper .prize-item .c-badge {
  width: 30%;
  position: absolute;
  right: 0;
  bottom: -4%;
}
.color-wrapper .prize-item .c-badge-2 {
  width: 30%;
  position: absolute;
  right: 0;
  bottom: 2%;
}

@media only screen and (max-width: 599px) {
  .color-wrapper .prize-item .c-badge {
    width: 25%;
  }
}
.color-wrapper .prize-item.sub {
  width: 100%;
  margin-bottom: 0;
}
.color-wrapper .prize-item.sub img {
  padding-bottom: 15px;
  margin-bottom: 50px;
  border-bottom: 3px solid #cececf;
}
.color-wrapper .prize-item.sub img:nth-of-type(2) {
  border-bottom: 3px solid #c2865c;
}
.color-wrapper .prize-item.sub img:nth-of-type(3) {
  border-bottom: 3px solid #41b053;
  margin-bottom: 0;
}

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