@charset "UTF-8";
/**
サイト共通の基本設定
こちらにはmixinや変数等のCSSを直接記述しない部品のみ設置可能です。
 */
.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0068b7;
  border: 1px solid #0068b7;
  background: #fff;
  line-height: 1.2;
  padding: 10px 29.87px 10px 10px;
}
@media (any-hover: hover) {
  .btn:after {
    transition: border-top-color 0.5s ease-out, border-right-color 0.5s ease-out;
  }
}
.btn:after {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "";
  border-right: 1px solid #0068b7;
  border-top: 1px solid #0068b7;
  transform: rotate(45deg) translateY(-50%);
  height: 7px;
  width: 7px;
}
@media (any-hover: hover) {
  .btn {
    transition: color 0.5s ease-out, border-top-color 0.5s ease-out, border-right-color 0.5s ease-out, border-bottom-color 0.5s ease-out, border-left-color 0.5s ease-out, background-color 0.5s ease-out;
  }
  .btn:hover {
    background: #0068b7;
    color: #fff;
    border-color: #fff;
  }
  .btn:hover:after {
    border-color: #fff;
  }
}
.btn {
  position: relative;
  justify-content: center;
  padding: 10px 15px;
}
.btn::after {
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 8px;
  transform: translateY(-50%) rotate(45deg);
}

.link-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  border: 1px solid #aaa;
  background: #fff;
  line-height: 1.2;
  padding: 10px 29.87px 10px 10px;
}
@media (any-hover: hover) {
  .link-btn:after {
    transition: border-top-color 0.5s ease-out, border-right-color 0.5s ease-out;
  }
}
.link-btn:after {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "";
  border-right: 1px solid #333;
  border-top: 1px solid #333;
  transform: rotate(45deg) translateY(-50%);
  height: 7px;
  width: 7px;
}
@media (any-hover: hover) {
  .link-btn {
    transition: color 0.5s ease-out, border-top-color 0.5s ease-out, border-right-color 0.5s ease-out, border-bottom-color 0.5s ease-out, border-left-color 0.5s ease-out, background-color 0.5s ease-out;
  }
  .link-btn:hover {
    background: #0068b7;
    color: #fff;
    border-color: #fff;
  }
  .link-btn:hover:after {
    border-color: #fff;
  }
}

.related-link {
  background-color: #f5f5f5;
}
.related-link__list {
  display: grid;
  grid-gap: 10px;
}
.related-link__list + .related-link__list {
  margin-top: 60px;
}
@media screen and (max-width:599px) {
  .related-link__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width:600px) and (max-width:1024px) {
  .related-link__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1025px) {
  .related-link__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.related-link__title {
  flex-basis: 100%;
}
@media screen and (max-width:599px) {
  .related-link__title {
    font-size: 2rem;
    grid-column: 1/2;
  }
}
@media screen and (min-width:600px) and (max-width:1024px) {
  .related-link__title {
    font-size: 2rem;
    grid-column: 1/3;
  }
}
@media screen and (min-width: 1025px) {
  .related-link__title {
    font-size: 3rem;
    grid-column: 1/5;
  }
}
.related-link__title {
  font-weight: 600;
}
.related-link__item {
  display: flex;
}
.related-link__link-btn {
  width: 100%;
}
@media screen and (min-width:600px) {
  .related-link__link-btn {
    min-height: 75px;
  }
}

/**
カラムレイアウト
 */
@media screen and (max-width: 1024px) {
  .col__container--sptab1-pc2 {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 1025px) {
  .col__container--sptab1-pc2 {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .col__container--sptab1-pc3 {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 1025px) {
  .col__container--sptab1-pc3 {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .col__container--sptab2-pc4 {
    display: grid;
    gap: 40px 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1025px) {
  .col__container--sptab2-pc4 {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
  }
}

/*
シンプルなテーブル
会社概要で使用
*/
.table__body {
  width: 100%;
  border: 1px solid #ccc;
  border-collapse: collapse;
}
.table__label {
  background: #f2f2f2;
  border: 1px solid #ccc;
  padding: 10px;
  font-weight: 700;
}
@media screen and (max-width:599px) {
  .table__label {
    display: block;
  }
}
@media screen and (min-width:600px) {
  .table__label {
    width: 20%;
    white-space: nowrap;
  }
}
.table__data {
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
}
@media screen and (max-width:599px) {
  .table__data {
    display: block;
  }
}
.table__data--w20 {
  width: 20%;
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  vertical-align: middle;
}
@media screen and (max-width:599px) {
  .table__data--w20 {
    width: 100%;
    display: block;
  }
}
.table__data--w30 {
  width: 30%;
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  vertical-align: middle;
}
@media screen and (max-width:599px) {
  .table__data--w30 {
    width: 100%;
    display: block;
  }
}
.table__data--w40 {
  width: 40%;
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  vertical-align: middle;
}
@media screen and (max-width:599px) {
  .table__data--w40 {
    width: 100%;
    display: block;
  }
}
.table__data--w50 {
  width: 50%;
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  vertical-align: middle;
}
@media screen and (max-width:599px) {
  .table__data--w50 {
    width: 100%;
    display: block;
  }
}
.table__list-item + .table__list-title {
  margin-top: 2em;
}
.table__list-item, .table__list-title {
  line-height: 2em;
}
.table__link {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .table__link:hover {
    text-decoration: none;
  }
}
.table__link:before {
  content: ">";
  letter-spacing: 5px;
}

/*
SP表示時にwidthで%指定
*/
.w-table {
  border: 1px solid #ccc;
  border-collapse: collapse;
}
@media screen and (max-width:599px) {
  .w-table {
    width: 100%;
  }
}
.w-table--w100 {
  width: 100%;
}
.w-table__label {
  background: #f2f2f2;
  border: 1px solid #ccc;
  padding: 10px;
}
.w-table__label--w20 {
  width: 20%;
  background: #f2f2f2;
  border: 1px solid #ccc;
  padding: 10px;
}
.w-table__label--w40 {
  width: 40%;
  background: #f2f2f2;
  border: 1px solid #ccc;
  padding: 10px;
}
.w-table__label--w50 {
  width: 50%;
  background: #f2f2f2;
  border: 1px solid #ccc;
  padding: 10px;
}
.w-table__data {
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
}
.w-table__data--w20 {
  width: 20%;
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
}
.w-table__data--w40 {
  width: 40%;
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
}
.w-table__data--w50 {
  width: 50%;
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
}

/*
表示幅を超える場合、横スクロール
*/
.s-table {
  width: 100%;
  border: 1px solid #ccc;
  border-collapse: collapse;
}
.s-table--wrap {
  overflow-x: auto;
}
.s-table--wrap::-webkit-scrollbar {
  height: 10px;
  background: #d6f0ff;
}
@media screen and (max-width:599px) {
  .s-table--wrap::-webkit-scrollbar {
    height: 5px;
  }
}
.s-table--wrap::-webkit-scrollbar-thumb {
  background: #0068b7;
}
.s-table__label {
  background: #f2f2f2;
  border: 1px solid #ccc;
  padding: 10px;
  white-space: nowrap;
  text-align: center;
}
.s-table__label--sticky {
  position: sticky;
  left: 0;
  background: #f2f2f2;
  border: 1px solid #ccc;
  padding: 10px;
  white-space: nowrap;
  z-index: 1;
}
.s-table__data {
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  white-space: nowrap;
}
.s-table__data--num {
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  text-align: right;
  white-space: nowrap;
}

.link__text {
  color: #0068b7;
}
.link__text:hover {
  text-decoration: underline;
}
.link__text--r-arrow {
  display: flex;
  align-items: center;
  color: #0068b7;
}
.link__text--r-arrow:hover {
  text-decoration: underline;
}
.link__text--r-arrow::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 4px;
  border-right: 1px solid #0068b7;
  border-bottom: 1px solid #0068b7;
  transform: rotate(-45deg);
}

.chapter__title--bravo {
  border-bottom: 1px solid #b3b3b3;
  padding-bottom: 5px;
  margin-bottom: 20px;
  font-size: 2rem;
}
.chapter__text {
  margin-bottom: 30px;
}

.chapter02 {
  background: #fff;
}

.btn-area__link {
  margin: 0 auto;
}
@media screen and (min-width:600px) {
  .btn-area__link {
    width: 500px;
    padding: 20px;
  }
}

.flow_list {
  margin-bottom: 30px;
  margin-top: 50px;
}
.flow_item {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 0 20px;
}
.flow_text {
  line-height: 2;
  margin-bottom: 10px;
}
.flow_text_keishiki {
  font-weight: bold;
}
.flow_title {
  font-weight: bold;
  font-size: 2.5rem;
  border-bottom: solid 1px;
  margin-bottom: 30px;
}

.notes {
  line-height: 2;
}

.link_btn {
  width: 100%;
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
  color: #fff;
  font-size: 2.5rem;
  padding: 10px 50px;
  border-width: 1px;
  border-style: solid;
  -o-border-image: initial;
     border-image: initial;
  border-radius: 50px;
  margin: auto;
  transition: all 0.5s ease;
}
@media screen and (max-width: 600px) {
  .link_btn {
    font-size: 18px;
  }
}
.link_btn_left {
  margin-right: 0;
  background-image: linear-gradient(0deg, #109fbd, #22bddd);
  border-color: rgba(255, 255, 255, 0);
}
.link_btn_left:hover {
  color: #009aba;
  border-color: #009aba;
}
.link_btn_left:hover::after {
  border-color: #009aba;
}
.link_btn_right {
  margin-left: 0;
  background-image: linear-gradient(0deg, #0a8571, #119983);
  border-color: rgba(255, 255, 255, 0);
}
.link_btn_right:hover {
  color: #119983;
  border-color: #119983;
}
.link_btn_right:hover::after {
  border-color: #119983;
}
.link_btn::after {
  position: absolute;
  width: 10px;
  height: 10px;
  right: 20px;
  top: 50%;
  content: "";
  display: block;
  transform: translateY(-50%) rotate(45deg);
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transition: all 0.5s ease;
}
.link_btn:hover {
  background: #fff;
}
.link_btn_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .link_btn_wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

.interiorweb__link {
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .chapter__title--alpha {
    font-size: 30px;
  }
  .flow_item {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .interiorweb__link--area {
    font-size: 20px;
    line-height: 1.2;
  }
}
.link_text {
  text-decoration: underline;
  color: #004340;
  text-align: center;
  display: block;
  font-size: 18px;
}
.link_text:hover {
  opacity: 0.7;
}