@charset "utf-8";
/*-------------------------------------*/
/*	トップページ	*/
/*-------------------------------------*/
/* メインビジュアル */
#mv {
  position: relative;
}
.main_img > div {
  width: 100%;
  height: calc(100vh - 100px);
  background-size: cover;
  background-position: center;
}
#mv h2 {
  font-size: 4.0rem;
  position: absolute;
  right: 10%;
  top: 20%;
}
#mv h2 span {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: relative;
  letter-spacing: 0.4em;
}
#mv h2 span::before {
  content: "";
  width: 1px;
  height: 520px;
  background-color: #FFFFFF;
  position: absolute;
  bottom: -550px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
/* dots */
#mv .slick-dots {
  bottom: 25px;
}
#mv .slick-dots li, #mv .slick-dots li button, #mv .slick-dots li button::before {
  width: 12px;
  height: 12px;
}
#mv .slick-dots li {
  margin: 0 7px;
}
#mv .slick-dots li button {
  background-color: #fff;
  opacity: 1;
  border-radius: 100%;
}
#mv .slick-dots li.slick-active button {
  opacity: .5;
}
#mv .slick-dots li button::before {
  content: '';
}
@media screen and (max-width: 768px) {
  .main_img > div {
    width: 100%;
    height: calc(62dvh - 100px);
    background-size: cover;
    background-position: center;
  }
  #mv h2 {
    font-size: 2.0rem;
    position: absolute;
    right: 20%;
    top: 30%;
  }
  #mv h2 span::before {
    content: "";
    width: 1px;
    height: 150px;
    background-color: #FFFFFF;
    position: absolute;
    bottom: -155px;
  }
}
/* about */
#about .inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  max-width: 1140px;
  padding: 0 15px;
  margin: 0 auto 60px auto;
  align-items: center;
}
#about .txt h2 {
  font-size: 5.0rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
#about .txt p {
  font-size: 1.8rem;
  line-height: 2;
}
#about .inner .txt {
  width: 35%;
}
#about .inner .img {
  width: 60%;
}
#about .txt.about02 {
  text-align: center;
}
@media screen and (max-width: 1140px) {
  #about .container {
    padding: 0;
  }
  #about .inner {
    flex-direction: column;
    padding: 0;
    margin: 0 auto 60px auto;
  }
  #about .inner .img {
    width: 100%;
  }
  #about .inner .txt {
    margin-bottom: 30px;
    width: 80%;
  }
  #about .txt {
    max-width: 800px;
    width: 80%;
    margin: 0 auto;
    padding: 0 15px;
  }
  #about .txt.about02 {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  #about .txt h2 {
    font-size: 3.2rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  #about .txt p {
    font-size: 1.4rem;
  }
}
/* works */
.item_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 40px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}
.item_list .item_box {
  width: calc(100% / 2 - 40px);
}
.item_list .item_box img {
  margin-bottom: -50px;
  position: relative;
  width: 100%;
}
.item_list .item_box .txt {
  background-color: #FFFFFF;
  color: #000000;
  padding: 40px;
  width: 90%;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}
.item_list .item_box .txt h3 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
.item_list .item_box .txt h3 span {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.item_list .item_box .txt p {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 1140px) {
  .item_list {
    flex-direction: column;
    gap: 40px 40px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
  }
  .item_list .item_box {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 550px) {
  .item_list .item_box img {
    width: 85%;
    display: block;
  }
  .item_list .item_box:nth-of-type(even) img {
    margin: 0 0 -50px auto;
  }
  .item_list .item_box .txt {
    padding: 25px;
  }
  .item_list .item_box .txt h3 {
    font-size: 1.8rem;
  }
  .item_list .item_box .txt h3 span {
    font-size: 1.2rem;
  }
  .item_list .item_box .txt p {
    font-size: 1.2rem;
  }
}
/* THOUGHT */
#thought {
  background-color: #EFEDED;
  padding: 140px 0 40px 0;
  position: relative;
  color: #4B4B4B;
}
#thought::before {
  content: "";
  width: 100%;
  height: 70px;
  background-image: url(../images/index/triangle_g.svg);
  background-position: center top;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
#thought dl {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  position: relative;
}
#thought dl dt {
  width: 60%;
}
#thought dl dd {
  width: 36%;
}
#thought dl dd h3 {
  font-size: 3.0rem;
  margin-bottom: 20px;
  line-height: 1.5;
}
#thought dl dd p {
  font-size: 1.8rem;
  line-height: 2;
}
.thought02, .thought04 {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1140px) {
  #thought .container {
    padding: 0;
  }
  #thought dl {
    margin-bottom: 40px;
  }
  .thought01, .thought02, .thought04 {
    flex-direction: column;
  }
  .thought01 dd, .thought02 dd, .thought04 dd {
    padding-bottom: 40px;
    border-bottom: 1px solid #707070;
  }
  .thought03, .thought05 {
    flex-direction: column-reverse;
  }
  .thought03 {
    padding-bottom: 40px;
  }
  .thought03::before {
    content: "";
    width: 85%;
    height: 1px;
    background-color: #707070;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .thought03 dd, .thought05 dd {
    padding-bottom: 20px;
  }
  #thought dl dt {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    padding: 0 15px;
  }
  #thought dl dd {
    width: 85%;
    margin: 0 0 0 auto;
    padding-right: 50px;
  }
}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 550px) {
  #thought dl dd h3 {
    font-size: 2.2rem;
  }
  #thought dl dd p {
    font-size: 1.2rem;
  }
}
/* CTA */
.cta {
  position: relative;
  padding-top: 60px;
}
.cta::before {
  content: "";
  width: 100%;
  height: 70px;
  background-image: url(../images/index/triangle_b.svg);
  background-position: center top;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.cta_box {
  background-color: #FFFFFF;
  color: #4B4B4B;
  border-radius: 15px;
  max-width: 800px;
  margin: 0 auto;
}
.cta_box .inner {
  padding: 40px 40px;
}
.cta_box .inner h2 {
  text-align: center;
  border-bottom: 1px solid #4B4B4B;
  padding-bottom: 10px;
  font-size: 3.0rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
.cta_box .inner h3 {
  text-align: center;
  font-size: 2.0rem;
  line-height: 1.5;
}
.cta_box .inner p.txt {
  font-size: 1.6rem;
  line-height: 2;
}
.cta_box .inner p {
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 20px;
}
.cta_box .inner p:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 550px) {
  .cta_box .inner h2 {
    font-size: 2.2rem;
  }
  .cta_box .inner h3 {
    font-size: 1.4rem;
  }
  .cta_box .inner p.txt {
    font-size: 1.2rem;
    line-height: 2;
  }
  .cta_box .inner p {
    font-size: 1.4rem;
    line-height: 2;
    margin-bottom: 20px;
  }
}
/* VOICE */
#voice dl dt {
  margin-bottom: 20px;
}
#voice dl dt h3 {
  font-size: 3.0rem;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.5;
}
#voice dl dt .star {
  font-size: 3.0rem;
  letter-spacing: 0.1em;
}
#voice dl dd {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #FFFFFF;
}
#voice dl dd:last-of-type {
  margin-bottom: 0;
}
#voice dl dd p {
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 1140px) {
  #voice dl {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 550px) {
  #voice dl dt h3 {
    font-size: 2.2rem;
  }
  #voice dl dt .star {
    font-size: 2.2rem;
  }
  #voice dl dd p {
    font-size: 1.6rem;
  }
}
/*-------------------------------------*/
/*	ページ共通	*/
/*-------------------------------------*/
.ttl {
  font-size: 1.8rem;
  line-height: 1.2;
  text-align: center;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.2em;
  margin-bottom: 50px;
}
.ttl span {
  font-size: 4.8rem;
  display: block;
  margin-bottom: 20px;
}
a .img_wrap {
  overflow: hidden;
  width: 100%;
}
a:hover .img_wrap img {
  transform: scale(1.1);
  transition-duration: 0.5s;
  opacity: 1;
}
/* ボタン　赤 */
a.bt_base {
  display: inline-block;
  color: #FC4747;
  background-color: #FFFFFF;
  position: relative;
  border-radius: 50px;
  padding: 0.5em 2.5em 0.5em 2.5em;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  max-width: 300px;
  width: 100%;
  text-align: center;
}
a.bt_base:hover {
  color: #fff;
  background: #FC4747;
}
a.bt_base::before {
  content: "\f0da";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  font-family: FontAwesome;
  font-size: 2.4rem;
}
/* ボタン　お問い合わせ */
a.bt_contact {
  display: inline-block;
  color: #EFEDED;
  background-color: #D20B17;
  border: 1px solid #D20B17;
  position: relative;
  border-radius: 50px;
  padding: 1.5em 2em 1.5em 2em;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  max-width: 350px;
  width: 100%;
  text-align: center;
}
a.bt_contact:hover {
  color: #D20B17;
  background: #EFEDED;
}
/*2列レイアウト*/
.col-2_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
  justify-content: space-between;
}
.col-2_list::after {
  content: "";
  display: block;
  max-width: 550px;
  width: calc(100% / 2 - 20px);
}
.col-2_list .col_box {
  max-width: 550px;
  width: calc(100% / 2 - 20px);
}
/*3列*/
.col-3_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
  justify-content: space-between;
}
.col-3_list::after {
  content: "";
  display: block;
  max-width: 350px;
  width: calc(100% / 3 - 20px);
}
.col-3_list .col_box {
  max-width: 350px;
  width: calc(100% / 3 - 20px);
}
/*4列*/
.col-4_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
  justify-content: space-between;
}
.col-4_list::after {
  content: "";
  display: block;
  width: calc(100% / 4 - 20px);
}
.col-4_list::before {
  content: "";
  display: block;
  width: calc(100% / 4 - 20px);
  order: 1;
}
.col-4_list .col_box {
  width: calc(100% / 4 - 20px);
}
@media screen and (max-width: 991px) {}
@media screen and (max-width: 768px) {
  /*2列レイアウト*/
  .col-2_list {
    flex-direction: column;
  }
  .col-2_list .col_box {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  /*3列*/
  .col-3_list {
    gap: 10px 10px;
    flex-direction: column;
  }
  .col-3_list .col_box {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 550px) {
  .ttl {
    font-size: 1.4rem;
  }
  .ttl span {
    font-size: 2.6rem;
  }
  a.bt_base {
    padding: 0.5em 2em 0.5em 2em;
    font-size: 1.6rem;
  }
  a.bt_base::before {
    font-size: 2.0rem;
  }
  a.bt_contact {
    font-size: 1.4rem;
  }
  /*4列*/
  .col-4_list {
    gap: 20px 10px;
  }
  .col-4_list .col_box {
    width: calc(100% / 2 - 10px);
  }
}