@charset "utf-8";

/*
  File Name   : concept.css
  Description : コンテンツエリア関係 他
*/

/* hoge
============================================================ */
.hoge {
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .hoge {
  }
}

/* other-wrap-A
============================================================ */
.other-wrap-A {
  margin-top: 80px;
  padding: 40px 40px;
  border-radius: 16px;
  background-color: #f1ebe8;
}
.other-wrap-A ul {
  display: flex;
  flex-wrap: wrap;
}
.other-wrap-A li {
  width: 50%;
  padding: 40px 40px;
  background-color: #fff;
  border-bottom: solid 1px #dcd5d0;
  border-right: solid 1px #dcd5d0;
}
.other-wrap-A li:nth-child(1) {
  border-radius: 12px 0 0 0;
}
.other-wrap-A li:nth-child(2) {
  border-radius: 0 12px 0 0;
}
.other-wrap-A li:nth-child(3) {
  border-radius: 0 0 0 12px;
}
.other-wrap-A li:nth-child(4) {
  border-radius: 0 0 12px 0;
}
.other-wrap-A li:nth-child(2),
.other-wrap-A li:nth-child(4) {
  border-right: none;
}
.other-wrap-A li:nth-child(n + 3) {
  border-bottom: none;
}

.other-wrap-A li .title {
  font-size: 20px;
  font-weight: bold;
  padding-left: 56px;
  position: relative;
}
.other-wrap-A li .title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: url(../img/concept/icon-other-A.svg) 0 0 no-repeat;
  background-size: 40px;
}
.other-wrap-A li .text {
  margin-top: 23px;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .other-wrap-A {
    margin-top: 60px;
    padding: 25px 25px;
  }
  .other-wrap-A ul {
    display: block;
  }
  .other-wrap-A li {
    width: 100%;
    padding: 25px 25px;
    border-bottom: solid 1px #dcd5d0;
    border-right: none;
  }
  .other-wrap-A li:nth-child(1) {
    border-radius: 12px 12px 0 0;
  }
  .other-wrap-A li:nth-child(2) {
    border-radius: 0 0 0 0;
  }
  .other-wrap-A li:nth-child(3) {
    border-radius: 0 0 0 0;
  }
  .other-wrap-A li:nth-child(4) {
    border-radius: 0 0 12px 12px;
  }
  .other-wrap-A li:nth-child(2),
  .other-wrap-A li:nth-child(4) {
    border-right: none;
  }
  .other-wrap-A li:nth-child(n + 3) {
    border-bottom: solid 1px #dcd5d0;
  }
  .other-wrap-A li:last-child {
    border-bottom: none;
  }
}

/* other-wrap-B
============================================================ */
.other-wrap-B {
  margin-top: 80px;
  padding: 40px 40px;
  border-radius: 16px;
  background-color: #f1ebe8;
}

.other-wrap-B-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 32px;
}

.other-wrap-B ul {
  background-color: #fff;
  border-radius: 12px;
}
.other-wrap-B li {
  display: flex;
  border-bottom: solid 1px #dcd5d0;
}
.other-wrap-B li:last-child {
  border-bottom: none;
}
.other-wrap-B li .title-wrap {
  width: 225px;
  padding: 24px 40px;
  position: relative;
}
.other-wrap-B li .title-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 29px;
  background-color: #dcd5d0;
}
.other-wrap-B li .text-wrap {
  width: calc(100% - 225px);
  padding: 24px 40px;
  position: relative;
}

.other-wrap-B li .title-wrap .title {
  font-weight: bold;
  padding-left: 47px;
  position: relative;
}
.other-wrap-B li .title-wrap .icon {
  position: absolute;
  top: -2px;
  left: 0;
  width: 29px;
  height: 29px;
}

.other-wrap-B li .text-wrap .bg {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  color: #fff;
  background-color: #e87634;
  border-radius: 50px;
  margin-right: 15px;
  min-width: 100px;
  padding: 7px 10px;
  display: inline-block;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .other-wrap-B {
    margin-top: 60px;
    padding: 25px 25px;
  }

  .other-wrap-B-title {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .other-wrap-B li {
    display: block;
    border-bottom: solid 1px #dcd5d0;
  }
  .other-wrap-B li:last-child {
    border-bottom: none;
  }
  .other-wrap-B li .title-wrap {
    width: 100%;
    padding: 24px 25px 15px;
    margin: 0 auto;
    display: inline-block;
  }
  .other-wrap-B li .title-wrap::after {
    content: "";
    position: absolute;
    top: auto;
    right: auto;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 32px;
    height: 2px;
  }
  .other-wrap-B li .text-wrap {
    width: 100%;
    padding: 15px 24px 25px;
  }

  .other-wrap-B li .title-wrap .title {
    font-weight: bold;
    padding-left: 40px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 105px;
  }
  .other-wrap-B li .title-wrap .icon {
    position: absolute;
    top: -2px;
    left: 0;
    width: 30px;
    height: 30px;
  }

  .other-wrap-B li .text-wrap .bg {
    margin-right: 0;
    min-width: 100px;
    padding: 7px 10px;
    display: block;
    margin-bottom: 5px;
  }
}

/* hoge
============================================================ */
.hoge {
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .hoge {
  }
}


