@charset "UTF-8";
/*
theme Name: tadakensou
Author: tadakensou
Description: 自作テーマ
version： 1.0.0
*/
/*=========================
# colors
=========================*/
body {
  box-sizing: border-box;
  width: 100%;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  line-height: 1.75;
  color: #000;
  font-size: 16px;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}
@media (min-width: 1300px) {
  body {
    font-size: 19px;
  }
}

html {
  scroll-behavior: smooth;
}

.inner {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .inner {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1100px;
    box-sizing: content-box !important;
  }
}
@media (max-width: 767px) {
  .inner {
    padding: 0 30px;
  }
}

p {
  margin-bottom: 30px;
}

img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .sp {
    display: none;
  }
  .tab {
    display: none;
  }
}
@media (max-width: 1024px) {
  .tab {
    display: block;
  }
}
.main {
  overflow: hidden;
  flex: 1;
}
.main.main-page {
  padding-top: 70px;
}

.section-title01 {
  color: #2197d8;
  font-size: 25px;
  font-weight: 500;
  padding-left: 75px;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .section-title01 {
    font-size: 18px;
    padding-left: 55px;
  }
}
.section-title01::before {
  position: absolute;
  content: "";
  background: transparent url(../img/yazirushi.png) no-repeat center center/contain;
  width: 66px;
  height: 66px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .section-title01::before {
    width: 45px;
    height: 45px;
  }
}

.fax {
  pointer-events: none;
}

.page {
  margin-bottom: 100px;
}

/* header
--------------------------*/
.header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: #047abc;
  padding: 10px 0;
}
.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
  max-width: 100%;
}
@media (min-width: 1300px) {
  .header .inner {
    padding: 0 70px 0 50px;
  }
}
.header .inner .header-left {
  position: relative;
}
.header .inner .header-left .header-title a {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fff;
}
@media (min-width: 1300px) {
  .header .inner .header-left .header-title a {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .header .inner .header-left .header-title a {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .header .inner .header-right .header-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
@media (max-width: 1024px) {
  .header .inner .header-right .header-nav {
    display: none;
  }
}
.header .inner .header-right .header-nav .header-nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  margin-right: 20px;
}
@media (min-width: 1300px) {
  .header .inner .header-right .header-nav .header-nav-list {
    margin-right: 45px;
  }
}
.header .inner .header-right .header-nav .header-nav-list li a {
  color: #fff;
  display: block;
}
@media (min-width: 768px) {
  .header .inner .header-right .header-nav .header-nav-list li a {
    font-size: 16px;
    padding: 15px 20px;
  }
}
@media (min-width: 1300px) {
  .header .inner .header-right .header-nav .header-nav-list li a {
    font-size: 20px;
    padding: 20px 30px;
  }
}
.header .inner .header-right .header-nav .header-nav-list li a:hover {
  background: #2197d8;
}

@media (max-width: 1024px) {
  .drawer-bars {
    cursor: pointer;
    position: relative;
    z-index: 300;
    right: 0;
    width: 25px;
    height: 20px;
  }
  .drawer-bars .drawer-bars-inner {
    width: 25px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .drawer-bars .drawer-bars-inner .drawer-bar {
    background-color: #fff;
    width: 25px;
    height: 2px;
    border-radius: 2px;
    position: absolute;
    transition: all 0.3s ease 0s;
  }
  .drawer-bars .drawer-bars-inner .drawer-bar:nth-of-type(1) {
    top: 0;
  }
  .drawer-bars .drawer-bars-inner .drawer-bar:nth-of-type(2) {
    top: 9px;
  }
  .drawer-bars .drawer-bars-inner .drawer-bar:nth-of-type(3) {
    top: 18px;
  }
}
.drawer-bars.is-checked .drawer-bars-inner .drawer-bar {
  width: 28px;
  background: #047abc;
}
.drawer-bars.is-checked .drawer-bars-inner .drawer-bar:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer-bars.is-checked .drawer-bars-inner .drawer-bar:nth-of-type(2) {
  background: transparent;
}
.drawer-bars.is-checked .drawer-bars-inner .drawer-bar:nth-of-type(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-nav {
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  z-index: 200;
  width: 100%;
  height: auto;
  padding: 80px 20px 30px;
  background: #def0f9;
  z-index: 100;
  transition: all 0.3s ease 0s;
  display: none;
}
.drawer-nav.is-checked {
  display: block;
}
.drawer-nav .drawer-menu-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.drawer-nav .drawer-menu-wrapper .drawer-menu {
  padding: 0 20px;
}
.drawer-nav .drawer-menu-wrapper .drawer-menu li {
  margin-bottom: 15px;
  text-align: center;
}

/* util
---------------------------*/
a {
  color: #000;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  a:hover {
    opacity: 0.9;
  }
}

/* mv
-------------------------*/
.mv {
  display: flex;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .mv {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .mv .inner {
    padding: 0 5.3333333333vw;
  }
}
@media (min-width: 768px) {
  .mv-img {
    width: 42.4791086351%;
  }
}
.mv-inner {
  background: #2197d8;
  color: #fff;
  text-align: center;
  font-size: 32px;
  line-height: 1.5945945946;
  font-weight: 500;
}
@media (min-width: 768px) {
  .mv-inner {
    width: 57.5208913649%;
  }
}
@media (min-width: 1300px) {
  .mv-inner {
    font-size: 37px;
  }
}
@media (min-width:768px) and (max-width: 1024px) {
  .mv-inner {
    font-size: 2.5766016713vw;
  }
}
@media (max-width: 767px) {
  .mv-inner {
    padding: 8vw 0;
    font-size: 5.3333333333vw;
  }
}
.mv-title {
  margin-bottom: 4.1782729805vw;
}
@media (max-width: 767px) {
  .mv-title {
    margin-bottom: 8vw;
  }
}
@media (min-width: 768px) {
  .mv .inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* top-feature
-----------------------*/
.top-feature {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .top-feature-wrapper {
    display: flex;
  }
}
.top-feature .inner {
  max-width: 1340px;
}
@media (min-width: 768px) {
  .top-feature-inner {
    width: 50.8064516129%;
    margin-right: 6.9637883008vw;
  }
}
@media (min-width: 1300px) {
  .top-feature-inner {
    margin-right: 100px;
  }
}
.top-feature-txt {
  font-size: 21px;
  line-height: 2.5238095238;
}
@media (min-width: 768px) {
  .top-feature-txt {
    margin-left: 5px;
  }
}
@media (min-width: 768px) {
  .top-feature-img {
    width: 32.3387096774%;
  }
}

/* top-work
---------------------*/
.top-work {
  background: #def0f9;
  padding: 70px 0 100px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .top-work {
    padding: 50px 0;
  }
}
.top-work .inner {
  max-width: 1380px;
}
.top-work-title {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #2197d8;
  text-align: center;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .top-work-title {
    font-size: 24px;
    margin-bottom: 45px;
  }
}
.top-work-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .top-work-list li {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .top-work-list li {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .top-work-list li:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .top-work-list li:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
@media (max-width: 1024px) {
  .top-work-list li:nth-child(2n) {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .top-work-list-img {
    width: 45.8015267176%;
  }
}
@media (max-width: 1024px) {
  .top-work-list-img {
    width: 70%;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .top-work-list-img {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .top-work-list-inner {
    width: 48.3969465649%;
  }
}
@media (max-width: 1024px) {
  .top-work-list-inner {
    width: 100%;
  }
}
.top-work-list-title {
  color: #2197d8;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .top-work-list-title {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .top-work-list-title {
    font-size: 20px;
  }
}
.top-work-list-txt {
  line-height: 2.4736842105;
}
@media (min-width:768px) and (max-width: 1024px) {
  .top-work-list-txt {
    text-align: center;
  }
}

/* logo
----------------*/
.logo {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .logo-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
  }
}
@media (max-width: 767px) {
  .logo-list li {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .logo-list li:nth-child(2) {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .logo-list li img {
    width: 50%;
  }
}

/* news 
-----------------*/
.news {
  margin-bottom: 110px;
}
.news .inner {
  max-width: 1160px;
}
.news-txt01 {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .news-txt01 {
    margin-bottom: 30px;
  }
}
.news-txt02 {
  line-height: 2;
  margin-bottom: 15px;
  text-align: center;
}
.news-wrapper {
  position: relative;
}
@media (min-width: 768px) {
  .news-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
  }
}
@media (max-width: 1024px) {
  .news-wrapper {
    flex-direction: column;
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .news-left {
    width: 24.1379310345%;
  }
}
@media (max-width: 1024px) {
  .news-left {
    width: 48%;
  }
}
.news-left .news-ilust {
  max-width: 79px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .news-left .news-ilust {
    display: none;
  }
}
.news-img {
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .news-img {
    width: 53.3620689655%;
  }
}
@media (max-width: 1024px) {
  .news-img {
    width: 100%;
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  .news-right {
    width: 24.1379310345%;
    position: relative;
    left: 3%;
  }
}
@media (max-width: 1024px) {
  .news-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 48%;
    left: auto;
  }
}
.news-right .news-ilust {
  max-width: 190px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .news-right .news-ilust {
    display: none;
  }
}
@media (min-width: 768px) {
  .news-logo-list {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
  }
}
.news-logo-list li {
  text-align: center;
}
@media (max-width: 767px) {
  .news-logo-list li {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .news-logo-list li img {
    width: 60%;
  }
}

/* message
-------------------------*/
.message {
  margin-bottom: 220px;
}
.message .section-title01 {
  margin-bottom: 45px;
}
.message-wrapper {
  max-width: 860px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .message-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .message-img {
    width: 17.3076923077%;
  }
}
.message-inner {
  line-height: 2.4736842105;
}
@media (min-width: 768px) {
  .message-inner {
    width: 75%;
  }
}

/* company
-------------------------*/
.company {
  margin-bottom: 80px;
}
.company-table {
  max-width: 715px;
  margin: 0 auto 50px;
}
@media (max-width: 767px) {
  .company-table {
    max-width: 100%;
  }
}
.company-table table {
  border: 1px solid #969696;
  border-collapse: collapse;
}
.company-table table tr td {
  border-bottom: 1px solid #969696;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .company-table table tr td {
    display: block;
    width: 100%;
  }
}
.company-table table tr td:nth-child(1) {
  background: #2197d8;
  color: #fff;
  text-align: center;
  padding: 5px 15px;
}
@media (min-width: 768px) {
  .company-table table tr td:nth-child(1) {
    width: 30.2097902098%;
  }
}
.company-table table tr td:nth-child(2) {
  padding: 5px 40px;
  font-feature-settings: "palt";
}
@media (min-width: 768px) {
  .company-table table tr td:nth-child(2) {
    width: 69.7902097902%;
  }
}
@media (max-width: 767px) {
  .company-table table tr td:nth-child(2) {
    padding: 5px 15px;
  }
}
.company-img {
  max-width: 660px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .company-img {
    display: flex;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .company-img div {
    margin-bottom: 30px;
  }
}

/* access
---------------*/
.access {
  margin-bottom: 100px;
}
@media (min-width: 768px) {
  .access .section-title01 {
    margin-bottom: 60px;
  }
}
.access .gmap {
  max-width: 718px;
  margin: 0 auto;
}
.access .gmap-inner {
  position: relative;
  height: 0;
  padding-top: 66.0167130919%;
  overflow: hidden;
}
.access .gmap-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* works
-----------------*/
.works {
  margin-bottom: 150px;
}
@media (max-width: 767px) {
  .works .section-title01 {
    margin-bottom: 45px;
  }
}
.works-list {
  max-width: 920px;
  margin: 0 auto;
}
.works-list li {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .works-list li {
    margin-bottom: 45px;
  }
}
.works-title {
  font-size: 22px;
  position: relative;
  padding-left: 45px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .works-title {
    font-size: 18px;
    padding-left: 40px;
  }
}
.works-title::before {
  position: absolute;
  content: "";
  background: transparent url(../img/yazirushi.png) no-repeat center center/contain;
  width: 33px;
  height: 33px;
  left: 0;
  top: 2px;
}
@media (max-width: 767px) {
  .works-title::before {
    top: -2px;
  }
}
@media (min-width: 768px) {
  .works-img {
    display: flex;
    justify-content: space-between;
    flex: 1;
    gap: 60px;
  }
}
.works-img div {
  width: 100%;
}
@media (max-width: 767px) {
  .works-img div {
    margin-bottom: 30px;
  }
}
.works-img div img {
  margin-bottom: 5px;
  width: 100%;
  height: auto;
}

/* feature
----------------------*/
.feature {
  margin-bottom: 160px;
}
.feature-txt {
  text-align: center;
  color: #047abc;
  font-size: 38px;
  margin-bottom: 55px;
}
@media (max-width: 767px) {
  .feature-txt {
    font-size: 20px;
  }
}
.feature-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
}
@media (min-width: 768px) {
  .feature-wrapper {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .feature-wrapper {
    flex-direction: column-reverse;
  }
}
@media (min-width: 768px) {
  .feature-img {
    width: 19.0526315789%;
  }
}
.feature-img img {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .feature-inner {
    width: 75.7894736842%;
  }
}
@media (max-width: 767px) {
  .feature-inner {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .feature-inner ul {
    margin-top: 10px;
  }
}
.feature-inner ul li {
  font-size: 30px;
  color: #047abc;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .feature-inner ul li {
    font-size: 16px;
    align-items: flex-start;
  }
}
.feature-inner ul li img {
  width: 62px;
  margin-right: 30px;
  position: relative;
  top: 5px;
}
@media (min-width: 768px) {
  .feature-inner ul li img {
    vertical-align: middle;
  }
}
@media (max-width: 767px) {
  .feature-inner ul li img {
    width: 30px;
    margin-right: 15px;
    top: -2px;
  }
}

/* footer-contact
-------------------------*/
.footer-contact {
  background: #047abc;
  padding: 50px 0;
}
.footer-contact-inner {
  background: #fff;
  text-align: center;
  padding: 70px 30px 60px;
}
@media (max-width: 767px) {
  .footer-contact-inner {
    padding: 30px 15px;
  }
}
.footer-contact-title {
  line-height: 1.2;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .footer-contact-title {
    line-height: 1.4;
    margin-bottom: 20px;
  }
}
.footer-contact-title .en {
  background: linear-gradient(to bottom, #7bdbf1, #12c2fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-weight: bold;
  font-size: 56px;
  letter-spacing: 0.2em;
}
@media (max-width: 767px) {
  .footer-contact-title .en {
    font-size: 32px;
  }
}
.footer-contact-btn {
  display: block;
  background: linear-gradient(to right, #45d1de, #12c2fd);
  color: #fff;
  padding: 18px 15px 18px 30px;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .footer-contact-btn {
    padding: 10px 15px;
  }
}
.footer-contact-btn span {
  padding: 0 20px 0 30px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .footer-contact-btn span {
    display: block;
    text-align: center;
    line-height: 1.4;
  }
}
.footer-contact-btn span::before {
  position: absolute;
  content: "";
  background: transparent url(../img/mail.png) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-45%);
  left: 0;
}
.footer-contact-btn span::after {
  position: absolute;
  content: "";
  background: transparent url(../img/arrow.png) no-repeat center center/contain;
  width: 6px;
  height: 11px;
  top: 50%;
  transform: translateY(-45%);
  right: 0;
}

/* footer
--------------------------*/
.footer {
  background: #047abc;
  padding: 10px 0;
  border-top: 1px solid #fff;
}
@media (max-width: 767px) {
  .footer {
    padding: 45px 0;
  }
}
.footer .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
  max-width: 100%;
}
@media (min-width: 1300px) {
  .footer .inner {
    padding: 0 70px 0 50px;
  }
}
@media (max-width: 767px) {
  .footer .inner {
    flex-direction: column;
  }
}
.footer .inner .footer-left {
  position: relative;
  z-index: 300;
}
@media (max-width: 767px) {
  .footer .inner .footer-left .footer-title {
    margin-bottom: 30px;
  }
}
.footer .inner .footer-left .footer-title a {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fff;
}
@media (min-width: 1300px) {
  .footer .inner .footer-left .footer-title a {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .footer .inner .footer-left .footer-title a {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .footer .inner .footer-right {
    padding-right: 20%;
  }
}
@media (max-width: 1024px) {
  .footer .inner .footer-right {
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .footer .inner .footer-right .footer-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
.footer .inner .footer-right .footer-nav .footer-nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  margin-right: 20px;
}
@media (min-width: 1300px) {
  .footer .inner .footer-right .footer-nav .footer-nav-list {
    margin-right: 45px;
  }
}
@media (max-width: 1024px) {
  .footer .inner .footer-right .footer-nav .footer-nav-list {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .footer .inner .footer-right .footer-nav .footer-nav-list {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .footer .inner .footer-right .footer-nav .footer-nav-list li {
    margin-bottom: 15px;
  }
}
.footer .inner .footer-right .footer-nav .footer-nav-list li a {
  color: #fff;
  display: block;
}
@media (min-width: 768px) {
  .footer .inner .footer-right .footer-nav .footer-nav-list li a {
    font-size: 16px;
    padding: 15px 20px;
  }
}
@media (min-width: 1300px) {
  .footer .inner .footer-right .footer-nav .footer-nav-list li a {
    font-size: 20px;
    padding: 20px 30px;
  }
}
.footer .inner .footer-right .footer-nav .footer-nav-list li a:hover {
  background: #2197d8;
}

/* contact
----------------------*/
.contact {
  margin-bottom: 80px;
}
.contact-txt {
  text-align: center;
  margin-bottom: 45px;
}
.contact .Form {
  max-width: 911px;
  margin: 0 auto;
}
.contact-table table {
  width: 100%;
}
.contact-table table td {
  display: block;
  width: 100%;
  word-break: break-all;
}
.contact-table table td:nth-child(1) {
  padding-bottom: 5px;
}
.contact-table table td:nth-child(2) {
  padding-bottom: 20px;
}
.contact-table table p {
  margin-bottom: 0;
}
.contact input[type=text] {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  border: 1px solid #686666;
  background: #fff;
  height: 49px;
  padding: 0 15px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .contact input[type=text] {
    font-size: 16px;
  }
}
.contact input[type=text]:hover {
  border: 1px solid #000;
  cursor: pointer;
}
.contact input[type=text]:focus {
  outline: none;
  border: 1px solid #000;
}
.contact textarea {
  font-family: "Noto Sans JP", sans-serif;
  vertical-align: top;
  resize: vertical;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  border: 1px solid #686666;
  background: #fff;
  padding: 10px 15px;
  min-height: 190px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .contact textarea {
    font-size: 16px;
  }
}
.contact textarea:hover {
  border: 1px solid #000;
  cursor: pointer;
}
.contact textarea:focus {
  outline: none;
  border: 1px solid #000;
}
.contact .form-btn {
  position: relative;
  cursor: pointer;
  margin-top: 15px;
}
.contact .form-btn input[type=submit],
.contact .form-btn input[type=button] {
  border: none;
  border: 0;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 400 !important;
  display: block;
  position: relative;
  background: #fff;
  color: #000;
  border-radius: 0;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 16px;
  margin: 0 auto;
  border: 1px solid #000;
  width: 100%;
}
@media (max-width: 767px) {
  .contact .form-btn input[type=submit],
.contact .form-btn input[type=button] {
    font-size: 16px;
  }
}
.contact .form-btn input[type=submit].back_button,
.contact .form-btn input[type=button].back_button {
  background: #fff;
  color: #000;
}
.contact .form-btn input[type=submit]:disabled,
.contact .form-btn input[type=button]:disabled {
  cursor: disabled;
}

.confirm_area .contact-table td:nth-child(2) {
  padding-bottom: 30px;
}
.confirm_area .label {
  font-weight: bold;
}

/*確認画面と完了画面を非表示*/
.confirm_area,
.thanks_area {
  display: none;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output {
  display: none;
}

.thanks-btn {
  margin-top: 120px;
  padding-right: 130px;
  padding-left: 130px;
}
@media (max-width: 767px) {
  .thanks-btn {
    margin-top: 70px;
    padding-right: 60px;
    padding-left: 60px;
  }
}

/* 404 */
.entry-404 {
  text-align: center;
}

.entry-404-head {
  color: gray;
  font-family: "Lato", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 36px;
}
@media (max-width: 767px) {
  .entry-404-head {
    font-size: 30px;
  }
}

.entry-404-head span::after {
  content: " ";
}

.entry-404-lead {
  color: #808080;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .entry-404-lead {
    font-size: 20px;
  }
}

.entry-404-lead .m_sp {
  display: none;
}

.entry-404-content {
  color: #808080;
}

.entry-404-btn {
  margin-top: 58px;
}

.entry-404-btn .btn {
  background: #ebebeb;
  color: #8d8d8d;
  padding: 10px 20px;
  font-weight: bold;
}

.entry-404-btn .btn:hover {
  background: #ccc;
  opacity: 1;
}

.eael-posted-on:before {
  display: none;
}: #ccc;
  opacity: 1;
}

.eael-posted-on:before {
  display: none;
}
