@charset "UTF-8";
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #373737;
  background-color: #fff;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.flex {
  display: flex;
}

.tablet {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tablet {
    display: block;
  }
}

.desktop {
  display: block;
}
@media screen and (max-width: 1200px) {
  .desktop {
    display: none;
  }
}

.blue-btn {
  z-index: 1;
}
.blue-btn a {
  background: #0769B2;
  color: #fff;
  width: 300px;
  height: 70px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "LINE Seed JP_OTF Bold";
  font-size: 20px;
  transition: 0.2s;
}
.blue-btn a:hover {
  opacity: 0.6;
}

.white-btn {
  z-index: 100;
}
.white-btn a {
  background: #fff;
  color: #0769B2;
  width: 300px;
  height: 70px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "LINE Seed JP_OTF Bold";
  font-size: 20px;
  transition: 0.2s;
}
.white-btn a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
  .blue-btn a,
  .white-btn a {
    font-size: 16px;
    width: 260px;
    height: 50px;
    border-radius: 20px;
  }
}
.postcontent .blue-btn a {
  margin: auto;
  margin-top: 30px;
  width: 260px;
  height: 50px;
  font-size: 18px;
}

.section-button {
  display: block;
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  .section-button {
    padding: 40px 0;
  }
}

.common-button {
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 400px;
  padding: 10px 0;
  background: #f44e3b;
  box-shadow: 0 8px 4px rgba(244, 78, 59, 0.3);
  border-radius: 30px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .common-button {
    width: 84vw;
  }
}
.common-button::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(225deg);
  width: 14px;
  height: 14px;
  border: solid #fff;
  border-width: 0 0 3px 3px;
  border-radius: 3px;
}
.common-button:hover {
  box-shadow: 0 0 4px rgba(244, 78, 59, 0.3);
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.common-button__text {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .common-button__text {
    font-size: 16px;
  }
}

table.company {
  width: 100%;
  height: auto;
  margin: 0;
  border-collapse: separate;
  border: none;
  border-spacing: 0;
}
table.company tr {
  text-align: left;
}
table.company tr:last-child th, table.company tr:last-child td {
  border-style: solid;
  border-width: 1px 0px 1px 0px;
  border-color: #CDCDCD;
}
table.company th,
table.company td {
  border-style: solid;
  border-width: 1px 0px 0px 0px;
  border-color: #CDCDCD;
  padding: 24px;
  font-family: "Noto Sans JP", Sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 35px;
}

.fixed-contact-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 160px;
  height: 160px;
  background-color: #f44e3b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  .fixed-contact-btn {
    display: none;
  }
}
.fixed-contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.fixed-contact-btn .bg-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spin-infinite 8s linear infinite;
}
@keyframes spin-infinite {
  100% {
    transform: rotate(360deg);
  }
}
.fixed-contact-btn .arrow-icon {
  position: relative;
  width: 40%;
  height: 40%;
  z-index: 1;
}

.section-title {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  padding: 60px 0;
}
@media screen and (max-width: 1024px) {
  .section-title {
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 32px;
  }
}

.contactpage {
  margin-top: 180px;
  padding: 0 20px 100px;
}
@media screen and (max-width: 767px) {
  .contactpage {
    margin-top: 120px;
    padding: 0 20px 100px;
  }
}
.contactpage h2 {
  display: block;
  font-size: 32px;
  text-align: center;
  color: #0769B2;
}
@media screen and (max-width: 767px) {
  .contactpage h2 {
    font-size: 28px;
  }
}

.form-entry {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .form-entry {
    margin-top: 100px;
  }
}
.form-entry label {
  color: #0769B2;
  font-weight: bold;
  margin-bottom: 0.3rem;
  display: inline-block;
}
.form-entry .fieldset {
  width: 100%;
  display: block;
  margin-bottom: 3em;
}
.form-entry .hint {
  font-size: 80%;
  color: #999;
  display: inline-block;
  padding-bottom: 0.1rem;
}
.form-entry .required {
  color: red;
}
.form-entry input[type=text],
.form-entry input[type=email],
.form-entry input[type=tel],
.form-entry input[type=url],
.form-entry select,
.form-entry textarea {
  width: 100%;
}
.form-entry input[type=text],
.form-entry input[type=email],
.form-entry input[type=tel],
.form-entry input[type=url],
.form-entry textarea {
  border: 1px solid #999;
  box-sizing: border-box;
  padding: 1em;
  font-size: 12px;
}
.form-entry select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 1em;
  border-radius: 0;
  border: 1px solid #999;
  background-color: #fff;
  font-size: 12px;
}
.form-entry input.wpcf7-form-control.wpcf7-submit.has-spinner,
.form-entry input.wpcf7-form-control.wpcf7-back {
  display: block;
  margin: auto;
  text-align: center;
  padding: 10px 30px;
  background: #0769B2;
  border-radius: 10px;
  color: #fff;
  border: 1px solid transparent;
  transition: 0.2s;
}
.form-entry input.wpcf7-form-control.wpcf7-submit.has-spinner:hover,
.form-entry input.wpcf7-form-control.wpcf7-back:hover {
  background: #fff;
  color: #0769B2;
  border: 1px solid #0769B2;
}
.form-entry input.wpcf7-form-control.wpcf7-back {
  float: none;
  width: auto;
}
.form-entry span.wpcf7-form-control.wpcf7-checkbox.checkbox {
  display: flex;
  flex-direction: column;
}

.postpage {
  max-width: 800px;
  margin: auto;
  margin-top: 180px;
  padding: 0 20px 100px;
}
@media screen and (max-width: 767px) {
  .postpage {
    padding: 0 10px 100px;
  }
}
.postpage h2 {
  display: block;
  font-size: 32px;
  text-align: center;
  color: #0769B2;
}
@media screen and (max-width: 767px) {
  .postpage h2 {
    font-size: 24px;
  }
}

.postcontent {
  margin: 0 auto;
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .postcontent {
    margin-top: 100px;
  }
}

.archivepage {
  max-width: 1800px;
  margin: auto;
  margin-top: 180px;
  padding: 0 20px 100px;
}
@media screen and (max-width: 767px) {
  .archivepage {
    margin-top: 120px;
    padding: 0 10px 100px;
  }
}
.archivepage h2 {
  display: block;
  font-size: 32px;
  text-align: center;
  color: #0769B2;
}

.archive-wrapper {
  margin: 0 auto;
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .archive-wrapper {
    margin-top: 40px;
  }
}

.archive-filter {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
  .archive-filter {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 0 auto;
  }
}

.archive-filter-button {
  border: 1px solid #0769B2;
  padding: 5px 30px;
  background-color: #fff;
  color: #0769B2;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.archive-filter-button:hover {
  border-color: #0769B2;
  box-shadow: 0 18px 32px rgba(36, 79, 120, 0.12);
}
@media screen and (max-width: 767px) {
  .archive-filter-button.is-all {
    grid-column: span 2;
  }
}
.archive-filter-button.is-active {
  background-color: #0769B2;
  border-color: #0769B2;
  color: #fff;
  box-shadow: 0 18px 32px rgba(36, 79, 120, 0.18);
}
@media screen and (max-width: 767px) {
  .archive-filter-button {
    width: 100%;
    padding: 5px 0;
  }
}

.archive-box {
  padding: 10px;
}
.archive-box img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.archive-box:hover {
  background: #eee;
  opacity: 0.8;
}
.archive-box:hover .archive-boxtitle {
  color: #419fce;
}

.archive-boxtitle {
  color: #0769B2;
  font-weight: bold;
  padding: 10px;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .archive-boxtitle {
    font-size: 12px;
    padding: 5px;
  }
}

.archive-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .archive-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}

.archive-boximg {
  height: auto;
  overflow: hidden;
}
.archive-boximg img {
  aspect-ratio: 16/9;
  object-fit: cover;
}

.archive-date {
  padding-right: 10px;
  color: #888;
  font-size: 12px;
  text-align: right;
}

/*# sourceMappingURL=under.css.map */