@charset "utf-8";

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

.hero.lower {
  background: linear-gradient(90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.0) 100%) fixed,url(../img/hero_bg.png);
  background-size: cover;
  background-position: center 20%;
  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;
  padding-bottom: 10px;
}

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

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

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

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

@media screen and (min-width: 1600px) {
  .hero.lower .area {
    min-height: 15vw;
  }

  .hero.lower .area .lead {
    font-size: 1vw;
  }
}

@media 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 screen and (max-width: 767px) {
  .layout-main {
    padding-top: 50px;
  }

  .hero.lower {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%) fixed,url(../img/hero_bg_sp.png);
    padding: 20px 0;
    background-size: cover;
    background-position: right 0;
    background-repeat: no-repeat;
  }

  .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-white,.bg-black
-------------------- */
.content .bg-white {
  background-color: #fff;
  margin: 0 10%;
  border-radius: 10px;
}

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

.content .bg-black {
  background-color: #333;
  margin: 0 10%;
  border-radius: 10px;
}

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

.content .bg-black .area .maxheadline .text {
  color: #23b8ef;
}

.content .bg-black .area .lead {
  color: #fff;
}

@media screen and (min-width: 1600px) {
  .content .bg-black .area {
    width: auto;
    max-width: 60vw;
  }
}

/* --------------------
.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;
}

.content .fa,
.content .section .fa {
  margin: 0 4px;
}

@media screen and (min-width: 1600px) {
  .content .area {
    width: auto;
    max-width: 65vw;
  }
}

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

@media 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.blue.bg-black
-------------------- */
.table.blue.bg-black th,
.table.blue.bg-black td {
  border-color: #333;
}
.table.blue.bg-black thead th {
  background-color: #2C95BB;
  color: #fff;
}

/*
.table.blue.bg-white
-------------------- */
.table.blue.bg-white {
  box-shadow: rgb(0 0 0 / 10%) 2px 2px 0;
  border-radius: 0;
}

.table.blue.bg-white th,
.table.blue.bg-white td {
  border-color: #eee4dd;
}

.table.blue.bg-white thead th {
  background-color: #23B8EF;
  color: #fff;
}

.table.blue.bg-white .bg-blue { 
  background-color: #2C95BB;
  color: #fff;
}

.table.blue.bg-white .item {
  background-color: #2C95BB;
  width: 210px;
}

.table.blue.bg-white .item.last-item {
  border-bottom-color: #2C95BB;
}

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

@media screen and (min-width:  1600px) {
  .table {
    font-size: 0.85vw;
  }

  .table.orange.bg-white .item {
    width: 13vw;
  }
}

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