@charset "UTF-8";
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
/* Hina Mincho */
/* Noto Sans Japanese */
/* Zen Old Mincho */
/*	transition,hover
ホバー時のtransition秒数を統一、ホバーアクション
------------------------------------ */
/*	media-screen
画面サイズごとのcss設定に使用
------------------------------------ */
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
/*	layout
その他パーツ
------------------------------------ */
/*	font-size
スマホ時にフォントサイズを自動で変更
※13px以下は文字が読めないためPC/SP同じサイズ
------------------------------------ */
/* =========================================

    main layout  all
    <main></main>箇所のcss

========================================= */
/*	com parts  PC
全ページ共通で使用したいパーツ
------------------------------------ */
.com-inner,
.bread-inner {
  width: 100%;
  max-width: 1080px;
  margin: auto;
}

.com-sub-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 100px 0;
}

.com-tel {
  gap: 12px;
  position: relative;
  z-index: 1;
}
.com-tel-num {
  line-height: 1;
  letter-spacing: 0.08em;
  padding-left: 35px;
  color: #0b2d54;
  background: url(/img/all/tel-ico.png) no-repeat left 5px;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 900;
  font-style: normal;
  font-size: 30px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .com-tel-num {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.com-ttl01 {
  text-align: center;
  letter-spacing: 0.08em;
  padding-bottom: 20px;
  color: #0b2d54;
  background: url(/img/all/com-ttl-deco.png) no-repeat center bottom;
  font-family: 'Hina Mincho', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
  font-size: 5rem;
}
@media screen and (max-width: 767px) {
  .com-ttl01 {
    font-size: 30px;
    font-size: 3rem;
  }
}

.com-ttl02 {
  letter-spacing: 0.08em;
  padding: 12.2px 15px 12.2px 30px;
  color: #0b2d54;
  background: url(/img/all/pattern02.jpg) left top;
  border-radius: 10px;
  font-family: 'Hina Mincho', serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
}
.com-ttl02::before {
  position: absolute;
  content: '';
}
.com-ttl02 {
  z-index: 1;
  font-size: 26px;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .com-ttl02 {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
.com-ttl02::before {
  width: 2px;
  height: 30px;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  background-color: #0b2d54;
  z-index: -1;
}

.com-btn01 {
  width: 380px;
  height: 66px;
  letter-spacing: 0.06em;
  padding: 0 35px 0 30px;
  display: flex;
  align-items: center;
  color: #0b2d54;
  background-color: rgba(202, 219, 239, 0.4);
  border: 1px solid #0b2d54;
  border-radius: 33px;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 900;
  font-style: normal;
  position: relative;
}
.com-btn01::after {
  position: absolute;
  content: '';
}
.com-btn01 {
  z-index: 1;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .com-btn01 {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
.com-btn01::after {
  width: 12px;
  height: 15px;
  transform: translateY(-50%);
  top: 50%;
  right: 20px;
  background: url(/img/all/arw.png) no-repeat;
  background-size: 100%;
  z-index: -1;
  transition: all 0.3s ease;
}
.com-btn01:hover::after {
  transform: translate(3px, -50%);
}

.com-mail {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffcd63;
  border: 1px solid #373225;
  border-radius: 50%;
  transition: all 0.5s ease;
}
.com-mail:hover {
  transform: scale(0.95);
}

.com-txt p:nth-of-type(n + 2) {
  margin-top: 30px;
}

.com-table01 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 20px 0;
}
.com-table01 th {
  white-space: pre-line;
  width: 200px;
  padding: 14px 20px;
  border-bottom: 1px solid #373225;
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .com-table01 th {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.com-table01 td {
  white-space: pre-line;
  vertical-align: middle;
  padding: 14px 20px;
  color: #373225;
  border-bottom: 1px solid #b9b2a6;
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .com-table01 td {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.com-table01 a {
  color: #373225;
}

.com-table02 tr:first-of-type th {
  border-radius: 10px 0 0 0;
}
.com-table02 tr:first-of-type td {
  color: #0b2d54;
  background-color: #ffcd63;
}
.com-table02 tr:first-of-type td:last-of-type {
  border-radius: 0 10px 0 0;
}
.com-table02 tr:last-of-type th {
  border-radius: 0 0 0 10px;
  border-bottom: none;
}
.com-table02 tr:last-of-type td {
  border-bottom: none;
}
.com-table02 tr:last-of-type td:last-of-type {
  border-radius: 0 0 0 10px;
}
.com-table02 th {
  width: 142px;
  text-align: center;
  padding: 10px 10px;
  background-color: #f4f4f4;
  border-bottom: 1px solid #898989;
}
.com-table02 td {
  width: 142px;
  padding: 10px 10px;
  text-align: center;
  border-left: 1px solid #898989;
  border-bottom: 1px solid #898989;
}

.com-no-post {
  text-align: center;
  margin-top: 100px;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .com-no-post {
    font-size: 21px;
    font-size: 2.1rem;
  }
}

.com-no-img {
  width: 90% !important;
  -o-object-fit: contain !important;
  object-fit: contain !important;
}
.com-no-img-bg {
  text-align: center;
  background-color: #ccc !important;
}

.com-main-color {
  color: #0b2d54;
}

.com-sub-color {
  color: #ff9b26;
}

.clamp1 {
  overflow: hidden;
  display: -webkit-box; /* -webkitを使用するために必要 */
  -webkit-box-orient: vertical; /* 3点リーダー */
  -webkit-line-clamp: 1; /* 行数指定 */
}

.clamp2 {
  overflow: hidden;
  display: -webkit-box; /* -webkitを使用するために必要 */
  -webkit-box-orient: vertical; /* 3点リーダー */
  -webkit-line-clamp: 2; /* 行数指定 */
}

.clamp3 {
  overflow: hidden;
  display: -webkit-box; /* -webkitを使用するために必要 */
  -webkit-box-orient: vertical; /* 3点リーダー */
  -webkit-line-clamp: 3; /* 行数指定 */
}

.com-tag-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.com-tag-list-item {
  letter-spacing: 0.06em;
  padding-right: 7px;
  color: rgba(55, 50, 37, 0.6);
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .com-tag-list-item {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.com-tag-list-item:nth-of-type(n + 2) {
  padding-left: 7px;
  position: relative;
}
.com-tag-list-item:nth-of-type(n + 2)::before {
  position: absolute;
  content: '';
}
.com-tag-list-item:nth-of-type(n + 2) {
  z-index: 1;
}
.com-tag-list-item:nth-of-type(n + 2)::before {
  content: '|';
  transform: translateY(-50%);
  top: 45%;
  left: -2px;
  color: rgba(55, 50, 37, 0.6);
  z-index: -1;
}

.com-time {
  flex-shrink: 0;
  letter-spacing: 0.08em;
  color: #0b2d54;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 900;
  font-style: normal;
  font-size: 17px;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .com-time {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.com-svg-txt {
  padding-left: 20px;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .com-svg-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.com-pre {
  white-space: pre-line;
}

/* =========================================
    top  PC
    top-about
========================================= */
#top-about .bg {
  background: url(/img/top/about-bg-deco02.png) no-repeat calc(50% + 715px) 162px;
  position: relative;
}
#top-about .bg::before {
  position: absolute;
  content: '';
}
#top-about .bg::after {
  position: absolute;
  content: '';
}
#top-about .bg {
  overflow: hidden;
  z-index: 1;
}
#top-about .bg::before {
  width: 596px;
  height: 597px;
  left: calc(50% - 960px);
  top: 105px;
  background: url(/img/top/about-bg-deco01.png) no-repeat;
  background-size: 100%;
  z-index: 1;
}
#top-about .bg::after {
  width: 385px;
  height: 351px;
  bottom: 0;
  left: calc(50% - 694px);
  background: url(/img/top/about-img01.png) no-repeat;
  background-size: 100%;
  z-index: 1;
}
@media screen and (max-width: 1250px) {
  #top-about .bg::after {
    width: 355px;
    height: 325px;
    bottom: 25px;
    left: -40px;
  }
}
@media screen and (min-width: 1921px) {
  #top-about .bg {
    background: url(/img/top/about-bg-deco02.png) no-repeat right 162px;
  }
  #top-about .bg::before {
    left: 0;
  }
}
#top-about .container {
  width: 100%;
  text-align: center;
  padding: 70px 0 80px;
  background: url(/img/all/pattern01.jpg) left top;
  border: 1px solid #0b2d54;
  border-radius: 30px;
  position: relative;
}
#top-about .container::after {
  position: absolute;
  content: '';
}
#top-about .container {
  z-index: 0;
}
#top-about .container::after {
  width: 359px;
  height: 363px;
  bottom: 90px;
  right: -162px;
  background: url(/img/top/about-img02.png) no-repeat;
  background-size: 100%;
  z-index: 5;
}
@media screen and (max-width: 1250px) {
  #top-about .container::after {
    width: 339px;
    height: 344px;
    bottom: -40px;
    right: -50px;
  }
}
#top-about .ttl {
  line-height: 1.1;
  letter-spacing: 0;
  padding-bottom: 40px;
}
#top-about .ttl-sm {
  font-size: 40px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  #top-about .ttl-sm {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#top-about .ttl-dod {
  position: relative;
}
#top-about .ttl-dod::before {
  position: absolute;
  content: '';
}
#top-about .ttl-dod {
  z-index: 1;
}
#top-about .ttl-dod::before {
  width: 6px;
  height: 6px;
  transform: translateX(-50%);
  left: 50%;
  top: 0;
  background-color: #ff9b26;
  z-index: -1;
  border-radius: 50%;
}
#top-about .txt {
  line-height: 1.88;
  text-align: center;
  margin-top: 45px;
}

/* =========================================
    top  PC
    top-award
========================================= */
#top-award .bg {
  backface-visibility: hidden;
}
#top-award .ttl {
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
  padding-top: 50px;
  background: url(/img/top/award-deco01.png) no-repeat center top;
  font-family: 'Hina Mincho', serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
}
#top-award .ttl::before {
  position: absolute;
  content: '';
}
#top-award .ttl::after {
  position: absolute;
  content: '';
}
#top-award .ttl {
  font-size: 40px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  #top-award .ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#top-award .ttl::before {
  width: 14px;
  height: 17px;
  top: 50px;
  left: calc(50% - 265px);
  background: url(/img/top/award-ttl-deco01.png) no-repeat;
  background-size: 100%;
}
#top-award .ttl::after {
  width: 22px;
  height: 30px;
  right: calc(50% - 275px);
  bottom: 12px;
  background: url(/img/top/award-ttl-deco02.png) no-repeat;
  background-size: 100%;
}
#top-award .ttl-border {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px dashed #373225;
}
#top-award .wrap {
  margin-top: 45px;
}
#top-award .list {
  display: flex;
  justify-content: center;
  gap: 20px;
}
#top-award .list:nth-of-type(n + 2) {
  margin-top: 20px;
}
#top-award .list-top {
  max-width: 875px;
  margin: 0 auto;
}
#top-award .list-item {
  width: 277px;
  height: 165px;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.08em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  background: url(/img/top/award-item.png) no-repeat center top/100%;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 900;
  font-style: normal;
  font-size: 17px;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  #top-award .list-item {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#top-award .btn {
  margin: 50px auto 0;
}

/* =========================================
    top  PC
    top-business
========================================= */
#top-business .bg {
  background: url(/img/top/business-bg-deco.png) no-repeat calc(50% + 605px) bottom;
  overflow: hidden;
}
#top-business .container {
  width: 100%;
  gap: 50px;
  padding: 80px 0;
  position: relative;
}
#top-business .container::before {
  position: absolute;
  content: '';
}
#top-business .container {
  z-index: 1;
}
#top-business .container::before {
  width: 1280px;
  height: 100%;
  transform: translateX(-50%);
  left: 50%;
  top: 0;
  background: url(/img/all/pattern01.jpg) left top;
  border-top: 1px solid #0b2d54;
  z-index: -1;
}
#top-business .img {
  flex-shrink: 0;
  position: relative;
}
#top-business .img::before {
  position: absolute;
  content: '';
}
#top-business .img {
  z-index: 1;
}
#top-business .img::before {
  width: 349px;
  height: 292px;
  left: -190px;
  top: -155px;
  background: url(/img/top/business-deco.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#top-business .img img {
  border-radius: 30px;
}
#top-business .txt {
  line-height: 1.88;
  margin-top: 35px;
}
#top-business .btn {
  margin: 35px auto 0;
}

/* =========================================
    top  PC
    top-trivia
========================================= */
#top-trivia .container {
  width: 980px;
  margin: 0 auto;
  padding: 50px;
  border: 1px solid #373225;
  position: relative;
}
#top-trivia .container::before {
  position: absolute;
  content: '';
}
#top-trivia .container::after {
  position: absolute;
  content: '';
}
#top-trivia .container {
  z-index: 1;
}
#top-trivia .container::before {
  width: 1080px;
  height: 220px;
  transform: translateX(-50%);
  left: 50%;
  bottom: -50px;
  background: url(/img/all/pattern04.jpg) left top;
  z-index: -2;
}
#top-trivia .container::after {
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  left: 50%;
  top: 0;
  background: url(/img/all/pattern03.jpg) left top;
  z-index: -1;
}
#top-trivia .primary {
  position: absolute;
  top: -30px;
  left: -18px;
}
#top-trivia .primary::after {
  position: absolute;
  content: '';
  width: 18px;
  height: 14px;
  left: 0;
  bottom: -14px;
  background: url(/img/top/trivia-deco.png) no-repeat;
  background-size: 100%;
}
#top-trivia .primary-ico {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffcd63;
  border-left: 1px solid #373225;
}
#top-trivia .primary-txt {
  height: 60px;
  letter-spacing: 0.06em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16.6px;
  background-color: #fff;
  border-left: 1px solid #373225;
  border-right: 1px solid #373225;
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  #top-trivia .primary-txt {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
#top-trivia .box {
  width: 100%;
  margin-top: 10px;
}
#top-trivia .ttl {
  letter-spacing: 0.08em;
  padding-bottom: 10px;
  padding-right: 35px;
  border-bottom: 1px solid rgba(55, 50, 37, 0.2);
  font-family: 'Hina Mincho', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  #top-trivia .ttl {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
#top-trivia .txt {
  line-height: 1.88;
  margin-top: 15px;
  padding-right: 40px;
}
#top-trivia .img {
  flex-shrink: 0;
}

/* =========================================
    top  PC
    top-case
========================================= */
#top-case .bg {
  background:
    url(/img/top/case-deco01.png) no-repeat calc(50% - 630px) top,
    url(/img/top/case-deco02.png) no-repeat calc(50% + 660px) top,
    url(/img/all/pattern01.jpg) left top;
  border-top: 1px solid #373225;
  border-bottom: 1px solid #373225;
}
@media screen and (min-width: 1921px) {
  #top-case .bg {
    background:
      url(/img/top/case-deco01.png) no-repeat left top,
      url(/img/top/case-deco02.png) no-repeat right top,
      url(/img/all/pattern01.jpg) left top;
  }
}
#top-case .list {
  gap: 30px;
  margin-top: 50px;
}
#top-case .list-item {
  flex-basis: calc((100% - 60px) / 3);
  max-width: calc((100% - 60px) / 3);
}
#top-case .list-link {
  width: 100%;
  padding: 20px 20px 15px;
  background: url(/img/all/pattern02.jpg) left top;
  border: 1px solid #0b2d54;
  border-radius: 20px;
}
#top-case .list-link:hover .list-img img {
  transform: scale(1.05);
}
#top-case .list-img {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
}
#top-case .list-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#top-case .list-img img {
  transition: all 0.5s ease;
}
#top-case .list-ttl {
  margin-top: 10px;
  padding-left: 25px;
  position: relative;
}
#top-case .list-ttl::before {
  position: absolute;
  content: '';
}
#top-case .list-ttl {
  z-index: 1;
}
#top-case .list-ttl::before {
  width: 10px;
  height: 2px;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  background-color: #0b2d54;
  z-index: -1;
}
#top-case .btn {
  margin: 50px auto 0;
}

/* =========================================
    top  PC
    top-company
========================================= */
#top-company .inner {
  position: relative;
}
#top-company .inner::before {
  position: absolute;
  content: '';
}
#top-company .inner {
  z-index: 1;
}
#top-company .inner::before {
  width: 690px;
  height: 70px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background: url(/img/all/pattern03.jpg) left top;
  border-radius: 20px;
  z-index: -1;
}
#top-company .btn {
  width: 100%;
  max-width: 550px;
  height: 160px;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding-left: 60px;
  color: #fff;
  background:
    url(/img/top/company-ico.png) no-repeat calc(100% - 100px) center,
    #0b2d54;
  border-radius: 30px;
  position: relative;
}
#top-company .btn::before {
  position: absolute;
  content: '';
}
#top-company .btn::after {
  position: absolute;
  content: '';
}
#top-company .btn {
  z-index: 1;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 900;
  font-style: normal;
  font-size: 30px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  #top-company .btn {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#top-company .btn::before {
  width: 538px;
  height: 148px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  border-radius: 25px;
  z-index: -1;
}
#top-company .btn::after {
  width: 20px;
  height: 25px;
  transform: translateY(-50%);
  top: 50%;
  right: 50px;
  background: url(/img/all/arw-lg.png) no-repeat;
  background-size: 100%;
  z-index: 2;
  transition: all 0.3s ease;
}
#top-company .btn:hover::after {
  transform: translate(3px, -50%);
}

/* =========================================
    top  PC
    top-news
========================================= */
#top-news .container-box {
  width: 200px;
  flex-shrink: 0;
  position: relative;
}
#top-news .container-box {
  padding-top: 70px;
  background: url(/img/top/news-ico.png) no-repeat center top;
}
#top-news .ttl {
  letter-spacing: 0.08em;
  font-family: 'Hina Mincho', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  #top-news .ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#top-news .list {
  width: 100%;
  margin-left: 110px;
}
#top-news .list-item:nth-of-type(n + 2) {
  margin-top: 20px;
}
#top-news .list-link {
  width: 100%;
  gap: 30px;
  padding: 15px 40px;
  color: #373225;
  background: url(/img/all/pattern01.jpg) left top;
  border-bottom: 1px solid #373225;
}
#top-news .btn {
  width: 200px;
  margin-top: 50px;
  background-color: rgba(202, 219, 239, 0.4);
}

/* =========================================

    sub layout  PC
    下層ページのPC時css
		sub-pc

========================================= */
/* =========================================
    sub  PC
    sub-about
========================================= */
#sub-about .bg {
  background: url(/img/top/about-bg-deco02.png) no-repeat calc(50% + 715px) 217px;
  overflow: hidden;
}
@media screen and (min-width: 1921px) {
  #sub-about .bg {
    background: url(/img/top/about-bg-deco02.png) no-repeat right 217px;
  }
}
#sub-about .container {
  width: 100%;
  padding: 70px 60px;
  background: url(/img/all/pattern01.jpg) left top;
  border: 1px solid #0b2d54;
  border-radius: 30px;
  position: relative;
}
#sub-about .container::before {
  position: absolute;
  content: '';
}
#sub-about .container::after {
  position: absolute;
  content: '';
}
#sub-about .container::before {
  width: 596px;
  height: 597px;
  top: 0;
  left: calc(50% - 960px);
  background: url(/img/top/about-bg-deco01.png) no-repeat;
  background-size: 100%;
}
@media screen and (min-width: 1921px) {
  #sub-about .container::before {
    left: calc(50% - 50vw);
  }
}
#sub-about .container::after {
  width: 239px;
  height: 242px;
  left: -84px;
  bottom: -15px;
  background: url(/img/about/about-img02.png) no-repeat;
  background-size: 100%;
}
#sub-about .ttl {
  font-size: 40px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  #sub-about .ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#sub-about .wrap {
  gap: 40px;
  margin-top: 45px;
}
#sub-about .img {
  flex-shrink: 0;
  margin-top: 20px;
  position: relative;
  z-index: 5;
}
#sub-about .txt {
  line-height: 1.88;
}

#sub-forte .bg {
  background:
    url(/img/about/forte-bg01.png) no-repeat calc(50% + 663px) top,
    url(/img/about/forte-bg02.png) no-repeat calc(50% - 440px) 164px,
    url(/img/about/forte-bg03.png) no-repeat calc(50% - 703px) 687px,
    url(/img/about/forte-bg04.png) no-repeat calc(50% + 550px) 878px,
    url(/img/all/pattern01.jpg) left top;
  border-top: 1px solid #373225;
}
@media screen and (min-width: 1921px) {
  #sub-forte .bg {
    background:
      url(/img/about/forte-bg01.png) no-repeat calc(50% + 38vw) top,
      url(/img/about/forte-bg02.png) no-repeat calc(50% - 440px) 164px,
      url(/img/about/forte-bg03.png) no-repeat calc(50% - 40vw) 687px,
      url(/img/about/forte-bg04.png) no-repeat calc(50% + 550px) 878px,
      url(/img/all/pattern01.jpg) left top;
  }
}
#sub-forte .list {
  margin-top: 50px;
  flex-wrap: wrap;
  gap: 35px;
}
#sub-forte .list:nth-of-type(n + 2) {
  margin-top: 30px;
}
#sub-forte .list-item {
  flex-basis: calc((100% - 70px) / 3);
  max-width: calc((100% - 70px) / 3);
  text-align: center;
  padding: 30px 25px 35px;
  background: url(/img/all/pattern02.jpg) left top;
  border-radius: 30px;
}
#sub-forte .list-ttl {
  letter-spacing: 0.08em;
  line-height: 1.66;
  margin-top: 15px;
  font-family: 'Hina Mincho', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  #sub-forte .list-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}
#sub-forte .list-img {
  margin-top: 20px;
  border-radius: 20px;
}
#sub-forte .list-txt {
  text-align: left;
  line-height: 1.88;
  margin-top: 25px;
}

#sub-question .bg {
  border-top: 1px solid #373225;
}
#sub-question .list {
  margin-top: 50px;
}
#sub-question .list-item:nth-of-type(n + 2) {
  margin-top: 35px;
}
#sub-question .list-top {
  position: relative;
}
#sub-question .list-q {
  position: absolute;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 55px;
  top: -20px;
  left: -20px;
  color: #fff;
  background-color: #0b2d54;
  border-radius: 50%;
  font-family: 'Hina Mincho', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  #sub-question .list-q {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1150px) {
  #sub-question .list-q {
    left: -10px;
  }
}
#sub-question .list-q::before {
  position: absolute;
  content: '';
  width: 14px;
  height: 16px;
  bottom: 7px;
  right: 1px;
  background: url(/img/about/question-deco.png) no-repeat;
  background-size: 100%;
}
#sub-question .list-ttl {
  letter-spacing: 0.08em;
  padding: 12px 15px 12px 60px;
  color: #0b2d54;
  background: url(/img/all/pattern01.jpg) left top;
  font-family: 'Hina Mincho', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  #sub-question .list-ttl {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
#sub-question .list-btm {
  padding: 25px 60px;
}
#sub-question .list-txt {
  line-height: 1.88;
}

/* =========================================
    sub  PC
    sub-business
========================================= */
#sub-entrust .bg {
  background: url(/img/top/about-bg-deco02.png) no-repeat calc(50% + 715px) 217px;
  overflow: hidden;
}
@media screen and (min-width: 1921px) {
  #sub-entrust .bg {
    background: url(/img/top/about-bg-deco02.png) no-repeat right 217px;
  }
}
#sub-entrust .container {
  width: 100%;
  padding: 70px 60px 80px;
  background: url(/img/all/pattern01.jpg) left top;
  border: 1px solid #0b2d54;
  border-radius: 30px;
  position: relative;
}
#sub-entrust .container::before {
  position: absolute;
  content: '';
}
#sub-entrust .container::after {
  position: absolute;
  content: '';
}
#sub-entrust .container::before {
  width: 596px;
  height: 597px;
  top: 0;
  left: calc(50% - 960px);
  background: url(/img/top/about-bg-deco01.png) no-repeat;
  background-size: 100%;
}
@media screen and (min-width: 1921px) {
  #sub-entrust .container::before {
    left: calc(50% - 50vw);
  }
}
#sub-entrust .container::after {
  width: 232px;
  height: 212px;
  top: 120px;
  right: -30px;
  background: url(/img/business/entrust-img.png) no-repeat;
  background-size: 100%;
}
#sub-entrust .ttl {
  letter-spacing: 0.08em;
  font-size: 40px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  #sub-entrust .ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#sub-entrust .ttl-dod {
  position: relative;
}
#sub-entrust .ttl-dod::before {
  position: absolute;
  content: '';
}
#sub-entrust .ttl-dod {
  z-index: 1;
}
#sub-entrust .ttl-dod::before {
  width: 6px;
  height: 6px;
  transform: translateX(-50%);
  left: 50%;
  top: -5px;
  background-color: #ff9b26;
  z-index: -1;
  border-radius: 50%;
}
#sub-entrust .txt {
  text-align: center;
  line-height: 1.88;
  margin-top: 45px;
}
#sub-entrust .primary {
  width: 500px;
  margin: 45px auto 0;
  position: relative;
}
#sub-entrust .primary::before {
  position: absolute;
  content: '';
}
#sub-entrust .primary::after {
  position: absolute;
  content: '';
}
#sub-entrust .primary::before {
  width: 18px;
  height: 17px;
  bottom: -15px;
  right: 80px;
  background: url(/img/business/entrust-deco.png) no-repeat;
  background-size: 100%;
  z-index: 1;
}
#sub-entrust .primary::after {
  width: 193px;
  height: 270px;
  right: -138px;
  bottom: -80px;
  background: url(/img/business/entrust-img02.png) no-repeat;
  background-size: 100%;
  z-index: 1;
}
#sub-entrust .primary-txt {
  width: 100%;
  padding: 23px 0;
  text-align: center;
  line-height: 1.5;
  border: 2px solid #0b2d54;
  color: #0b2d54;
  border-radius: 55px;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 900;
  font-style: normal;
  position: relative;
}
#sub-entrust .primary-txt::before {
  position: absolute;
  content: '';
}
#sub-entrust .primary-txt::after {
  position: absolute;
  content: '';
}
#sub-entrust .primary-txt {
  z-index: 1;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  #sub-entrust .primary-txt {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
#sub-entrust .primary-txt::before {
  width: 16px;
  height: 2px;
  top: -2px;
  left: 100px;
  background: url(/img/all/pattern01.jpg) left top;
}
#sub-entrust .primary-txt::after {
  width: 24px;
  height: 2px;
  bottom: -2px;
  right: 69px;
  background: url(/img/all/pattern01.jpg) left top;
}

#sub-business .bg {
  background:
    url(/img/business/business-bg01.png) no-repeat calc(50% + 582px) top,
    url(/img/about/forte-bg02.png) no-repeat calc(50% - 555px) 164px,
    url(/img/business/business-bg03.png) no-repeat calc(50% - 650px) 842px,
    url(/img/business/business-bg04.png) no-repeat calc(50% + 577px) 542px,
    url(/img/business/business-bg05.png) no-repeat calc(50% + 640px) bottom,
    url(/img/all/pattern01.jpg) left top;
  border-top: 1px solid #373225;
  border-bottom: 1px solid #373225;
}
@media screen and (min-width: 1921px) {
  #sub-business .bg {
    background:
      url(/img/business/business-bg01.png) no-repeat calc(50% + 582px) top,
      url(/img/about/forte-bg02.png) no-repeat calc(50% - 555px) 164px,
      url(/img/business/business-bg03.png) no-repeat calc(50% - 37.7vw) 842px,
      url(/img/business/business-bg04.png) no-repeat calc(50% + 577px) 542px,
      url(/img/business/business-bg05.png) no-repeat calc(50% + 640px) bottom,
      url(/img/all/pattern01.jpg) left top;
  }
}
#sub-business .list {
  margin-top: 50px;
}
#sub-business .list-item {
  width: 100%;
  gap: 35px;
  padding: 60px;
  background: url(/img/all/pattern02.jpg) left top;
  border-radius: 30px;
}
#sub-business .list-item:nth-of-type(n + 2) {
  margin-top: 30px;
}
#sub-business .list-img {
  flex-shrink: 0;
}
#sub-business .list-wrap {
  width: 100%;
}
#sub-business .list-ttl {
  letter-spacing: 0.08em;
  padding: 16px 0 16px 40px;
  background: url(/img/business/business-deco.png) no-repeat left 25px;
  border-top: 1px dashed #b9b2a6;
  border-bottom: 1px dashed #b9b2a6;
  font-family: 'Hina Mincho', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  #sub-business .list-ttl {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
#sub-business .list-txt {
  line-height: 1.88;
  margin-top: 25px;
}

#sub-area .ttl {
  position: relative;
  z-index: 5;
}
#sub-area .wrap {
  width: 100%;
  margin-top: 50px;
  padding: 70px;
  background: url(/img/all/pattern01.jpg) left top;
  border: 1px solid #0b2d54;
  border-radius: 30px;
  position: relative;
}
#sub-area .img {
  position: absolute;
  top: -105px;
  left: 70px;
}
#sub-area .txt {
  width: 100%;
  max-width: 450px;
  line-height: 1.88;
  margin-left: auto;
}

#sub-flow .bg {
  background:
    url(/img/business/business-bg01.png) no-repeat calc(50% + 582px) top,
    url(/img/about/forte-bg02.png) no-repeat calc(50% - 605px) 492px,
    url(/img/business/business-bg03.png) no-repeat calc(50% - 650px) calc(100% - 342px),
    url(/img/business/business-bg04.png) no-repeat calc(50% + 577px) 929px,
    url(/img/business/business-bg05.png) no-repeat calc(50% + 640px) bottom,
    url(/img/all/pattern01.jpg) left top;
  border-top: 1px solid #373225;
  border-bottom: 1px solid #373225;
}
@media screen and (min-width: 1921px) {
  #sub-flow .bg {
    background:
      url(/img/business/business-bg01.png) no-repeat calc(50% + 582px) top,
      url(/img/about/forte-bg02.png) no-repeat calc(50% - 605px) 492px,
      url(/img/business/business-bg03.png) no-repeat calc(50% - 37.7vw) calc(100% - 345px),
      url(/img/business/business-bg04.png) no-repeat calc(50% + 577px) 929px,
      url(/img/business/business-bg05.png) no-repeat calc(50% + 640px) bottom,
      url(/img/all/pattern01.jpg) left top;
  }
}
#sub-flow .list {
  margin-top: 40px;
}
#sub-flow .list-item {
  width: 100%;
  gap: 20px;
  padding: 35px 40px;
  background: url(/img/all/pattern02.jpg) left top;
  border-radius: 30px;
}
#sub-flow .list-item:nth-of-type(n + 2) {
  margin-top: 30px;
}
#sub-flow .list-left {
  flex-shrink: 0;
  gap: 30px;
}
#sub-flow .list-step {
  letter-spacing: 0.08em;
  padding-bottom: 30px;
  color: #0b2d54;
  background: url(/img/business/flow-deco.png) no-repeat center bottom;
  font-family: 'Hina Mincho', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  #sub-flow .list-step {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
#sub-flow .list-ico {
  flex-shrink: 0;
}
#sub-flow .list-box {
  width: 100%;
}
#sub-flow .list-ttl {
  letter-spacing: 0.08em;
  padding-bottom: 15px;
  border-bottom: 1px dashed #b9b2a6;
  font-family: 'Hina Mincho', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  #sub-flow .list-ttl {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
#sub-flow .list-txt {
  line-height: 1.88;
  margin-top: 17px;
}

/* =========================================
    sub  PC
    sub-case
========================================= */
#sub-case .list {
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}
#sub-case .list-item {
  flex-basis: calc((100% - 60px) / 3);
  max-width: calc((100% - 60px) / 3);
}
#sub-case .list-link {
  width: 100%;
  padding: 20px 20px 15px;
  background: url(/img/all/pattern01.jpg) left top;
  border: 1px solid #0b2d54;
  border-radius: 20px;
}
#sub-case .list-link:hover .list-img img {
  transform: scale(1.05);
}
#sub-case .list-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
#sub-case .list-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#sub-case .list-img {
  border-radius: 15px;
}
#sub-case .list-img img {
  transition: all 0.5s ease;
}
#sub-case .list-ttl {
  margin-top: 10px;
  padding-left: 25px;
  position: relative;
}
#sub-case .list-ttl::before {
  position: absolute;
  content: '';
}
#sub-case .list-ttl {
  z-index: 1;
}
#sub-case .list-ttl::before {
  width: 10px;
  height: 2px;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  background-color: #0b2d54;
  z-index: -1;
}

#sub-case-detail .article {
  width: 100%;
  max-width: 1280px;
  margin: 50px auto 0;
  border-top: 1px solid #373225;
  border-bottom: 1px solid #373225;
  background: url(/img/all/pattern01.jpg) left top;
}
#sub-case-detail .article-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 0;
}
#sub-case-detail .wrap {
  gap: 100px;
  margin-top: 40px;
  position: relative;
}
#sub-case-detail .wrap::after {
  position: absolute;
  content: '';
}
#sub-case-detail .wrap {
  z-index: 1;
}
#sub-case-detail .wrap::after {
  width: 44px;
  height: 20px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background: url(/img/all/case-arw.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#sub-case-detail .before {
  width: 490px;
  height: 350px;
}
#sub-case-detail .before img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#sub-case-detail .before {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
#sub-case-detail .before-txt {
  position: absolute;
  width: 104px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  top: 0;
  left: 0;
  color: #fff;
  background-color: #848484;
  border-radius: 0 0 30px 0;
}
#sub-case-detail .after {
  width: 490px;
  height: 350px;
}
#sub-case-detail .after img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#sub-case-detail .after {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
#sub-case-detail .after-txt {
  position: absolute;
  width: 104px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  top: 0;
  left: 0;
  color: #373225;
  background-color: #ffcd63;
  border-radius: 0 0 30px 0;
}
#sub-case-detail .list {
  margin-top: 25px;
}
#sub-case-detail .list-item {
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px dashed #b9b2a6;
}
#sub-case-detail .list-ttl {
  width: 78px;
  height: 27px;
  letter-spacing: 0.06em;
  line-height: 27px;
  text-align: center;
  flex-shrink: 0;
  color: #fff;
  background-color: #373225;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  #sub-case-detail .list-ttl {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#sub-case-detail .box {
  margin-top: 25px;
}
#sub-case-detail .box-ttl {
  letter-spacing: 0.06em;
  color: #0b2d54;
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 17px;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  #sub-case-detail .box-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#sub-case-detail .box-txt {
  line-height: 1.88;
  padding: 10px 15px 15px;
  border-bottom: 1px dashed #b9b2a6;
}

/* =========================================
    sub  PC
    sub-company
========================================= */
#sub-greeting .bg {
  background:
    url(/img/top/about-bg-deco01.png) no-repeat calc(50% - 660px) 100px,
    url(/img/top/about-bg-deco02.png) no-repeat calc(50% + 710px) 100px;
}
@media screen and (min-width: 1921px) {
  #sub-greeting .bg {
    background:
      url(/img/top/about-bg-deco01.png) no-repeat calc(50% - 38.1vw) 100px,
      url(/img/top/about-bg-deco02.png) no-repeat calc(50% + 40vw) 100px;
  }
}
#sub-greeting .wrap {
  margin-top: 50px;
}
#sub-greeting .wrap-ttl {
  background: url(/img/all/pattern01.jpg) left top;
}
#sub-greeting .wrap-fle {
  gap: 40px;
  margin-top: 35px;
}
#sub-greeting .img {
  flex-shrink: 0;
  margin-top: 5px;
  border-radius: 30px;
}
#sub-greeting .txt {
  width: 100%;
  line-height: 1.88;
}
#sub-greeting .box {
  margin-top: 40px;
}
#sub-greeting .box-ttl {
  background: url(/img/all/pattern01.jpg) left top;
}
#sub-greeting .box-txt {
  margin-top: 10px;
  padding-left: 30px;
}
#sub-greeting .list {
  gap: 20px;
  margin-top: 35px;
  padding-left: 30px;
}
#sub-greeting .list-item {
  letter-spacing: 0.08em;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 900;
  font-style: normal;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #sub-greeting .list-item {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

#sub-history .bg {
  background:
    url(/img/top/business-deco.png) no-repeat calc(50% - 575px) 100px,
    url(/img/top/business-bg-deco.png) no-repeat calc(50% + 575px) calc(100% - 82px),
    url(/img/all/pattern01.jpg) left top;
}
#sub-history .list {
  margin-top: 50px;
}
#sub-history .list-item {
  width: 100%;
  padding: 11.2px 30px;
  background: url(/img/all/pattern01.jpg) left top;
  border: 1px solid #0b2d54;
  border-radius: 10px;
}
#sub-history .list-item:nth-of-type(n + 2) {
  margin-top: 20px;
}
#sub-history .list-ttl {
  width: 140px;
  flex-shrink: 0;
  letter-spacing: 0.08em;
  color: #0b2d54;
  font-family: 'Hina Mincho', serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
}
#sub-history .list-ttl::after {
  position: absolute;
  content: '';
}
#sub-history .list-ttl {
  z-index: 1;
  font-size: 26px;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  #sub-history .list-ttl {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
#sub-history .list-ttl::after {
  width: 2px;
  height: 30px;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  background-color: #0b2d54;
  z-index: -1;
}
#sub-history .list-txt {
  padding-left: 55px;
}

#sub-company .table {
  margin-top: 28px;
}

#sub-map .map {
  width: 100%;
  max-width: 1280px;
  height: 360px;
  margin: 0 auto;
}
#sub-map .map iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
}
#sub-map .map iframe {
  border-radius: 20px;
}

/* =========================================
    sub  PC
    sub-contact  お問い合わせフォーム テンプレ
		他ページのtableなどデザインを併用する
========================================= */
#sub-contact .privacy {
  color: #0b2d54;
  border-bottom: 1px solid #0b2d54;
}

#contact-form .com-table01 {
  white-space: unset;
}
#contact-form .com-btn01 {
  display: flex;
  justify-content: center;
  margin: 50px auto 0;
  transition: all 0.5s ease;
}
#contact-form .com-btn01::after {
  display: none;
}
#contact-form .com-btn01:hover {
  transform: scale(0.95);
}

.contact-form-table {
  margin: 50px auto 0;
  width: 100%;
  max-width: 1080px;
  table-layout: fixed;
}
.contact-form-table th {
  width: 350px;
  padding: 15px;
  white-space: unset;
}
.contact-form-table td {
  padding: 15px;
  white-space: unset;
}
.contact-form-table td input {
  height: 25px;
  line-height: 25px;
  border: none;
  background-color: #f5f5f5;
}
.contact-form-table td textarea {
  border: none;
  background-color: #f5f5f5;
  resize: none;
}
.contact-form-table .sp-sm {
  font-size: 16px;
}

.select {
  display: inline-block;
  position: relative;
  border: 1px solid #eee;
  position: relative;
}
.select::after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  transform: translateY(-50%);
  top: 50%;
  right: 20px;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 5px solid #eee;
  border-bottom: 0;
}
.select-list {
  width: 200px;
  padding: 11px 15px;
  border: none;
  cursor: pointer;
}

.privacy-check {
  font-size: 15px;
}

.required-mark {
  letter-spacing: 0.04em;
  color: #4aafa3;
  background-color: unset;
  font-size: 12px;
  font-size: 1.2rem;
}

.contact-recaptcha-wrap {
  width: 304px;
  margin: 50px auto 0;
}

.contact-submits-wrap {
  margin-top: 25px;
}
.contact-submits-wrap .back-btn::before {
  display: none;
}

/*==================================================
 入力フィールド
================================================== */
select,
textarea,
input[type='tel'],
input[type='text'],
input[type='email'],
input[type='url'] {
  width: 100%;
  max-width: 100%;
  padding: 15px;
  font-size: 16px;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  box-shadow: 0 1px 1px rgba(150, 150, 150, 0.1) inset;
  box-sizing: border-box;
}

select {
  padding: 7px 15px;
}

textarea {
  width: 100%;
  resize: vertical;
}

/* ボタン
-------------------------------------------------- */
input[type='button'],
input[type='submit'],
button {
  -webkit-appearance: none;
  /* Safariにのみ適用するスタイル */
  transition: all 0.3s ease;
}

input[type='button']:hover,
input[type='submit']:hover {
  opacity: 0.8;
  cursor: pointer;
}

input[type='button'][disabled],
input[type='submit'][disabled] {
  opacity: 0.4;
  pointer-events: none;
}

/* チェックボックス・ラジオボタン
-------------------------------------------------- */
input[type='radio'],
input[type='checkbox'] {
  display: inline-block;
  margin-right: 6px;
}

input[type='radio'] + label,
input[type='checkbox'] + label {
  position: relative;
  display: inline-block;
  line-height: 30px;
  cursor: pointer;
}

input[type='radio'],
input[type='checkbox'] {
  display: none;
}

input[type='radio'] + label,
input[type='checkbox'] + label {
  padding: 0 0 0 24px;
}

input[type='radio'] + label::before,
input[type='checkbox'] + label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background: #fff;
}

input[type='radio'] + label::before {
  border: 2px solid #ccc;
  border-radius: 30px;
}

input[type='checkbox'] + label::before {
  border: 2px solid #ccc;
}

input[type='radio']:checked + label::after,
input[type='checkbox']:checked + label::after {
  content: '';
  position: absolute;
  top: 50%;
  box-sizing: border-box;
  display: block;
}

input[type='radio']:checked + label::after {
  left: 5px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #ff900e;
  border-radius: 8px;
}

input[type='checkbox']:checked + label::after {
  left: 3px;
  width: 16px;
  height: 8px;
  margin-top: -8px;
  border-left: 3px solid #ff900e;
  border-bottom: 3px solid #ff900e;
  transform: rotate(-45deg);
}

input[type='checkbox'] {
  display: none; /* デフォルトチェックボックスを完全に非表示 */
}

/*==================================================
	テーブル
================================================== */
/* スマホ表示時にはテーブルを縦向きにする */
@media screen and (max-width: 768px) {
  .contact-form-table,
  .contact-form-table tbody,
  .contact-form-table tr,
  .contact-form-table th,
  .contact-form-table td {
    width: auto;
    display: block;
  }
}
/* ご住所だけ2段なのでマージンを開ける */
input[name='items[address]'] {
  margin-top: 8px;
}

/* 「不正な送信です」「時間を空けて再度送信ください」などのセキュリティエラー文 */
.sec-error-text {
  line-height: 1.5em;
  margin-top: 50px;
  padding: 40px 10px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  background: #ff900e;
}

.sec-error-link {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .sec-error-text {
    padding: 30px 10px;
    font-size: 4vw;
  }
  .sec-error-link {
    font-size: 5vw;
  }
}
/* 「任意」「必須」マーク */
.optional-mark,
.required-mark {
  margin-top: 5px;
  padding: 2px 10px;
  color: #fff;
  float: right;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .optional-mark,
  .required-mark {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.optional-mark {
  background: #3498db;
}

.required-mark {
  background: #ff900e;
}

/* 「~が入力されていません」などの未記入エラー文 */
.error-text {
  margin: 0 0 4px;
  color: #ff900e;
}

/* 送信・確認ボタン */
.contact-submits-wrap {
  text-align: center;
}

/* プライバシーポリシー */
.inline-privacy-policy {
  height: 350px;
  margin: 16px 0;
  border: 1px solid #dfdfdf;
  background: #fff;
}

.inline-privacy-policy-inner {
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  display: inline-block;
}

.inline-privacy-policy iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/*==================================================
	日付選択フォーム
================================================== */
.date-list {
  padding-left: inherit;
}

.date-list li {
  list-style: none;
  margin-bottom: 15px;
}

.date-list li p {
  margin-bottom: 5px;
}

/*==================================================
	画像アップロードフォーム
================================================== */
.upload-item-wrap {
  font-size: 13px;
  overflow: hidden;
}

.upload-item-wrap input[type='file'] {
  display: none;
}

/* アップされた画像のサムネイル */
.upload-item-wrap .thumb {
  width: 220px;
  height: 220px;
  margin: 0 8px 0 0;
  position: relative;
  overflow: hidden;
  float: left;
}

.upload-item-wrap .thumb img {
  max-width: none;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

/*選択・削除ボタン  */
.upload-item-wrap .ancion-btn-wrap {
  margin-top: 10px;
  float: left;
}

.upload-item-wrap .ancion-btn {
  margin: 0 0 8px;
  width: 110px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  background: #e6e6e6;
  display: block;
}

.upload-item-wrap .select-file {
  background: #2ecc71;
}

.upload-item-wrap .deselect-file {
  background: #ff900e;
}

.upload-item-wrap .ancion-btn:hover {
  cursor: pointer;
}

/*添付ファイルの注意文  */
.upload-notice {
  margin-top: 10px;
  font-size: 0.8em;
}

/* =========================================
			top  PC
			top-privacy
========================================= */
.privacy-inner {
  padding-top: 30px;
}
.privacy-ttl {
  margin: 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #0b2d54;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .privacy-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}
.privacy .inline-privacy-policy-inner {
  margin-top: 14px;
  box-sizing: border-box;
  border: 1px solid #0b2d54;
  background-color: #fff;
}
.privacy iframe {
  width: 100%;
  height: 265px;
}
.privacy-box:nth-of-type(n + 2) {
  margin-top: 35px;
}
.privacy-box p:first-of-type {
  margin-top: 10px;
}
.privacy-box input {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}
.privacy-box label {
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .privacy-box label {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.privacy-box-img {
  margin-top: 15px;
}
.privacy-box-btn {
  width: 250px;
  height: 60px;
  margin-top: 46px;
  line-height: 60px;
  letter-spacing: 0.2em;
  color: #ffcd63;
  background-color: #ff9b26;
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .privacy-box-btn {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.privacy-box-btn::before {
  position: absolute;
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  top: 27px;
  right: 30px;
  transform: rotate(45deg);
  border-top: 1px solid #ffcd63;
  border-right: 1px solid #ffcd63;
}

.privacy-box .list-item {
  position: relative;
  padding-left: 15px;
}
.privacy-box .list-item::before {
  position: absolute;
  content: '・';
  left: 0;
}

/* =========================================
    sub  PC
    news テンプレ
========================================= */
#sub-news .tag-list {
  flex-wrap: wrap;
}
#sub-news .current {
  border-bottom: none;
}
#sub-news .container {
  margin-top: 50px;
}
#sub-news .com-ttl02 {
  padding: 9.2px 15px 9.2px 40px;
}
#sub-news .com-ttl02::before {
  height: 27px;
}
#sub-news .com-time {
  padding-right: 10px;
}
#sub-news .com-news-post-item:nth-of-type(n + 2) {
  margin-top: 50px;
}
#sub-news .com-news-post-link {
  display: block;
  padding: 50px 30px;
  color: #373225;
  background: url(/img/all/pattern01.jpg) left top;
  border-top: 1px solid #0b2d54;
}
#sub-news .com-news-post-con {
  width: 100%;
}
#sub-news .com-news-post-con-sm {
  max-width: 725px;
}
@media screen and (max-width: 767px) {
  #sub-news .com-news-post-link {
    padding: 5%;
  }
  #sub-news .com-news-post-img {
    width: 25%;
  }
  #sub-news .com-news-post-con-sm {
    width: 68%;
  }
}
#sub-news .detail .com-news-post-link {
  padding: 15px;
}
#sub-news .detail .com-news-post-img {
  margin: 0 auto 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #sub-news .detail .com-news-post-img {
    width: 100%;
  }
}
#sub-news .news-post article:nth-of-type(n + 2) {
  border-top: 1px solid #f0f0f0;
}
#sub-news .news-post article:nth-of-type(n + 2) a {
  padding-top: 23px;
}
#sub-news .news-post-link {
  display: block;
  padding-bottom: 17px;
  position: relative;
  left: 0;
}
@media screen and (min-width: 768px) {
  #sub-news .news-post-link:hover {
    left: 5px;
  }
}
#sub-news .news-post-txt {
  margin-top: 15px;
}
#sub-news .news-post-flex {
  margin-top: 15px;
}
#sub-news .news-post-time {
  display: inline-block;
  flex-shrink: 0;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-right: 5px;
  padding-top: 9px;
  color: #939393;
  position: relative;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #sub-news .news-post-time {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
#sub-news .news-post-tag {
  display: flex;
  margin-left: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
  border-left: 1px solid #ff9b26;
  line-height: 1.6;
}
#sub-news .news-post-tag-txt {
  padding: 0 15px;
  border-right: 1px solid #ff9b26;
  text-align: center;
  color: #ff9b26;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #sub-news .news-post-tag-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#sub-news .news-post-ttl {
  width: 100%;
  letter-spacing: 0.1em;
  color: #373225;
  line-height: 2;
  transition: all 0.3s ease;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #sub-news .news-post-ttl {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

/* =========================================
    sub  PC
    detail
========================================= */
#news-detail .com-time {
  padding-right: 10px;
}
#news-detail .com-news-post-con {
  padding: 35px;
  background: url(/img/all/pattern01.jpg) left top;
  border-top: 1px solid #0b2d54;
}

/* =========================================
  タグテンプレート
========================================= */
.tag-select-box {
  position: relative;
  width: 40%;
  margin: 20px 0 20px auto;
  max-width: 230px;
  background-color: #fff;
}
.tag-select-box::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #ff9b26;
  pointer-events: none;
}
.tag-select-box #tag-select {
  width: 100%;
  padding: 5% 20% 5% 5%;
  box-sizing: border-box;
  font-size: 1.2rem;
  margin-left: auto;
  display: block;
  border: none;
  border-bottom: 2px solid #ff9b26;
  cursor: pointer;
  border-radius: 0;
  background: none;
  color: #0b2d54;
  font-weight: 700;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.tag-select-box #tag-select option {
  padding: 10px;
  cursor: pointer;
  box-sizing: border-box;
  color: #000;
}

/* =========================================
  タグセレクト
	ボタンテンプレート
========================================= */
#tag-btn-list {
  margin-top: 35px;
  padding: 28px 30px;
  background: url(/img/all/pattern01.jpg) left top;
  border-top: 1px solid #0b2d54;
}
#tag-btn-list .tag-txt {
  flex-shrink: 0;
  margin-top: 5px;
  margin-right: 40px;
  color: #373225;
}
#tag-btn-list .tag-list {
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
}
#tag-btn-list .tag-list-link {
  min-width: 110px;
  text-align: center;
  padding: 5px 30px;
  color: #fff;
  background-color: #0b2d54;
  border-radius: 10px;
}
#tag-btn-list .tag-current {
  color: #0b2d54;
  background-color: #fff;
  border: 1px solid #0b2d54;
}

/*	pagenation  PC
------------------------------------ */
.pagenation {
  display: flex;
  margin: 50px auto 0;
  justify-content: center;
  align-items: center;
}
.pagenation li {
  display: inline-block;
  width: 42px;
  height: 42px;
  text-align: center;
  background: #fff;
  letter-spacing: 0.05em;
  line-height: 40px;
  position: relative;
}
.pagenation li:nth-of-type(n + 2) {
  margin-left: 15px;
}
.pagenation li {
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .pagenation li {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.pagenation a,
.pagenation span {
  display: block;
}
.pagenation a {
  color: #0b2d54;
}
.pagenation .current-page {
  color: #fff;
  background: #0b2d54;
  pointer-events: none;
}
.pagenation .next-li,
.pagenation .back-li {
  background: none;
  border: none;
}
.pagenation .back-arrow,
.pagenation .next-arrow {
  display: block;
  height: 100%;
}
.pagenation-arrow {
  width: 100%;
  height: 100%;
}
.pagenation-arrow::before {
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.pagenation-arrow.next {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 0 7.5px 15px;
  border-color: transparent transparent transparent #0b2d54;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.pagenation-arrow.back {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 15px 7.5px 0;
  border-color: transparent #0b2d54 transparent transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/*	detail pagenation  PC
------------------------------------ */
.pagenation-inner {
  width: 100%;
  max-width: 360px;
  margin: 50px auto 0;
}

.data-nav {
  position: relative;
  text-align: center;
}
.data-nav a {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  transition: all 0.3s ease;
}
.data-nav a:hover {
  opacity: 0.7;
}
.data-nav .next a,
.data-nav .back a {
  background: none !important;
}

.to-works-btn {
  width: 100%;
  max-width: 120px;
  background: #0b2d54;
  text-align: center;
  letter-spacing: 0.05em;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .to-works-btn {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.arrow-btn {
  width: 50px;
  position: absolute;
  bottom: 0;
}
.arrow-btn::before {
  content: '';
  display: inline-block;
  width: 50px;
  height: 50px;
  margin: auto;
  color: #fff;
  background: #0b2d54;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .arrow-btn::before {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.back-btn {
  left: 0;
}
.back-btn::before {
  content: '←';
}

.next-btn {
  right: 0;
}
.next-btn::before {
  content: '→';
}

/* =========================================
    sub  PC
    sub-site
========================================= */
#sub-site .list {
  width: 90%;
  margin: 50px auto 0;
}
#sub-site .list-link {
  width: 100%;
  border-bottom: 1px solid #0b2d54;
  color: #373225;
  display: block;
  padding: 15px 30px;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sub-site .list-link {
    padding: 12px 25px;
  }
}
#sub-site .list-link::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 9px solid #0b2d54;
  border-right: 0;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 5px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  #sub-site .list-link::before {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #0b2d54;
  }
}
@media screen and (min-width: 768px) {
  #sub-site .list-link:hover::before {
    left: 10px;
  }
}

/* =========================================
    sub  PC
    sub-complete
========================================= */
#sub-complete .container-box {
  text-align: center;
  margin-top: 50px;
}
#sub-complete .link {
  margin: 50px auto 0;
}

/* =========================================
    sub  PC
    sub-privacy
========================================= */
#sub-privacy .container {
  margin-top: 50px;
}
#sub-privacy .com-ttl02 {
  background: url(/img/all/pattern01.jpg) left top;
}

/* =========================================
    sub  PC
    404 error
========================================= */
#sub-error .ttl {
  text-align: center;
  font-size: 45px;
  font-size: 4.5rem;
}
@media screen and (max-width: 767px) {
  #sub-error .ttl {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
#sub-error .txt {
  width: 100%;
  text-align: center;
  margin: 50px auto 0;
}
#sub-error .link {
  text-decoration: underline;
  color: #0b2d54;
}
