@charset "UTF-8";
:root {
  --content-width: 964px;
  --side-space: 30px;
  --text-color: #282020;
  --bg-color: #fff;
  --border-color: #322;
  --radius: 16px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.5s;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

a#totop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  text-decoration: none;
  background-color: rgba(40, 156, 255, 0.6);
  display: block;
  text-align: center;
  border-radius: 24px;
  z-index: 99;
}
a#totop::before {
  content: "↑";
  font-family: "Tilt Neon", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "XROT" 0, "YROT" 0;
  position: relative;
  top: -2px;
  font-size: 30px;
  line-height: 48px;
  color: #ffffff;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
  background: url("/img/bodybg.jpg") top center no-repeat;
}

.minch {
  font-family: "Noto Serif JP", serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-bottom: 15px;
}

strong {
  font-weight: 600;
}

p {
  margin: 0;
}

a {
  color: var(--text-color);
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

img {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
input:focus,
textarea:focus {
  outline: none;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.lazy-load {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.lazy-load.loaded {
  opacity: 1;
}

.block {
  margin: 30px auto 0 auto;
  padding: 0;
  max-width: 964px;
  width: 100%;
}

header.site-header {
  margin-top: 0;
  background: #ffffff;
}
header.site-header div {
  padding: 4px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.site-header div nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}
header.site-header div nav ul li:first-child, header.site-header div nav ul li:nth-child(2), header.site-header div nav ul li:nth-child(4) {
  letter-spacing: 8px;
}
header.site-header div nav a {
  text-decoration: none;
  font-weight: bold;
}
@media (max-width: 980px) {
  header.site-header div {
    display: block;
    text-align: center;
  }
  header.site-header div nav ul {
    margin-top: 10px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
}

footer.site-footer {
  padding: 10px 0 20px 0;
  background-color: #38b830;
  color: #ffffff;
}
footer.site-footer div.block {
  margin-top: 0;
}
footer.site-footer div.block > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}
footer.site-footer div.block > div img {
  filter: brightness(0) invert(1);
}
footer.site-footer div.block > div address {
  font-size: 1.1rem;
  font-style: normal;
}
footer.site-footer div.block > div address p {
  margin: 0;
}
footer.site-footer div.block > div address p span {
  white-space: nowrap;
}
footer.site-footer div.block > div address a {
  color: #ffffff;
}
footer.site-footer div.block nav {
  margin: 20px 0;
}
footer.site-footer div.block nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
footer.site-footer div.block nav ul li:first-child, footer.site-footer div.block nav ul li:nth-child(2), footer.site-footer div.block nav ul li:nth-child(4) {
  letter-spacing: 8px;
}
footer.site-footer div.block nav a {
  text-decoration: none;
  font-weight: bold;
  color: #ffffff;
}
footer.site-footer p.copy {
  text-align: center;
}
@media (max-width: 980px) {
  footer.site-footer div.block > div {
    display: block;
    text-align: center;
  }
  footer.site-footer div.block nav ul {
    flex-wrap: wrap;
    gap: 10px 20px;
  }
}

/* ====================================================================== */
/* ====================================================================== */
.txC {
  text-align: center;
}

h2 img.title {
  max-width: 100%;
  max-height: 94px;
}
h2.title {
  margin-top: 90px;
  text-align: center;
  font-size: 1.7rem;
  line-height: 2.2rem;
  font-weight: bold;
}
h2.title span {
  font-size: 1.4rem;
}
@media (max-width: 620px) {
  h2.title {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
  h2.title span {
    font-size: 1.1rem;
  }
}

h3 {
  font-size: 1.4rem;
  line-height: 2.2rem;
}
h3.title {
  text-align: center;
}
@media (max-width: 620px) {
  h3 {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
}

section#contact {
  margin-bottom: 90px;
}
section#contact .banner {
  padding: 30px 40px;
  background: linear-gradient(#ecf9f5, #d4f6dd);
  border-radius: 30px;
}
section#contact .banner p {
  margin: 16px 0;
}
section#contact .banner p.title {
  text-align: center;
}
section#contact .banner p.title strong {
  font-size: 1.5rem;
}
@media (max-width: 620px) {
  section#contact .banner {
    padding: 20px;
    border-radius: 20px;
  }
}

/* ====================================================================== */
/*  H     H  OOOOO  M     M EEEEEEE
/*  H     H O     O MM   MM E
/*  HHHHHHH O     O M M M M EEEEE
/*  H     H O     O M  M  M E
/*  H     H  OOOOO  M     M EEEEEEE

/* ====================================================================== */
main#home {
  padding-bottom: 60px;
}
main#home div.no1 h1 img {
  width: 100%;
}
main#home .no2 {
  text-align: center;
}
main#home .no2 p {
  font-size: 1.1rem;
  font-weight: 400;
}
@media (max-width: 880px) {
  main#home .no2 p {
    font-size: 1rem;
  }
}
@media (max-width: 800px) {
  main#home .no2 p {
    padding: 0 10px;
    text-align: left;
  }
  main#home .no2 p span {
    white-space: initial;
  }
}
main#home a.banner {
  text-decoration: none;
}
main#home .no3 {
  margin-top: 60px;
}
main#home .no3 .grs {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 80px;
}
main#home .no3 .grs__logo {
  max-width: 190px;
}
main#home .no3 .grs__logo img {
  width: 100%;
}
main#home .no3 .grs__logo a {
  text-decoration: none;
}
main#home .no3 .grs__logo {
  font-size: 0.8rem;
}
main#home .no3 .grs__text {
  margin-top: 40px;
  font-size: 1.05rem;
  font-weight: 400;
}
main#home .no3 .works {
  margin-top: 30px;
  padding: 30px;
  background: url(../img/home/bg1.png);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
main#home .no3 .works:hover {
  opacity: 0.8;
}
main#home .no3 .works__text {
  color: #ffffff;
  text-decoration: none;
}
main#home .no3 .works__text p {
  margin-bottom: 1rem;
}
@media (max-width: 860px) {
  main#home .no3 .works {
    display: block;
  }
  main#home .no3 .works img {
    margin-bottom: 20px;
  }
}
@media (max-width: 700px) {
  main#home .no3 {
    margin-top: 40px;
  }
  main#home .no3 .grs {
    display: block;
    text-align: center;
  }
  main#home .no3 .grs__logo {
    margin: 0 auto;
  }
  main#home .no3 .grs__text {
    margin-top: 20px;
    text-align: left;
  }
  main#home .no3 .works {
    padding: 20px;
  }
}
main#home .no4 ul {
  margin: 0 auto;
  padding: 0;
  width: 70%;
  list-style: none;
  border-top: 1px dotted var(--border-color);
}
main#home .no4 ul li {
  border-bottom: 1px dotted var(--border-color);
  text-align: center;
}
@media (max-width: 700px) {
  main#home .no4 ul {
    width: 96%;
  }
  main#home .no4 ul li {
    text-align: left;
  }
}
main#home .no5 div.products ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  aspect-ratio: 962/314;
  background: url(../img/home/products.jpg);
}
main#home .no5 div.products ul li {
  position: relative;
  aspect-ratio: 481/314;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 3px;
  color: #ffffff;
}
main#home .no5 div.products ul li:nth-child(2) {
  letter-spacing: 16px;
}
main#home .no5 div.products ul li:hover {
  background: rgba(0, 0, 0, 0.5);
}
main#home .no5 div.products ul li a {
  position: absolute;
  aspect-ratio: 481/314;
  width: 100%;
  text-decoration: none;
  z-index: 1;
}
main#home .no5 .aboutus {
  padding: 30px;
  background: url(../img/home/bg2.png);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
main#home .no5 .aboutus:hover {
  opacity: 0.8;
}
main#home .no5 .aboutus__text {
  color: #ffffff;
}
main#home .no5 .aboutus__text p {
  margin-bottom: 1rem;
}
@media (max-width: 860px) {
  main#home .no5 .aboutus {
    display: block;
    text-align: right;
  }
  main#home .no5 .aboutus__text {
    text-align: left;
  }
  main#home .no5 .aboutus img {
    margin-top: 20px;
  }
}
@media (max-width: 680px) {
  main#home .no5 div.products ul {
    display: block;
    aspect-ratio: auto;
    background-size: cover;
  }
  main#home .no5 div.products ul li {
    aspect-ratio: auto;
    height: 120px;
    font-size: 1.4rem;
  }
  main#home .no5 div.products ul li:nth-child(2) {
    letter-spacing: 8px;
  }
  main#home .no5 .aboutus {
    padding: 20px;
  }
}
main#home .no6 p {
  margin-bottom: 10px;
  text-align: center;
}
main#home .no6 div.branch ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  aspect-ratio: 964/257;
  background: url(../img/home/bg_branch.jpg);
}
main#home .no6 div.branch ul li {
  position: relative;
  aspect-ratio: 482/257;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 16px;
  color: #ffffff;
}
main#home .no6 div.branch ul li:hover {
  background: rgba(0, 0, 0, 0.5);
}
main#home .no6 div.branch ul li a {
  position: absolute;
  aspect-ratio: 482/257;
  width: 100%;
  text-decoration: none;
  z-index: 1;
}
@media (max-width: 620px) {
  main#home .no6 p {
    text-align: left;
  }
  main#home .no6 div.branch ul {
    display: block;
    aspect-ratio: auto;
    background-size: cover;
  }
  main#home .no6 div.branch ul li {
    aspect-ratio: auto;
    height: 120px;
    font-size: 1.4rem;
    letter-spacing: 8px;
  }
}

/* ====================================================================== */
main#aboutus {
  padding-bottom: 60px;
}
main#aboutus div.no1 h1 img {
  width: 100%;
}
main#aboutus .no2 {
  text-align: center;
}
main#aboutus .no2 p {
  font-size: 1.1rem;
}
@media (max-width: 860px) {
  main#aboutus .no2 p {
    font-size: 1rem;
  }
}
main#aboutus .no3 {
  padding-top: 30px;
  background: #ffffff url(../img/aboutus/bg_message.jpg) bottom center no-repeat;
}
main#aboutus .no3 h2.title {
  margin-top: 30px;
}
main#aboutus .no3 p {
  margin-bottom: 16px;
  text-align: center;
  text-shadow: 1px 1px 3px #ffffff, 1px 1px 3px #ffffff;
  font-weight: bold;
}
main#aboutus .no3 p span {
  white-space: nowrap;
}
main#aboutus .no3 div.sign {
  padding: 60px 60px 120px 60px;
  text-align: right;
}
main#aboutus .no3 div.sign img {
  width: 280px;
}
@media (max-width: 900px) {
  main#aboutus .no3 {
    padding-left: 20px;
    padding-right: 20px;
    background-size: contain;
  }
  main#aboutus .no3 p span {
    white-space: normal;
  }
  main#aboutus .no3 div.sign {
    padding: 40px 20px 90px 20px;
  }
}
@media (max-width: 560px) {
  main#aboutus .no3 {
    margin-top: 40px;
  }
  main#aboutus .no3 div.sign {
    padding-bottom: 70px;
    text-align: center;
  }
  main#aboutus .no3 div.sign img {
    width: 220px;
  }
}
main#aboutus .no4, main#aboutus .no5 {
  position: relative;
}
main#aboutus .no4 table, main#aboutus .no5 table {
  margin: 0 auto;
  padding: 0;
  width: 70%;
  border-collapse: collapse;
}
main#aboutus .no4 table th, main#aboutus .no5 table th {
  padding: 10px 30px;
  text-align: left;
  border-bottom: 1px solid #cccccc;
}
main#aboutus .no4 table td, main#aboutus .no5 table td {
  padding: 10px 30px;
  border-bottom: 1px solid #cccccc;
}
@media (max-width: 780px) {
  main#aboutus .no4 table, main#aboutus .no5 table {
    width: 100%;
  }
  main#aboutus .no4 table th, main#aboutus .no4 table td, main#aboutus .no5 table th, main#aboutus .no5 table td {
    display: block;
    width: 100%;
  }
  main#aboutus .no4 table th, main#aboutus .no5 table th {
    padding-top: 10px;
    border-bottom: 0;
  }
  main#aboutus .no4 table td, main#aboutus .no5 table td {
    padding-bottom: 10px;
  }
}
main#aboutus .no4 img.photo {
  position: absolute;
  top: -40px;
  right: 0;
  width: 330px;
}
@media (max-width: 780px) {
  main#aboutus .no4 img.photo {
    top: 60px;
    width: 220px;
  }
}
main#aboutus .no5 img.photo {
  position: absolute;
  top: 40px;
  right: 0;
  width: 240px;
}
@media (max-width: 780px) {
  main#aboutus .no5 img.photo {
    width: 160px;
  }
}
main#aboutus .no6 iframe {
  width: 100%;
}

/* ====================================================================== */
main#works {
  padding-bottom: 60px;
}
main#works div.no1 h1 img {
  width: 100%;
}
main#works .no2 {
  text-align: center;
}
main#works .no2 h2 {
  margin-bottom: 30px;
}
main#works .no2 div.frame {
  padding: 30px 115px;
  position: relative;
  overflow: hidden;
}
main#works .no2 div.frame::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/works/bg_frame.jpg) bottom center no-repeat;
  opacity: 0.2;
  z-index: -1;
}
main#works .no2 div.frame p {
  margin-bottom: 16px;
  text-align: center;
  text-shadow: 1px 1px 3px #ffffff, 1px 1px 3px #ffffff;
  font-weight: bold;
}
main#works .no2 div.frame p span {
  white-space: nowrap;
}
main#works .no2 p {
  font-size: 1.1rem;
}
@media (max-width: 920px) {
  main#works .no2 div.frame {
    padding: 30px 50px;
  }
  main#works .no2 div.frame p span {
    white-space: normal;
  }
}
@media (max-width: 620px) {
  main#works .no2 div.frame {
    padding: 20px;
  }
  main#works .no2 p {
    font-size: 1rem;
  }
}
main#works .no3 {
  padding: 0 30px;
}
main#works .no3 h2 span {
  margin-top: 30px;
  display: block;
  text-align: left;
}
main#works .no3 h3 {
  margin-top: 30px;
  text-align: left;
}
main#works .no3 h3.right {
  text-align: right;
}
main#works .no3 div.col2 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
main#works .no3 div.col2.right {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
main#works .no3 div.col2.right p {
  text-align: right;
}
main#works .no3 div.col2 img {
  width: 100%;
  min-width: 160px;
  max-width: 300px;
  flex: 2;
}
main#works .no3 div.col2 p {
  padding: 0 30px;
  flex: 3;
  font-size: 1.1rem;
  min-width: 160px;
}
main#works .no3 div.col2 p span {
  white-space: nowrap;
}
@media (max-width: 930px) {
  main#works .no3 div.col2 p span {
    white-space: initial;
  }
}
@media (max-width: 680px) {
  main#works .no3 div.col2 {
    margin-bottom: 30px;
  }
  main#works .no3 div.col2.right p {
    text-align: left;
  }
}
@media (max-width: 560px) {
  main#works .no3 {
    padding: 0;
  }
}
@media (max-width: 500px) {
  main#works .no3 div.col2 {
    display: block;
    text-align: center;
  }
  main#works .no3 div.col2 p {
    text-align: left;
  }
}
main#works .no4 div.col1 {
  padding: 30px;
}
main#works .no4 div.col1 h3 {
  margin-top: 20px;
  text-align: left;
}
main#works .no4 div.col1 h3 a {
  text-decoration: none;
}
main#works .no4 div.col1 p {
  font-size: 1.4rem;
}
main#works .no4 div.col1 p.link, main#works .no4 div.col1 p a {
  font-weight: bold;
  color: #38b830;
}
main#works .no4 div.col1 p strong {
  color: #38b830;
}
main#works .no4 div.col1 p span {
  white-space: nowrap;
}
@media (max-width: 860px) {
  main#works .no4 div.col1 {
    padding: 20px;
  }
  main#works .no4 div.col1 p {
    font-size: 1.1rem;
  }
  main#works .no4 div.col1 p strong span {
    white-space: wrap;
  }
  main#works .no4 div.col1 p span {
    white-space: nowrap;
  }
}
@media (max-width: 560px) {
  main#works .no4 h2.title {
    font-size: 1.3rem;
  }
}

/* ====================================================================== */
main#products {
  padding-bottom: 60px;
}
main#products div.no1 h1 img {
  width: 100%;
}
main#products .no2 {
  text-align: center;
}
main#products .no2 p {
  font-size: 1.1rem;
  text-shadow: 1px 1px 3px #ffffff, 1px 1px 3px #ffffff;
  font-weight: bold;
}
main#products .no2 p span {
  white-space: nowrap;
}
@media (max-width: 860px) {
  main#products .no2 p {
    padding: 0 30px;
    text-align: left;
    font-size: 1rem;
  }
  main#products .no2 p span {
    white-space: normal;
  }
}
main#products h3 {
  text-align: center;
}
main#products h3.label {
  margin: 0 auto;
  padding: 0 30px;
  display: inline-block;
  border: 2px solid var(--text-color);
  border-radius: 22px;
  min-width: 300px;
}
main#products h4 {
  margin: 30px 0;
  font-size: 1.4rem;
  line-height: 2.2rem;
  text-align: center;
}
main#products .no3 {
  padding: 0 30px;
}
main#products .no3 ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 240px));
  justify-content: space-between;
  width: 100%;
  row-gap: 60px;
}
main#products .no3 ul li {
  text-align: center;
}
@media (max-width: 840px) {
  main#products .no3 {
    padding: 0 20px;
  }
  main#products .no3 ul {
    grid-template-columns: repeat(2, minmax(0, 240px));
    justify-content: center;
    gap: 40px;
  }
}
@media (max-width: 560px) {
  main#products .no3 {
    padding: 0;
  }
  main#products .no3 h3.label {
    max-width: 100%;
  }
  main#products .no3 ul {
    grid-template-columns: minmax(0, 240px);
  }
}
main#products .no4 h3.label {
  letter-spacing: 10px;
}
main#products .no4 ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
main#products .no4 div.tsukasa {
  margin: 90px auto;
  width: 60%;
}
main#products .no4 div.tsukasa p {
  text-align: center;
  font-size: 1.1rem;
}
main#products .no4 div.tsukasa p b {
  color: #38b830;
}
main#products .no4 div.tsukasa p span {
  white-space: nowrap;
}
@media (max-width: 760px) {
  main#products .no4 h3.label {
    max-width: 100%;
  }
  main#products .no4 ul {
    display: block;
    text-align: center;
  }
  main#products .no4 div.tsukasa {
    margin: 50px auto;
    width: 90%;
  }
  main#products .no4 div.tsukasa p {
    text-align: left;
  }
  main#products .no4 div.tsukasa p span {
    white-space: normal;
  }
}

/* ====================================================================== */
main#branch {
  padding-bottom: 60px;
}
main#branch div.no1 h1 img {
  width: 100%;
}
main#branch .no2 {
  text-align: center;
}
main#branch .no2 p {
  font-size: 1.1rem;
  text-shadow: 1px 1px 3px #ffffff, 1px 1px 3px #ffffff;
  font-weight: bold;
}
main#branch .no2 p span {
  white-space: nowrap;
}
@media (max-width: 860px) {
  main#branch .no2 p {
    padding: 0 60px;
    font-size: 1rem;
    text-align: left;
  }
  main#branch .no2 p span {
    white-space: normal;
  }
}
main#branch h3 {
  text-align: center;
}
main#branch h3.label {
  margin: 0 auto;
  padding: 0 30px;
  display: inline-block;
  border: 2px solid var(--text-color);
  border-radius: 22px;
  min-width: 300px;
}
main#branch h4 {
  margin: 30px 0;
  font-size: 1.4rem;
  line-height: 2.2rem;
  text-align: center;
}
main#branch .no3 {
  padding: 0 30px;
}
main#branch .no3 div.tsukasa {
  margin: 0 auto 30px auto;
  width: 60%;
}
main#branch .no3 div.tsukasa p {
  text-align: center;
  font-size: 1.1rem;
}
main#branch .no3 div.tsukasa p b {
  color: #38b830;
}
main#branch .no3 div.tsukasa p span {
  white-space: nowrap;
}
@media (max-width: 860px) {
  main#branch .no3 {
    padding: 0 20px;
  }
  main#branch .no3 div.tsukasa {
    width: 90%;
  }
  main#branch .no3 div.tsukasa p {
    text-align: left;
  }
  main#branch .no3 div.tsukasa p span {
    white-space: normal;
  }
}
@media (max-width: 740px) {
  main#branch .no3 h2.title {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
  main#branch .no3 h2.title span {
    font-size: 1.1rem;
  }
}
@media (max-width: 620px) {
  main#branch .no3 h2.title {
    font-size: 1.1rem;
    line-height: 1.5rem;
  }
  main#branch .no3 h2.title span {
    font-size: 0.9rem;
  }
}
@media (max-width: 560px) {
  main#branch .no3 {
    padding: 0;
  }
}
main#branch .no4 h2 {
  margin-bottom: 60px;
}
main#branch .no4 ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
main#branch .no4 ul li {
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  max-width: 964px;
  width: 100%;
}
main#branch .no4 ul li h3 {
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 1.5rem;
  line-height: 2.2rem;
  min-width: 180px;
}
main#branch .no4 ul li p {
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
  line-height: 2.2rem;
  flex: 1;
}
main#branch .no4 ul li img {
  width: 120px;
  border: 2px solid #000000;
}
@media (max-width: 820px) {
  main#branch .no4 ul li {
    display: block;
  }
  main#branch .no4 ul li div.lside p {
    font-size: 1rem;
    line-height: 1.8rem;
  }
  main#branch .no4 ul li img {
    display: block;
    margin-top: 20px;
  }
}
@media (max-width: 560px) {
  main#branch .no4 ul {
    gap: 20px;
  }
  main#branch .no4 ul li {
    padding: 18px;
    border-radius: 20px;
  }
}

/* ====================================================================== */
main#contact {
  padding-bottom: 60px;
}
main#contact div.no1 h1 img {
  width: 100%;
}
main#contact .no2 {
  text-align: center;
}
main#contact .no2 p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 3px #ffffff, 1px 1px 3px #ffffff;
  font-weight: bold;
}
main#contact .no2 p.link {
  margin: 30px 0;
  color: #38b830;
  font-weight: bold;
}
main#contact .no2 p.link a {
  color: #38b830;
}
main#contact .no2 p span {
  white-space: nowrap;
}
@media (max-width: 860px) {
  main#contact .no2 p {
    font-size: 1rem;
  }
  main#contact .no2 p span {
    white-space: normal;
  }
}
@media (max-width: 700px) {
  main#contact .no2 p {
    padding: 0 30px;
    text-align: left;
  }
}
main#contact h3 {
  text-align: center;
}
main#contact h3.label {
  margin: 0 auto;
  padding: 0 30px;
  display: inline-block;
  border: 2px solid var(--text-color);
  border-radius: 22px;
  min-width: 300px;
}
main#contact h4 {
  margin: 30px 0;
  font-size: 1.4rem;
  line-height: 2.2rem;
  text-align: center;
}
main#contact .no3 {
  padding: 70px 85px 90px 85px;
  background: #ffffff;
}
main#contact .no3 form {
  margin-top: 60px;
}
main#contact .no3 form dl {
  margin: 0;
  padding: 0;
}
main#contact .no3 form dl > div {
  margin-top: 34px;
}
main#contact .no3 form dl > div:first-child {
  margin-top: 0;
}
main#contact .no3 form dl > div:nth-child(2) dd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
main#contact .no3 form dl > div:nth-child(3) dt span {
  background: #b8c2c5;
}
main#contact .no3 form dl dt {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: bold;
}
main#contact .no3 form dl dt span {
  padding: 2px 12px;
  min-width: 64px;
  display: inline-block;
  background: #38b830;
  color: #ffffff;
  font-size: 0.85rem;
  line-height: 1.5rem;
  text-align: center;
}
main#contact .no3 form dl dd {
  margin: 0;
}
main#contact .no3 form input, main#contact .no3 form textarea {
  margin-bottom: 0;
  padding: 14px 20px;
  border: 2px solid #e7dfdf;
  border-radius: 3px;
  background: #ffffff;
  color: var(--text-color);
  font-size: 1.2rem;
  font-family: inherit;
  font-weight: bold;
}
main#contact .no3 form input::-moz-placeholder, main#contact .no3 form textarea::-moz-placeholder {
  color: #b8b8b8;
}
main#contact .no3 form input::placeholder, main#contact .no3 form textarea::placeholder {
  color: #b8b8b8;
}
main#contact .no3 form textarea {
  height: 390px;
  resize: vertical;
}
main#contact .no3 form p {
  margin-top: 54px;
  font-size: 1.1rem;
  line-height: 1.55rem;
  font-weight: bold;
}
main#contact .no3 form p a {
  color: #38b830;
}
main#contact .no3 form button {
  margin: 70px auto 0 auto;
  padding: 17px 40px;
  display: block;
  max-width: 80%;
  width: 590px;
  border: 0;
  border-radius: 32px;
  background: #38b830;
  color: #ffffff;
  font-size: 1.4rem;
  font-family: inherit;
  font-weight: bold;
  line-height: 1.4rem;
  cursor: pointer;
}
@media (max-width: 820px) {
  main#contact .no3 {
    padding: 50px 40px 70px 40px;
  }
  main#contact .no3 form dl > div:nth-child(2) dd {
    gap: 14px;
  }
  main#contact .no3 form textarea {
    height: 320px;
  }
  main#contact .no3 form p {
    font-size: 1rem;
  }
  main#contact .no3 form button {
    max-width: 90%;
  }
}
@media (max-width: 560px) {
  main#contact .no3 {
    padding: 40px 18px 60px 18px;
  }
  main#contact .no3 form {
    margin-top: 35px;
  }
  main#contact .no3 form dl > div {
    margin-top: 26px;
  }
  main#contact .no3 form dl > div:nth-child(2) dd {
    grid-template-columns: 1fr;
  }
  main#contact .no3 form dl dt {
    gap: 10px;
    font-size: 1rem;
  }
  main#contact .no3 form dl dt span {
    min-width: 52px;
    font-size: 0.75rem;
    line-height: 1.4rem;
  }
  main#contact .no3 form input, main#contact .no3 form textarea {
    padding: 12px 14px;
    font-size: 1rem;
  }
  main#contact .no3 form textarea {
    height: 260px;
  }
  main#contact .no3 form p {
    margin-top: 36px;
    line-height: 1.55rem;
  }
  main#contact .no3 form button {
    margin-top: 45px;
    padding: 15px 20px;
    max-width: 100%;
    width: 100%;
    font-size: 1.05rem;
  }
}

/* ====================================================================== */
main#privacy {
  padding-bottom: 60px;
}
main#privacy div.no1 h1 img {
  width: 100%;
}
main#privacy .no2 {
  text-align: center;
}
main#privacy .no2 p {
  font-size: 1.1rem;
  text-shadow: 1px 1px 3px #ffffff, 1px 1px 3px #ffffff;
  font-weight: bold;
}
main#privacy .no2 p span {
  white-space: nowrap;
}
@media (max-width: 860px) {
  main#privacy .no2 p {
    font-size: 1rem;
  }
  main#privacy .no2 p span {
    white-space: normal;
  }
}
@media (max-width: 700px) {
  main#privacy .no2 p {
    padding: 0 30px;
    text-align: left;
  }
}
main#privacy .no3 {
  margin-top: 70px;
  padding: 30px;
  background: #ffffff;
}
main#privacy .no3 h2 {
  margin-top: 50px;
  margin-bottom: 16px;
  font-size: 1.5rem;
  line-height: 1.8rem;
}
main#privacy .no3 h2:first-child {
  margin-top: 0;
}
main#privacy .no3 p {
  margin-left: 16px;
  font-size: 1.05rem;
  line-height: 2rem;
}
main#privacy .no3 p a {
  color: #38b830;
}
main#privacy .no3 ul, main#privacy .no3 ol {
  margin: 24px 0 24px 32px;
  padding-left: 28px;
  font-size: 1.05rem;
  line-height: 2rem;
}
main#privacy .no3 address {
  margin: 24px 0 24px 16px;
  font-size: 1.05rem;
  line-height: 2rem;
  font-style: normal;
}
main#privacy .no3 p:last-child {
  margin-top: 55px;
  text-align: right;
}
@media (max-width: 700px) {
  main#privacy .no3 {
    margin-top: 50px;
    padding: 0 20px;
  }
  main#privacy .no3 h2 {
    margin-top: 40px;
    font-size: 1.1rem;
  }
  main#privacy .no3 p, main#privacy .no3 ul, main#privacy .no3 ol, main#privacy .no3 address {
    font-size: 1rem;
    line-height: 1.8rem;
  }
  main#privacy .no3 ul, main#privacy .no3 ol {
    padding-left: 20px;
  }
}
@media (max-width: 560px) {
  main#privacy .no3 {
    padding: 0;
  }
  main#privacy .no3 p:last-child {
    margin-top: 40px;
  }
}

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