@charset "utf-8";

/*
  File Name: service_detail.css
  Desctiption: サービス資料詳細＠エージ
*/

/* BaseStyle
*********************************************************/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

img {
  vertical-align: baseline;
}

/*
bhead(sp)
*********************************************************/
@media screen and (max-width: 640px) {
  #subhead {
    display: flex;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
  }

  #subhead .inner {
    position: relative;
    margin-left: 12px;
    padding-top: 5px;
    padding-bottom: 5px;
    white-space: nowrap;
    overflow-x: scroll;
    -ms-overflow-style: none;
    /* IE, Edge 対応 */
    scrollbar-width: none;
    /* Firefox 対応 */
  }

  #subhead .inner::-webkit-scrollbar {
    /* Chrome, Safari 対応 */
    display: none;
  }

  #topic-path li {
    display: inline-block;
    position: relative;
    padding-right: 12px;
    font-size: 12px;
    margin-right: 4px;
  }

  #topic-path li a {
    color: #2c0101;
    display: block;
    text-decoration: none;
  }

  #topic-path li:after {
    display: block;
    content: "";
    position: absolute;
    top: 7px;
    width: 5px;
    height: 5px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 0;
  }

  #subhead .inner .sns {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  #subhead {
    margin-top: 55px;
  }
}

/* Layout
*********************************************************/
.wrap {
  width: 1202px;
  display: flex;
  justify-content: space-between;
  margin: 40px auto 0;
}

main {
  width: 898px;
}

/* sp
--------------------------------------------------------*/
@media screen and (max-width: 599px) {

  .wrap,
  main {
    width: 100%;
    padding-top: 0;
    margin-top: 0;
  }

  main {
    margin-top: 24px;
    padding: 0 8px;
  }
}

/* Overwrite
*********************************************************/
.new-gnav {
  margin: 12px 0 6px !important;
}

#subhead .inner {
  width: 1202px;
}

/* sp
--------------------------------------------------------*/
@media screen and (max-width: 599px) {
  .new-gnav {
    margin: 0 !important;
  }
}

/* common
*********************************************************/
.com-box {
  border-radius: 6px;
  padding: 26px 16px 12px 16px;
  border: 1px solid #d8d8d8;
  position: relative;
  overflow: hidden;
}

.com-box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  top: 0;
  left: 0;
  background: #f7f5f1;
}

.com-title {
  font-weight: bold;
  font-size: 24px;
  padding: 0 0 20px;
  border-bottom: 1px solid #d8d8d8;
}

.com-body-title {
  width: 193px;
  height: 36px;
  font-size: 20px;
  font-weight: bold;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* com-item */
.com-item {
  display: flex;
}

.com-item+.com-item {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #d8d8d8;
}

.com-item:last-child {
  margin-top: 4px;
}

.com-item .title {
  font-size: 16px;
  font-weight: bold;
  width: 145px;
  text-align: left;
  margin-bottom: 12px;
  display: flex;
}

.com-item .title .fas,
.com-item .title .far {
  font-size: 20px;
  margin-right: 9px;
  margin-top: 3px;
}

.com-item .title img {
  height: 20px;
  width: auto;
  margin-right: 7px;
  margin-top: 3px;
}

.feature-list,
.com-tag-list {
  margin-left: 8px;
  width: 700px;
}

.feature-item {
  font-size: 16px;
}

/* com-item-body */
.com-item-body {
  width: 700px;
}

/* com-tag-list */
.com-tag-list {
  display: flex;
  flex-wrap: wrap;
}

.com-tag-item {
  margin-bottom: 8px;
  margin-right: 8px;
}

.com-tag-item .link {
  background: #fff;
  border: 1px solid #9b4633;
  color: #9b4633;
  font-size: 12px;
  line-height: 18px;
  padding: 6px 15px;
  border-radius: 4px;
  display: block;
  text-decoration: none;
  transition: 0.2s ease;
}

.com-tag-item .link:hover {
  color: #fff;
  background: #9b4633;
  opacity: 1;
}

/* com-download-button */
.com-download-button {
  width: 218px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.2s;
  border: 2px solid #f2534f;
}

.com-download-button:hover {
  opacity: 1;
}

.com-download-button.red {
  background: #f2534f;
  color: #fff;
}

.com-download-button.red:hover {
  background: #fff;
  color: #f2534f;
  border: 2px solid #f2534f;
}

.com-download-button.white {
  background: #fff;
  color: #f2534f;
  border: 2px solid #f2534f;
  padding: 0 15px 0 5px;
}

.com-download-button.white:hover {
  background: #f2534f;
  color: #fff;
}

.com-download-button.black {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}

.com-download-button.black:hover {
  background: #000;
  color: #fff;
}

.com-download-button .fas {
  font-size: 22px;
}

/* sp
--------------------------------------------------------*/
@media screen and (max-width: 599px) {
  .com-box {
    padding: 12px;
  }

  .com-title {
    font-size: 18px;
    padding: 8px 0;
  }

  .com-item {
    flex-direction: column;
  }

  .com-item .title {
    font-size: 14px;
    width: 100%;
    margin-bottom: 12px;
  }

  .com-item .title .fas,
  .com-item .title .far {
    font-size: 18px;
    margin-right: 8px;
    margin-top: 0;
  }

  .feature-list,
  .com-tag-list {
    width: 100%;
    margin: 0;
  }

  .feature-item {
    font-size: 14px;
    margin-left: 11px;
  }

  .com-item-body {
    width: 100%;
  }
}

/* company
*********************************************************/
.company-inner.com-box {
  padding-bottom: 4px;
  border-top: 10px solid #9b4633;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

.company-inner.com-box::before {
  content: none;
}

.company-head {
  display: flex;
  justify-content: space-between;
}

.company-head .logo img {
  width: 150px;
  height: 130px;
  object-fit: contain;
}

.company-head .body {
  margin-left: 20px;
  width: 692px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.company-head .body .title {
  font-size: 24px;
  font-weight: bold;
}

.company-head .body .text {
  margin: 12px 0;
  font-size: 16px;
}

.company-head .body .title-company {
  margin-top: 12px;
  text-decoration: underline;
  color: #000;
}

.company-body .body-top {
  margin-top: 10px;
  display: flex;
}

.company-body .fee {
  margin-left: 12px;
  width: 290px;
  min-height: 210px;
  border: 1px solid #d8d8d8;
  padding: 18px 16px 16px;
  font-size: 16px;
}

.company-body .fee .title {
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #d8d8d8;
  display: block;
  padding-bottom: 16px;
}

.company-body .fee .fee-list {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}

.company-body .fee .fee-item {
  border: 1px solid #000;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
  margin: 0 8px 8px 0;
}

.company-body .value {
  width: 292px;
}

.company-body .value-item {
  border: 1px solid #d8d8d8;
  border-left: none;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 28px 0 14px;
}

.company-body .value-item+.value-item {
  border-top: none;
}

.company-body .value-item:first-child {
  height: 60px;
  background: #f7f5f1;
}

.company-body .value-item:nth-child(2) {
  height: 76px;
}

.company-body .value-item:last-child {
  height: 74px;
  background: #f7f5f1;
}

.company-body .value-item .title {
  font-size: 16px;
  position: relative;
  display: flex;
}

.company-body .value-item .number .big {
  font-size: 32px;
}

.company-body .value-item .title .value-check img {
  position: relative;
  top: 2px;
  left: 2px;
  cursor: pointer;
  width: 16px;
  height: 17px;
}

.arrow_box {
  display: none;
  position: absolute;
  width: 290px;
  height: 68px;
  background: #ffffff;
  padding: 14px 10px;
  text-align: center;
  border: 2px solid #000000;
  color: #000000;
  font-size: 14px;
  border-radius: 10px;
  top: -84px;
  left: -41px;
  font-weight: normal;
}

.arrow_box:after,
.arrow_box:before {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
}

.arrow_box:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 7px;
  border-right-width: 7px;
  margin-left: -7px;
  border-top-color: #ffffff;
}

.arrow_box:before {
  border-color: rgba(0, 0, 0, 0);
  border-top-width: 11px;
  border-bottom-width: 11px;
  border-left-width: 8px;
  border-right-width: 8px;
  margin-left: -8px;
  margin-top: 1px;
  border-top-color: #000000;
}

.company-body .section-feature {
  position: relative;
  margin-bottom: 12px;
}

.company-body .section-feature .title {
  color: #fff;
  font-weight: bold;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 34px;
  position: absolute;
  top: -16px;
  font-size: 16px;
}

.company-bottom {
  margin-top: 20px;
}

.company-bottom .com-item:first-child .feature-list {
  margin-left: 28px;
  counter-reset: list-count 0;
  list-style-type: none;
}

.company-bottom .com-item:first-child .feature-list>li::before {
  counter-increment: list-count 1;
  content: counter(list-count) ".";
  font-weight: bold;
}

/* sp
--------------------------------------------------------*/
@media screen and (max-width: 599px) {
  .company-head .logo img {
    width: 90px;
    height: auto;
  }

  .company-head .body {
    margin-right: 8px;
    width: calc(100% - 94px);
  }

  .company-head .body .title {
    font-size: 14px;
  }

  .company-head .body .text {
    font-size: 11px;
    margin: 4px 0;
  }

  .company-body .body-top {
    flex-direction: column;
    margin-top: 8px;
  }

  .company-body .fee {
    width: 100%;
    min-height: auto;
    margin: 10px 0 0;
    padding: 8px 16px 12px;
    border: 1px solid #d8d8d8;
    border-bottom: none;
  }

  .company-body .fee .title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .company-body .value {
    width: 100%;
    border-left: 1px solid #8b8b8b;
  }

  .company-body .value-item .title {
    font-size: 14px;
  }

  .company-body .value-item .title .value-check img {
    width: 14px;
    height: 15px;
  }

  .company-body .value-item .number .big {
    font-size: 24px;
  }

  .company-body .value-item {
    padding: 0 20px 0 14px;
  }

  .company-body .value-item:first-child,
  .company-body .value-item:nth-child(2),
  .company-body .value-item:last-child {
    height: 50px;
  }

  .company-bottom .feature-list {
    width: 100%;
    margin: 0;
  }

  .company-bottom .com-item:first-child .feature-list {
    margin: 0;
    padding-left: 16px;
  }

  .company-bottom .com-item:first-child .feature-list>li::before {
    left: 11px;
    position: absolute;
  }

  .arrow_box {
    width: 217px;
    height: auto;
    padding: 4px 8px;
    text-align: left;
    font-size: 11px;
    top: -76px;
    left: -16px;
  }
}

/* .section-company .swiper
*********************************************************/
.company-body .swiper-container {
  width: 280px;
  height: 210px;
}

.company-body .swiper-button-prev,
.company-body .swiper-button-next {
  width: 32px;
  height: 32px;
  top: 53%;
}

.company-body .swiper-button-next {
  background: url(/_img/service/company-next.png) no-repeat;
}

.company-body .swiper-button-prev {
  background: url(/_img/service/company-prev.png) no-repeat;
}

.company-body .swiper-pagination-bullet {
  background: #c4c4c4;
  opacity: 1;
}

.company-body .swiper-pagination-bullet-active {
  background: #fff;
}

.company-body .company-swiper-pagination {
  bottom: 0;
  z-index: 1;
  position: absolute;
  text-align: center;
}

/* sp
--------------------------------------------------------*/
@media screen and (max-width: 599px) {
  .company-body .swiper-container {
    width: 100%;
    height: calc(100vw * 0.75 - 40px);
  }

  .company-body .swiper-container img {
    width: 100%;
    object-fit: contain;
  }
}

/* download
*********************************************************/
.section-download {
  margin-top: 60px;
}

.download-inner {
  width: 710px;
  height: 188px;
  margin: 0 auto;
  padding: 20px 100px 20px 124px;
  background: #f7f5f1;
}

.download-top {
  display: flex;
  align-items: center;
  margin-left: -8px;
}

.download-top .text {
  margin-left: 5px;
  font-size: 16px;
  font-weight: bold;
  display: block;
}

.download-middle {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
}

.download-bottom {
  text-align: center;
  margin: 8px auto 0 -24px;
  display: inline-block;
  letter-spacing: -1px;
}

/* sp
--------------------------------------------------------*/
@media screen and (max-width: 599px) {
  .section-download {
    margin-top: 40px;
  }

  .download-top,
  .download-bottom,
  .section-download .com-download-button.red {
    display: none;
  }

  .download-inner {
    width: 100%;
    height: auto;
    padding: 20px 0;
  }

  .download-middle {
    margin-top: 0;
  }

  .section-download .com-download-button.white {
    margin: 0 auto;
  }
}

/* select
*********************************************************/
.section-country {
  margin-top: 60px;
  width: 100%;
}

.section-country .com-item {
  margin-top: 20px;
}

.section-country .com-item .title {
  margin-top: 12px;
}

.country-list {
  width: 718px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

.country-item {
  width: 12.5%;
  font-size: 11px;
  margin-bottom: 6px;
}

.country-item .link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000;
  cursor: pointer;
}

.country-item img {
  width: 36px;
}

/* sp
--------------------------------------------------------*/
@media screen and (max-width: 599px) {
  .section-country {
    margin-top: 40px;
  }

  .section-country .com-item {
    margin-top: 4px;
  }

  .country-list {
    width: 100%;
  }

  .country-item {
    width: 20%;
  }
}

@media screen and (max-width: 481px) {
  .country-item {
    width: 25%;
  }
}

/* service
*********************************************************/
.section-service {
  margin-top: 40px;
}

.section-service .com-item {
  padding-top: 20px;
  padding-bottom: 20px;
}

.section-performance {
  width: 700px;
  background-color: #f7f5f1;
  padding: 12px;
}

.section-performance .sub-title {
  font-size: 14px;
  font-weight: bold;
}

.section-performance .performance-body {
  margin-top: 12px;
}

.section-performance .performance-body+.sub-title {
  margin-top: 20px;
}

/* sp
--------------------------------------------------------*/
@media screen and (max-width: 599px) {
  .section-service.com-box {
    padding: 12px 12px 30px 12px;
  }

  .section-service .com-item {
    padding-bottom: 0;
  }

  .section-performance {
    width: 100%;
  }
}

/* grad-trigger */
.grad-wrap {
  position: relative;
}

.grad-wrap+.grad-wrap {
  margin-top: 40px;
}

.trigger-wrap {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trigger-wrap:before,
.trigger-wrap:after {
  border-top: 1px solid #000;
  content: "";
  width: 288px;
  /* 線の長さ */
}

.grad-trigger {
  height: 40px;
  width: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
}

.grad-trigger::after {
  content: "続きを読む";
  /*クリック前のボタンのラベル*/
}

.grad-trigger .fa {
  margin-right: 0.5em;
}

.grad-item {
  position: relative;
  overflow: hidden;
  margin: 0 0 50px 8px;
}

.grad-item.is-hide {
  height: 90px;
  /*隠した後の高さ*/
}

.grad-item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 40px;
  /*グラデーションで隠す高さ*/
}

.grad-trigger.is-show {
  /* bottom: -40px; */
}

.grad-trigger.is-show::after {
  content: "閉じる";
  /*クリック後にボタンのラベルを変える*/
}

.grad-trigger.is-show+.grad-item::before {
  display: none;
}

/* sp
--------------------------------------------------------*/
@media screen and (max-width: 599px) {

  .trigger-wrap:before,
  .trigger-wrap:after {
    border-top: 1px solid #000;
    content: "";
    width: calc(50vw - 92px);
    /* 線の長さ */
  }

  .grad-item {
    margin: 20px 0 12px;
  }

  .grad-item.is-hide {
    height: 160px;
  }
}

/* question
*********************************************************/
.section-question {
  margin-top: 60px;
  margin-bottom: 60px;
}

.question-inner {
  margin-top: 12px;
}

.question-item {
  padding-bottom: 18px;
  border-bottom: 1px solid #d3d3d3;
}

.question-item+.question-item {
  margin-top: 18px;
}

.question-item:last-child {
  border-bottom: none;
}

.question-item .title {
  font-size: 17px;
  font-weight: bold;
  display: flex;
  align-items: flex-start;
}

.question-item .title .icon {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
}

.question-item .answer {
  margin-top: 12px;
}

.question-item .answer .icon {
  color: #30ae1c;
}

.question-item .answer-text {
  margin: 12px 0 0 36px;
}

.section-question .trigger-wrap {}

.section-question .trigger-wrap:before,
.section-question .trigger-wrap:after {
  width: 365px;
}

.section-question .grad-item {
  margin-top: 20px;
}

.section-question .grad-item.is-hide {
  height: auto;
}

/* sp
--------------------------------------------------------*/
@media screen and (max-width: 599px) {
  .section-question {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .question-item .title {
    font-size: 14px;
  }

  .question-item .title .icon {
    font-size: 20px;
  }

  .question-item .answer-text {
    margin: 12px 0 0;
  }

  .section-question .trigger-wrap {
    bottom: -19px;
  }

  .section-question .trigger-wrap:before,
  .section-question .trigger-wrap:after {
    width: calc(50vw - 92px);
  }
}

/* swiper
*********************************************************/
.swiper-custom-parent {
  margin: 0 12px;
  position: relative;
}

.swiper-container .swiper-slide {
  left: 1px;
  display: flex;
  justify-content: center;
}

.swiper-container .swiper-slide img {
  object-fit: contain;
}

.swiper-container .swiper-slide a {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  width: 277px;
  color: #000;
  text-decoration: none;
}

.swiper-custom-parent .swiper-button-next,
.swiper-custom-parent .swiper-button-prev {
  background: #000;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.swiper-custom-parent .swiper-button-next {
  right: -12px;
}

.swiper-custom-parent .swiper-button-prev {
  left: -12px;
}

.swiper-custom-parent .swiper-button-next::before,
.swiper-custom-parent .swiper-button-prev::before {
  position: absolute;
  content: "";
  background: url(/_img/service/next-arrow.png) no-repeat;
  background-size: contain;
  width: 13px;
  height: 21px;
  top: 9px;
  left: 10px;
}

.swiper-custom-parent .swiper-button-prev::before {
  background: url(/_img/service/prev-arrow.png) no-repeat;
}

.swiper-custom-parent .swiper-button-next::before {
  top: 9px;
  left: 12px;
}

.company-swiper-container .swiper-slide {
  background-color: #000;
}

/* sp
--------------------------------------------------------*/
@media screen and (max-width: 599px) {
  .swiper-custom-parent {
    margin: 56px 12px 0;
  }

  .swiper-container .swiper-slide {
    left: 0;
  }

  .swiper-custom-parent .swiper-button-next {
    right: 0;
    top: -23px;
  }

  .swiper-custom-parent .swiper-button-prev {
    top: -23px;
    right: 56px;
    left: auto;
  }

  .swiper-container .swiper-slide a {
    width: 100%;
    height: calc(100vw * 0.75 - 53px);
  }
}

/* other
*********************************************************/
.section-other .com-title {
  border-bottom: none;
  margin-left: 14px;
  padding: 15px 0;
}

.section-other.com-box {
  margin-top: 40px;
  padding: 16px 0 12px;
}

.section-other .swiper-container .swiper-slide .other-image {
  width: 277px;
  height: 210px;
  background: #000;
  display: flex;
  align-items: center;
}

.section-other .swiper-container .swiper-slide .other-image img {
  object-fit: contain;
  width: 277px;
  height: 210px;
}

.section-other .swiper-container .swiper-slide .other-title {
  font-size: 16px;
  font-weight: bold;
  display: block;
  padding: 18px 20px 12px;
}

/* sp
--------------------------------------------------------*/
@media screen and (max-width: 599px) {
  .section-other .com-title {
    border-bottom: 1px solid #d8d8d8;
  }

  .section-other .swiper-container .swiper-slide .other-image {
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
  }

  .section-other .swiper-container .swiper-slide .other-image img {
    height: 100%;
  }
}

/* seminar
*********************************************************/
.section-seminar {
  margin-top: 40px;
}

.section-seminar .swiper-custom-parent {}

.section-seminar .swiper-container .swiper-slide a {
  padding: 20px 12px 12px;
  border: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
  margin: 6px 0;
}

.section-seminar .swiper-container .header {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 20px;
  border-bottom: 1px solid #c4c4c4;
}

.section-seminar .swiper-container .year {
  display: block;
}

.section-seminar .swiper-container .date {
  font-size: 44px;
}

.section-seminar .swiper-container .week {
  display: inline-block;
}

.section-seminar .swiper-container .body {
  margin-top: 16px;
}

.section-seminar .swiper-container .target-list {
  display: flex;
  flex-wrap: wrap;
}

.section-seminar .swiper-container .target-item {
  padding: 6px 9px;
  margin: 0 4px 4px 0;
  background: #000;
  color: #fff;
  font-size: 12px;
}

.section-seminar .swiper-container .sub-title {
  font-size: 14px;
  font-weight: bold;
  display: block;
  margin-top: 12px;
}

.section-seminar .swiper-container .main-title {
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin-top: 4px;
}

.section-seminar .swiper-container .profile {
  display: flex;
  align-items: center;
  margin-top: 14px;
}

.section-seminar .swiper-container .profile-image {
  height: 92px;
  width: 92px;
  display: block;
  margin-right: 12px;
}

.section-seminar .swiper-container .profile-image img {
  object-fit: cover;
  border-radius: 50%;
}

.section-seminar .swiper-container .profile-text .name {
  font-size: 20px;
  font-weight: bold;
  display: block;
}

.section-seminar .swiper-container .profile-text .company,
.section-seminar .swiper-container .profile-text .position {
  font-size: 14px;
  color: #8b8b8b;
  display: block;
}

.section-seminar .swiper-container .footer {
  margin-top: 16px;
}

.section-seminar .swiper-container .seminar-table {
  font-size: 12px;
  font-weight: bold;
}

.section-seminar .swiper-container .seminar-table th {
  background: #f6f5f0;
  border-bottom: 1px solid #fff;
  width: 78px;
  vertical-align: middle;
  font-weight: bold;
  padding: 6px 8px;
}

.section-seminar .swiper-container .seminar-table td {
  padding: 6px 0 6px 6px;
}

/* sp
--------------------------------------------------------*/
@media screen and (max-width: 599px) {
  .section-seminar .swiper-container .swiper-slide a {
    height: 100%;
  }

  .section-seminar .swiper-custom-parent .swiper-button-prev,
  .section-seminar .swiper-custom-parent .swiper-button-next {
    top: -22px;
  }
}

/* article
*********************************************************/
.section-article {
  margin-top: 40px;
  margin-bottom: 60px;
}

.section-article .article-title {
  padding: 12px;
  font-size: 17px;
  font-weight: bold;
}

.section-article .article-image img {
  object-fit: cover;
  vertical-align: top;
  height: 180px;
  width: 275px;
}

/* sp
--------------------------------------------------------*/
@media screen and (max-width: 599px) {
  .section-article .swiper-container .swiper-slide a {
    height: 100%;
  }

  .section-article .swiper-custom-parent .swiper-button-prev,
  .section-article .swiper-custom-parent .swiper-button-next {
    top: -23px;
  }

  .section-article .article-image img {
    width: 100%;
    height: 100%;
  }
}

/* aside
*********************************************************/
.ly-aside {
  width: 260px;
  height: 100%;
  position: sticky;
  margin-bottom: 10px;
  top: 10px;
  z-index: 1;
}

.side-download {
  background: #f7f5f1;
  border-bottom: 1px solid #d8d8d8;
  padding: 12px;
}

.side-download .com-download-button {
  width: 236px;
  padding: 0 12px;
}

.side-nav {
  background: #f7f5f1;
  padding: 22px 0;
}

.side-nav .side-item {
  margin-top: 20px;
}

.side-nav .side-item:first-child {
  margin-top: 0;
}

.side-nav .side-item a {
  font-size: 17px;
  font-weight: bold;
  border-left: 8px solid #000;
  padding: 3px 24px 6px 16px;
  height: 30px;
  transition: 0.3s ease;
  text-decoration: none;
  display: inline-block;
  color: #000;
}

.side-nav .side-item a.current {
  background: #000;
  color: #fff;
}

.side-question {
  border: 2px solid #d8d8d8;
  padding: 20px 12px 12px;
  font-size: 14px;
  margin-top: 20px;
}

.side-question .title {
  font-weight: bold;
  display: block;
}

.side-question .text {
  display: block;
  margin-top: 8px;
}

.side-question .com-download-button {
  color: #000;
  font-size: 14px;
  margin-top: 12px;
  padding-left: 40px;
  width: 236px;
  position: relative;
}

.side-question .com-download-button::before {
  content: "";
  position: absolute;
  background: url(/_img/service/concierge.png) no-repeat;
  background-size: contain;
  width: 24px;
  height: 30px;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.side-question .com-download-button:hover::before {
  background: url(/_img/service/concierge_w.png) no-repeat;
}

/* sp
--------------------------------------------------------*/
@media screen and (max-width: 599px) {
  .ly-aside {
    display: none;
  }
}

/* select-box
*********************************************************/
.select-wrap {
  position: relative;
}

.select-box {
  width: 145px !important;
  position: relative;
  font-size: 13px;
  font-weight: bold;
  border: 1px solid #cbcbcb;
  padding: 3px 5px 3px 18px;
  border-radius: 4px;
}

.select-box option {
  background: #424242;
  color: #fff;
}

.select-wrap::before {
  position: absolute;
  content: "";
  background: url(/_img/service/arrow.png) no-repeat;
  background-size: contain;
  height: 10px;
  width: 10px;
  left: 5px;
  top: 52%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 1;
}

/* section-sp-menu
*********************************************************/
.section-sp-menu {
  display: none;
}

.sp-menu-nav {
  display: none;
}

@media screen and (max-width: 599px) {
  .section-sp-menu {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px;
    z-index: 10;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
  }

  .sp-menu-select {
    display: flex;
    align-items: center;
  }

  .sp-menu-select .text {
    font-weight: bold;
    padding-left: 8px;
  }

  .section-sp-menu .sp-menu-button {
    margin-top: 8px;
    display: flex;
  }

  .section-sp-menu .com-download-button {
    height: 40px;
    justify-content: center;
  }

  .section-sp-menu .com-download-button.red {
    width: calc(100% - 66px);
  }

  .section-sp-menu .com-download-button.white {
    width: 54px;
    margin-left: 12px;
    padding: 0 5px;
  }

  .sp-menu-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 0 16px;
    z-index: 999999998;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 0 8px rgb(0 0 0 / 25%);
  }

  .sp-menu-nav .sp-menu-item a {
    border-bottom: 1px dashed #d8d8d8;
    padding: 8px 0;
    font-size: 17px;
    display: block;
    font-weight: bold;
    text-decoration: none;
    width: 100%;
  }

  .sp-menu-nav .sp-menu-close {
    position: absolute;
    top: 5px;
    right: 3px;
    font-size: 40px;
    background: none;
    border: none;
    height: 30px;
    width: 36px;
    line-height: 0.1;
  }
}

/* modal
*********************************************************/
.modal__overlay {
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99999999;
}

.modal__container {
  background-color: #fff;
  max-height: 80vh;
  max-width: 650px;
  padding: 20px 20px 26px 20px;
  width: 100%;
  margin: 0 auto;
}

.modal__header {
  position: relative;
}

.modal__header .modal__title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

.modal__close {
  border: 0;
  height: 40px;
  width: 40px;
  border-radius: 20px;
  background: #a04023;
  position: absolute;
  top: -70px;
  right: -70px;
  z-index: 10;
}

.modal__header .modal__close::before {
  content: "\2715";
  color: #fff;
  font-size: 20px;
}

.modal__content {
  line-height: 1.5;
  margin: 20px 0 0;
  font-size: 16px;
}

.modal__open {
  display: block;
  margin: 100px auto;
}

[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut 0.2s;
  transition: all 0.2s;
}

/* モーダルアニメーション */
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 0;
  }

  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translate(0);
  }

  to {
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block !important;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn 0.2s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn 0.2s cubic-bezier(0, 0, 0.2, 1);
  border-radius: 4px;
  border-top: 12px solid #9b4633;
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {}

.micromodal-slide[aria-hidden="true"] .modal__container,
.micromodal-slide[aria-hidden="true"] .modal_reload_wrap {
  animation: mmfadeOut 0.2s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.modal_content-list {
  margin-top: 15px;
}

.modal_content-list .modal_content-item {
  margin-left: 15px;
  position: relative;
}

.modal_content-list .modal_content-item::before {
  position: absolute;
  content: "・";
  left: -15px;
}

.modal_content-remarks {
  font-size: 14px;
  text-align: center;
  color: #494949;
  margin: 20px 0;
}

.modal_button-area {
  display: flex;
  justify-content: space-between;
}

.modal_button-area .modal_button {
  height: 70px;
  width: 291px;
  border: 2px solid #a04023;
  box-sizing: border-box;
  border-radius: 4px;
  color: #a04023;
  text-align: center;
  text-decoration: none;
  transition: color 0.2s, background-color 0.2s;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.modal_button-area .modal_button:hover,
.modal_button-area .modal_button.brown:hover {
  opacity: 0.8;
}

.modal_button-area .modal_button.brown {
  color: #fff;
  background-color: #9b4633;
}

.modal_button-area .modal_button .large {
  font-size: 20px;
  font-weight: bold;
}

.modal_button-area .sp {
  display: none;
}

/* sp
--------------------------------------------------------*/
@media screen and (max-width: 599px) {
  .modal__container {
    padding: 12px;
    width: 90%;
  }

  .modal__close {
    top: -40px;
    right: -32px;
  }

  .modal__header .modal__title {
    font-size: 20px;
  }

  .modal__content {
    font-size: 14px;
  }

  .modal_content-remarks {
    font-size: 12px 12px 26px 12px;
    text-align: left;
  }

  .modal_button-area {
    align-items: center;
  }

  .modal_button-area .modal_button {
    max-width: 48%;
    width: 100%;
    font-size: 11px;
    height: 65px;
  }

  .modal_button-area .modal_button .large {
    font-size: 11px;
  }

  .modal_button-area .sp {
    display: block;
  }
}