@charset "utf-8";

/* --------------------
.hero
-------------------- */

.hero.lower {
  background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.8) 100%) fixed,url(../img/hero_bg.png);
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.hero.lower .area {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 280px;
}

.hero.lower .area .maxheadline .text {
  color: #fff;
}

.hero.lower .area .maxheadline .en {
  color: #ff5500;
}

.hero.lower .area .headline span::before {
  content: none;
}

.hero.lower .maxheadline {
  margin-bottom: 20px;
}

.hero.lower .area .lead {
  color: #fff;
}

@media only screen and (max-width: 960px) {
  .hero.lower {
    padding-top: 50px;
  }
  .hero.lower .area .lead {
    text-align: left;
  }
  .hero.lower .area .lead .pc {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .layout_main {
    padding-top: 50px;
  }

  .hero.lower {
    padding: 20px 0;
    background-size: 200%;
    background-position: 60% center;
  }
  .hero.lower .maxheadline .text {
    font-size: 32px;
  }

  .hero.lower .maxheadline .en {
    font-size: 14px;
  }
  .hero.lower .area .lead {
    text-align: left;
    padding: 0 20px;
  }
}

/* --------------------
.bg-index-list
-------------------- */

.bg-index-list {
  background-color: #e5d6cc;
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px;
}

.bg-index-list .ul-list.normal-list li {
  display: block;
  position: relative;
  left: 30px;
  line-height: 2rem;
  margin-bottom: 0.5rem;
}

.bg-index-list .ul-list.normal-list li::before {
  content: "●";
  font-size: 12px;
  color: #ff5500;
  position: absolute;
  left: -25px;
}

.bg-index-list .ul-list li {
  font-size: 20px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.bg-index-list .ul-list li .number {
  color: #ff5500;
  font-size: 32px;
  padding-right: 10px;
  font-family: 'Futura';
  font-weight: normal;
}

.bg-index-list .ul-list li .note {
  font-size: 14px;
}

.bg-index-list .ul-list li:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .bg-index-list .ul-list {
    position: relative;
  }

  .bg-index-list .ul-list li {
    margin-bottom: 10px;
    position: relative;
  }

  .bg-index-list .ul-list.normal-list li {
    width: auto;
    left: 15px;
  }

  .bg-index-list .ul-list li .number {
    font-size: 24px;
  }

  .bg-index-list .ul-list li .text {
    display: block;
    font-size: 16px;
    line-height: 1.5rem;
    width: auto;
  }

  .bg-index-list .ul-list li .note {
    display: block;
    width: 100%;
    position: absolute;
    left: 24px;
    bottom: -24px;
  }
}

/* --------------------
.content
-------------------- */

.content {
  padding: 80px 0;
}

.content.bg {
  background-color: #ede5dd;
}

.content .area {
  width: calc(100% - 40px);
  max-width: 960px;
  margin: 0 auto;
}

.content .sub-section {
  padding-bottom: 40px;
  display: block;
}

.content .sub-section .image {
 width: auto;
 padding: 40px;
 background-color: #fff;
 box-shadow: rgb(0 0 0 / 10%) 2px 2px 0;
 border-radius: 5px;
 margin-top: 20px;
 float: none;
}

.content .sub-section .image img {
 width: 100%;
}

.content .lead.left {
 display: block;
 float: none;
}

@media only screen and (max-width: 960px) {
  .content .sub-section .image {
    padding: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .content {
    padding: 40px 0;
  }
}

/* --------------------
table
-------------------- */
.table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  color: #333;
  font-size: 16px;
}

.table th {
  border: 1px solid #666;
  border-collapse: collapse;
  background: #f5f5f5;
  font-weight: normal;
  text-align: center;
  padding: 10px;
}
.table td {
  border: 1px solid #666;
  border-collapse: collapse;
  background: #fff;
  font-weight: normal;
  text-align: left;
  padding: 10px;
}

.table .price {
  text-align: center;
}

.table .center {
  text-align: center;
}

/*
.table.orange.bg-black
-------------------- */
.table.orange.bg-black th,
.table.orange.bg-black td {
  border-color: #333;
}
.table.orange.bg-black thead th {
  background-color: #d65727;
  color: #fff;
}

/*
.table.orange.bg-white
-------------------- */
.table.orange.bg-white {
  box-shadow: rgb(0 0 0 / 10%) 2px 2px 0;
}
.table.orange.bg-white th,
.table.orange.bg-white td {
  border-color: #eee4dd;
}
.table.orange.bg-white thead th {
  background-color: #d65727;
  color: #fff;
}

.table.orange.bg-white .item {
  background-color: #f3ccbd;
  width: 210px;
}

.table.orange.bg-white .item.last-item {
  border-bottom-color: #f3ccbd;
}

.table.orange.bg-white .last-summary {
  border-bottom-color: #fff;
}



@media only screen and (max-width:  767px) {
  .content .table-area {
    width: 100%;
    overflow-x: auto;
  }
  .content .table-area .table {
    width: 200%;
  }
}