@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  display: block;
}

a img {
  border: none;
}

ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
table th {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
table td {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: white;
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, Verdana, Meiryo, sans-serif;
}
body input {
  font-size: 100%;
}

a {
  color: #333;
  transition: color 300ms ease;
  text-decoration: none;
}
a:hover {
  color: #228330;
  transition: color 300ms ease;
}
a.tel-link {
  pointer-events: none;
  text-decoration: none;
  color: inherit;
}
a.btn01 {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #335719;
  background-color: white;
  border: 1px solid #335719;
  position: relative;
  padding: 0.8em 0;
  text-decoration: none;
  transition: background-color 300ms ease;
}
a.btn01:hover {
  background-color: #e5ede3;
  transition: background-color 300ms ease;
}
a.arrow01 span::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  transform: translateY(-0.1em);
  margin-left: 0.5em;
  width: 1.4em;
  height: 1.4em;
  background-color: white;
  background: url(../svgs/arrow01.svg) no-repeat center center;
  background-size: contain;
  transform: rotate(0);
  transition: transform 300ms ease;
}
a.arrow01:hover span::after {
  transform: rotate(45deg);
  transition: transform 300ms ease;
}
a.arrow02 span::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  transform: translateY(-0.1em);
  margin-left: 1em;
  width: 1em;
  height: 1em;
  background-color: white;
  -webkit-mask: url(../svgs/arrow02.svg) no-repeat center center;
          mask: url(../svgs/arrow02.svg) no-repeat center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: background-color 300ms;
}
a.arrow02 span:hover::before {
  background-color: #244ab4;
  transition: background-color 300ms;
}
a.arrow02 span:hover::after {
  background-color: #e6ebf7;
  transition: background-color 300ms;
}
a.arrow04 span::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  transform: translateY(-0.1em);
  margin-left: 0.3em;
  width: 0.8em;
  height: 0.8em;
  background-color: #333;
  -webkit-mask: url(../svgs/arrow04.svg) no-repeat center center;
          mask: url(../svgs/arrow04.svg) no-repeat center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: background-color 300ms;
}
a.arrow04 span:hover::after {
  background-color: #31B1B0;
  transition: background-color 300ms;
}
a.arrow06 span::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  transform: translateY(-0.1em);
  margin-left: 1em;
  width: 1em;
  height: 1em;
  background-color: white;
  -webkit-mask: url(../svgs/arrow06.svg) no-repeat center center;
          mask: url(../svgs/arrow06.svg) no-repeat center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: background-color 300ms;
}
a.more-link {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #31B1B0;
  height: 3.8em;
  border-radius: 1.9em;
  border: 1px solid #31B1B0;
  background-color: white;
  transition: background-color 300ms ease;
}
a.more-link:hover {
  background-color: #f5ffff;
  transition: background-color 300ms ease;
}

@media screen and (max-width: 768px) {
  a.tel-link {
    pointer-events: auto;
  }
}
h3 {
  line-height: 1.4;
}
h3.dot {
  font-size: 115%;
  font-weight: 700;
  padding-left: 1.2em;
  margin-bottom: 0.5em;
  position: relative;
}
h3.dot::before {
  content: "";
  display: block;
  width: 0.6em;
  height: 0.6em;
  border-radius: 50%;
  background-color: #31B1B0;
  position: absolute;
  left: 0;
  top: calc(50% - 0.3em);
}
h3.dot.black::before {
  background-color: #333;
}
h3.dot.yellow::before {
  background-color: #EDEE00;
}
h3.dot.white::before {
  background-color: white;
}
h3.dot span.corp {
  color: #31B1B0;
}
h3.dot span.yellow {
  color: #EDEE00;
}
h3.dot span.gray {
  color: #B0B0B0;
}
h3.dot span.white {
  color: white;
}

h2 {
  font-size: 320%;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
h2 span.corp {
  color: #31B1B0;
}
h2 span.yellow {
  color: #EDEE00;
}
h2 span.white {
  color: white;
}

h1 {
  line-height: 1.4;
}

h4 {
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 7vw;
  }
}
/* ANIMATION */
@keyframes SlideOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes SlideIN {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
/* WordPress skip-link accessibility styles.
	Added locally because WordPress default styles are disabled.
	Added: 2026-06-02 */
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  position: static !important;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

header {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 120px auto;
  grid-template-rows: 40px 50px;
}
header .header-title {
  grid-column: 1/2;
  grid-row: 1/3;
  display: flex;
  justify-content: left;
  align-items: center;
  padding-left: 1em;
}
header .header-title p.wp-block-site-title a {
  display: block;
  width: 120px;
  height: 34px;
  background: url(../images/logo.png) no-repeat center center;
  background-size: contain;
  text-indent: -9999px;
}
header > div.upper {
  grid-column: 2/3;
  grid-row: 1/2;
  height: 40px;
  display: flex;
  justify-content: end;
  align-items: center;
  font-size: 85%;
}
header > div.upper > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
header > div.upper > a:first-child {
  color: white;
  font-weight: 700;
  background-color: #03ac4b;
  transition: background-color 300ms ease;
  width: 380px;
}
header > div.upper > a:first-child span:first-child::before {
  content: "";
  display: inline-block;
  margin-right: 0.5em;
  width: 1.3em;
  height: 1.3em;
  background: url(../images/icon_mail.png) no-repeat center center;
  background-size: contain;
  transform: translateY(0.3em);
}
header > div.upper > a:first-child span:last-child {
  font-size: 85%;
  transform: translateY(0.2em);
}
header > div.upper > a:first-child:hover {
  background-color: #68cd93;
  transition: background-color 300ms ease;
}
header > div.upper #toggle_menu_button {
  display: none;
}
header > div.lower {
  grid-column: 2/3;
  grid-row: 2/3;
  height: 40px;
  display: flex;
  justify-content: end;
  padding-right: 24px;
}
header > div.lower ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}
header > div.lower ul > li {
  position: relative;
}
header > div.lower ul > li > a {
  display: inline-block;
  padding: 8px 0;
  color: #333333;
  transition: color 300ms ease;
  font-size: 14px;
  text-decoration: none;
}
header > div.lower ul > li > a:hover {
  color: #228330;
  transition: color 300ms ease;
}
header > div.lower ul > li > ul.wp-block-list {
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-width: 260px;
  margin: 0;
  padding: 8px 0;
  background-color: #ffffff;
  border: 1px solid #e5ede3;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 10;
}
header > div.lower ul > li > ul.wp-block-list > li a::before {
  content: "›";
  color: #03ac4b;
  margin-right: 6px;
}
header > div.lower ul > li > ul.wp-block-list > li a:hover {
  background-color: #e5ede3;
}
header > div.lower ul > li > ul.wp-block-list > li {
  width: 100%;
}
header > div.lower ul > li > ul.wp-block-list > li a {
  display: block;
  padding: 8px 20px;
  font-size: 13px;
  color: #333333;
  transition: color 300ms ease;
  white-space: nowrap;
  text-decoration: none;
}
header > div.lower ul > li > ul.wp-block-list > li a:hover {
  color: #228330;
  transition: color 300ms ease;
}
header > div.lower ul > li:last-child > ul.wp-block-list {
  left: initial;
  right: 0;
}
header > div.lower ul > li:hover > ul.wp-block-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header #toggle_menu {
  display: none;
}

/**
 * mobile-menu.css
 * #toggle_menu_button のクリックで #mobile-menu を開閉する。
 * #mobile-menu の中身は accordandgo/g-navigation パターンの出力
 * （wp-block-list）をそのまま使用し、サブ項目を持つ<li>はタップで開閉する。
 */
#mobile-menu {
  position: fixed;
  top: 64px;
  right: 0;
  width: 100%;
  max-width: 480px;
  height: 100%;
  background-color: #ffffff;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 25;
  padding: 0 24px 40px;
}
#mobile-menu.is-open {
  transform: translateX(0);
}
#mobile-menu .wp-block-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
#mobile-menu .wp-block-list > li {
  position: relative;
  border-bottom: 1px solid #e5ede3;
}
#mobile-menu .wp-block-list > li > a {
  display: block;
  padding: 14px 0;
  color: #333333;
  font-size: 15px;
  text-decoration: none;
}
#mobile-menu .wp-block-list > li:has(> ul) > a::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 14px;
  color: #03ac4b;
}
#mobile-menu .wp-block-list > li.is-open > a::after {
  content: "−";
}
#mobile-menu .wp-block-list > li > ul.wp-block-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
#mobile-menu .wp-block-list > li.is-open > ul.wp-block-list {
  max-height: 600px;
}
#mobile-menu .wp-block-list > li > ul.wp-block-list li a {
  padding: 10px 0 10px 16px;
  font-size: 100%;
}
#mobile-menu a.pdf {
  width: 100%;
  height: 3.6em;
  color: white;
  font-weight: 700;
  background-color: #335719;
  transition: background-color 300ms ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
#mobile-menu a.pdf span::before {
  content: "";
  display: inline-block;
  margin-right: 0.5em;
  width: 1.3em;
  height: 1.3em;
  background: url(../images/icon_dl.png) no-repeat center center;
  background-size: contain;
  transform: translateY(0.3em);
}
#mobile-menu a.pdf:hover {
  background-color: #859a75;
  transition: background-color 300ms ease;
}

@media screen and (max-width: 980px) {
  header {
    grid-template-columns: 120px auto;
    grid-template-rows: 64px;
    width: 100%;
    height: 64px;
    position: fixed;
    z-index: 30;
    left: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.8);
  }
  header .header-title {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  header > div.upper {
    height: 100%;
  }
  header > div.upper #toggle_menu_button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 100%;
    z-index: 30;
    background-color: white;
    cursor: pointer;
    position: relative;
  }
  header > div.upper #toggle_menu_button span {
    display: block;
    width: 32px;
    height: 2px;
    background-color: #03ac4b;
    text-indent: -9999px;
    position: absolute;
    left: 16px;
  }
  header > div.upper #toggle_menu_button span:first-child {
    top: 22px;
    transform: rotate(0);
    transition: transform 300ms ease;
  }
  header > div.upper #toggle_menu_button span:last-child {
    bottom: 22px;
    transform: rotate(0);
    transition: transform 300ms ease;
  }
  header > div.upper #toggle_menu_button.is-open span:first-child {
    transform: rotate(45deg) translateX(6px);
    transform-origin: 30% center;
    transition: transform 300ms ease;
  }
  header > div.upper #toggle_menu_button.is-open span:last-child {
    transform: rotate(-45deg) translateX(6px);
    transform-origin: 30% center;
    transition: transform 300ms ease;
  }
  header > div.lower {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header #mobile-menu a.pdf {
    display: none;
  }
}
@media screen and (max-width: 620px) {
  header > div.upper > a:first-child {
    width: 180px;
  }
  header > div.upper > a:first-child span:last-child {
    display: none;
  }
  header #mobile-menu a.pdf {
    display: flex;
  }
}
@media screen and (max-width: 500px) {
  header > div.upper > a:first-child {
    width: 64px;
  }
  header > div.upper > a:first-child span {
    display: none;
  }
  header > div.upper > a:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header > div.upper > a:first-child::before {
    content: "";
    display: block;
    width: 50%;
    height: 50%;
    background: url(../images/icon_mail.png) no-repeat center center;
    background-size: contain;
  }
}
nav.breadcrumb > ul {
  max-width: 1240px;
  padding: 10px 30px;
  margin: 0 auto;
  font-size: 85%;
}
nav.breadcrumb > ul > li {
  display: inline-block;
}
nav.breadcrumb > ul > li:not(:last-child)::after {
  content: "-";
  padding: 0 0.5em;
}

@media screen and (max-width: 768px) {
  nav.breadcrumb > ul {
    padding: 10px 3%;
  }
}
main section .container {
  max-width: 1600px;
  padding: 0 30px;
  margin: 0 auto;
}

@media screen and (max-width: 580px) {
  main section .container {
    padding: 0 5%;
  }
}
section.ttl {
  border-bottom: 3px solid #31B1B0;
}
section.ttl > div {
  max-width: 1240px;
  padding: 40px 30px;
  margin: 0 auto;
}
section.ttl > div h1 {
  font-size: 200%;
}
section.page-contact-items {
  padding: 3em 0;
  background-color: #F6F6F6;
}
section.page-contact-items .container {
  background-color: white;
  border-radius: 0.8em;
  padding: 30px 60px;
}
section.page-contact-items .container h3 {
  font-size: 180%;
  text-align: center;
  padding-bottom: 1em;
}
section.page-contact-items .container p {
  padding-bottom: 2em;
}
section.page-contact-items .container ul {
  display: flex;
  justify-content: space-between;
}
section.page-contact-items .container ul li {
  width: 47%;
}
section.page-lower-links {
  padding: 3em 0 8em 0;
  background-color: #F6F6F6;
}
section.page-lower-links ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 2em;
}
section.page-lower-links ul li {
  width: 47%;
  background-color: white;
}
section.page-lower-links ul li a {
  font-size: 135%;
  font-weight: 700;
  display: block;
  padding: 1em;
  position: relative;
}
section.page-lower-links ul li a::before {
  content: "";
  display: block;
  width: 1.6em;
  height: 1.6em;
  position: absolute;
  right: 1em;
  top: calc(50% - 0.8em);
  border: 2px solid #31B1B0;
  border-radius: 3px;
  background-color: white;
  transition: background-color 300ms ease;
}
section.page-lower-links ul li a::after {
  content: "";
  display: block;
  width: 0.8em;
  height: 0.8em;
  position: absolute;
  right: 1.4em;
  top: calc(50% - 0.4em);
  background-color: #31B1B0;
  transition: background-color 300ms ease;
  -webkit-mask: url(../svgs/arrow02.svg) no-repeat center center;
  mask: url(../svgs/arrow02.svg) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
section.page-lower-links ul li a:hover::before {
  background-color: #31B1B0;
  transition: background-color 300ms ease;
}
section.page-lower-links ul li a:hover::after {
  background-color: white;
  transition: background-color 300ms ease;
}

@media screen and (max-width: 1280px) {
  section.page-contact-items {
    padding: 3em 3%;
  }
}
@media screen and (max-width: 900px) {
  section.page-lower-links ul li:nth-child(odd) {
    width: 43%;
  }
  section.page-lower-links ul li:nth-child(even) {
    width: 52%;
  }
}
@media screen and (max-width: 768px) {
  section.page-contact-items .container {
    padding: 30px 5%;
  }
  section.page-contact-items .container ul {
    display: block;
  }
  section.page-contact-items .container ul li {
    width: 90%;
    margin: 0 auto;
  }
  section.page-contact-items .container ul li:first-child {
    margin-bottom: 30px;
  }
  section.page-lower-links ul {
    display: block;
  }
  section.page-lower-links ul li:nth-child(odd) {
    width: 100%;
  }
  section.page-lower-links ul li:nth-child(even) {
    width: 100%;
  }
  section.page-lower-links ul li:not(:last-child) {
    margin-bottom: 6vw;
  }
  section.page-lower-links ul li a {
    font-size: 5vw;
  }
}
footer .map {
  background: linear-gradient(to right, #fff 0%, #fff 60%, #f4f7f4 60%, #f4f7f4 100%);
  padding: 60px 0 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.8em;
}
footer .map > iframe {
  max-width: 1600px;
  width: 100%;
}
footer .map > iframe + p {
  display: flex;
  justify-content: center;
  -moz-column-gap: 2em;
       column-gap: 2em;
  flex-wrap: wrap;
}
footer .map > iframe + p span::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.5em;
  background: url(../images/icon_address.png) no-repeat center center;
  background-size: contain;
  transform: translateY(0.3em);
}
footer .map > iframe + p span:last-child::before {
  background-image: url(../images/icon_tel.png);
}
footer .map:nth-of-type(2) {
  padding: 0 0 60px 0;
}
footer .wrap-scroll-top {
  width: 100vw;
  height: 0;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 9980;
}
footer .wrap-scroll-top a#scroll-top {
  display: block;
  width: 50px;
  position: absolute;
  right: 10%;
  bottom: 16vh;
  cursor: pointer;
  border-radius: 50%;
  background-color: white;
  transition: background-color 300ms ease;
}
footer .wrap-scroll-top a#scroll-top img {
  width: 100%;
  height: auto;
}
footer .wrap-scroll-top a#scroll-top:hover {
  background-color: #e5ede3;
  transition: background-color 300ms ease;
}
footer .inner {
  background-color: #eeeeee;
  margin: 0 auto;
  padding: 40px 20px 0 20px;
}
footer .inner .upper {
  max-width: 800px;
  margin: 0 auto;
}
footer .inner .upper > p {
  text-align: center;
  padding-bottom: 40px;
}
footer .inner .upper > div {
  display: flex;
}
footer .inner .upper > div > a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8em 2em;
  margin: 0 auto;
  background-color: #03ac4b;
  transition: background-color 300ms ease;
  color: white;
  font-weight: 700;
  position: relative;
}
footer .inner .upper > div > a > span::before {
  content: "";
  display: inline-block;
  margin-right: 0.5em;
  width: 1.6em;
  height: 1.6em;
  background: url(../images/icon_mail.png) no-repeat center center;
  background-size: contain;
  transform: translateY(0.3em);
}
footer .inner .upper > div > a > span span:last-child {
  font-size: 85%;
}
footer .inner .upper > div > a:hover {
  background-color: #68cd93;
  transition: background-color 300ms ease;
}
footer .inner .lower {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 50px auto;
  font-size: 85%;
}
footer .inner .lower > p span {
  display: block;
}
footer .inner .lower > ul {
  display: flex;
  justify-content: space-between;
  gap: 3em;
}
footer .inner .copy {
  max-width: 1600px;
  text-align: center;
  padding: 3em 0;
  margin: 0 auto;
  background-color: #335719;
  color: white;
}

@media screen and (max-width: 1200px) {
  footer .inner .lower {
    flex-direction: column;
    align-items: center;
  }
  footer .inner .lower > p {
    padding-bottom: 40px;
  }
  footer .inner .lower ul {
    gap: 2em;
  }
}
@media screen and (max-width: 920px) {
  footer .inner .lower > ul {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    grid-template-rows: auto auto;
    width: 100%;
  }
  footer .inner .lower > ul > li:first-child {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  footer .inner .lower > ul > li:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  footer .inner .lower > ul > li:nth-child(3) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  footer .inner .lower > ul > li:nth-child(4) {
    grid-column: 3/4;
    grid-row: 1/2;
  }
  footer .inner .lower > ul > li:nth-child(5) {
    grid-column: 3/4;
    grid-row: 2/3;
  }
  footer .inner .lower > ul > li:nth-child(6) {
    grid-column: 4/5;
    grid-row: 1/2;
  }
  footer .inner .lower > ul > li:nth-child(7) {
    grid-column: 4/5;
    grid-row: 2/3;
  }
  footer .inner .lower > ul > li:nth-child(8) {
    grid-column: 5/6;
    grid-row: 1/3;
  }
}
@media screen and (max-width: 700px) {
  footer .inner .lower > ul {
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-template-rows: auto auto auto;
    width: 100%;
  }
  footer .inner .lower > ul > li:first-child {
    grid-column: 1/2;
    grid-row: 1/4;
  }
  footer .inner .lower > ul > li:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  footer .inner .lower > ul > li:nth-child(3) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  footer .inner .lower > ul > li:nth-child(4) {
    grid-column: 2/3;
    grid-row: 3/4;
  }
  footer .inner .lower > ul > li:nth-child(5) {
    grid-column: 3/4;
    grid-row: 1/2;
  }
  footer .inner .lower > ul > li:nth-child(6) {
    grid-column: 3/4;
    grid-row: 2/3;
  }
  footer .inner .lower > ul > li:nth-child(7) {
    grid-column: 3/4;
    grid-row: 3/4;
  }
  footer .inner .lower > ul > li:nth-child(8) {
    grid-column: 4/5;
    grid-row: 1/4;
  }
}
@media screen and (max-width: 580px) {
  footer .inner .lower > ul {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto auto auto auto auto;
    gap: 0.6em;
  }
  footer .inner .lower > ul > li:first-child {
    grid-column: 1/2;
    grid-row: 1/7;
  }
  footer .inner .lower > ul > li:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  footer .inner .lower > ul > li:nth-child(3) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  footer .inner .lower > ul > li:nth-child(4) {
    grid-column: 2/3;
    grid-row: 3/4;
  }
  footer .inner .lower > ul > li:nth-child(5) {
    grid-column: 2/3;
    grid-row: 4/5;
  }
  footer .inner .lower > ul > li:nth-child(6) {
    grid-column: 2/3;
    grid-row: 5/6;
  }
  footer .inner .lower > ul > li:nth-child(7) {
    grid-column: 2/3;
    grid-row: 6/7;
  }
  footer .inner .lower > ul > li:nth-child(8) {
    grid-column: 3/4;
    grid-row: 1/7;
  }
}
@media screen and (max-width: 460px) {
  footer .inner .upper > div > a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  footer .inner .upper > div > a::before {
    content: "";
    display: inline-block;
    margin-right: 0.5em;
    width: 1.6em;
    height: 1.6em;
    background: url(../images/icon_mail.png) no-repeat center center;
    background-size: contain;
  }
  footer .inner .upper > div > a > span::before {
    content: none;
  }
  footer .inner .upper > div > a > span span {
    display: block;
  }
  footer .inner .upper > div > a > span span:first-child {
    padding-left: 1em;
  }
  footer .inner .upper > div > a:hover {
    background-color: #68cd93;
    transition: background-color 300ms ease;
  }
  footer .inner .lower > ul {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto auto auto auto auto;
    gap: 0.6em;
  }
  footer .inner .lower > ul > li:first-child {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  footer .inner .lower > ul > li:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  footer .inner .lower > ul > li:nth-child(3) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  footer .inner .lower > ul > li:nth-child(4) {
    grid-column: 1/2;
    grid-row: 4/5;
  }
  footer .inner .lower > ul > li:nth-child(5) {
    grid-column: 1/2;
    grid-row: 5/6;
  }
  footer .inner .lower > ul > li:nth-child(6) {
    grid-column: 1/2;
    grid-row: 6/7;
  }
  footer .inner .lower > ul > li:nth-child(7) {
    grid-column: 1/2;
    grid-row: 7/8;
  }
  footer .inner .lower > ul > li:nth-child(8) {
    grid-column: 2/3;
    grid-row: 1/8;
  }
}