@charset "UTF-8";
/*
theme Name: Sole
Author:iyyoto
Description: Sole theme(test)
version:0.0.1
*/
:root {
  /*テーマ色の指定*/
  --text-color:#000;
  --text-color-vivid:rgb(76, 194, 179);
  --theme-color:rgb(134, 208, 222);
  --theme-color-light:rgb(193,228,240);
  --theme-color-transparent:rgba(193,228,240,0.5);
  --theme-color-vivid:rgb(76, 194, 179);
  --theme-color-deep:#237eb0;
  --header-text-color:white;
}

body {
  font-family: sans-serif;
  font-size: 12pt;
  color: var(--text-color);
}

div {
  line-height: 1.5rem;
}

body, ul, li {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  -moz-columns: var(--font-color);
       columns: var(--font-color);
}

header .header-wrap {
  height: var(--header-height);
  background-color: var(--theme-color);
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
header .header-wrap .header-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  header .header-wrap .header-inner {
    flex-direction: column;
  }
}
header .header-wrap .header-inner .header-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
}
header .header-wrap .header-inner .header-logo-wrap img {
  width: 70px;
  height: 70px;
  padding: 30px;
  padding-right: 10px;
}
@media (max-width: 600px) {
  header .header-wrap .header-inner .header-logo-wrap img {
    padding-left: 10px;
  }
}
header .header-wrap .header-inner .header-logo-wrap .header-logo-title-wrap {
  color: var(--header-text-color);
}
header .header-wrap .header-inner .header-logo-wrap .header-logo-title-wrap .header-logo-title {
  font-size: 1.7rem;
  font-weight: bold;
  color: white;
  margin-top: 20px;
}
@media (max-width: 600px) {
  header .header-wrap .header-inner .header-logo-wrap .header-logo-title-wrap .header-logo-title {
    display: none;
  }
}
header .header-wrap .header-inner .header-logo-wrap .header-logo-title-wrap h1, header .header-wrap .header-inner .header-logo-wrap .header-logo-title-wrap p {
  color: white;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  margin-bottom: 0;
  font-weight: normal;
}
@media (max-width: 600px) {
  header .header-wrap .header-inner .header-logo-wrap .header-logo-title-wrap h1, header .header-wrap .header-inner .header-logo-wrap .header-logo-title-wrap p {
    font-size: 1rem;
    font-weight: bold;
  }
}
header .header-wrap .header-inner .header-tel-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}
header .header-wrap .header-inner .header-tel-wrap .header-tel-text {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
}
@media (max-width: 600px) {
  header .header-wrap .header-inner .header-tel-wrap .header-tel-text {
    display: none;
  }
}
header .header-wrap .header-inner .header-tel-wrap .header-tel-description {
  margin-top: 0.3rem;
  text-align: right;
}
@media (max-width: 600px) {
  header .header-wrap .header-inner .header-tel-wrap .header-tel-description {
    display: none;
  }
}
header .header-wrap .header-nav-wrap .header-nav-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: flex-end;
}
header .header-wrap .header-nav-wrap .header-nav-inner ul {
  list-style: none;
  display: flex;
}
header .header-wrap .header-nav-wrap .header-nav-inner ul li .header-nav-item {
  padding: 1.5rem;
}
header .header-wrap .header-nav-wrap .header-nav-inner ul li .header-nav-item a {
  color: var(--header-text-color);
  font-weight: bold;
}
header .header-wrap .header-nav-wrap .header-nav-inner ul li:last-of-type .header-nav-item {
  padding-right: 0;
}
header .header-wrap .header-nav-wrap .header-nav-inner ul li:last-of-type .header-nav-item a {
  background-color: var(--theme-color-deep);
  border-radius: 10px;
  padding: 1rem;
}
@media (max-width: 600px) {
  header .header-wrap .header-nav-wrap {
    display: none;
  }
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  justify-items: center;
  margin: 3rem auto;
}
@media (max-width: 600px) {
  .menu-items {
    margin-bottom: 1rem;
  }
}
.menu-items .menu-item-wrap {
  width: 200px;
  height: 230px;
  background-color: var(--theme-color);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  margin-bottom: 2rem;
  transition: 0.3s;
}
.menu-items .menu-item-wrap:hover {
  transition: 0.3s;
  background-color: var(--theme-color-light);
}
.menu-items .menu-item-wrap:hover .menu-item-title,
.menu-items .menu-item-wrap:hover .menu-item-description {
  color: var(--text-color);
}
.menu-items .menu-item-wrap .menu-item-img {
  width: 150px;
  height: 150px;
  background-color: white;
}
.menu-items .menu-item-wrap .menu-item-img img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
.menu-items .menu-item-wrap .menu-item-title {
  text-align: center;
  color: white;
  margin: 1rem auto 0.3rem auto;
}
.menu-items .menu-item-wrap .menu-item-description {
  text-align: center;
  color: white;
  font-size: 0.8rem;
}

.table-wrap {
  display: flex;
  justify-content: center;
}
.table-wrap dl {
  margin: 0;
  padding: 0;
  border-top: 1px solid #ccc;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.table-wrap dl dt {
  margin: 0;
  padding: 1rem;
  width: 40%;
  box-sizing: border-box;
  text-align: center;
  border-bottom: 1px solid #ccc;
  font-size: 0.9rem;
  font-weight: bold;
}
@media (max-width: 600px) {
  .table-wrap dl dt {
    font-size: 0.8rem;
  }
}
.table-wrap dl dd {
  margin: 0;
  padding: 1rem;
  width: 60%;
  box-sizing: border-box;
  text-align: center;
  border-bottom: 1px solid #ccc;
  font-size: 0.9rem;
}
@media (max-width: 600px) {
  .table-wrap dl dd {
    font-size: 0.8rem;
  }
}

.button-more {
  color: white;
  padding: 0.7rem;
  width: 80%;
  border-radius: 10px;
  background-color: var(--text-color-vivid);
  border: var(--text-color-vivid) 1px solid;
  text-align: center;
  margin: 2rem auto;
  display: block;
}
@media (max-width: 600px) {
  .button-more {
    margin: 1rem auto;
  }
}
.button-more:hover {
  transition: 0.3s;
  border: var(--text-color-vivid) 1px solid;
  background-color: white;
  color: var(--text-color-vivid);
}

.contents .top-image-wrap .top-image-inner img {
  height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .contents .top-image-wrap .top-image-inner img {
    height: 200px;
  }
}
.contents .catch-wrap {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  background-color: var(--theme-color-light);
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.contents .catch-wrap .catch-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.contents .catch-wrap .catch-inner h2 {
  text-align: center;
  line-height: 2rem;
}
.contents .catch-wrap .catch-inner .catch-list {
  padding-top: 1.5rem;
  padding-bottom: 5rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .contents .catch-wrap .catch-inner .catch-list {
    flex-direction: column;
    padding-bottom: 2rem;
  }
}
.contents .catch-wrap .catch-inner .catch-list .catch-item {
  height: 200px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-right: 1rem;
  width: 30%;
}
.contents .catch-wrap .catch-inner .catch-list .catch-item:last-of-type {
  margin-right: 0rem;
}
.contents .catch-wrap .catch-inner .catch-list .catch-item {
  background-color: white;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 600px) {
  .contents .catch-wrap .catch-inner .catch-list .catch-item {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.contents .catch-wrap .catch-inner .catch-list .catch-item h3 {
  text-align: center;
  color: var(--text-color-vivid);
  margin: 0;
  padding-top: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  line-height: 1.7rem;
}
.contents .catch-wrap .catch-inner .catch-list .catch-item .catch-item-description {
  text-align: center;
  font-size: 0.9rem;
  padding: 1.5rem;
}
.contents .catch-wrap .catch-inner .catch-list .catch-item .catch-item-text-wrap {
  position: absolute;
  clear: both;
  top: 180px;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contents .catch-wrap .catch-inner .catch-list .catch-item .catch-item-text-wrap .catch-item-text {
  font-weight: bold;
  color: white;
  padding: 0.5rem;
  width: 80%;
  border-radius: 5px;
  background-color: var(--text-color-vivid);
  text-align: center;
}
.contents .catch-wrap .catch-inner .catch-item-text-tocustomer-wrap {
  display: flex;
  background-color: white;
  border-radius: 10px;
  margin-bottom: 3rem;
}
@media (max-width: 600px) {
  .contents .catch-wrap .catch-inner .catch-item-text-tocustomer-wrap {
    flex-direction: column;
  }
}
.contents .catch-wrap .catch-inner .catch-item-text-tocustomer-wrap {
  /*border: var(--theme-color-vivid) 3px solid;*/
}
.contents .catch-wrap .catch-inner .catch-item-text-tocustomer-wrap .catch-item-text-tocustomer {
  width: 85%;
  line-height: 1.5rem;
  padding: 2rem;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .contents .catch-wrap .catch-inner .catch-item-text-tocustomer-wrap .catch-item-text-tocustomer {
    width: 100%;
  }
}
.contents .catch-wrap .catch-inner .catch-item-text-tocustomer-wrap .catch-item-text-tocustomer-from {
  width: 15%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  align-items: flex-end;
  justify-content: flex-end;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .contents .catch-wrap .catch-inner .catch-item-text-tocustomer-wrap .catch-item-text-tocustomer-from {
    width: 100%;
    padding-top: 0rem;
  }
}
.contents .catch-wrap .catch-inner .catch-item-text-tocustomer-wrap .catch-item-text-tocustomer-from .catch-item-face {
  background-color: #eee;
  border-radius: 50px;
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
}
.contents .catch-wrap .catch-inner .catch-item-text-tocustomer-wrap .catch-item-text-tocustomer-from .catch-item-face img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
}
.contents .catch-wrap .catch-inner .catch-item-text-tocustomer-wrap .catch-item-text-tocustomer-from .catch-item-face-text {
  font-size: 0.8rem;
  text-align: center;
  width: 100px;
}
.contents .news-wrap {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.contents .news-wrap .news-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.contents .news-wrap .news-inner h2 {
  text-align: center;
}
.contents .news-wrap .news-inner .news-contents-wrap {
  display: flex;
  margin-top: 3rem;
}
@media (max-width: 600px) {
  .contents .news-wrap .news-inner .news-contents-wrap {
    flex-direction: column;
    margin-top: 0;
  }
}
.contents .news-wrap .news-inner .news-contents-wrap .news-voice-wrap {
  width: 50%;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .contents .news-wrap .news-inner .news-contents-wrap .news-voice-wrap {
    width: 100%;
  }
}
.contents .news-wrap .news-inner .news-contents-wrap .news-voice-wrap h3 {
  font-weight: bold;
  text-align: center;
}
.contents .news-wrap .news-inner .news-contents-wrap .news-voice-wrap .news-voice-item-wrap {
  padding: 0 1rem 0rem 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .contents .news-wrap .news-inner .news-contents-wrap .news-voice-wrap .news-voice-item-wrap {
    padding: 0;
  }
}
.contents .news-wrap .news-inner .news-contents-wrap .news-voice-wrap .news-voice-item-wrap .news-voice-item {
  box-sizing: border-box;
  border-radius: 10px;
  background-color: var(--theme-color-transparent);
  width: 100%;
  padding: 1rem;
  margin: 1rem 0 1rem 0;
  height: 200px;
}
@media (max-width: 600px) {
  .contents .news-wrap .news-inner .news-contents-wrap .news-voice-wrap .news-voice-item-wrap .news-voice-item {
    height: auto;
  }
}
.contents .news-wrap .news-inner .news-contents-wrap .news-voice-wrap .news-voice-item-wrap .news-voice-item h4 {
  color: var(--text-color-vivid);
  margin: 0 0 0.5rem 0;
}
@media (max-width: 600px) {
  .contents .news-wrap .news-inner .news-contents-wrap .news-voice-wrap .news-voice-item-wrap .news-voice-item h4 {
    text-align: center;
  }
}
.contents .news-wrap .news-inner .news-contents-wrap .news-voice-wrap .news-voice-item-wrap .news-voice-item .news-voice-item-contents {
  font-size: 0.8rem;
  color: black;
}
.contents .news-wrap .news-inner .news-contents-wrap .news-announce-wrap {
  width: 50%;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .contents .news-wrap .news-inner .news-contents-wrap .news-announce-wrap {
    width: 100%;
  }
}
.contents .news-wrap .news-inner .news-contents-wrap .news-announce-wrap h3 {
  font-weight: bold;
  padding-left: 1rem;
  text-align: center;
}
.contents .news-wrap .news-inner .news-contents-wrap .news-announce-wrap .news-announce-item-wrap {
  padding: 0 0 0 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .contents .news-wrap .news-inner .news-contents-wrap .news-announce-wrap .news-announce-item-wrap {
    padding: 0;
  }
}
.contents .news-wrap .news-inner .news-contents-wrap .news-announce-wrap .news-announce-item-wrap .news-announce-item {
  box-sizing: border-box;
  border-radius: 10px;
  background-color: var(--theme-color-transparent);
  width: 100%;
  padding: 1rem;
  margin: 1rem 0 1rem 0;
  height: 200px;
}
@media (max-width: 600px) {
  .contents .news-wrap .news-inner .news-contents-wrap .news-announce-wrap .news-announce-item-wrap .news-announce-item {
    height: auto;
  }
}
.contents .news-wrap .news-inner .news-contents-wrap .news-announce-wrap .news-announce-item-wrap .news-announce-item h4 {
  color: var(--text-color-vivid);
  margin: 0 0 0.5rem 0;
}
@media (max-width: 600px) {
  .contents .news-wrap .news-inner .news-contents-wrap .news-announce-wrap .news-announce-item-wrap .news-announce-item h4 {
    text-align: center;
  }
}
.contents .news-wrap .news-inner .news-contents-wrap .news-announce-wrap .news-announce-item-wrap .news-announce-item .news-announce-item-contents {
  font-size: 0.8rem;
  color: black;
}
.contents .menu-wrap {
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
.contents .menu-wrap .menu-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.contents .menu-wrap .menu-inner h2 {
  text-align: center;
  line-height: 2rem;
}
.contents .flow-wrap {
  background-color: var(--theme-color-light);
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .contents .flow-wrap {
    padding-top: 2rem;
  }
}
.contents .flow-wrap .flow-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.contents .flow-wrap .flow-inner h2 {
  text-align: center;
}
.contents .flow-wrap .flow-inner .flow-items {
  display: flex;
  flex-direction: column;
}
.contents .flow-wrap .flow-inner .flow-items .flow-item-wrap {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 20px;
  align-items: center;
  margin-top: 3rem;
  padding: 2rem;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .contents .flow-wrap .flow-inner .flow-items .flow-item-wrap {
    margin-top: 1rem;
    padding: 1rem;
  }
}
.contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .flow-item-title {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .flow-item-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
@media (max-width: 600px) {
  .contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .flow-item-description {
    font-size: 0.9rem;
    text-align: center;
  }
}
.contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .reception-wrap {
  display: flex;
  width: 70%;
  padding: 2rem;
  background-color: var(--theme-color-transparent);
  margin-bottom: 2rem;
}
@media (max-width: 600px) {
  .contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .reception-wrap {
    flex-direction: column;
    width: 95%;
    padding: 1rem;
  }
}
.contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .reception-wrap .reception-tel-wrap {
  display: flex;
  flex-direction: column;
  width: 50%;
}
@media (max-width: 600px) {
  .contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .reception-wrap .reception-tel-wrap {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}
.contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .reception-wrap .reception-tel-wrap .reception-tel-description {
  font-size: 1rem;
  text-align: center;
}
.contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .reception-wrap .reception-tel-wrap .reception-tel-number {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  margin-top: 1.7rem;
  line-height: 2.5rem;
}
@media (max-width: 600px) {
  .contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .reception-wrap .reception-tel-wrap .reception-tel-number {
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }
}
.contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .reception-wrap .reception-web-wrap {
  display: flex;
  flex-direction: column;
  width: 50%;
}
@media (max-width: 600px) {
  .contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .reception-wrap .reception-web-wrap {
    width: 100%;
  }
}
.contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .reception-wrap .reception-web-wrap .reception-web-description {
  text-align: center;
  font-size: 1rem;
}
.contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .reception-wrap .reception-web-wrap .reception-web-button .button-more {
  margin: 1rem auto;
}
.contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .flow-item-customer-wrap {
  display: flex;
  width: 100%;
  margin: 1rem auto;
}
.contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .flow-item-customer-wrap .flow-item-customer-img {
  padding: 2rem;
}
@media (max-width: 600px) {
  .contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .flow-item-customer-wrap .flow-item-customer-img {
    padding-right: 1rem;
    padding-left: 0;
    padding-bottom: 0;
    padding-top: 0;
  }
}
.contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .flow-item-customer-wrap .flow-item-customer-img img {
  width: 70px;
  height: 70px;
}
@media (max-width: 600px) {
  .contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .flow-item-customer-wrap .flow-item-customer-img img {
    width: 40px;
    height: 40px;
  }
}
.contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .flow-item-customer-wrap .flow-item-costomer-description {
  border-radius: 20px;
  border: 1px solid var(--text-color-vivid);
  width: 70%;
  padding: 2rem;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .flow-item-customer-wrap .flow-item-costomer-description {
    font-size: 0.8rem;
    padding: 1rem;
  }
}
.contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .flow-item-guide-wrap {
  display: flex;
  width: 100%;
  margin: 1rem auto;
  flex-direction: row-reverse;
}
.contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .flow-item-guide-wrap .flow-item-guide-img {
  padding: 2rem;
}
@media (max-width: 600px) {
  .contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .flow-item-guide-wrap .flow-item-guide-img {
    padding-right: 0;
    padding-left: 1rem;
    padding-bottom: 0;
    padding-top: 0;
  }
}
.contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .flow-item-guide-wrap .flow-item-guide-img img {
  width: 70px;
  height: 70px;
}
@media (max-width: 600px) {
  .contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .flow-item-guide-wrap .flow-item-guide-img img {
    width: 40px;
    height: 40px;
  }
}
.contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .flow-item-guide-wrap .flow-item-guide-description {
  border-radius: 20px;
  border: 1px solid var(--text-color-vivid);
  width: 70%;
  padding: 2rem;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .contents .flow-wrap .flow-inner .flow-items .flow-item-wrap .flow-item-guide-wrap .flow-item-guide-description {
    font-size: 0.8rem;
    padding: 1rem;
  }
}

.contents-header-wrap {
  position: relative;
}
.contents-header-wrap img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.contents-header-wrap .contents-header-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contents-header-wrap .contents-header-inner .contents-header-title h1, .contents-header-wrap .contents-header-inner .contents-header-title p {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 2.5rem;
}
.contents-header-wrap .contents-header-inner .contents-header-title h1 {
  padding: 2rem;
}

.contents-page .contents-page-wrap {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
.contents-page .contents-page-wrap .contents-page-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 600px) {
  .contents-page .contents-page-wrap .contents-page-inner {
    padding-top: 2rem;
  }
}
.contents-page h2 {
  margin-top: 2rem;
  border-bottom: solid black 1px;
  padding-bottom: 0.5rem;
  line-height: 2.5rem;
}
.contents-page p {
  line-height: 1.7rem;
}

.contents-contact .contents-contact-wrap .contents-contact-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
  padding-bottom: 5rem;
}
.contents-contact .contents-contact-wrap .contents-contact-inner .contents-contact-description {
  text-align: center;
}
.contents-contact .contents-contact-wrap .contents-contact-inner .wpcf7 form p {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.contents-contact .contents-contact-wrap .contents-contact-inner .wpcf7 form p input[type=submit] {
  padding: 0.5rem 1rem;
  text-align: center;
  margin-top: 3rem;
  font-size: 14px;
  margin: 0 auto;
}
.contents-contact .contents-contact-wrap .contents-contact-inner .wpcf7 form p .ajax-loader {
  margin: 0;
  width: 0;
}
.contents-contact .contents-contact-wrap .contents-contact-inner .wpcf7 {
  padding-left: 50px;
  padding-right: 50px;
}
.contents-contact .contents-contact-wrap .contents-contact-inner .wpcf7 .wpcf7-text {
  width: 100%;
  border: 1px #aaa solid;
  font-size: 1.3rem;
  height: 2rem;
}
.contents-contact .contents-contact-wrap .contents-contact-inner .wpcf7 .wpcf7-textarea {
  width: 100%;
  border: 1px #aaa solid;
}
.contents-contact .contents-contact-wrap .contents-contact-inner .wpcf7 .wpcf7-response-output {
  text-align: center;
}
.contents-contact .contents-contact-wrap .contents-contact-inner .wpcf7 .form-wrap {
  display: flex;
  justify-content: center;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 600px) {
  .contents-contact .contents-contact-wrap .contents-contact-inner .wpcf7 .form-wrap {
    width: 100%;
  }
}
.contents-contact .contents-contact-wrap .contents-contact-inner .wpcf7 .form-wrap dl {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 600px) {
  .contents-contact .contents-contact-wrap .contents-contact-inner .wpcf7 .form-wrap dl {
    flex-direction: column;
  }
}
.contents-contact .contents-contact-wrap .contents-contact-inner .wpcf7 .form-wrap dl dt {
  width: 20%;
  font-weight: bold;
  text-align: left;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 1rem;
  box-sizing: border-box;
  font-size: 0.9rem;
}
@media (max-width: 600px) {
  .contents-contact .contents-contact-wrap .contents-contact-inner .wpcf7 .form-wrap dl dt {
    padding-bottom: 0;
    width: 100%;
  }
}
.contents-contact .contents-contact-wrap .contents-contact-inner .wpcf7 .form-wrap dl dd {
  width: 80%;
  text-align: center;
  margin: 0;
  padding: 1rem;
  box-sizing: border-box;
  font-size: 0.9rem;
}
@media (max-width: 600px) {
  .contents-contact .contents-contact-wrap .contents-contact-inner .wpcf7 .form-wrap dl dd {
    width: 100%;
  }
}
.contents-contact .contents-contact-wrap .contents-contact-inner .wpcf7 .form-wrap dl dt:nth-child(4n+1),
.contents-contact .contents-contact-wrap .contents-contact-inner .wpcf7 .form-wrap dl dd:nth-child(4n+2) {
  background-color: #efefef;
}
.contents-contact .contents-contact-wrap .contents-contact-inner .wpcf7 .form-wrap input[type=submit] {
  padding: 0.5rem 1rem;
  text-align: center;
  margin-top: 3rem;
  width: 80%;
  font-size: 100px;
}
.contents-contact .contents-contact-wrap .contents-contact-inner .wpcf7 .form-wrap .ajax-loader {
  margin: 0;
  width: 0;
}
.contents-contact h2 {
  margin-top: 3rem;
  border-bottom: solid black 1px;
  padding-bottom: 0.5rem;
}
.contents-contact p {
  line-height: 1.7rem;
}

.contents-about .contents-about-catch-wrap {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
.contents-about .contents-about-catch-wrap .contents-about-catch-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.contents-about .contents-about-catch-wrap .contents-about-catch-inner h2 {
  text-align: center;
  color: var(--theme-color);
  margin-bottom: 2rem;
  line-height: 2.5rem;
}
.contents-about .contents-about-catch-wrap .contents-about-catch-inner p {
  text-align: center;
  font-size: 1.3rem;
}
@media (max-width: 600px) {
  .contents-about .contents-about-catch-wrap .contents-about-catch-inner p {
    font-size: 1rem;
  }
}
.contents-about .contents-about-staff-wrap {
  background-color: var(--theme-color-light);
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
.contents-about .contents-about-staff-wrap .contents-about-staff-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.contents-about .contents-about-staff-wrap .contents-about-staff-inner h2 {
  text-align: center;
}
.contents-about .contents-about-staff-wrap .contents-about-staff-inner .contents-about-staff-items {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 600px) {
  .contents-about .contents-about-staff-wrap .contents-about-staff-inner .contents-about-staff-items {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.contents-about .contents-about-staff-wrap .contents-about-staff-inner .contents-about-staff-items .staff-item-wrap {
  width: 100%;
  margin: 1rem;
  background-color: white;
  border-radius: 10px;
}
.contents-about .contents-about-staff-wrap .contents-about-staff-inner .contents-about-staff-items .staff-item-wrap .staff-item-inner {
  padding: 2rem;
  display: flex;
}
@media (max-width: 600px) {
  .contents-about .contents-about-staff-wrap .contents-about-staff-inner .contents-about-staff-items .staff-item-wrap .staff-item-inner {
    flex-direction: column;
  }
}
.contents-about .contents-about-staff-wrap .contents-about-staff-inner .contents-about-staff-items .staff-item-wrap .staff-item-inner .staff-item-img-wrap {
  width: 200px;
  border-radius: 100px;
}
.contents-about .contents-about-staff-wrap .contents-about-staff-inner .contents-about-staff-items .staff-item-wrap .staff-item-inner .staff-item-img-wrap img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .contents-about .contents-about-staff-wrap .contents-about-staff-inner .contents-about-staff-items .staff-item-wrap .staff-item-inner .staff-item-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}
.contents-about .contents-about-staff-wrap .contents-about-staff-inner .contents-about-staff-items .staff-item-wrap .staff-item-inner .staff-item-text-wrap {
  width: 100%;
  padding-left: 2rem;
}
@media (max-width: 600px) {
  .contents-about .contents-about-staff-wrap .contents-about-staff-inner .contents-about-staff-items .staff-item-wrap .staff-item-inner .staff-item-text-wrap {
    padding-left: 0;
    padding-top: 2rem;
  }
}
.contents-about .contents-about-staff-wrap .contents-about-staff-inner .contents-about-staff-items .staff-item-wrap .staff-item-inner .staff-item-text-wrap .staff-item-text-name {
  font-size: 1.5rem;
}
@media (max-width: 600px) {
  .contents-about .contents-about-staff-wrap .contents-about-staff-inner .contents-about-staff-items .staff-item-wrap .staff-item-inner .staff-item-text-wrap .staff-item-text-name {
    text-align: center;
    padding-bottom: 1.5rem;
  }
}
.contents-about .contents-about-staff-wrap .contents-about-staff-inner .contents-about-staff-items .staff-item-wrap .staff-item-inner .staff-item-text-wrap .staff-item-text-about {
  padding-top: 1rem;
}
.contents-about .contents-about-staff-wrap .contents-about-staff-inner .contents-about-staff-items .staff-item-wrap .staff-item-inner .staff-item-text-wrap .staff-item-text-comment {
  padding-top: 1rem;
}
.contents-about .contents-about-promiss-wrap {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
.contents-about .contents-about-promiss-wrap .contents-about-promiss-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 600px) {
  .contents-about .contents-about-promiss-wrap .contents-about-promiss-inner {
    padding-bottom: 0;
  }
}
.contents-about .contents-about-promiss-wrap .contents-about-promiss-inner h2 {
  text-align: center;
  margin-bottom: 2rem;
  line-height: 2.5rem;
}
.contents-about .contents-about-promiss-wrap .contents-about-promiss-inner h3 {
  margin-top: 2.5rem;
  color: var(--theme-color);
}
.contents-about .contents-about-promiss-wrap .contents-about-promiss-inner p {
  line-height: 1.7rem;
}
.contents-about .contents-about-from-wrap {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
.contents-about .contents-about-from-wrap .contents-about-from-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.contents-about .contents-about-from-wrap .contents-about-from-inner .contents-about-from-description {
  box-sizing: border-box;
  border: 2px solid var(--theme-color);
  border-radius: 10px;
  width: 100%;
  padding: 2rem;
}
.contents-about .contents-about-from-wrap .contents-about-from-inner .contents-about-from-description h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.contents-about .contents-about-from-wrap .contents-about-from-inner .contents-about-from-description p.from-name {
  text-align: right;
}
.contents-about .contents-about-table-wrap {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
.contents-about .contents-about-table-wrap .contents-about-table-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3rem;
  padding-bottom: 5rem;
}
.contents-about .contents-about-table-wrap h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.contents-menu .contents-menu-view-wrap {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.contents-menu .contents-menu-view-wrap .contents-menu-view-inner h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.contents-menu .contents-menu-info-wrap {
  background-color: var(--theme-color-light);
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
.contents-menu .contents-menu-info-wrap .contents-menu-info-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.contents-menu .contents-menu-info-wrap .contents-menu-info-inner h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.contents-menu .contents-menu-info-wrap .contents-menu-info-inner .info-items-wrap .info-item {
  background-color: white;
  padding: 2rem;
  margin-bottom: 3rem;
  border-radius: 10px;
}
.contents-menu .contents-menu-info-wrap .contents-menu-info-inner .info-items-wrap .info-item h3 {
  font-size: 1.5rem;
  text-align: center;
  color: var(--theme-color);
}
.contents-menu .contents-menu-info-wrap .contents-menu-info-inner .info-items-wrap .info-item .info-item-title-description {
  font-size: 0.8rem;
  color: var(--theme-color);
  width: 100%;
  text-align: center;
  padding-bottom: 0.5rem;
  border-bottom: solid 1px var(--theme-color);
}
.contents-menu .contents-menu-info-wrap .contents-menu-info-inner .info-items-wrap .info-item .info-item-description-wrap {
  display: flex;
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}
@media (max-width: 600px) {
  .contents-menu .contents-menu-info-wrap .contents-menu-info-inner .info-items-wrap .info-item .info-item-description-wrap {
    flex-direction: column;
  }
}
.contents-menu .contents-menu-info-wrap .contents-menu-info-inner .info-items-wrap .info-item .info-item-description-wrap .info-item-description-img {
  width: 35%;
}
.contents-menu .contents-menu-info-wrap .contents-menu-info-inner .info-items-wrap .info-item .info-item-description-wrap .info-item-description-img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .contents-menu .contents-menu-info-wrap .contents-menu-info-inner .info-items-wrap .info-item .info-item-description-wrap .info-item-description-img {
    width: 100%;
  }
}
.contents-menu .contents-menu-info-wrap .contents-menu-info-inner .info-items-wrap .info-item .info-item-description-wrap .info-item-description-text {
  width: 65%;
  padding-left: 1.5rem;
}
@media (max-width: 600px) {
  .contents-menu .contents-menu-info-wrap .contents-menu-info-inner .info-items-wrap .info-item .info-item-description-wrap .info-item-description-text {
    width: 100%;
    padding-left: 0;
  }
}
.contents-menu .contents-menu-info-wrap .contents-menu-info-inner .info-items-wrap .info-item .info-item-description-wrap .info-item-description-text .title {
  font-weight: bold;
  font-size: 1.1rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 600px) {
  .contents-menu .contents-menu-info-wrap .contents-menu-info-inner .info-items-wrap .info-item .info-item-description-wrap .info-item-description-text .title {
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
    line-height: 1.7rem;
  }
}
.contents-menu .contents-menu-info-wrap .contents-menu-info-inner .info-items-wrap .info-item .info-item-description-wrap .info-item-description-text .text {
  line-height: 1.7rem;
}

.contents-single h2 {
  margin-top: 3rem;
  border-bottom: solid black 1px;
  padding-bottom: 0.5rem;
}
.contents-single p {
  line-height: 1.7rem;
}
.contents-single .contents-single-header-wrap {
  background-color: var(--theme-color-light);
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
.contents-single .contents-single-header-wrap .contents-single-header-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.contents-single .contents-single-header-wrap .contents-single-header-inner h1 {
  line-height: 2.5rem;
}
.contents-single .contents-single-header-wrap .contents-single-header-category {
  background-color: var(--theme-color-deep);
  border-radius: 5px;
  padding: 0.5rem;
  text-align: right;
}
.contents-single .contents-single-header-wrap .contents-single-header-category a {
  color: white;
}
.contents-single .contents-single-wrap {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
.contents-single .contents-single-wrap .contents-single-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
}
.contents-single .contents-single-wrap .contents-single-inner .the-contents {
  width: 70%;
  margin-right: 3rem;
}
@media (max-width: 600px) {
  .contents-single .contents-single-wrap .contents-single-inner .the-contents {
    width: 100%;
    margin-right: 0;
  }
}
.contents-single .contents-single-wrap .contents-single-inner .the-sidebar {
  width: 30%;
}
@media (max-width: 600px) {
  .contents-single .contents-single-wrap .contents-single-inner .the-sidebar {
    display: none;
  }
}

.contents-archive .contents-archive-wrap {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
.contents-archive .contents-archive-wrap .contents-archive-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
}
.contents-archive .contents-archive-wrap .contents-archive-inner .contents-archive-items-wrap {
  width: 70%;
  margin-right: 3rem;
}
@media (max-width: 600px) {
  .contents-archive .contents-archive-wrap .contents-archive-inner .contents-archive-items-wrap {
    width: 100%;
    margin-right: 0;
  }
}
.contents-archive .contents-archive-wrap .contents-archive-inner .contents-archive-items-wrap .contents-archive-item {
  display: flex;
  margin-bottom: 2rem;
}
@media (max-width: 600px) {
  .contents-archive .contents-archive-wrap .contents-archive-inner .contents-archive-items-wrap .contents-archive-item {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
.contents-archive .contents-archive-wrap .contents-archive-inner .contents-archive-items-wrap .contents-archive-item .contents-archive-item-img {
  padding-right: 2rem;
}
@media (max-width: 600px) {
  .contents-archive .contents-archive-wrap .contents-archive-inner .contents-archive-items-wrap .contents-archive-item .contents-archive-item-img {
    padding-right: 1rem;
  }
}
.contents-archive .contents-archive-wrap .contents-archive-inner .contents-archive-items-wrap .contents-archive-item .contents-archive-item-img img {
  width: 200px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .contents-archive .contents-archive-wrap .contents-archive-inner .contents-archive-items-wrap .contents-archive-item .contents-archive-item-img img {
    width: 100px;
    height: 70px;
  }
}
.contents-archive .contents-archive-wrap .contents-archive-inner .contents-archive-items-wrap .contents-archive-item .contents-archive-item-text h2 {
  margin-top: 0;
  color: var(--text-color-vivid);
}
@media (max-width: 600px) {
  .contents-archive .contents-archive-wrap .contents-archive-inner .contents-archive-items-wrap .contents-archive-item .contents-archive-item-text h2 {
    font-size: 1rem;
  }
}
.contents-archive .contents-archive-wrap .contents-archive-inner .contents-archive-items-wrap .contents-archive-item .contents-archive-item-text .contents-archive-item-description {
  font-size: 0.8rem;
  color: black;
}
@media (max-width: 600px) {
  .contents-archive .contents-archive-wrap .contents-archive-inner .contents-archive-items-wrap .contents-archive-item .contents-archive-item-text .contents-archive-item-description {
    display: none;
  }
}
.contents-archive .contents-archive-wrap .contents-archive-inner .the-sidebar {
  width: 30%;
}
@media (max-width: 600px) {
  .contents-archive .contents-archive-wrap .contents-archive-inner .the-sidebar {
    display: none;
  }
}

.sidebar .sidebar-contact-wrap {
  width: 100%;
  background-color: var(--theme-color-light);
  border-radius: 10px;
  margin-bottom: 1rem;
}
.sidebar .sidebar-contact-wrap .sidebar-contact-inner {
  padding: 1rem;
}
.sidebar .sidebar-contact-wrap .sidebar-contact-inner .sidebar-contact-title {
  color: var(--theme-color-vivid);
  font-weight: bold;
  padding-bottom: 1rem;
}
.sidebar .sidebar-contact-wrap .sidebar-contact-inner .sidebar-contact-tel {
  font-size: 1.3rem;
  text-align: center;
  font-weight: bold;
}
.sidebar .sidebar-contact-wrap .sidebar-contact-inner .button-more {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.sidebar .sidebar-voice-wrap {
  width: 100%;
  background-color: var(--theme-color-light);
  border-radius: 10px;
  margin-bottom: 1rem;
}
.sidebar .sidebar-voice-wrap .sidebar-voice-inner {
  padding: 1rem;
}
.sidebar .sidebar-voice-wrap .sidebar-voice-inner .sidebar-voice-title {
  color: var(--theme-color-vivid);
  font-weight: bold;
  padding-bottom: 1rem;
}
.sidebar .sidebar-voice-wrap .sidebar-voice-inner .sidebar-voice-item-wrap {
  background-color: white;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.sidebar .sidebar-voice-wrap .sidebar-voice-inner .sidebar-voice-item-wrap .sidebar-voice-item-inner {
  padding: 1rem;
}
.sidebar .sidebar-voice-wrap .sidebar-voice-inner .sidebar-voice-item-wrap .sidebar-voice-item-inner .sidebar-voice-item-title {
  color: var(--theme-color-vivid);
  font-weight: bold;
  font-size: 0.8rem;
}
.sidebar .sidebar-voice-wrap .sidebar-voice-inner .sidebar-voice-item-wrap .sidebar-voice-item-inner .sidebar-voice-item-description {
  font-size: 0.8rem;
  color: black;
}
.sidebar .sidebar-announce-wrap {
  width: 100%;
  background-color: var(--theme-color-light);
  border-radius: 10px;
  margin-bottom: 1rem;
}
.sidebar .sidebar-announce-wrap .sidebar-announce-inner {
  padding: 1rem;
}
.sidebar .sidebar-announce-wrap .sidebar-announce-inner .sidebar-announce-title {
  color: var(--theme-color-vivid);
  font-weight: bold;
  padding-bottom: 1rem;
}
.sidebar .sidebar-announce-wrap .sidebar-announce-inner .sidebar-announce-item-wrap {
  background-color: white;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.sidebar .sidebar-announce-wrap .sidebar-announce-inner .sidebar-announce-item-wrap .sidebar-announce-item-inner {
  padding: 1rem;
}
.sidebar .sidebar-announce-wrap .sidebar-announce-inner .sidebar-announce-item-wrap .sidebar-announce-item-inner .sidebar-announce-item-title {
  color: var(--theme-color-vivid);
  font-weight: bold;
  font-size: 0.8rem;
}
.sidebar .sidebar-announce-wrap .sidebar-announce-inner .sidebar-announce-item-wrap .sidebar-announce-item-inner .sidebar-announce-item-description {
  font-size: 0.8rem;
  color: black;
}
.sidebar .sidebar-wrap {
  width: 100%;
  background-color: var(--theme-color-light);
  border-radius: 10px;
}
.sidebar .sidebar-wrap .sidebar-title {
  padding: 1rem;
  margin: 0;
  color: var(--theme-color-vivid);
  font-weight: bold;
  padding-bottom: 1rem;
}
.sidebar .sidebar-wrap ul {
  list-style: none;
  padding-bottom: 1rem;
  padding-right: 1rem;
  padding-left: 1rem;
}
.sidebar .sidebar-wrap ul li {
  padding-bottom: 0.4rem;
}
.sidebar .sidebar-wrap ul li a {
  font-size: 0.9rem;
  color: var(--theme-color-vivid);
}

footer .footer-wrap {
  background-color: var(--theme-color);
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
footer .footer-wrap .footer-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 600px) {
  footer .footer-wrap .footer-inner {
    padding-top: 2rem;
    padding-bottom: 2rem;
    flex-direction: column;
    align-items: center;
  }
}
footer .footer-wrap .footer-inner .footer-logo-wrap {
  width: 40%;
  display: flex;
}
@media (max-width: 600px) {
  footer .footer-wrap .footer-inner .footer-logo-wrap {
    width: 100%;
    justify-content: center;
  }
}
footer .footer-wrap .footer-inner .footer-logo-wrap .footer-logo-inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
footer .footer-wrap .footer-inner .footer-logo-wrap .footer-logo-inner img {
  width: 200px;
  height: 200px;
}
footer .footer-wrap .footer-inner .footer-logo-wrap .footer-logo-inner .footer-logo-text-wrap {
  color: white;
  text-align: center;
}
footer .footer-wrap .footer-inner .footer-logo-wrap .footer-logo-inner .footer-logo-text-wrap .footer-logo-title {
  font-weight: bold;
}
footer .footer-wrap .footer-inner .footer-nav-wrap {
  width: 60%;
}
@media (max-width: 600px) {
  footer .footer-wrap .footer-inner .footer-nav-wrap {
    width: 100%;
  }
}
footer .footer-wrap .footer-inner .footer-nav-wrap ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  footer .footer-wrap .footer-inner .footer-nav-wrap ul {
    flex-direction: column;
    text-align: center;
  }
}
footer .footer-wrap .footer-inner .footer-nav-wrap ul li {
  padding: 1rem;
}
@media (max-width: 600px) {
  footer .footer-wrap .footer-inner .footer-nav-wrap ul li {
    padding-top: 2rem;
  }
}
footer .footer-wrap .footer-inner .footer-nav-wrap ul li .footer-nav-item a {
  color: var(--header-text-color);
  font-weight: bold;
}
footer .footer-wrap .footer-inner .footer-nav-wrap ul li .sub-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
}
footer .footer-wrap .footer-inner .footer-nav-wrap ul li .sub-menu li {
  padding-top: 1rem;
  padding-left: 0;
  padding-bottom: 0;
  padding-right: 0;
}
footer .footer-wrap .footer-inner .footer-nav-wrap ul li .sub-menu li a {
  font-weight: normal;
}
footer .footer-catch-wrap {
  background-color: var(--theme-color-deep);
  color: white;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
footer .footer-catch-wrap .footer-catch-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 600px) {
  footer .footer-catch-wrap .footer-catch-inner {
    padding-top: 2rem;
    padding-bottom: 2rem;
    flex-direction: column;
  }
}
footer .footer-catch-wrap .footer-catch-inner .footer-catch-tel-wrap {
  width: 50%;
}
@media (max-width: 600px) {
  footer .footer-catch-wrap .footer-catch-inner .footer-catch-tel-wrap {
    width: 100%;
    padding-bottom: 1.5rem;
  }
}
footer .footer-catch-wrap .footer-catch-inner .footer-catch-tel-wrap .footer-catch-tel-text {
  font-size: 0.9rem;
  text-align: center;
  width: 100%;
  padding-bottom: 1rem;
}
@media (max-width: 600px) {
  footer .footer-catch-wrap .footer-catch-inner .footer-catch-tel-wrap .footer-catch-tel-text {
    padding-bottom: 0.5rem;
  }
}
footer .footer-catch-wrap .footer-catch-inner .footer-catch-tel-wrap .footer-catch-tel-number {
  font-size: 2rem;
  text-align: center;
  width: 100%;
}
footer .footer-catch-wrap .footer-catch-inner .footer-catch-mail-wrap {
  width: 50%;
}
@media (max-width: 600px) {
  footer .footer-catch-wrap .footer-catch-inner .footer-catch-mail-wrap {
    width: 100%;
  }
}
footer .footer-catch-wrap .footer-catch-inner .footer-catch-mail-wrap .footer-catch-mail-text {
  font-size: 0.9rem;
  text-align: center;
  width: 100%;
}
footer .footer-catch-wrap .footer-catch-inner .footer-catch-mail-wrap .footer-catch-mail-button {
  text-align: center;
  width: 100%;
}
footer .footer-catch-wrap .footer-catch-inner .footer-catch-mail-wrap .footer-catch-mail-button .button-more {
  margin-top: 1rem;
}/*# sourceMappingURL=style.css.map */