@charset "UTF-8";
a,
abbr,
address,
article,
aside,
audio,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
dialog,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
hr,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
main,
mark,
menu,
meter,
nav,
object,
output,
p,
pre,
progress,
q,
rp,
rt,
ruby,
s,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
var,
video {
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 100%;
}

html,
body {
  height: 100%;
}

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

img {
  color: transparent;
  font-size: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s ease;
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
a img {
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
a:hover {
  cursor: pointer;
}

img, object {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  resize: none;
  outline: none;
  background: none;
}

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

button:hover {
  cursor: pointer;
}

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

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

*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --text_color: #0F1914;
  --accent_color: #64A028;
}

/*------------- 共通設定 -------------*/
html {
  font-size: 62.5%;
}

body {
  color: var(--text_color);
  font-size: 1rem;
  text-align: left;
  font-family: "Noto Sans JP", "メイリオ", sans-serif;
  background-color: #ecebe7;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  body {
    min-width: auto;
  }
}

section {
  position: relative;
}

main {
  position: relative;
  display: block;
}

p, th, td, dt, dd, li, input, button, textarea {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  p, th, td, dt, dd, li, input, button, textarea {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}

img {
  width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
  word-break: break-word;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: var(--text_color);
}
@media (any-hover: hover) {
  a {
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 769px) {
  a[href*="tel:"] {
    cursor: default;
    pointer-events: none;
  }
}

@media screen and (max-width: 768px) {
  .nosp {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .nopc {
    display: none !important;
  }
}
.wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 460px;
  min-height: 460px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .wrap {
    min-width: inherit;
    min-height: inherit;
  }
}

.texts {
  display: grid;
  grid-template-areas: "logo" "." "text01" ". " "text02" ". " "text03" ". " "text04";
  grid-template-rows: auto 2.5rem auto 2.5rem auto 0.8rem auto 2.2rem auto;
  text-align: center;
}

.logo {
  grid-area: logo;
  width: 33.6rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .logo {
    width: 82.6666666667vw;
  }
}

.text01 {
  grid-area: text01;
  font-size: 1.2rem;
  line-height: 160%;
}
@media screen and (max-width: 768px) {
  .text01 {
    font-size: 3.2vw;
  }
}

.text02 {
  grid-area: text02;
  font-weight: 700;
  font-size: 2rem;
  line-height: 160%;
}
@media screen and (max-width: 768px) {
  .text02 {
    font-size: 5.3333333333vw;
  }
}

.text03 {
  grid-area: text03;
  font-size: 1.6rem;
  line-height: 160%;
}
@media screen and (max-width: 768px) {
  .text03 {
    font-size: 4.2666666667vw;
  }
}

.text04 {
  grid-area: text04;
  font-size: 1.6rem;
  line-height: 160%;
}
@media screen and (max-width: 768px) {
  .text04 {
    font-size: 4.2666666667vw;
  }
}
.text04 a {
  color: var(--accent_color);
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}
