@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: #31B1B0;
  transition: color 300ms ease;
}
a.btn01 {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #555555;
  position: relative;
  padding: 0.8em 0;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 300ms ease;
}
a.btn01:hover {
  background-color: #333333;
  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;
}

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);
  }
}
header {
  max-width: 1280px;
  height: 64px;
  margin: 28px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 138px auto 18.5em;
  grid-template-rows: 24px 40px;
}
header .header-title {
  grid-column: 1/2;
  grid-row: 1/3;
  display: flex;
  justify-content: left;
  align-items: center;
}
header .header-title p.wp-block-site-title a {
  display: block;
  width: 138px;
  height: 34px;
  background: url(../svgs/logo.svg) no-repeat center center;
  background-size: contain;
  text-indent: -9999px;
}
header > div.upper {
  grid-column: 2/3;
  grid-row: 1/2;
  height: 24px;
  display: flex;
  justify-content: end;
  align-items: center;
  font-size: 85%;
  padding-right: 1em;
}
header > div.lower {
  grid-column: 2/3;
  grid-row: 2/3;
  height: 40px;
}
header > div.lower nav > ul {
  height: 40px;
  display: flex;
  justify-content: right;
}
header > div.lower nav > ul li a {
  display: block;
  line-height: 40px;
  font-weight: bold;
  color: #333;
  padding: 0 0.6em;
  text-decoration: none;
  position: relative;
}
header > div.lower nav > ul li a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #31B1B0;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: background-color 300ms ease, width 300ms ease;
}
header > div.lower nav > ul li a:hover {
  background-color: #f5ffff;
  transition: background-color 300ms ease;
}
header > div.lower nav > ul li a:hover::after {
  width: 100%;
}
header > div.lower nav > ul li#menu-item-17 > a {
  cursor: default;
}
header > div.lower nav > ul li#menu-item-17 a {
  padding: 0 1.2em;
}
header > div.lower nav > ul li.menu-item-has-children {
  position: relative;
}
header > div.lower nav > ul li.menu-item-has-children:hover > ul.sub-menu {
  display: block;
}
header > div.lower nav > ul li.menu-item-has-children > ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 1000;
  padding: 0;
  margin: 0;
  list-style: none;
}
header > div.lower nav > ul li.menu-item-has-children > ul.sub-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}
header > div.lower nav > ul li.menu-item-has-children > ul.sub-menu li a:hover {
  background-color: #f5ffff;
}
header > div.lower nav > ul li.menu-item-has-children > ul.sub-menu li > ul.sub-menu {
  top: 0;
  left: 100%;
}
header > div.right {
  grid-column: 3/4;
  grid-row: 1/3;
  display: flex;
  justify-content: space-between;
}
header > div.right > a {
  height: 64px;
}
header > div.right > a:first-child {
  width: 8em;
  margin-right: 0.5em;
}
header > div.right > a:nth-child(2) {
  width: 10em;
}
header > div.right > p#toggle_menu_button {
  display: none;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  width: 64px;
  height: 64px;
  cursor: pointer;
  background-color: #31B1B0;
  margin: 0 0 0 0.5em;
}
header > div.right > p#toggle_menu_button span {
  display: block;
  width: 36px;
  height: 15px;
  background-color: white;
  -webkit-mask: url(../svgs/icon03.svg) no-repeat center center;
  mask: url(../svgs/icon03.svg) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  text-indent: -9999px;
}
header #toggle_menu {
  display: none;
}

@media screen and (max-width: 1200px) {
  header {
    display: grid;
    grid-template-rows: 64px 40px;
    width: 100%;
    height: 104px;
  }
  header .header-title {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  header > div.upper {
    grid-column: 2/3;
    grid-row: 1/2;
    height: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
  }
  header > div.upper > p {
    margin: 0 1.2em 0 auto;
  }
  header > div.lower {
    grid-column: 1/4;
    grid-row: 2/3;
  }
  header > div.right {
    grid-column: 3/4;
    grid-row: 1/2;
  }
}
@media screen and (max-width: 768px) {
  header {
    height: 64px;
    margin: 0 0 24px 0;
    padding: 0 0 12px 20px;
    grid-template-columns: 138px calc(19em + 64px);
    grid-template-rows: 64px;
    justify-content: space-between;
    position: fixed;
    top: 0;
    z-index: 10;
  }
  header > div {
    z-index: 10;
  }
  header > div.upper, header > div.lower {
    display: none;
  }
  header > div.right {
    grid-column: 2/3;
    grid-row: 1/2;
    width: calc(19em + 64px);
  }
  header > div.right > a.btn01 {
    border-radius: 0 0 6px 6px;
  }
  header > div.right > p#toggle_menu_button {
    display: flex;
    border-radius: 0 0 0 6px;
  }
  header > div.right > p#toggle_menu_button.active span {
    width: 38px;
    height: 24px;
    -webkit-mask: url(../svgs/icon04.svg) no-repeat center center;
    mask: url(../svgs/icon04.svg) no-repeat center center;
    -webkit-mask-size: contain;
    mask-size: contain;
  }
  header #toggle_menu {
    z-index: 5;
    display: block;
    position: fixed;
    height: 100%;
    width: 100%;
    max-width: 100%;
    right: 0;
    top: 0;
    overflow: auto;
    transform: translateX(100%);
    background-color: white;
    /* 右に消えるアニメーション */
    /* 左に現れるアニメーション */
    padding-top: 72px;
    padding: 80px 5% 60px 5%;
  }
  header #toggle_menu.SlideOut {
    animation: SlideOut 0.5s forwards;
  }
  header #toggle_menu.SlideIN {
    animation: SlideIN 0.5s forwards;
  }
  header #toggle_menu nav {
    font-weight: 700;
  }
  header #toggle_menu nav > ul > li {
    border-bottom: 1px solid #DFDFDF;
    padding: 1em 0.5em;
  }
  header #toggle_menu nav > ul > li:first-child {
    border-top: 1px solid #DFDFDF;
  }
  header #toggle_menu nav > ul > li > ul {
    padding-left: 1em;
    padding-top: 0.3em;
  }
  header #toggle_menu nav > ul > li > ul > li {
    padding: 0.3em 0;
  }
  header #toggle_menu nav > ul > li > ul > li > ul {
    padding-left: 1em;
  }
  header #toggle_menu nav > ul > li > ul > li > ul > li {
    padding: 0.3em 0;
  }
  header #toggle_menu > p.tel {
    font-size: 200%;
    margin-top: 1em;
  }
  header #toggle_menu > p.tel::before {
    content: "";
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    transform: translateY(-0.1em);
    margin-right: 0;
    background: url(../svgs/icon01.svg) no-repeat center center;
    background-size: contain;
  }
  header #toggle_menu .contact {
    display: none;
  }
  header #toggle_menu .lower {
    width: 210px;
    margin: 30px auto 0 auto;
  }
  header #toggle_menu .lower > p {
    text-align: center;
  }
  header #toggle_menu .lower > p.logo a {
    display: block;
    width: 180px;
    height: 43px;
    background: url(../svgs/logo.svg) no-repeat center center;
    background-size: contain;
    text-indent: -9999px;
  }
  header + section {
    margin-top: 72px;
  }
  header::after {
    content: "";
    display: block;
    width: 100%;
    height: 72px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 7;
  }
}
@media screen and (max-width: 580px) {
  header {
    display: flex;
  }
  header > div.right {
    width: auto;
    justify-content: flex-end;
  }
  header > div.right > a {
    display: none;
  }
  header #toggle_menu .contact {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  header #toggle_menu .contact a:first-child {
    width: 45%;
  }
  header #toggle_menu .contact a:last-child {
    width: 50%;
  }
}
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 {
  padding-top: 4em;
}
main section .container {
  max-width: 1240px;
  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 {
  background-color: #F0F0F0;
}
footer .inner {
  display: flex;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 20px;
}
footer .inner .left {
  width: 210px;
}
footer .inner .left > p.logo a {
  display: block;
  width: 180px;
  height: 43px;
  background: url(../svgs/logo.svg) no-repeat center center;
  background-size: contain;
  text-indent: -9999px;
}
footer .inner .left > p:nth-child(2) {
  padding-bottom: 3em;
}
footer .inner .left > p br.sp {
  display: none;
}
footer .inner .right {
  width: 880px;
}
footer .inner .right .upper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2em;
}
footer .inner .right .upper > div {
  background-color: white;
  border-radius: 0.8em;
  padding: 1em 0 1em 1em;
}
footer .inner .right .upper > div.l {
  width: 350px;
}
footer .inner .right .upper > div.m {
  width: 280px;
}
footer .inner .right .upper > div.r {
  width: 170px;
}
footer .inner .right .upper > div h3 {
  color: #31B1B0;
  font-size: 115%;
  font-weight: 700;
  padding-bottom: 0.5em;
}
footer .inner .right .upper > div ul {
  list-style: disc;
  padding-left: 1.4em;
}
footer .inner .right .lower {
  display: grid;
  justify-content: left;
  grid-template-columns: 390px 190px 180px;
  grid-template-rows: auto auto;
}
footer .inner .right .lower .tel {
  grid-column: 1/2;
  grid-row: 1/2;
  width: 350px;
  display: flex;
  background-color: #d0d0d0;
  justify-content: center;
  align-items: center;
  border-radius: 0.5em;
}
footer .inner .right .lower .tel p:last-child {
  color: #31B1B0;
  font-weight: 700;
}
footer .inner .right .lower .tel p:last-child::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  transform: translateY(-0.1em);
  margin-right: 0;
  background-color: #31B1B0;
  -webkit-mask: url(../svgs/icon01.svg) no-repeat center center;
          mask: url(../svgs/icon01.svg) no-repeat center center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
footer .inner .right .lower .catalog {
  grid-column: 2/3;
  grid-row: 1/2;
  width: 150px;
}
footer .inner .right .lower .contact {
  grid-column: 3/4;
  grid-row: 1/2;
  width: 180px;
}
footer .inner .right .lower .policy {
  grid-column: 1/4;
  grid-row: 2/3;
  padding-top: 1.6em;
}
footer .copy {
  text-align: center;
  padding-bottom: 6em;
}

@media screen and (max-width: 1200px) {
  footer .inner {
    flex-wrap: wrap;
  }
  footer .inner .left {
    width: 100%;
    padding-bottom: 2em;
  }
  footer .inner .left > p {
    text-align: center;
  }
  footer .inner .left > p a {
    margin: 0 auto;
  }
  footer .inner .left > p:nth-child(2) {
    padding-bottom: 1.5em;
  }
  footer .inner .right {
    margin: 0 auto;
  }
}
@media screen and (max-width: 900px) {
  footer .inner .right .upper {
    flex-wrap: wrap;
  }
  footer .inner .right .upper > div.l {
    width: 100%;
    margin-bottom: 2em;
  }
  footer .inner .right .upper > div.m {
    width: 55%;
  }
  footer .inner .right .upper > div.r {
    width: 40%;
  }
}
@media screen and (max-width: 820px) {
  footer .inner .right .lower {
    justify-content: left;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  footer .inner .right .lower .tel {
    grid-column: 1/3;
    grid-row: 1/2;
    width: 100%;
    padding: 0.8em 0;
    margin-bottom: 1.6em;
  }
  footer .inner .right .lower .catalog {
    grid-column: 1/2;
    grid-row: 2/3;
    width: 90%;
  }
  footer .inner .right .lower .contact {
    grid-column: 2/3;
    grid-row: 2/3;
    width: 100%;
  }
  footer .inner .right .lower .policy {
    grid-column: 1/3;
    grid-row: 3/4;
    padding-top: 1.6em;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .left > p br.sp {
    display: inline;
  }
}
@media screen and (max-width: 580px) {
  footer .inner .right .upper > div.m {
    width: 100%;
    margin-bottom: 1.6em;
  }
  footer .inner .right .upper > div.r {
    width: 100%;
  }
}