@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Serif+JP:wght@200..900&display=swap");
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

.ab-icon:before {
  font-family: inherit;
}

html {
  line-height: var(--line-height-main);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-size: var(--font-size-main);
  color: var(--col-font);
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: var(--text-decoration);
  color: var(--col-link);
}

a:hover {
  opacity: 0.85;
  text-decoration: var(--text-decoration-hover);
}

img {
  max-width: 100%;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
optgroup,
select,
textarea {
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type="checkbox"] {
  appearance: checkbox;
}

[type="radio"] {
  appearance: radio;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

header {
  position: relative;
  width: 100%;
  height: clamp(75px, 14vw, 160px);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  background-image: url("../img/material/header-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
}
header > div {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: clamp(0.5em, 2vw, 1em) clamp(1em, 2vw, 1.5em);
}
header > div > picture {
  display: block;
  width: 100%;
  max-width: clamp(56px, 10vw, 128px);
  height: 100%;
  aspect-ratio: 1 / 1;
}
header > div > picture > img {
  max-height: 100%;
}
header > div > picture + a {
  display: block;
  background-image: url("../img/material/h-logotxt.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(175px, 28.5vw, 285px);
  aspect-ratio: 5.16 / 1;
  text-indent: 105%;
  overflow: hidden;
  white-space: nowrap;
  margin-left: clamp(1em, 3vw, 1.75em);
}
@media (min-width: 626px) {
  header > div > picture + a {
    transform: translateY(-1.1em);
  }
}
@media (min-width: 626px) {
  header > div > p {
    color: #fff;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.06em;
    font-size: var(--font-size-14);
    margin-left: 4.5em;
    transform: translateY(-0.8em);
  }
}
@media (max-width: 625px) {
  header > div > p {
    display: none;
  }
}
@media (min-width: 981px) {
  header > div:after {
    content: "";
    position: absolute;
    background-image: url("../img/material/header-bg-item.png");
    background-repeat: no-repeat;
    background-position: bottom right;
    width: 526px;
    height: 100%;
    right: 0;
    bottom: 0;
  }
}

footer {
  position: relative;
  background-color: #106024;
  padding-top: var(--mvalue-20);
}
@media (max-width: 980px) {
  footer {
    margin-top: var(--mvalue-30);
  }
}
footer:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}
footer > .___fmenu {
  position: relative;
}
footer > .___fmenu > ul {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 769px) {
  footer > .___fmenu > ul {
    display: flex;
    justify-content: center;
    grid-column-gap: 1.5em;
  }
}
@media (max-width: 768px) {
  footer > .___fmenu > ul {
    margin-top: 1em;
  }
}
footer > .___fmenu > ul > li a {
  color: #fff;
  font-size: var(--font-size-14);
}
footer > small {
  position: relative;
  display: block;
  padding: 2em 0;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

@media (min-width: 981px) {
  .___faddress {
    display: none;
  }
}
@media (max-width: 980px) {
  .___faddress {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-column-gap: 2em;
    width: 100%;
    box-shadow: 0px -4px 10px -2px rgba(0, 0, 0, 0.25);
    margin-top: var(--mvalue-30);
  }
  .___faddress > picture {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: var(--mvalue-50);
    transform: translateX(-11px);
  }
  .___faddress > p {
    width: 100%;
    text-align: center;
    font-size: var(--font-size-16);
    line-height: 1.5;
  }
  .___faddress > dl {
    width: 95%;
    max-width: 400px;
    margin-top: var(--mvalue-30);
  }
  .___faddress > dl > dt {
    background-color: var(--col-lightgreen);
    line-height: 1.5;
    padding: 2px 1em;
    font-size: var(--font-size-17);
    font-weight: 700;
  }
  .___faddress > dl > dd {
    line-height: 1.5;
    padding: 8px 1em 15px;
    font-size: var(--font-size-16);
    font-weight: 600;
  }
  .___faddress > .--skyokahyou {
    width: 220px;
    margin-top: var(--mvalue-30);
  }
  .___faddress > .--skyokahyou > picture {
    display: flex;
  }
  .___faddress > .--skyokahyou > p {
    font-size: var(--font-size-15);
    line-height: 1.5;
    margin-top: var(--mvalue-10);
    padding-left: 5px;
    color: var(--col-blue);
    font-weight: 500;
  }
}
@media (max-width: 980px) and (max-width: 675px) {
  .___faddress > .--skyokahyou {
    width: 90%;
    max-width: 400px;
    display: flex;
    grid-column-gap: 1.1em;
  }
  .___faddress > .--skyokahyou > picture {
    width: 100%;
    max-width: 390px;
  }
}

@media (max-width: 980px) {
  .DSbtn > span {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0);
    z-index: 3;
    pointer-events: none;
    transition: 0.5s;
  }
  .DSbtn > p {
    position: fixed;
    right: 4%;
    top: 14px;
    width: 48px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    border: solid 1px var(--col-green);
    border-radius: 50%;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 5;
    transition: 0.3s;
    box-shadow: 1px 1px 1px 0.5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
  }
  .DSbtn > p > span {
    width: 43%;
    position: relative;
    height: 2px;
    background-color: var(--col-green);
    border-radius: 10px;
    transition: 0.3s;
  }
  .DSbtn > p > span:before, .DSbtn > p > span:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--col-green);
    border-radius: 10px;
    transition: 0.3s;
  }
  .DSbtn > p > span:before {
    transform: translateY(6px) rotate(0);
  }
  .DSbtn > p > span:after {
    transform: translateY(-6px) rotate(0);
  }

  .active-menu .DSbtn > span {
    background-color: rgba(0, 0, 0, 0.675);
    pointer-events: inherit;
  }
  .active-menu .DSbtn > p {
    top: 20px;
  }
  .active-menu .DSbtn > p > span {
    background-color: rgba(255, 255, 255, 0);
  }
  .active-menu .DSbtn > p > span:before {
    transform: rotate(-45deg);
  }
  .active-menu .DSbtn > p > span:after {
    transform: rotate(45deg);
  }

  .DSmenu {
    position: fixed;
    top: 0;
    right: -400px;
    z-index: 4;
    width: 93%;
    max-width: 400px;
    height: 100vh;
    background-color: #04441C;
    padding: 1em 1em;
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    transition: 0.5s;
  }
  .DSmenu > .DSmenu_inner {
    padding-bottom: 100px;
  }
  .DSmenu #nav {
    margin-top: 50px;
    display: flex;
    flex-flow: column;
  }
  .DSmenu #nav li {
    order: 2;
  }
  .DSmenu #nav li.-top {
    order: 1;
  }
  .DSmenu #nav a {
    color: #B7E8C9;
    font-size: var(--font-size-16);
    text-decoration: none;
    display: block;
    padding: 0.8em 0.5em 0.8em;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  }
  .DSmenu .--scompany {
    display: none;
    right: 0;
  }

  .active-menu .DSmenu {
    right: 0;
  }
}
@media (min-width: 981px) {
  .DSbtn {
    display: none;
  }

  .DSmenu {
    position: relative;
    transition: 0.3s;
  }
  .DSmenu:before {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #f7f7f7;
    transition: 0.5s;
  }
  .DSmenu > .DSmenu_inner {
    position: sticky;
    top: 0;
    transition: 0.3s;
  }
  .DSmenu ul#nav {
    display: flex;
    flex-flow: column;
    grid-row-gap: 2px;
    position: relative;
  }
  .DSmenu ul#nav > li {
    box-shadow: 7px 2px 4px rgba(0, 0, 0, 0.75);
  }
  .DSmenu ul#nav > li.-sp {
    display: none;
  }
  .DSmenu ul#nav > li > a {
    display: flex;
    align-items: center;
    grid-column-gap: 1em;
    color: #fff;
    text-decoration: none;
    height: min(6.62vw, 74px);
    position: relative;
    padding: 0.5em 1.25em;
  }
  .DSmenu ul#nav > li > a:before {
    content: "";
    display: block;
    aspect-ratio: 1 / 1;
    width: 17px;
    background-image: url("../img/material/icon-arrow-1.png");
    background-repeat: no-repeat;
    background-size: contain;
  }
  .DSmenu ul#nav > li > a:after {
    content: "";
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    position: absolute;
    left: 2px;
    top: 2px;
    border: solid 1px rgba(255, 255, 255, 0.5);
    pointer-events: none;
  }
  .DSmenu ul#nav > li.-bgred {
    background-color: #E80000;
  }
  .DSmenu ul#nav > li.-bggreen {
    background-color: #0A923D;
  }
  .DSmenu ul#nav > li.-bgblue {
    background-color: #293CE9;
  }
  .DSmenu ul#nav:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: url("../img/material/nav-bg.png");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: top center;
    opacity: 0.47;
    pointer-events: none;
  }
  .DSmenu .--scompany {
    margin-top: var(--mvalue-40);
    padding-left: 0.75em;
  }
  .DSmenu .--scompany > h2 {
    font-size: var(--font-size-15);
    font-weight: 700;
    margin-top: var(--mvalue-10);
  }
  .DSmenu .--scompany > p {
    font-size: var(--font-size-14);
    font-weight: 500;
    line-height: 1.5;
    margin-top: 3px;
  }
  .DSmenu .--scompany > dl {
    width: 95%;
    margin-top: var(--mvalue-15);
  }
  .DSmenu .--scompany > dl > dt {
    background-color: var(--col-lightgreen);
    line-height: 1.5;
    padding: 2px 1em;
    font-size: var(--font-size-15);
    font-weight: 700;
  }
  .DSmenu .--scompany > dl > dd {
    line-height: 1.5;
    padding: 5px 1em 13px;
    font-size: var(--font-size-14);
  }
  .DSmenu .--skyokahyou {
    max-width: 95%;
    margin-top: var(--mvalue-30);
  }
  .DSmenu .--skyokahyou > p {
    margin-top: var(--mvalue-5);
    font-size: var(--font-size-14);
    line-height: 1.5;
  }

  .active03 .DSmenu {
    width: 262px !important;
  }
  .active03 .DSmenu:before {
    height: 100%;
  }
  .active03 .DSmenu_inner {
    filter: grayscale(0) brightness(1.05);
    opacity: 0.9;
  }
  .active03 .DSmenu ul#nav:before {
    opacity: 0.3;
  }
  .active03 .DSmenu ul#nav > li {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
}
.DSmenu .--sbtn {
  display: flex;
  flex-flow: column;
  grid-row-gap: var(--mvalue-20);
  margin-top: var(--mvalue-40);
}
@media (max-width: 980px) {
  .DSmenu .--sbtn {
    align-items: center;
    margin-top: var(--mvalue-60);
  }
}
@media (max-width: 980px) {
  .DSmenu .--sbtn > li img {
    border: solid 6px white;
  }
}
.DSmenu .--sbtn > li > p.-sbtxt1 {
  color: var(--col-red);
  font-size: var(--font-size-14);
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-top: 3px;
}
@media (max-width: 980px) {
  .DSmenu .--sbtn > li > p.-sbtxt1 {
    color: #fff;
    justify-content: center;
  }
}
.DSmenu .--sbtn > li > p.-sbtxt1:before {
  content: "";
  display: block;
  background-image: url("../img/material/icon-arrow-3.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 39px;
  aspect-ratio: 1 / 0.9;
  margin-right: 1px;
}

body {
  background-color: #020A1F;
  position: relative;
}

body > .main-bg {
  position: absolute;
  inset: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: 1920px;
  background-image: url("../img/material/body-bg.webp");
  background-size: 100% 100%;
  background-position: center;
  opacity: 0.25;
}

#main {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  position: relative;
}
@media (min-width: 981px) {
  #main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #main > div.DSmenu {
    order: 2;
    width: 272px;
  }
  #main > div#wrapper {
    width: calc(100% - 272px);
    order: 1;
    min-height:calc(100vh - 282px);
  }
  #main > footer {
    width: 100%;
    order: 3;
  }
}

.___kv {
  position: relative;
}
.___kv .--kv-img picture {
  width: 100%;
  min-height: 260px;
  aspect-ratio: 1.82 / 1;
  display: block;
  position: relative;
}
.___kv .--kv-img picture img {
  position: absolute;
  width: auto;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}
.___kv .--kv-txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.___kv .--kv-txt > p {
  font-size: 56px;
}
@media (min-width: 981px) {
  .___kv .--kv-txt > p {
    background: #7F0000;
    background: linear-gradient(90deg, rgba(127, 0, 0, 0.85) 0%, rgba(93, 1, 1, 0.85) 65%, rgba(127, 0, 0, 0) 100%);
    transform: translateY(55%);
  }
  .___kv .--kv-txt > div {
    transform: translateY(-5%);
    background: #111111;
    background: linear-gradient(90deg, rgba(17, 17, 17, 0.85) 0%, rgba(8, 8, 8, 0.85) 65%, rgba(0, 0, 0, 0) 100%);
  }
  .___kv .--kv-txt > div > p {
    margin-top: var(--mvalue-15);
  }
}
@media (max-width: 980px) {
  .___kv .--kv-txt > p {
    font-size: min(8vw, 68px);
    background: transparent;
    opacity: 0.6;
    transform: translateY(15%);
  }
  .___kv .--kv-txt > div {
    background: rgba(0, 0, 0, 0.5);
  }
  .___kv .--kv-txt > div > p {
    margin-top: var(--mvalue-5);
  }
  .___kv .--kv-txt > div > p br {
    display: none;
  }
}
.___kv .--kv-txt > p {
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  line-height: 1.0;
  padding: 0.15em 0 0.02em 0.4em;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.03em;
}
.___kv .--kv-txt > div {
  padding: clamp(1em, 2.8vw, 1.75em) clamp(1em, 4.8vw, 3em);
}
.___kv .--kv-txt > div > h2 {
  color: var(--col-yellow);
  font-size: var(--font-size-26);
  line-height: 1.5;
  font-weight: 600;
}
.___kv .--kv-txt > div > p {
  color: #fff;
  font-size: var(--font-size-15);
  line-height: 1.3;
}

.___mcontents > .--mc-inner {
  padding: 1.4em clamp(0.75em, 2.1vw, 1.4em);
}

.___newsbox > ul > li {
  border-bottom: dashed 1px #999;
}
.___newsbox > ul > li > a {
  display: flex;
  color: #343434;
  text-decoration: none;
  padding: 1em 0;
}
.___newsbox > ul > li > a > strong {
  width: clamp(7em, 14.5vw, 8em);
  font-size: var(--font-size-15);
  font-weight: normal;
}
@media (max-width: 650px) {
  .___newsbox > ul > li > a > strong {
    font-size: 13px;
    font-weight: 700;
    color: #999;
  }
}
.___newsbox > ul > li > a > p {
  text-decoration: underline;
  width: calc(100% - 8em);
}
@media (max-width: 650px) {
  .___newsbox > ul > li > a > p {
    width: calc(100% - 6em);
  }
}
.___newsbox.-topn > ul {
  max-width: 710px;
  margin-left: auto;
}

.---pn > div {
  margin-top: var(--mvalue-50);
  display: flex;
  justify-content: center;
  grid-column-gap: 3px;
}
.---pn > div > * {
  display: flex;
  width: 30px;
  aspect-ratio: 1 / 1.25;
  justify-content: center;
  align-items: center;
  line-height: 1;
  border: solid 1px var(--col-green);
  color: var(--col-green);
  border-radius: 3px;
}
.---pn > div > a {
  background-color: var(--col-green);
  color: #fff;
  text-decoration: none;
}

.---pn2 {
  display: flex;
  justify-content: space-between;
  border-top: solid 1px #999;
  margin-top: var(--mvalue-50);
  padding-top: var(--mvalue-20);
}
.---pn2 .-next,
.---pn2 .-prev {
  position: relative;
  width: 5em;
  height: 2.25em;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px var(--col-green);
  border-radius: 3px;
  line-height: 1;
  padding: 0.25em;
  text-decoration: none;
  font-size: var(--font-size-14);
  font-weight: 700;
}
.---pn2 .-next:before,
.---pn2 .-prev:before {
  content: "";
  display: block;
  width: 6px;
  aspect-ratio: 1 / 1;
  border-top: solid 2px var(--col-green);
  border-right: solid 2px var(--col-green);
  position: absolute;
}
.---pn2 .-next {
  padding-left: 1em;
}
.---pn2 .-next:before {
  left: 0.75em;
  transform: rotate(-135deg);
}
.---pn2 .-prev {
  padding-right: 1em;
}
.---pn2 .-prev:before {
  right: 0.75em;
  transform: rotate(45deg);
}

.---blog-date {
  margin-top: var(--mvalue-5);
  font-size: var(--font-size-14);
  color: #999;
  font-weight: 600;
  text-align: right;
  padding-right: 1em;
}

.---blog-detail p {
  margin: var(--mvalue-20) 0;
}

@media (min-width: 981px) {
  .___mcontents {
    margin-bottom: var(--mvalue-100);
  }
}
.___mcontents .--emp {
  font-weight: 700;
  font-size: 105%;
  margin-left: 0.2em;
  margin-right: 0.2em;
}
.___mcontents .--emp.-red {
  color: var(--col-red);
}
.___mcontents .---txtc {
  text-align: center !important;
}
.___mcontents .---txtr {
  text-align: right !important;
}
.___mcontents .---txtva1 {
  text-align: center;
  font-size: 120%;
  font-weight: 600;
  color: var(--col-red);
}
.___mcontents > .--mc-inner .___htitle-01 {
  background: var(--col-gra-green);
  display: flex;
  position: relative;
  padding: 0.65em 1.5em 0.65em 0;
  align-items: center;
}
@media (max-width: 650px) {
  .___mcontents > .--mc-inner .___htitle-01 {
    flex-wrap: wrap;
  }
}
.___mcontents > .--mc-inner .___htitle-01:before {
  content: "";
  background-image: url("../img/material/icon-arrow-2.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right;
  width: clamp(43px, 10vw, 57px);
  height: 27px;
  display: block;
  position: absolute;
}
.___mcontents > .--mc-inner .___htitle-01 > p {
  font-size: var(--font-size-18);
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.4;
  margin-left: clamp(3.25em, 12.7vw, 4.2em);
  margin-top: 0;
}
.___mcontents > .--mc-inner .___htitle-01 > span {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media (max-width: 650px) {
  .___mcontents > .--mc-inner .___htitle-01 > span {
    width: 100%;
    text-align: right;
    margin-top: -0.15em;
    font-size: 90%;
    line-height: 1.2;
  }
}
.___mcontents > .--mc-inner .___htitle-02 {
  font-size: var(--font-size-26);
  font-weight: 600;
}
.___mcontents > .--mc-inner .___htitle-03 {
  background-color: var(--col-lightgreen);
  line-height: 1.5;
  padding: 0.1em 0.5em;
  font-size: var(--font-size-18);
  font-weight: 700;
}
.___mcontents > .--mc-inner .___alink-btn1 a,
.___mcontents > .--mc-inner .___alink-btn1 input[type="submit"],
.___mcontents > .--mc-inner .___alink-btn2 a,
.___mcontents > .--mc-inner .___alink-btn2 input[type="submit"] {
  display: block;
  width: 100%;
  max-width: 235px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  box-shadow: 2px 2px 2px -1px rgba(0, 0, 0, 0.16);
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}
.___mcontents > .--mc-inner .___alink-btn1.-red a,
.___mcontents > .--mc-inner .___alink-btn1.-red input[type="submit"],
.___mcontents > .--mc-inner .___alink-btn2.-red a,
.___mcontents > .--mc-inner .___alink-btn2.-red input[type="submit"] {
  background: var(--col-gra-red);
}
.___mcontents > .--mc-inner .___alink-btn1.-blue a,
.___mcontents > .--mc-inner .___alink-btn1.-blue input[type="submit"],
.___mcontents > .--mc-inner .___alink-btn2.-blue a,
.___mcontents > .--mc-inner .___alink-btn2.-blue input[type="submit"] {
  background: var(--col-gra-blue);
}
.___mcontents > .--mc-inner .___alink-btn1.-green a,
.___mcontents > .--mc-inner .___alink-btn1.-green input[type="submit"],
.___mcontents > .--mc-inner .___alink-btn2.-green a,
.___mcontents > .--mc-inner .___alink-btn2.-green input[type="submit"] {
  background: var(--col-gra-green);
}
.___mcontents > .--mc-inner .___alink-btn1.-right a,
.___mcontents > .--mc-inner .___alink-btn1.-right input[type="submit"],
.___mcontents > .--mc-inner .___alink-btn2.-right a,
.___mcontents > .--mc-inner .___alink-btn2.-right input[type="submit"] {
  margin-right: inherit;
}
.___mcontents > .--mc-inner .___alink-btn1.-left a,
.___mcontents > .--mc-inner .___alink-btn1.-left input[type="submit"],
.___mcontents > .--mc-inner .___alink-btn2.-left a,
.___mcontents > .--mc-inner .___alink-btn2.-left input[type="submit"] {
  margin-left: inherit;
}
.___mcontents > .--mc-inner .___alink-btn1 a,
.___mcontents > .--mc-inner .___alink-btn1 input[type="submit"] {
  padding: 0.75em 1em;
}
.___mcontents > .--mc-inner .___alink-btn2 a,
.___mcontents > .--mc-inner .___alink-btn2 input[type="submit"] {
  padding: 0.4em 1em;
}
.___mcontents > .--mc-inner .___area-01 {
  padding-left: min(1.5vw, 1em);
  padding-right: min(1.5vw, 1em);
}
.___mcontents > .--mc-inner .___fbox-01 {
  display: flex;
}
.___mcontents > .--mc-inner .___fbox-01 > picture img {
  width: 100%;
}
@media (min-width: 651px) {
  .___mcontents > .--mc-inner .___fbox-01 {
    justify-content: space-between;
  }
  .___mcontents > .--mc-inner .___fbox-01 > picture {
    width: 42%;
  }
  .___mcontents > .--mc-inner .___fbox-01 > div {
    width: 54%;
  }
}
@media (max-width: 650px) {
  .___mcontents > .--mc-inner .___fbox-01 {
    flex-flow: column;
    grid-row-gap: 2em;
  }
}
@media (max-width: 650px) {
  .___mcontents > .--mc-inner .___fbox-01.-va1 {
    grid-row-gap: 0;
  }
}
@media (min-width: 651px) {
  .___mcontents > .--mc-inner .___fbox-01.-greeting > picture > img + img {
    max-width: 78%;
    margin-left: 5%;
  }
}
@media (max-width: 650px) {
  .___mcontents > .--mc-inner .___fbox-01.-greeting > picture > img + img {
    max-width: 45%;
    margin-left: 22%;
    margin-top: 1em;
  }
}
.___mcontents > .--mc-inner .___fbox-02 {
  display: flex;
}
.___mcontents > .--mc-inner .___fbox-02 > picture {
  flex: 1;
}
@media (max-width: 650px) {
  .___mcontents > .--mc-inner .___fbox-02 > picture:last-child {
    display: none;
  }
}
.___mcontents > .--mc-inner .___fbox-03 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  grid-row-gap: var(--mvalue-20);
}
.___mcontents > .--mc-inner .___fbox-03 > li {
  width: 49%;
}
@media (max-width: 650px) {
  .___mcontents > .--mc-inner .___fbox-03 > li {
    width: 100%;
  }
}
.___mcontents > .--mc-inner .___fbox-03.-va1 > li {
  background-color: var(--col-lightgreen);
}
.___mcontents > .--mc-inner .___fbox-03.-va1 > li > p {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 4.5em;
  font-weight: 500;
  line-height: 1.5;
  padding: 0.3em 1em 0.75em;
}
.___mcontents > .--mc-inner .___fbox-04 {
  display: flex;
  width: 100%;
  max-width: 565px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 651px) {
  .___mcontents > .--mc-inner .___fbox-04 {
    justify-content: center;
    align-items: center;
    grid-column-gap: 2em;
  }
}
@media (max-width: 650px) {
  .___mcontents > .--mc-inner .___fbox-04 {
    flex-flow: column;
    align-items: center;
    text-align: center;
    grid-row-gap: 1em;
  }
}
.___mcontents > .--mc-inner .___fbox-04 > picture {
  width: 205px;
}
@media (min-width: 651px) {
  .___mcontents > .--mc-inner .___fbox-04 > picture {
    max-width: 30vw;
  }
}
@media (max-width: 650px) {
  .___mcontents > .--mc-inner .___fbox-04 > picture span {
    display: block;
    font-size: 90%;
    color: #787878;
    font-weight: 500;
  }
}
.___mcontents > .--mc-inner .___fbox-04 > div {
  padding-bottom: 2em;
}
.___mcontents > .--mc-inner .___list-01 > li {
  display: flex;
  align-items: center;
  border-bottom: dashed 1px #999;
  padding: 1em 0 1em min(4.5vw, 3.1em);
}
.___mcontents > .--mc-inner .___list-01 > li > strong {
  width: 7.75em;
}
.___mcontents > .--mc-inner .___list-01.-va1 > li {
  align-items: flex-start;
  grid-column-gap: 1.25em;
  padding-left: min(1.5vw, 3.1em);
}
.___mcontents > .--mc-inner .___list-01.-va1 > li > strong {
  width: 10em;
}
.___mcontents > .--mc-inner .___list-01.-va2 > li {
  align-items: flex-start;
  grid-column-gap: 1.25em;
  padding-left: min(1.5vw, 3.1em);
}
.___mcontents > .--mc-inner .___list-01.-va2 > li > strong {
  width: 8em;
}
@media (max-width: 600px) {
  .___mcontents > .--mc-inner .___list-01.-va1 > li, .___mcontents > .--mc-inner .___list-01.-va2 > li {
    flex-flow: column;
    padding-left: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .___mcontents > .--mc-inner .___list-01.-va1 > li > strong, .___mcontents > .--mc-inner .___list-01.-va2 > li > strong {
    width: 100%;
    padding: 0.2em 0.5em;
    background-color: var(--col-lightgreen);
  }
  .___mcontents > .--mc-inner .___list-01.-va1 > li > div, .___mcontents > .--mc-inner .___list-01.-va2 > li > div {
    margin-top: var(--mvalue-10);
  }
}
.___mcontents > .--mc-inner .___list-02 {
  display: flex;
  flex-wrap: wrap;
  grid-column-gap: 2px;
  grid-row-gap: 5px;
}
.___mcontents > .--mc-inner .___list-02 > li {
  position: relative;
}
@media (min-width: 651px) {
  .___mcontents > .--mc-inner .___list-02 > li {
    width: calc(33% - 1px);
  }
}
@media (max-width: 650px) {
  .___mcontents > .--mc-inner .___list-02 > li {
    width: calc(50% - 1px);
  }
}
.___mcontents > .--mc-inner .___list-02 > li > picture {
  display: block;
  width: 100%;
  aspect-ratio: 1.62 / 1;
}
.___mcontents > .--mc-inner .___list-02 > li > picture > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  object-fit: cover;
}
.___mcontents > .--mc-inner .___list-02 > li > p {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #000000;
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 100%);
  padding: 2em 0 0.5em;
  color: #fff;
  text-align: center;
}
.___mcontents > .--mc-inner .___list-03 > li {
  border-bottom: dashed 1px #999;
  padding: 0.4em 0.75em;
  display: flex;
  justify-content: space-between;
}
.___mcontents > .--mc-inner .___list-03 > li > strong {
  font-weight: 400;
}
.___mcontents > .--mc-inner .___ctable-01 > table {
  width: 100%;
  table-layout: fixed;
}
.___mcontents > .--mc-inner .___ctable-01 > table > tbody > tr td,
.___mcontents > .--mc-inner .___ctable-01 > table > tbody > tr th {
  border-bottom: dashed 1px #999;
  padding: 0.75em 1em;
  vertical-align: middle;
  text-align: center;
}
.___mcontents > .--mc-inner .___ctable-01 > table > tbody > tr:first-child th {
  background-color: var(--col-lightgreen);
  font-weight: 600;
}
.___mcontents > .--mc-inner .___ctable-01.-va1 > table > tbody > tr th:first-child {
  text-align: left;
}
.___mcontents > .--mc-inner .___ctable-01.-va2 > table > tbody > tr td {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.___mcontents > .--mc-inner .___ctable-01.-va2 > table > tbody > tr td > p.-l {
  display: inline-block;
  width: 35%;
  text-align: left;
  padding-right: clamp(2em, 3vw, 3em);
  font-weight: 500;
  line-height: 1.5;
}
.___mcontents > .--mc-inner .___ctable-01.-va2 > table > tbody > tr td > p.-l:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #555555;
  border-right: 0;
  position: absolute;
  inset: 0;
  margin: auto;
}
.___mcontents > .--mc-inner .___ctable-01.-va2 > table > tbody > tr td > p.-l .-red {
  font-size: 13px;
  color: var(--col-red);
  line-height: 1.3;
  display: block;
  margin-top: var(--mvalue-5);
  text-indent: -1.2em;
}
.___mcontents > .--mc-inner .___ctable-01.-va2 > table > tbody > tr td > p.-r {
  display: inline-block;
  width: 35%;
  text-align: left;
  line-height: 1.5;
  padding-left: clamp(2em, 3vw, 3em);
}
.___mcontents > .--mc-inner .___ctable-01.-va2 > table > tbody > tr td > p.-r > strong {
  color: var(--col-red);
  font-weight: 600;
}
@media (max-width: 650px) {
  .___mcontents > .--mc-inner .___ctable-01.-va3 > table > tbody > tr td > p.-l {
    width: 70%;
  }
}
@media (max-width: 650px) {
  .___mcontents > .--mc-inner .___ctable-01.-va3 > table > tbody > tr td > p.-l:after {
    transform: translateX(16vw);
  }
}
@media (max-width: 650px) {
  .___mcontents > .--mc-inner .___ctable-01.-va3 > table > tbody > tr td > p.-l .-red {
    padding-left: 1.2em;
  }
}
@media (max-width: 650px) {
  .___mcontents > .--mc-inner .___ctable-01.-va3 > table > tbody > tr td > p.-r {
    width: 30%;
  }
}
.___mcontents > .--mc-inner .___fmap {
  aspect-ratio: 1.96 / 1;
}
.___mcontents > .--mc-inner .___fmap > iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.___mcontents > .--mc-inner .___cform-01 .--forma {
  border-top: dashed 1px #999;
}
.___mcontents > .--mc-inner .___cform-01 .--forma > li {
  border-bottom: dashed 1px #999;
  display: flex;
}
@media (max-width: 650px) {
  .___mcontents > .--mc-inner .___cform-01 .--forma > li {
    flex-flow: column;
  }
}
.___mcontents > .--mc-inner .___cform-01 .--forma > li > p {
  padding: 1em 1em 0 0;
}
@media (min-width: 651px) {
  .___mcontents > .--mc-inner .___cform-01 .--forma > li > p {
    width: 14rem;
    padding-bottom: 1em;
  }
}
.___mcontents > .--mc-inner .___cform-01 .--forma > li > p > label {
  position: relative;
  display: flex;
  align-items: center;
}
.___mcontents > .--mc-inner .___cform-01 .--forma > li > p > label.-hissu:after {
  content: "必須";
  font-size: var(--font-size-13);
  color: #fff;
  line-height: 1;
  padding: 0.2em 0.75em 0.35em 0.5em;
  background-color: var(--col-darkred);
  position: absolute;
  right: 0;
}
.___mcontents > .--mc-inner .___cform-01 .--forma > li > div {
  padding: 0.25em 0 0.75em 0;
}
@media (min-width: 651px) {
  .___mcontents > .--mc-inner .___cform-01 .--forma > li > div {
    width: calc(100% - 14rem);
    padding-top: 0.75em;
  }
}
.___mcontents > .--mc-inner .___cform-01 .--forma > li > div input[type="text"], .___mcontents > .--mc-inner .___cform-01 .--forma > li > div input[type="email"], .___mcontents > .--mc-inner .___cform-01 .--forma > li > div input[type="tel"] {
  background-color: #EFEFEF;
  width: 100%;
  min-height: 42px;
  padding: 0.2em 0.5em;
}
.___mcontents > .--mc-inner .___cform-01 .--forma > li > div textarea {
  background-color: #EFEFEF;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  min-height: 150px;
  padding: 0.2em 0.5em;
}
.___mcontents > .--mc-inner .___btn1 {
  width: 100%;
  display: flex;
}
@media (min-width: 651px) {
  .___mcontents > .--mc-inner .___btn1 {
    justify-content: space-between;
    grid-column-gap: 1.0em;
  }
}
@media (max-width: 650px) {
  .___mcontents > .--mc-inner .___btn1 {
    flex-flow: column;
    align-items: center;
    grid-row-gap: 0.3em;
  }
}
.___mcontents > .--mc-inner .___btn2 {
  display: flex;
  align-items: center;
  border: solid 3px #ccc;
}
@media (min-width: 651px) {
  .___mcontents > .--mc-inner .___btn2 {
    justify-content: center;
    grid-column-gap: 3em;
    padding: 2em;
  }
}
@media (max-width: 650px) {
  .___mcontents > .--mc-inner .___btn2 {
    flex-flow: column;
    grid-row-gap: 0.5em;
    padding: 1.5em;
  }
  .___mcontents > .--mc-inner .___btn2 > picture {
    display: none;
  }
}
.___mcontents > .--mc-inner .___btn2 a {
  color: #9A189A;
  font-size: 110%;
  font-weight: 500;
  display: inline-block;
  margin-top: var(--mvalue-20);
}

.___mt5 {
  margin-top: var(--mvalue-5) !important;
}

.___mt10 {
  margin-top: var(--mvalue-10) !important;
}

.___mt15 {
  margin-top: var(--mvalue-15) !important;
}

.___mt20 {
  margin-top: var(--mvalue-20) !important;
}

.___mt30 {
  margin-top: var(--mvalue-30) !important;
}

.___mt40 {
  margin-top: var(--mvalue-40) !important;
}

.___mt50 {
  margin-top: var(--mvalue-50) !important;
}

.___mt60 {
  margin-top: var(--mvalue-60) !important;
}

.___mt70 {
  margin-top: var(--mvalue-70) !important;
}

.___mt80 {
  margin-top: var(--mvalue-80) !important;
}

.___mt90 {
  margin-top: var(--mvalue-90) !important;
}

.___mt100 {
  margin-top: var(--mvalue-100) !important;
}

.___mt110 {
  margin-top: var(--mvalue-110) !important;
}

.___mt120 {
  margin-top: var(--mvalue-120) !important;
}

.___pb5 {
  padding-bottom: var(--mvalue-5) !important;
}

.___pb10 {
  padding-bottom: var(--mvalue-10) !important;
}

.___pb15 {
  padding-bottom: var(--mvalue-15) !important;
}

.___pb20 {
  padding-bottom: var(--mvalue-20) !important;
}

.___pb30 {
  padding-bottom: var(--mvalue-30) !important;
}

.___pb40 {
  padding-bottom: var(--mvalue-40) !important;
}

.___pb50 {
  padding-bottom: var(--mvalue-50) !important;
}

.___pb60 {
  padding-bottom: var(--mvalue-60) !important;
}

.___pb70 {
  padding-bottom: var(--mvalue-70) !important;
}

.___pb80 {
  padding-bottom: var(--mvalue-80) !important;
}

.___pb90 {
  padding-bottom: var(--mvalue-90) !important;
}

.___pb100 {
  padding-bottom: var(--mvalue-100) !important;
}

.___pb110 {
  padding-bottom: var(--mvalue-110) !important;
}

.___pb120 {
  padding-bottom: var(--mvalue-120) !important;
}
