* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
}
a:hover {
  opacity: 0.7;
}

table {
  border-collapse: collapse;
}

.inner {
  max-width: 1120px;
  width: 90%;
  margin: 0 auto;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 10;
}
header .header_top {
  height: 80px;
  display: flex;
  align-items: center;
}
header .header_top .inner h1 img {
  display: block;
  width: 310px;
}
header .header_bottom {
  background: #d4d4d4;
}
header .header_bottom .inner nav ul {
  display: flex;
}
header .header_bottom .inner nav ul li {
  width: 20%;
}
header .header_bottom .inner nav ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  height: 60px;
}
header .header_bottom .inner nav ul li a span {
  font-size: 10px;
  color: #333;
  display: block;
  margin-top: 10px;
  letter-spacing: 0.1em;
  transition: 0.3s;
}
header .header_bottom .inner nav ul li a:hover {
  background: #a4a044;
  color: #fff;
  opacity: 1;
}
header .header_bottom .inner nav ul li a:hover span {
  color: #fff;
}
header .header_bottom .inner nav ul li:not(:last-child) {
  border-right: 1px solid #fff;
}
header .header_bottom .inner nav .contact a {
  display: block;
  padding: 10px 20px;
  line-height: 1;
  background: #a4a044;
  color: #fff;
  font-size: 14px;
}

#mv {
  margin-top: 140px;
  padding: 0;
  height: 400px;
  position: relative;
}
#mv::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}
#mv .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#mv .inner h2 {
  color: #fff;
  width: 800px;
  max-width: 100%;
  position: relative;
  z-index: 2;
  font-size: 26px;
  margin-bottom: 0;
}
#mv .inner h2 span {
  display: block;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #fff;
  color: #fff;
  font-size: 13px;
}

section {
  padding: 100px 0;
}
section h2 {
  color: #a4a044;
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 60px;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1;
}
section h2 span {
  display: block;
  margin-top: 15px;
  font-size: 10px;
  color: #333;
}

#news_list {
  background: #ffffff;
}
#news_list .inner .news_list ul li {
  border-bottom: 1px solid #333;
}
#news_list .inner .news_list ul li a {
  display: flex;
  padding: 20px;
  position: relative;
}
#news_list .inner .news_list ul li a .date {
  width: 120px;
  color: #a4a044;
  font-weight: bold;
}
#news_list .inner .news_list ul li a .title {
  width: calc(100% - 120px);
}
#news_list .inner .news_list ul li a::after {
  content: "";
  display: block;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  width: 7px;
  height: 7px;
  transform: rotate(45deg) translate(0, -50%);
  position: absolute;
  top: 50%;
  right: 20px;
}
#news_list .inner .news_list .btn {
  margin-top: 60px;
}
#news_list .inner .wp-pagenavi {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  gap: 20px;
}
#news_list .inner .wp-pagenavi > * {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #a4a044;
}
#news_list .inner .wp-pagenavi span {
  background: #767777;
}

.btn a {
  display: block;
  color: #fff;
  line-height: 30px;
  border-radius: 15px;
  width: 300px;
  background: #a4a044;
  padding: 0 20px;
  font-size: 14px;
  margin: 0 0 0 auto;
  position: relative;
  letter-spacing: 0.1em;
}
.btn a::after {
  content: "";
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 7px;
  height: 7px;
  transform: rotate(45deg) translate(0, -50%);
  position: absolute;
  top: 50%;
  right: 20px;
}

#sns .inner ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
#sns .inner ul li:not(:last-child) {
  margin-right: 40px;
}

footer {
  padding: 60px 0;
  background: #a4a044;
  color: #fff;
}
footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .inner .left h1 {
  font-size: 20px;
}
footer .inner .left .address {
  font-size: 14px;
  margin-top: 10px;
}
footer .inner .left .copy {
  font-size: 10px;
  margin-top: 20px;
}
footer .inner .right nav ul {
  display: flex;
}
footer .inner .right nav ul li:not(:last-child) {
  margin-right: 40px;
}
footer .inner .right nav ul li a {
  font-size: 14px;
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  header .header_top {
    height: 60px;
  }
  header .header_top .inner h1 img {
    width: 210px;
  }
  header .header_top .inner #menu_btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
  }
  header .header_top .inner #menu_btn span {
    display: block;
    background: #a4a044;
    height: 2px;
    position: absolute;
    width: 100%;
    transition: 0.3s;
  }
  header .header_top .inner #menu_btn span:nth-child(1) {
    top: 0;
  }
  header .header_top .inner #menu_btn span:nth-child(2) {
    top: 10px;
  }
  header .header_top .inner #menu_btn span:nth-child(3) {
    top: 20px;
  }
  header .header_top .inner #menu_btn.open span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
  }
  header .header_top .inner #menu_btn.open span:nth-child(2) {
    right: -50px;
  }
  header .header_top .inner #menu_btn.open span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
  }
  header .header_bottom {
    display: none;
  }
  header .header_bottom .inner nav {
    padding: 20px 0;
  }
  header .header_bottom .inner nav ul {
    flex-direction: column;
    width: 100%;
  }
  header .header_bottom .inner nav ul li {
    width: 100%;
  }
  header .header_bottom .inner nav ul li:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #bbb;
  }
  header .header_bottom .inner nav ul li a {
    padding: 20px 0 15px;
  }
  header .header_bottom .inner nav .contact {
    margin-top: 20px;
  }
  section {
    padding: 50px 0;
  }
  section h2 {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.4;
  }
  section h2 span {
    margin-top: 5px;
  }
  #mv {
    height: 170px;
    margin-top: 60px;
  }
  #mv .inner h2 {
    width: 100%;
    font-size: 22px;
  }
  #mv .inner h2 span {
    margin-top: 15px;
    padding-top: 15px;
  }
  #news_list .inner .news_list ul li a {
    padding: 15px 30px 15px 0;
    flex-direction: column;
  }
  #news_list .inner .news_list ul li a .date {
    margin-bottom: 5px;
    width: 100%;
  }
  #news_list .inner .news_list ul li a .title {
    width: 100%;
  }
  #news_list .inner .wp-pagenavi > * {
    width: 30px;
    line-height: 30px;
  }
  #news_list .inner .wp-pagenavi span {
    width: 30px;
    line-height: 30px;
  }
  .btn a {
    margin: 0 auto;
  }
  footer {
    padding: 50px 0 100px;
    position: relative;
  }
  footer .inner {
    flex-direction: column;
  }
  footer .inner .left {
    margin-bottom: 30px;
    text-align: center;
  }
  footer .inner .left h1 {
    font-size: 18px;
  }
  footer .inner .left .copy {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    text-align: center;
  }
  footer .inner .right nav ul {
    flex-direction: column;
  }
  footer .inner .right nav ul li {
    text-align: center;
  }
  footer .inner .right nav ul li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
#top #loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 500;
}
#top #loading img {
  width: 300px;
  display: none;
}
#top #mv {
  height: 600px;
  position: relative;
  overflow: hidden;
}
#top #mv::before {
  background: rgba(0, 0, 0, 0.3);
}
#top #mv .slider {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#top #mv .slider .slick-list {
  height: 100%;
}
#top #mv .slider .slick-list .slick-track {
  height: 100%;
}
#top #mv .slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#top #mv .inner {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
#top #mv .inner .catch {
  font-size: 35px;
  letter-spacing: 0.1em;
  line-height: 2;
}
#top #mv .inner .catch span {
  display: block;
}
#top #mv .inner .name {
  margin-top: 30px;
  font-size: 20px;
}
#top #omoi .inner h2 {
  margin-bottom: 40px;
  line-height: 1.5;
}
#top #omoi .inner .txt {
  line-height: 2;
  text-align: center;
}
#top #business {
  background: #d9d7b8;
}
#top #business .inner h2 {
  color: #a4a044;
}
#top #business .inner .ttl {
  text-align: center;
  font-size: 18px;
  margin-bottom: 30px;
}
#top #business .inner .business_list {
  display: flex;
  justify-content: space-between;
}
#top #business .inner .business_list li {
  width: 30%;
}
#top #business .inner .business_list li a {
  display: block;
}
#top #business .inner .business_list li a .img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
#top #business .inner .business_list li a .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
#top #business .inner .business_list li a .name {
  margin-top: 20px;
  letter-spacing: 0.2em;
  text-align: center;
  font-size: 20px;
  transition: 0.3s;
  margin-bottom: 20px;
}
#top #business .inner .business_list li a:hover {
  opacity: 1;
}
#top #business .inner .business_list li a:hover .img img {
  transform: scale(1.1);
}
#top #business .inner .business_list li a:hover .name {
  color: #a4a044;
}
#top #business .inner .btn {
  margin-top: 60px;
}
#top #company {
  background: none;
}
#top #company .inner .company_table table {
  width: 600px;
  margin: 0 auto;
}
#top #company .inner .company_table table tr {
  border-top: 1px solid #333;
}
#top #company .inner .company_table table tr th {
  padding: 20px;
  text-align: left;
  width: 150px;
}
#top #company .inner .company_table table tr td {
  padding: 20px;
}
#top #company .inner .company_table table tr:last-child {
  border-bottom: 1px solid #333;
}
#top #company .inner .company_table .map {
  margin-top: 60px;
}
#top #news_list {
  background: #d4d4d4;
}
#top #news_list h2 {
  color: #a4a044;
}

@media (max-width: 768px) {
  #top #loading img {
    width: 180px;
  }
  #top #mv {
    height: 400px;
  }
  #top #mv .inner {
    left: 0;
  }
  #top #mv .inner .catch {
    font-size: 20px;
  }
  #top #mv .inner .catch span {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  #top #mv .inner .name {
    font-size: 16px;
  }
  #top #omoi .inner h2 {
    font-size: 18px;
  }
  #top #omoi .inner .txt {
    text-align: left;
  }
  #top #business .inner .ttl {
    font-size: 16px;
  }
  #top #business .inner .business_list {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 40px;
  }
  #top #business .inner .business_list li {
    width: 100%;
  }
  #top #business .inner .business_list li a .img img {
    width: 100%;
  }
  #top #business .inner .business_list li a .name {
    margin-top: 10px;
    font-size: 18px;
    margin-bottom: 5px;
  }
  #top #equipment .inner .imgs ul {
    justify-content: center;
  }
  #top #company .inner .company_table table {
    width: 100%;
  }
  #top #company .inner .company_table table tr th {
    width: 80px;
    padding: 10px;
  }
  #top #company .inner .company_table table tr td {
    width: calc(100% - 110px);
  }
  #top #company .inner .company_table .map {
    margin-top: 30px;
  }
  #top #company .inner .company_table .map iframe {
    height: 300px;
  }
}
#company #mv {
  background: url(../img/mv_company.jpg) no-repeat center/cover;
}
#company #message {
  padding: 100px 0;
}
#company #message .inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
#company #message .inner .img {
  margin-right: 60px;
}
#company #message .inner .img img {
  width: 100%;
  min-width: 100%;
}
#company #message .inner .txt {
  width: 60%;
}
#company #message .inner .txt h2 {
  text-align: left;
  margin-bottom: 30px;
}
#company #message .inner .txt .desc {
  line-height: 2;
}
#company #philosophy {
  background: #d9d7b8;
  padding: 100px 0;
}
#company #philosophy .inner .list .block {
  position: relative;
}
#company #philosophy .inner .list .block h2 {
  margin-bottom: 40px;
}
#company #philosophy .inner .list .block .intro {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}
#company #philosophy .inner .list .block .desc {
  text-align: center;
  font-size: 18px;
  line-height: 2;
}
#company #philosophy .inner .list .block ul {
  width: fit-content;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.5);
  padding: 40px;
}
#company #philosophy .inner .list .block ul li {
  font-size: 18px;
}
#company #philosophy .inner .list .block ul li:not(:last-child) {
  margin-bottom: 10px;
}
#company #philosophy .inner .list .block:not(:last-child) {
  margin-bottom: 100px;
}
#company #philosophy .inner .list .block:not(:last-child)::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: #a4a044;
  position: absolute;
  top: calc(100% + 50px);
  left: 50%;
  transform: translateX(-50%);
}
#company #gaiyou .inner h2 {
  color: #a4a044;
}
#company #gaiyou .inner .row {
  display: flex;
  justify-content: space-between;
}
#company #gaiyou .inner .row .left {
  width: 51%;
}
#company #gaiyou .inner .row .left table {
  background: #fff;
  width: 100%;
}
#company #gaiyou .inner .row .left table tr th {
  border: 1px solid #bbb;
  background: #a4a044;
  color: #fff;
  text-align: left;
  padding: 10px 20px;
  font-weight: normal;
  width: 150px;
  vertical-align: top;
}
#company #gaiyou .inner .row .left table tr td {
  border: 1px solid #bbb;
  padding: 10px 20px;
}
#company #gaiyou .inner .row .right {
  width: 45%;
}
#company #gaiyou .inner .row .right .map {
  height: 100%;
}
#company #gaiyou .inner .row .right .map iframe {
  height: 100%;
}
#company #business_sec {
  padding: 100px 0;
  background: #d9d7b8;
}
#company #business_sec .business_list {
  display: flex;
  justify-content: space-between;
}
#company #business_sec .business_list li {
  width: 24%;
}
#company #business_sec .business_list li .img img {
  aspect-ratio: 3/2;
  object-fit: cover;
}
#company #business_sec .business_list li .name {
  margin-top: 10px;
  font-size: 18px;
  text-align: center;
}

@media (max-width: 1000px) {
  #company #gaiyou .inner .row {
    flex-direction: column;
  }
  #company #gaiyou .inner .row .left {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  #company #gaiyou .inner .row .right {
    width: 100%;
  }
  #company #gaiyou .inner .row .right .map iframe {
    height: 250px;
  }
}
@media (max-width: 768px) {
  #company #message {
    padding: 50px 0;
  }
  #company #message .inner {
    flex-direction: column;
  }
  #company #message .inner .img {
    order: 2;
    margin-right: 0;
    margin-top: 15px;
  }
  #company #message .inner .txt {
    order: 1;
    width: 100%;
  }
  #company #message .inner .txt h2 {
    text-align: center;
  }
  #company #message .inner .txt .desc {
    line-height: 1.8;
  }
  #company #philosophy {
    padding: 50px 0;
  }
  #company #philosophy .inner .list .block h2 {
    margin-bottom: 20px;
  }
  #company #philosophy .inner .list .block .intro {
    font-size: 14px;
  }
  #company #philosophy .inner .list .block .desc {
    font-size: 13px;
  }
  #company #philosophy .inner .list .block ul {
    padding: 20px;
  }
  #company #philosophy .inner .list .block ul li {
    font-size: 14px;
    text-indent: -1em;
    margin-left: 1em;
  }
  #company #gaiyou .inner .row {
    flex-direction: column;
  }
  #company #gaiyou .inner .row .left table tr th {
    font-size: 13px;
    width: 100px;
    padding: 10px;
  }
  #company #gaiyou .inner .row .left table tr td {
    padding: 10px;
    font-size: 12px;
    line-height: 1.8;
  }
  #company #business_sec {
    padding: 50px 0;
  }
  #company #business_sec .inner ul {
    flex-direction: column;
    gap: 30px;
  }
  #company #business_sec .inner ul li {
    width: 100%;
  }
  #company #business_sec .inner ul li .img {
    text-align: center;
  }
  #company #business_sec .inner ul li .name {
    font-size: 16px;
  }
}
#services #mv {
  background: url(../img/mv_services.jpg) no-repeat center/cover;
}
#services #services_sec {
  padding: 100px 0;
}
#services #services_sec .inner .ttl {
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 60px;
}
#services #services_sec .inner .list .block {
  display: flex;
}
#services #services_sec .inner .list .block .img {
  width: 50%;
}
#services #services_sec .inner .list .block .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#services #services_sec .inner .list .block .txt {
  width: 50%;
  height: 100%;
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#services #services_sec .inner .list .block .txt h3 {
  font-size: 24px;
  color: #a4a044;
  font-weight: 400;
  margin-bottom: 15px;
}
#services #services_sec .inner .list .block .txt .lead {
  margin-bottom: 30px;
  font-size: 18px;
}
#services #services_sec .inner .list .block .txt .lead::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #a4a044;
  margin-top: 30px;
}
#services #services_sec .inner .list .block .txt ul {
  margin-top: 30px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
#services #services_sec .inner .list .block .txt ul li {
  width: calc((100% - 40px) / 2);
}
#services #services_sec .inner .list .block .txt ul li a {
  border-bottom: 2px solid #a4a044;
  display: block;
  position: relative;
}
#services #services_sec .inner .list .block .txt ul li a::after {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  content: "";
  display: block;
  background: url("../img/arrow_right.svg") no-repeat center center/contain;
  width: 20px;
  height: 20px;
}
#services #services_sec .inner .list .block .txt ul li a:hover {
  color: #a4a044;
}
#services #services_sec .inner .list .block .txt ul li a:hover::after {
  right: 0;
}
#services #services_sec .inner .list .block .txt .btn {
  margin-top: 60px;
}
#services #services_sec .inner .list .block .txt .btn a {
  margin: 0 auto;
}
#services #services_sec .inner .list .block:nth-child(2n) .img {
  order: 2;
}
#services #services_sec .inner .list .block:nth-child(2n) .txt {
  order: 1;
}
#services #summary {
  padding: 100px 0;
  background: #d9d7b8;
}
#services #summary .inner h3 {
  text-align: center;
  margin-bottom: 30px;
  color: #a4a044;
  font-weight: 400;
  font-size: 24px;
}
#services #summary .inner .desc {
  text-align: center;
}
#services #summary .inner .img {
  margin-top: 40px;
  text-align: center;
}
#services #summary .inner .img img {
  width: 450px;
}

@media (max-width: 1080px) {
  #services #services_sec .inner .list .block:nth-child(2n+1) .txt {
    padding-right: 0;
  }
  #services #services_sec .inner .list .block:nth-child(2n) .txt {
    padding-left: 0;
  }
}
@media (max-width: 960px) {
  #services #services_sec .inner .ttl {
    font-size: 16px;
  }
  #services #services_sec .inner .list .block {
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
  }
  #services #services_sec .inner .list .block .img {
    width: 100%;
    order: 2;
  }
  #services #services_sec .inner .list .block .img img {
    height: unset;
    aspect-ratio: 3/2;
  }
  #services #services_sec .inner .list .block .txt {
    width: 100%;
    padding: 0;
    margin-bottom: 15px;
    order: 1;
  }
  #services #services_sec .inner .list .block:not(:last-child) {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  #services #services_sec {
    padding: 50px 0;
  }
  #services #services_sec .inner .ttl {
    font-size: 14px;
  }
  #services #services_sec .inner .list .block .txt h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }
  #services #services_sec .inner .list .block .txt .lead {
    font-size: 16px;
    margin-bottom: 20px;
  }
  #services #services_sec .inner .list .block .txt .lead::after {
    margin-top: 15px;
  }
  #services #services_sec .inner .list .block:not(:last-child) {
    margin-bottom: 60px;
  }
  #services #summary {
    padding: 50px 0;
  }
  #services #summary .inner h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  #services #summary .inner .desc {
    text-align: left;
  }
  #services #summary .inner .img {
    margin-top: 20px;
  }
}
#news #mv {
  background: url(../img/mv_news.jpg) no-repeat center/cover;
}

#news_single #mv {
  background: url(../img/mv_news.jpg) no-repeat center/cover;
}
#news_single #article .inner {
  max-width: 800px;
}
#news_single #article .inner .date {
  text-align: right;
  margin-bottom: 60px;
}
#news_single #article .inner .eyecatch {
  text-align: center;
  margin-bottom: 40px;
}
#news_single #article .inner .news_content p:not(:last-child) {
  margin-bottom: 30px;
}
#news_single #article .inner .btn {
  margin-top: 100px;
}
#news_single #article .inner .btn a {
  margin: 0 auto;
}
#news_single #sns {
  background: #d9d7b8;
}

@media (max-width: 768px) {
  #news_single #article .inner h2 {
    text-align: left;
  }
  #news_single #article .inner .date {
    margin-bottom: 20px;
  }
  #news_single #article .inner .btn {
    margin-top: 50px;
  }
}
#contact #mv {
  background: url(../img/mv_contact.jpg) no-repeat center/cover;
}
#contact #contact_tel .inner p {
  line-height: 2;
  text-align: center;
}
#contact #contact_tel .inner p.num {
  margin-top: 40px;
  font-size: 26px;
  font-weight: bold;
}
#contact #contact_form .inner {
  max-width: 600px;
}
#contact #contact_form .inner .intro {
  text-align: center;
  margin-bottom: 40px;
}
#contact #contact_form .inner dl dt {
  margin-bottom: 10px;
}
#contact #contact_form .inner dl dt span {
  background: rgb(205, 41, 41);
  color: #fff;
  padding: 2px 5px;
  margin-left: 20px;
  font-size: 12px;
}
#contact #contact_form .inner dl dd input, #contact #contact_form .inner dl dd textarea {
  width: 100%;
  padding: 10px;
  font: inherit;
}
#contact #contact_form .inner dl dd textarea {
  height: 200px;
}
#contact #contact_form .inner dl dd:not(:last-of-type) {
  margin-bottom: 20px;
}
#contact #contact_form .inner .submit {
  margin-top: 40px;
}
#contact #contact_form .inner .submit input {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  background: #a4a044;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  box-shadow: none;
  margin: 0 auto;
  font: inherit;
}
#contact #contact_form .inner .submit input:hover {
  opacity: 0.7;
}
#contact #contact_form .inner .mw_wp_form_confirm dl dt {
  font-weight: bold;
}
#contact #contact_form .inner .mw_wp_form_confirm dl dt span {
  display: none;
}
#contact #contact_form .inner .mw_wp_form_confirm dl dd:not(:last-child) {
  margin-bottom: 30px;
}
#contact #sns {
  background: #d9d7b8;
}

@media (max-width: 810px) {
  #contact #contact_tel .inner p {
    line-height: 1.7;
  }
  #contact #contact_tel .inner p.num {
    margin-top: 20px;
    font-size: 17px;
  }
  #contact #contact_form .inner dl dd textarea {
    height: 150px;
  }
}/*# sourceMappingURL=style.css.map */