@charset "UTF-8";
@font-face {
  font-family: "AlbertSans-Black";
  src: url(/fonts/AlbertSans/AlbertSans-Black.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "AlbertSans-ExtraBold";
  src: url(/fonts/AlbertSans/AlbertSans-ExtraBold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "AlbertSans-SemiBold";
  src: url(/fonts/AlbertSans/AlbertSans-SemiBold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "AlbertSans-Bold";
  src: url(/fonts/AlbertSans/AlbertSans-Bold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "AlbertSans-Medium";
  src: url(/fonts/AlbertSans/AlbertSans-Medium.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "AlbertSans-Regular";
  src: url(/fonts/AlbertSans/AlbertSans-Regular.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "AlbertSans-Light";
  src: url(/fonts/AlbertSans/AlbertSans-Light.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Black";
  src: url(/fonts/NotoSansJP/NotoSansJP-Black.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Bold";
  src: url(/fonts/NotoSansJP/NotoSansJP-Bold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Medium";
  src: url(/fonts/NotoSansJP/NotoSansJP-Medium.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Regular";
  src: url(/fonts/NotoSansJP/NotoSansJP-Regular.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Light";
  src: url(/fonts/NotoSansJP/NotoSansJP-Light.woff) format("woff");
  font-display: swap;
}
/*============*/
/* サイト共通 */
/*============*/
:root {
  --leading-trim: calc((1em - 1lh) / 2);
}

/* PC/CT出し分け
------------------------------ */
@media (min-width: 1280px) {
  .t-sp {
    display: none !important;
  }
}
@media (max-width: 1279px) {
  .t-pc {
    display: none !important;
  }
}
/* PC/SP出し分け
------------------------------ */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* 共通アニメーション
------------------------------ */
.animate {
  opacity: 0;
}

.fadein {
  -webkit-animation: fade-in 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s both;
          animation: fade-in 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s both;
}

.fade-in-bottom {
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-left {
  -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-right {
  -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-left {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-right {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* 見出し下線アニメーション（左から右）
------------------------------ */
.line-animate span::after {
  transform: scaleX(0);
  transform-origin: left;
  transition: none;
}
.line-animate.active span::after {
  transform: scaleX(1);
  transition: transform 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s;
}

/* レイアウト
-----------------------------------*/
body {
  height: 100%;
}

section .contents {
  width: 86%;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  section .contents {
    width: 90%;
  }
}

/* フォーム
-----------------------------------*/
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
textarea {
  width: 100%;
  padding: 8px;
  background-color: #F1F1F1;
  border: 1px solid #CCC;
  border-radius: 4px;
  font-family: inherit;
  font-size: 18px;
  vertical-align: bottom;
}
@media (max-width: 767px) {
  input[type=text],
input[type=email],
input[type=tel],
input[type=number],
textarea {
    padding: 12px;
    font-size: 16px;
  }
}

input[type=date],
select {
  max-width: 100%;
  padding: 8px 16px 8px 8px;
  background-color: #F1F1F1;
  border: 1px solid #CCC;
  border-radius: 4px;
  font-family: inherit;
  font-size: 18px;
  vertical-align: bottom;
}
@media (max-width: 767px) {
  input[type=date],
select {
    padding: 12px 16px 12px 12px;
    font-size: 16px;
  }
}

input[type=checkbox],
input[type=radio] {
  margin-right: 10px;
  transform: scale(1.8);
}

/* Firefox向け */
input[type=number] {
  -moz-appearance: textfield;
}

/* Chrome, Safari, Edge, Opera向け */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button],
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  padding: 0;
  border: none;
  font-family: "AlbertSans-Medium", "NotoSansJP-Regular", sans-serif;
  font-size: 18px;
  vertical-align: bottom;
  cursor: pointer;
}
@media (max-width: 767px) {
  input[type=submit],
input[type=button],
button {
    font-size: 16px;
  }
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* リンクテキスト（リンク共通の記載があれば）
-----------------------------------*/
.link-txt {
  text-decoration: underline;
}

/* リンクボタン
-----------------------------------*/
.com-bt {
  position: relative;
  display: inline-block;
  max-width: 380px;
  width: 100%;
  padding-inline: 40px;
  color: #FFF;
  background-color: #333;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  font-family: "AlbertSans-ExtraBold", "NotoSansJP-Bold", sans-serif;
  line-height: 48px;
  text-align: center;
  vertical-align: top;
  text-decoration: none;
}
@media (max-width: 767px) {
  .com-bt {
    padding-inline: 16px;
    line-height: 40px;
  }
}
.com-bt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #000;
  transition: all 0.3s;
  opacity: 0;
  z-index: 0;
}
.com-bt:hover::before {
  width: 100%;
  opacity: 1;
}
.com-bt span {
  position: relative;
  padding-right: 12px;
}
@media (max-width: 767px) {
  .com-bt span {
    padding-right: 11px;
  }
}
.com-bt span::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 12px;
  height: 12px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}
@media (max-width: 767px) {
  .com-bt span::after {
    width: 10px;
    height: 10px;
  }
}
.com-bt.back span {
  padding-right: 0;
  padding-left: 12px;
}
@media (max-width: 767px) {
  .com-bt.back span {
    padding-left: 11px;
  }
}
.com-bt.back span::after {
  right: auto;
  left: 0;
  transform: translateY(-50%) rotate(-135deg);
}

input[type=submit].com-bt,
input[type=button].com-bt,
button.com-bt {
  border: 1px solid #CCC;
  background-color: #FFF;
  line-height: 1;
  cursor: pointer;
}
input[type=submit].com-bt:hover,
input[type=button].com-bt:hover,
button.com-bt:hover {
  background-color: #EEE;
  color: #000;
}
@media (max-width: 767px) {
  input[type=submit].com-bt,
input[type=button].com-bt,
button.com-bt {
    font-size: 16px;
  }
}

/* 段落
-----------------------------------*/
/* ぶら下げインデント */
.indent {
  margin-left: 1em;
  text-indent: -1em;
}

/* 汎用カラム
-----------------------------------*/
.row:after {
  content: "";
  clear: both;
  display: block;
}

.multicolumn,
.multilist {
  overflow: hidden !important;
}

.multicolumn-left {
  float: left;
}

.multicolumn-right {
  float: right;
}

.multilist li {
  float: left;
}

/* 横並び
-----------------------------------*/
.com-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
.com-wrap .img {
  width: 48%;
}
.com-wrap .txt {
  width: 48%;
}
.com-wrap.txt-left {
  flex-direction: row-reverse;
}

/* リスト、アイコン
-----------------------------------*/
/* リスト（デフォルト） */
.list-df {
  margin-left: 23px;
  list-style: disc;
}

/* リスト（ドット） */
.list-dot li {
  padding-left: 1em;
}

.list-dot li:before {
  content: "・";
  margin-left: -1em;
}

/* リスト（数字） */
.list-num li {
  margin-left: 30px;
}

/* テーブル
-----------------------------------*/
/* 幅 */
col.colw05 {
  width: 5%;
}

col.colw10 {
  width: 10%;
}

col.colw15 {
  width: 15%;
}

col.colw20 {
  width: 20%;
}

col.colw25 {
  width: 25%;
}

col.colw30 {
  width: 30%;
}

col.colw35 {
  width: 35%;
}

col.colw40 {
  width: 40%;
}

col.colw45 {
  width: 45%;
}

col.colw50 {
  width: 50%;
}

/* テーブル */
.table {
  width: 100%;
  margin-bottom: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
.table th {
  padding: 16px;
  border: solid 1px #333;
  font-weight: normal;
  font-family: "AlbertSans-ExtraBold", "NotoSansJP-Bold", sans-serif;
  text-align: center;
}
@media (max-width: 767px) {
  .table th {
    padding: 8px 4px;
  }
}
.table td {
  padding: 16px;
  border: solid 1px #333;
}
@media (max-width: 767px) {
  .table td {
    padding: 8px 4px;
  }
}

/* ニュース一覧
-----------------------------------*/
.list-news li {
  border-bottom: 1px solid #CCC;
}
.list-news li:last-child {
  border-bottom: none;
}
.list-news li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.list-news li a .date {
  width: 80px;
  line-height: 1;
}
.list-news li a .label {
  width: 80px;
  padding: 6px 8px;
  background-color: #333;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 767px) {
  .list-news li a .label {
    font-size: 12px;
  }
}
.list-news li a .title {
  width: calc(100% - 192px);
  word-wrap: break-word;
  line-height: 1.3;
}
.list-news li a:hover {
  color: #AAA;
  text-decoration: none;
}
@media (max-width: 767px) {
  .list-news li a .title {
    width: 100%;
    margin-top: 8px;
  }
}

/* WPページャー
-----------------------------------*/
.wp-pagenavi {
  display: flex;
  justify-content: center;
  padding: 88px 0;
  font-family: "AlbertSans-ExtraBold", "NotoSansJP-Bold", sans-serif;
  line-height: 32px;
  text-align: center;
}
@media (max-width: 767px) {
  .wp-pagenavi {
    padding: 64px 0;
  }
}
.wp-pagenavi a,
.wp-pagenavi span.current {
  display: inline-block;
  width: 32px;
  margin: 0 2px;
  border-radius: 50%;
  color: #333;
  transition: 0.5s all;
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  text-decoration: none;
  background-color: #333;
  color: #FFF;
}

/* 投稿記事 タイトル
-----------------------------------*/
.entry-detail .entry-header .entry-title {
  margin: 40px 0 32px;
  font-size: 28px;
  line-height: 1.3;
  font-family: "AlbertSans-ExtraBold", "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-header .entry-title {
    margin: 28px 0;
    font-size: 24px;
  }
}
.entry-detail .entry-header .entry-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.entry-detail .entry-header .entry-meta .date {
  line-height: 1;
}
.entry-detail .entry-header .entry-meta .label {
  width: 80px;
  padding: 6px 8px;
  margin-left: 16px;
  background-color: #333;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 767px) {
  .entry-detail .entry-header .entry-meta .label {
    font-size: 12px;
  }
}
.entry-detail .entry-content {
  padding: 24px 0;
  margin: 24px 0;
  border-bottom: 1px solid #CCC;
  border-top: 1px solid #CCC;
  overflow: hidden;
  word-break: break-all;
}
@media (max-width: 767px) {
  .entry-detail .entry-content {
    padding: 16px 0;
    margin: 16px 0;
  }
}
.entry-detail .btn-area {
  margin: 88px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .entry-detail .btn-area {
    margin: 40px 0;
  }
}

/* 投稿記事 詳細
-----------------------------------*/
.entry-detail .entry-content {
  /* 投稿画像 */
}
.entry-detail .entry-content p {
  margin: 1em 0;
}
.entry-detail .entry-content h1 {
  margin: 24px 0 16px;
  font-size: 28px;
  font-family: "AlbertSans-ExtraBold", "NotoSansJP-Bold", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h1 {
    margin: 16px 0 12px;
    font-size: 24px;
  }
}
.entry-detail .entry-content h2 {
  margin: 24px 0 16px;
  font-size: 26px;
  font-family: "AlbertSans-ExtraBold", "NotoSansJP-Bold", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h2 {
    margin: 16px 0 12px;
    font-size: 22px;
  }
}
.entry-detail .entry-content h3 {
  margin: 16px 0;
  font-size: 24px;
  line-height: 1.3;
  font-family: "AlbertSans-ExtraBold", "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h3 {
    margin: 12px 0;
    font-size: 20px;
  }
}
.entry-detail .entry-content h4 {
  margin: 16px 0;
  font-size: 22px;
  line-height: 1.3;
  font-family: "AlbertSans-ExtraBold", "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h4 {
    margin: 12px 0;
    font-size: 18px;
  }
}
.entry-detail .entry-content h5 {
  margin: 16px 0;
  font-size: 20px;
  line-height: 1.3;
  font-family: "AlbertSans-ExtraBold", "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h5 {
    margin: 12px 0;
    font-size: 16px;
  }
}
.entry-detail .entry-content h6 {
  margin: 16px 0;
  font-size: 18px;
  line-height: 1.3;
  font-family: "AlbertSans-ExtraBold", "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h6 {
    margin: 12px 0;
    font-size: 14px;
  }
}
.entry-detail .entry-content ul {
  margin: 16px 0 16px 32px;
}
.entry-detail .entry-content ul li {
  list-style: disc;
}
.entry-detail .entry-content ol {
  margin: 16px 0 16px 32px;
}
.entry-detail .entry-content blockquote {
  font-style: italic;
  padding: 0 32px;
}
.entry-detail .entry-content blockquote cite,
.entry-detail .entry-content blockquote em,
.entry-detail .entry-content blockquote i {
  font-style: normal;
}
.entry-detail .entry-content table {
  width: 100%;
  margin-bottom: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
.entry-detail .entry-content table th {
  padding: 16px;
  border: solid 1px #333;
  font-family: "AlbertSans-ExtraBold", "NotoSansJP-Bold", sans-serif;
  text-align: center;
}
@media (max-width: 767px) {
  .entry-detail .entry-content table th {
    padding: 8px 2px;
    font-size: 12px;
  }
}
.entry-detail .entry-content table td {
  padding: 16px;
  border: solid 1px #333;
}
@media (max-width: 767px) {
  .entry-detail .entry-content table td {
    padding: 8px 2px;
    font-size: 12px;
  }
}
.entry-detail .entry-content .alignleft,
.entry-detail .entry-content img.alignleft {
  display: inline;
  float: left;
  margin-right: 16px;
  margin-top: 4px;
}
.entry-detail .entry-content .alignright,
.entry-detail .entry-content img.alignright {
  display: inline;
  float: right;
  margin-left: 16px;
  margin-top: 4px;
}
.entry-detail .entry-content .aligncenter,
.entry-detail .entry-content img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.entry-detail .entry-content img.alignleft,
.entry-detail .entry-content img.alignright,
.entry-detail .entry-content img.aligncenter {
  margin-bottom: 16px;
}
.entry-detail .entry-content .wp-caption {
  text-align: center;
}

/*==========*/
/* ヘッダー */
/*==========*/
header {
  height: 81px;
  padding-block: 16px;
  border-bottom: 1px solid #CCC;
}
@media (max-width: 767px) {
  header {
    min-height: 83px;
    height: auto;
    padding-block: 8px;
  }
}
header .header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 16px;
  max-width: 1808px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 767px) {
  header .header-wrap {
    height: 66px;
    padding: 0 5%;
  }
}
header .header-wrap a {
  text-decoration: none;
}
header .header-wrap a:hover {
  opacity: 0.7;
}
header .header-wrap h1,
header .header-wrap p {
  margin-block: var(--leading-trim);
  color: #333;
  font-family: "AlbertSans-ExtraBold", "NotoSansJP-Bold", sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  header .header-wrap h1,
header .header-wrap p {
    font-size: 18px;
    line-height: 1.5;
  }
}
header .header-wrap .contact-btn ul {
  display: flex;
  gap: 0 16px;
}
@media (max-width: 930px) {
  header .header-wrap .contact-btn ul {
    gap: 0 8px;
  }
}
@media (max-width: 767px) {
  header .header-wrap .contact-btn ul {
    flex-direction: column;
    gap: 6px 0;
  }
}
header .header-wrap .contact-btn ul li {
  width: 204px;
}
@media (max-width: 930px) {
  header .header-wrap .contact-btn ul li {
    width: 176px;
  }
}
@media (max-width: 767px) {
  header .header-wrap .contact-btn ul li {
    width: auto;
  }
}
header .header-wrap .contact-btn ul .com-bt {
  box-shadow: none;
}
@media (max-width: 930px) {
  header .header-wrap .contact-btn ul .com-bt {
    padding-inline: 24px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  header .header-wrap .contact-btn ul .com-bt {
    font-size: 12px;
    line-height: 30px;
  }
}
header .header-wrap .contact-btn ul .contact-bt {
  background-color: #C33;
}
header .header-wrap .back-btn .back-bt {
  background-color: transparent;
  box-shadow: none;
  color: #000;
}
header .header-wrap .back-btn .back-bt span::after {
  border-top-color: #000;
  border-right-color: #000;
}
header .header-wrap .back-btn .back-bt:hover::before {
  content: none;
}
@media (min-width: 500px) {
  header .header-wrap br {
    display: none;
  }
}

/*==========*/
/* フッター */
/*==========*/
.ptop {
  position: fixed;
  bottom: 72px;
  right: 40px;
  width: 48px;
  height: 48px;
  z-index: 10;
}
@media (max-width: 767px) {
  .ptop {
    bottom: 54px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}
.ptop a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.ptop a::before, .ptop a::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 12px;
  height: 2px;
  background-color: #FFF;
}
.ptop a::before {
  left: calc(50% - 10px);
  rotate: -45deg;
}
.ptop a::after {
  right: calc(50% - 10px);
  rotate: 45deg;
}

footer {
  padding-block: 12px;
  background-color: #333;
  color: #FFF;
  text-align: center;
}
@media (max-width: 767px) {
  footer {
    padding-block: 8px;
  }
}

/*=======*/
/* index */
/*=======*/
.index section {
  padding-block: 120px;
}
@media (max-width: 767px) {
  .index section {
    padding-block: 60px;
  }
}
.index h2 {
  margin-top: var(--leading-trim);
  margin-bottom: 24px;
  font-family: "AlbertSans-Bold", "NotoSansJP-Medium", sans-serif;
  font-size: 36px;
}
@media (max-width: 767px) {
  .index h2 {
    font-size: 24px;
  }
}
.index h2 span {
  position: relative;
  display: inline-block;
  padding-bottom: 9.6px;
}
.index h2 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #CCC;
}
.index .main p:not(:first-of-type) {
  margin-top: 1em;
}
@media (max-width: 1139px) {
  .index .main .pc-br {
    display: none;
  }
}
@media (max-width: 930px) {
  .index .main .pc-br2 {
    display: none;
  }
}
.index .news {
  background-color: #F1F1F1;
}
.index .news .news-list li:not(:first-of-type) {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .index .news .news-list li:not(:first-of-type) {
    margin-top: 8px;
  }
}
.index .news .news-list a {
  position: relative;
  display: block;
  text-decoration: none;
}
.index .news .news-list a::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 24px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}
@media (max-width: 767px) {
  .index .news .news-list a::after {
    right: 16px;
    width: 10px;
    height: 10px;
  }
}
.index .news .news-list a:hover dl {
  border-color: #000;
}
.index .news .news-list dl {
  display: flex;
  gap: 0 40px;
  padding: 16px 24px;
  background-color: #FFF;
  border: 1px solid #FFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .index .news .news-list dl {
    flex-wrap: wrap;
    gap: 0;
    padding: 8px 16px;
  }
}
@media (max-width: 767px) {
  .index .news .news-list dl dt {
    width: 100%;
  }
}
.index .news .news-list dl dd {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .index .news .news-list dl dd {
    width: 100%;
    padding-right: 16px;
  }
}
.index .news .btn {
  padding-top: 80px;
  text-align: right;
}
@media (max-width: 767px) {
  .index .news .btn {
    padding-top: 40px;
  }
}
.index .company h3 {
  margin-bottom: 14.4px;
  font-family: "AlbertSans-ExtraBold", "NotoSansJP-Bold", sans-serif;
  font-size: 24px;
}
@media (max-width: 767px) {
  .index .company h3 {
    margin-bottom: 16px;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .index .company h3 {
    line-height: 1.4;
  }
}
@media (min-width: 375px) {
  .index .company h3 br {
    display: none;
  }
}
.index .company .company-list {
  font-size: 16px;
}
@media (max-width: 767px) {
  .index .company .company-list {
    font-size: 14px;
  }
}
.index .company .company-list + h3 {
  margin-top: 30.4px;
}
@media (max-width: 767px) {
  .index .company .company-list + h3 {
    margin-top: 32px;
  }
}
.index .company .company-list dl {
  display: flex;
  border: 1px solid #CCC;
}
.index .company .company-list dl dt {
  width: 200px;
  padding: 8px 40px;
  background-color: #666;
  color: #FFF;
  text-align: center;
}
@media (max-width: 767px) {
  .index .company .company-list dl dt {
    width: 100px;
    padding: 8px 16px;
  }
}
.index .company .company-list dl dd {
  flex: 1;
  padding: 8px 40px;
}
@media (max-width: 767px) {
  .index .company .company-list dl dd {
    padding: 8px 16px;
  }
}
.index .contact {
  background-color: #F1F1F1;
}
.index .contact p a {
  text-underline-offset: 5px;
}
.index .contact .btn {
  padding-top: 80px;
  text-align: right;
}
@media (max-width: 767px) {
  .index .contact .btn {
    padding-top: 40px;
  }
}

/*==============*/
/* お問い合わせ */
/*==============*/
.contact section {
  padding-top: 120px;
}
@media (max-width: 767px) {
  .contact section {
    padding-top: 60px;
  }
}
.contact section.thanks {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .contact section.thanks {
    padding-bottom: 60px;
  }
}
.contact .contact-heading h1 {
  margin-top: var(--leading-trim);
  margin-bottom: 24px;
  font-family: "AlbertSans-Bold", "NotoSansJP-Medium", sans-serif;
  font-size: 36px;
}
@media (max-width: 767px) {
  .contact .contact-heading h1 {
    font-size: 24px;
  }
}
.contact .contact-heading h1 span {
  position: relative;
  display: inline-block;
  padding-bottom: 9.6px;
}
.contact .contact-heading h1 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #CCC;
}
.contact .contact-heading h2 {
  margin-top: calc(40px - 0.4em);
  margin-bottom: calc(16px - 0.4em);
  font-family: "AlbertSans-ExtraBold", "NotoSansJP-Bold", sans-serif;
}
.contact .contact-form h1 {
  margin-top: var(--leading-trim);
  margin-bottom: 24px;
  font-family: "AlbertSans-Bold", "NotoSansJP-Medium", sans-serif;
  font-size: 36px;
}
@media (max-width: 767px) {
  .contact .contact-form h1 {
    font-size: 24px;
  }
}
.contact .contact-form h1 span {
  position: relative;
  display: inline-block;
  padding-bottom: 9.6px;
}
.contact .contact-form h1 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #CCC;
}
.contact .contact-form hr {
  margin-block: 40px;
  border-color: #EEE;
}
.contact .contact-form .form-wrap {
  display: flex;
}
@media (max-width: 1139px) {
  .contact .contact-form .form-wrap {
    flex-wrap: wrap;
    gap: 8px 0;
  }
}
.contact .contact-form .form-wrap dt {
  width: 340px;
}
@media (max-width: 1139px) {
  .contact .contact-form .form-wrap dt {
    width: 100%;
  }
}
.contact .contact-form .form-wrap dt .dt-wrap {
  display: flex;
  align-items: center;
  gap: 0 8px;
}
.contact .contact-form .form-wrap dt .dt-wrap .required {
  padding: 6px 16px;
  border: 1px solid #C33;
  color: #C33;
  font-family: "AlbertSans-ExtraBold", "NotoSansJP-Bold", sans-serif;
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 767px) {
  .contact .contact-form .form-wrap dt .dt-wrap .required {
    padding: 6px 12px;
    font-size: 14px;
  }
}
.contact .contact-form .form-wrap dt .dt-wrap .dt-item {
  font-family: "AlbertSans-ExtraBold", "NotoSansJP-Bold", sans-serif;
}
.contact .contact-form .form-wrap dd {
  flex: 1;
}
@media (max-width: 1139px) {
  .contact .contact-form .form-wrap dd {
    width: 100%;
  }
}
.contact .contact-form .form-wrap dd .col-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
}
@media (max-width: 480px) {
  .contact .contact-form .form-wrap dd .col-2 {
    flex-wrap: wrap;
    gap: 8px 0;
  }
}
.contact .contact-form .form-wrap dd .col-2 .item {
  width: calc((100% - 24px) / 2);
}
@media (max-width: 480px) {
  .contact .contact-form .form-wrap dd .col-2 .item {
    width: 100%;
  }
}
.contact .contact-form .form-wrap dd .col-2 .error {
  width: 100%;
}
@media (max-width: 480px) {
  .contact .contact-form .form-wrap dd .col-2 .error {
    margin-top: 0 !important;
  }
}
.contact .contact-form .form-wrap dd .dd-wrap + .dd-wrap {
  margin-top: 1em;
}
@media (max-width: 1139px) {
  .contact .contact-form .form-wrap dd .dd-wrap .item > input:first-child, .contact .contact-form .form-wrap dd .dd-wrap .item > textarea:first-child {
    margin-top: 0.4em;
  }
}
.contact .contact-form .form-wrap + .form-wrap {
  margin-top: 24px;
}
.contact .contact-form .small {
  font-size: 14px;
}
@media (max-width: 767px) {
  .contact .contact-form .small {
    font-size: 12px;
  }
}
.contact textarea {
  height: 220px;
}
.contact .w-full {
  width: 100%;
}
.contact .w-long {
  width: 75%;
}
.contact .w-half {
  width: 50%;
}
.contact .w-short {
  width: 25%;
}
.contact .error {
  margin-top: 0.4em !important;
  color: #C33;
}
.contact .privacy {
  margin-top: 120px;
  padding-block: 120px;
  background-color: #F1F1F1;
}
@media (max-width: 767px) {
  .contact .privacy {
    margin-top: 60px;
    padding-block: 60px;
  }
}
.contact .privacy h2 {
  margin-top: var(--leading-trim);
  margin-bottom: 24px;
  font-family: "AlbertSans-Bold", "NotoSansJP-Medium", sans-serif;
  font-size: 36px;
}
@media (max-width: 767px) {
  .contact .privacy h2 {
    font-size: 24px;
  }
}
.contact .privacy h2 span {
  position: relative;
  display: inline-block;
  padding-bottom: 9.6px;
}
.contact .privacy h2 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #CCC;
}
.contact .privacy .privacy-wrap {
  overflow-y: auto;
  height: 300px;
  padding: 32px;
  background-color: #FFF;
}
@media (max-width: 767px) {
  .contact .privacy .privacy-wrap {
    padding: 16px;
  }
}
.contact .privacy .privacy-wrap dl {
  margin-top: 32px;
}
.contact .privacy .privacy-wrap dl dd + dt {
  margin-top: 1em;
}
.contact .agree {
  margin-block: 40px;
}
.contact .agree .agree-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
}
.contact .agree .agree-wrap label {
  font-family: "AlbertSans-ExtraBold", "NotoSansJP-Bold", sans-serif;
}
.contact .agree .agree-wrap .error {
  width: 100%;
  text-align: center;
}
.contact .send-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 40px;
}
@media (max-width: 1139px) {
  .contact .send-btn {
    flex-direction: column;
    gap: 16px 0;
  }
  .contact .send-btn button:first-of-type {
    order: 2;
  }
}
@media (min-width: 1139px) {
  .contact .send-btn button {
    flex: 0 1 380px;
  }
}
.contact .home-btn {
  padding-top: 60px;
  text-align: center;
}
.contact .home-btn .com-bt {
  background-color: #FFF;
  color: #000;
}
.contact .home-btn .com-bt span::after {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
.contact .home-btn .com-bt:hover {
  color: #FFF;
}
.contact .home-btn .com-bt:hover span::after {
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
}
/*# sourceMappingURL=style.css.map */