@charset "utf-8";

/* === PARTS === */
figure img {
  display: block;
  margin: 0 auto;
}
.btnBox a {
  transition: opacity 0.3s ease;
}
.icn__01::before {
  color: #23943B;
}
@media screen and (min-width: 768px){
  .fBox {
    display: flex;
    column-gap: 24px;
  }
  .text--large {
    font-size: 1.2rem;
  }
}
@media not all and (min-width: 768px){
  .text--large {
    font-size: 1rem;
  }
}

/* === #outline === */
.outline__title {
  position: relative;
  font-size: 1.4rem;
  text-align: center;
  padding-bottom: 8px;
}
.outline__title::before {
  content: "";
  height: 2px;
  background-image: linear-gradient(90deg, #8cc120, #66a557);
  width: 300px;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}
.outline__point {
  color: #23943B;
  font-size: 1rem;
  font-weight: bold;
}
.outline__desc {
  margin-top: 8px;
  padding: 8px;
}
@media not all and (min-width: 768px){
  .outline__title {
    font-size: 1rem;
  }
  .outline__title::before {
    height: 1px;
    width: 200px;
  }
  .outline__point {
    font-size: .8rem;
  }
}

/* === table === */
table th,
table td {
  font-weight: normal;
  border: 2px solid #d1d1d1;
  vertical-align: middle;
}
table th {
  color: #231815;
  text-align: left;
  background-color: #F1F6D9;
}
@media screen and (min-width: 768px){
  table th,
  table td {
    padding: 12px;
  }
  table th {
    width: 25%;
  }
  table td {
    width: 75%;
  }
}
@media not all and (min-width: 768px){
  table th,
  table td {
    padding: 8px;
  }
  table th {
    width: 25%;
  }
  table td {
    width: 75%;
  }
}

/* === .page__head (#mv) === */
.page__head .container__under02 {
  height: auto;
}
.page__head .page__head_inner h1 img {
  display: block;
}
@media not all and (min-width: 768px) {
  .page__head .container__under02 {
    padding: 0;
  }
}

/* === #scheme === */
@media screen and (min-width: 768px) {
  #scheme figure,
  #scheme p {
    margin-bottom: 24px;
  }
  #scheme .btnBox {
    width: 480px;
    margin: 0 auto;
  }
}
@media not all and (min-width: 768px) {
  #scheme figure,
  #scheme p {
    margin-bottom: 12px;
  }
}

/* === process === */
.process {
  display: flex;
  flex-direction: row;
  justify-self: center;
}
.process__item {
  display: flex;
  flex-direction: column;
  margin-right: 40px;
  position: relative;
}
.process__item::after {
  content: "▶";
  position: absolute;
  right: -31px;
  top: 57%;
  color: #fff;
  background-image: linear-gradient(90deg, #8cc120, #66a557);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 4px;
}
.process__item:last-child {
  margin-right: 0;
}
.process__item:last-child::after {
  content: none;
}
.process__step {
  color: #23943B;
  font-size: 1.5rem;
  text-align: center;
  vertical-align: middle;
  padding: 8px;
  font-weight: bold;
}
.process__name {
  background-color: #66A557;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.2rem;
  width: 80px;
  height: 200px;
  text-align: center;
  align-content: center;
  line-height: 1.2;
}
@media not all and (min-width: 768px) {
  .process {
    flex-direction: column;
    margin-top: 18px;
  }
  .process__item {
    flex-direction: row;
    margin-right: 20px;
    margin-bottom: 30px;
  }
  .process__step {
    font-size: 1.2rem;
    padding: 6px 8px;
  }
  .process__name {
    writing-mode: horizontal-tb;
    font-size: .8rem;
    width: 240px;
    height: 46px;
  }
  .process__item::after {
    content: "▼";
    bottom: -28px;
    left: 50%;
    padding-left: 0;
    top: unset;
    right: unset;
    padding-top: 1px;
  }
}

/* === #achievements === */
#achievements .achievementsInfo dl {
  border-bottom: 1px dotted #000;
}
#achievements .achievementsInfo dl dd a {
  color: #1c5692;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
#achievements .achievementsInfo dl dd a::before {
  content: "";
  background: url("/assets/img/common/arrow03_red.png") no-repeat 0 0 / 100% 100%;
  display: block;
  position: absolute;
  left: 0;
}
@media screen and (min-width: 768px) {
  #achievements .achievementsInfo dl {
    display: -webkit-box;
    display: flex;
    padding: 12px;
  }
  #achievements .achievementsInfo dl:first-child {
    padding-top: 0;
  }
  #achievements .achievementsInfo dl dt {
    width: 160px;
  }
  #achievements .achievementsInfo dl dd {
    margin-left: 20px;
    flex: 1;
  }
  #achievements .achievementsInfo dl dd a {
    padding: 0 0 0 20px;
    transition: opacity 0.3s ease;
  }
  #achievements .achievementsInfo dl dd a:hover {
    opacity: 0.7;
  }
  #achievements .achievementsInfo dl dd a::before {
    width: 6px;
    height: 8px;
    top: 8px;
  }
}
@media not all and (min-width: 768px) {
  #achievements .achievementsInfo dl {
    padding: 8px 0;
  }
  #achievements .achievementsInfo dl:first-child {
    padding-top: 0;
  }
  #achievements .achievementsInfo dl dd a {
    padding: 0 0 0 10px;
  }
  #achievements .achievementsInfo dl dd a::before {
    width: 6px;
    height: 7px;
    top: 6px;
  }
}

/* === #contact === */
.contact .box ul {
  -webkit-box-pack: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .contact .box {
    width: 50%;
    margin: 0 auto;
  }
  .contact .box ul li {
    width: 340px;
    height: auto;
  }
}
