@charset "UTF-8";

/* 共通タイトル
***************************************************************/
.topCommonGroupTitle-en,
.topCommonGroupTitle-jp {
  transition: color 0.4s;
}
.topCommonGroupTitle-en {
  font-size: 55px;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--c-main);
}
.topCommonGroupTitle-en.white {
  color: #fff;
}
.topCommonGroupTitle-jp {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: var(--c-text);
}
.topCommonGroupTitle-jp.black {
  color: var(--c-bg);
}
.topCommonGroupTitle-en + .topCommonGroupTitle-jp {
  margin-top: 14px;
}

body.c-gray .topCommonGroupTitle-jp {
  color: var(--c-text);
}

body.c-white .topCommonGroupTitle-en {
  color: var(--c-main);
}
body.c-white .topCommonGroupTitle-jp {
  color: var(--c-bg);
}

@media all and (max-width: 680px) {
  .topCommonGroupTitle-en {
    font-size: 30px;
  }
  .topCommonGroupTitle-jp {
    font-size: 15px;
  }
  .topCommonGroupTitle-en + .topCommonGroupTitle-jp {
    margin-top: 5px;
  }
}
/* 共通タイトル
***************************************************************/

/* 共通コンテンツ
***************************************************************/
.topComonColumnBox {
  display: flex;
}
.topComonColumnBox .topComonColumnTitleBox {
  width: 370px;
}
.topComonColumnBox .topComonColumnContBox {
  width: calc(100% - 370px);
}
.topComonColumnCont {
  display: flex;
  gap: 44px;
}
.topComonColumnCont .topComonColumnContImg {
  width: 420px;
}
.topComonColumnCont .topComonColumnContTextBox {
  width: calc(100% - 420px - 44px);
  position: relative;
}
.topComonColumnCont .topComonColumnContTitle,
.topComonColumnCont .topComonColumnContText,
.topComonColumnCont .topComonColumnContBtn {
  transition: color 0.4s;
}
.topComonColumnCont .topComonColumnContTitle {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 34px;
  font-weight: 400;
  margin-top: -9px;
}
.topComonColumnCont .topComonColumnContText {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 30px;
  font-weight: 500;
  margin-top: 7px;
}
.topComonColumnCont .topComonColumnContBtn {
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  right: 0;
  bottom: 0;
  color: var(--c-text);
}
.topComonColumnCont .topComonColumnContBtn .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 200px;
  background: var(--c-main);
  position: relative;
}
.topComonColumnCont .topComonColumnContBtn .arrow .icon {
  display: block;
  width: 7px;
  height: 6px;
  background: url(../../img/group/common/icon_arrow_w.svg)no-repeat center / contain;
}
.topComonColumnCont .topComonColumnContBtn .text {
  font-size: 10px;
  letter-spacing: 0.1em;
}

body.c-gray .topComonColumnCont .topComonColumnContTitle,
body.c-gray .topComonColumnCont .topComonColumnContText,
body.c-gray .topComonColumnCont .topComonColumnContBtn {
  color: var(--c-text);
}

body.c-white .topComonColumnCont .topComonColumnContTitle,
body.c-white .topComonColumnCont .topComonColumnContText,
body.c-white .topComonColumnCont .topComonColumnContBtn {
  color: var(--c-bg);
}

@media all and (min-width: 681px) {
  .topComonColumnCont .topComonColumnContBtn {
    height: 28px;
  }
  .topComonColumnCont .topComonColumnContBtn .arrow {
    justify-content: flex-start;
    position: absolute;
    left: 0;
    top: 0;
    transition: width 0.4s;
    z-index: -1;
  }
  .topComonColumnCont .topComonColumnContBtn .arrow .icon {
    margin-left: calc((28px - 7px)/2);
  }
  .topComonColumnCont .topComonColumnContBtn .text {
    padding: 0 12px 1px 34px;
    transition: color 0.4s;
  }

  .topComonColumnCont .topComonColumnContBtn:hover .arrow {
    width: 100%;
  }
  .topComonColumnCont .topComonColumnContBtn:hover .text {
    color: var(--c-text);
  }
}

@media all and (max-width: 680px) {
  .topComonColumnBox {
    display: block;
  }
  .topComonColumnBox .topComonColumnTitleBox {
    width: 100%;
  }
  .topComonColumnBox .topComonColumnContBox {
    width: 100%;
    margin-top: 58px;
  }
  .topComonColumnCont {
    display: block;
  }
  .topComonColumnCont .topComonColumnContImg {
    width: 100%;
  }
  .topComonColumnCont .topComonColumnContTextBox {
    width: 100%;
    margin-top: 26px;
  }
  .topComonColumnCont .topComonColumnContTitle {
    line-height: 1.889;
    margin-top: 0;
  }
  .topComonColumnCont .topComonColumnContText {
    letter-spacing: 0;
    line-height: 2.143;
  }
  .topComonColumnCont .topComonColumnContBtn {
    display: inline-flex;
    margin-top: 18px;
    position: relative;
  }
}
/* 共通コンテンツ
***************************************************************/

/* FVアニメーション用のリセット
***************************************************************/
body {
  animation: none;
}
/* FVアニメーション用のリセット
***************************************************************/

/* FV
***************************************************************/
.fv {
  overflow: hidden;
  height: calc(100vh - (80px + 30px));
  margin: 80px 30px 0;
}
.fv_imgBox {
  height: 100%;
  position: relative;
}
.fv_copy {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  font-size: 55px;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  z-index: 2;
}
.fv_imgBox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #7E7E7E;
  opacity: 0.65;
  mix-blend-mode: multiply;
  z-index: 1;
}
.fv_img {
  height: 100%;
  position: relative;
  z-index: 0;
}
.fv_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv.anime .fv_copy {
  opacity: 0;
  filter: blur(10px);
  transition: 6s opacity,6s filter;
}
.fv.anime .fv_imgBox::before {
  opacity: 0;
  transition: 6s opacity;
}
.fv.anime .fv_img {
  transform: scale(1.1);
  filter: blur(10px);
  transition: 6s transform,3s filter;
}
.fv.action .fv_copy {
  opacity: 1;
  filter: blur(0);
}
.fv.action .fv_imgBox::before {
  opacity: 0.65;
}
.fv.action .fv_img {
  transform: scale(1);
  filter: blur(0);
}
@media all and (max-width: 680px) {
  .fv {
    height: calc(100lvh - (70px + 20px));
    margin: 70px 20px 0;
  }
  .fv_copy {
    display: flex;
    justify-content: center;
    font-size: 42px;
    line-height: 1.4287;
    text-align: left;
  }
}
/* FV
***************************************************************/

/* 事業紹介
***************************************************************/
.secOurService {
  padding-top: 200px;
  overflow: hidden;
}
.secOurService .inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}
.secOurServiceCont {
  margin-top: 115px;
}
.secOurServiceItem {
  display: flex;
}
.secOurServiceItem .secOurServiceTextBox {
  display: flex;
  flex-direction: column;
}
.secOurServiceItem .secOurServiceTitle-en {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1;
}
.secOurServiceItem .secOurServiceTitle-jp {
  font-size: 29px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  font-weight: 400;
  white-space: nowrap;
}
.secOurServiceItem .secOurServiceTitle-en + .secOurServiceTitle-jp {
  margin-top: 12px;
}
.secOurServiceItem .secOurServiceText {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 28px;
  margin-top: 33px;
}
.secOurServiceItem .secOurServiceBtn {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 276px;
  margin-top: auto;
  padding-bottom: 13px;
  line-height: 1;
  position: relative;
}
.secOurServiceItem .secOurServiceBtn::before {
  content: "";
  position: absolute;
  left: -1%;
  bottom: 0;
  width: 101%;
  height: 10px;
  border-right: 1px solid var(--c-text);
  border-bottom: 1px solid var(--c-text);
  transform: skewX(35deg);
}
.secOurServiceItem .secOurServiceBtn .btnText {
  font-size: 16px;
  color: var(--c-text);
}
.secOurServiceItem .secOurServiceImgBox {
  width: 740px;
  position: relative;
}
.secOurServiceItem .secOurServiceImgBox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../../img/group/top/amiami.webp)repeat left / contain;
  z-index: 1;
}

.secOurServiceItem.sml .secOurServiceImgBox {
  width: 514px;
  margin: 0;
}
.secOurServiceItem.sml .secOurServiceTitle-jp {
  font-size: 20px;
}
.secOurServiceItem:nth-child(2n+1).sml .secOurServiceImgBox {
  margin-right: 0;
}
.secOurServiceItem:nth-child(2n).sml .secOurServiceImgBox {
  margin-left: 0;
}
.secOurServiceItem:nth-child(2n+1).sml .secOurServiceTextBox {
  padding-right: 42px;
}
.secOurServiceItem:nth-child(2n).sml .secOurServiceTextBox {
  padding-left: 42px;
}

.secOurServiceItem + .secOurServiceItem {
  margin-top: 160px;
}
.secOurServiceItem:nth-child(2n+1) {
  justify-content: flex-end;
}
.secOurServiceItem:nth-child(2n+1) .secOurServiceImgBox {
  margin-right: -89px;
}
.secOurServiceItem:nth-child(2n+1) .secOurServiceTextBox {
  padding-right: 72px;
}
.secOurServiceItem:nth-child(2n) {
  justify-content: flex-start;
  flex-direction: row-reverse;
}
.secOurServiceItem:nth-child(2n) .secOurServiceImgBox {
  margin-left: -89px;
}
.secOurServiceItem:nth-child(2n) .secOurServiceTextBox {
  padding-left: 72px;
}

@media all and (min-width: 681px) {
  .secOurServiceItem .secOurServiceBtn:hover {
    opacity: 0.7;
  }
  .secOurServiceItem .secOurServiceBtn::before {
    transition: width 0.4s;
  }
  .secOurServiceItem .secOurServiceBtn:hover::before {
    width: 106%;
  }
}

@media all and (max-width: 680px) {
  .secOurService {
    padding-top: 70px;
  }
  .secOurService .inner {
    padding: 0 30px;
  }
  .secOurServiceCont {
    margin-top: 70px;
  }
  .secOurServiceItem {
    display: block;
  }
  .secOurServiceItem .secOurServiceTextBox {
    display: block;
  }
  .secOurServiceItem .secOurServiceTitle-jp {
    font-size: 22px;
  }
  .secOurServiceItem .secOurServiceTitle-en + .secOurServiceTitle-jp {
    margin-top: 18px;
  }
  .secOurServiceItem .secOurServiceText {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 35px;
  }
  .secOurServiceItem .secOurServiceBtn {
    gap: 11px;
    width: 87.62%;
    margin: 35px auto 0;
    padding-bottom: 10px;
  }
  .secOurServiceItem .secOurServiceImgBox {
    width: calc(100% - 10px);
    margin: 45px auto 0;
  }
  
  .secOurServiceItem.sml .secOurServiceImgBox {
    width: 100%;
    margin-top: 20px;
  }
  .secOurServiceItem.sml .secOurServiceTitle-jp {
    font-size: 18px;
    letter-spacing: 0;
  }
  .secOurServiceItem:nth-child(2n+1).sml .secOurServiceTextBox {
    padding-right: 0;
  }
  .secOurServiceItem:nth-child(2n).sml .secOurServiceTextBox {
    padding-left: 0;
  }
  
  .secOurServiceItem + .secOurServiceItem {
    margin-top: 100px;
  }
  .secOurServiceItem:nth-child(2n+1) {
    justify-content: flex-end;
  }
  .secOurServiceItem:nth-child(2n+1) .secOurServiceImgBox {
    margin-right: -20px;
  }
  .secOurServiceItem:nth-child(2n+1) .secOurServiceTextBox {
    padding-right: 0;
  }
  .secOurServiceItem:nth-child(2n) .secOurServiceImgBox {
    margin-left: -20px;
  }
  .secOurServiceItem:nth-child(2n) .secOurServiceTextBox {
    padding-left: 0;
    text-align: right;
  }
}
/* 事業紹介
***************************************************************/

/* 代表挨拶
***************************************************************/
.secMessage {
  overflow: clip;
  width: 100%;
  height: 100vh;
  margin: 170px 0 120px;
  padding: 30px;
}
.secMessage .inner {
  height: 100%;
  position: relative;
}
.secMessage .secMessageColumn {
  display: flex;
  gap: 83px;
  max-width: 1300px;
  height: 100%;
  padding: 50px;
  margin: 0 auto;
  color: #fff;
  overflow: clip;
}
.secMessage .secMessageTextBox {
  width: 495px;
  padding-top: 56px;
}
.secMessage .secMessageTitle {
  font-size: 22px;
  line-height: 40px;
  font-weight: 400;
}
.secMessage .secMessageText {
  font-size: 18px;
  letter-spacing: 0;
  line-height: 40px;
  margin-top: 27px;
}
.secMessage .secMessageBg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  background: url(../../img/group/top/message_bg.webp)no-repeat right bottom / cover;
  z-index: -1;
}
.secMessage .secMessageBg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.secMessage .secMessageNameBox {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 27px;
  margin-top: 40px;
}
.secMessage .secMessagePosition {
  font-size: 15px;
  letter-spacing: 0.05em;
}
.secMessage .secMessageName {
  font-size: 22px;
  letter-spacing: 0.05em;
}

@media all and (max-width: 680px) {
  .secMessage {
    height: 100lvh;
    margin: 130px 0 60px;
    padding: 10px;
  }
  .secMessage .secMessageColumn {
    display: block;
    padding: 40px 20px;
  }
  .secMessage .secMessageTextBoxWrap {
    overflow: hidden;
    margin-top: 20px;
    height: calc(100% - 50px);
  }
  .secMessage .secMessageTextBox {
    width: 100%;
    padding-top: 20px;
  }
  .secMessage .secMessageTitle {
    font-size: 18px;
    line-height: 30px;
  }
  .secMessage .secMessageText {
    font-size: 15px;
    line-height: 2;
    margin-top: 27px;
  }
  .secMessage .secMessageBg {
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: url(../../img/group/top/message_bg_sp.webp)no-repeat bottom / cover;
  }
  .secMessage .secMessageNameBox {
    display: block;
    margin-top: 40px;
  }
  .secMessage .secMessagePosition {
    line-height: 1.4;
  }
}
/* 代表挨拶
***************************************************************/

/* 会社情報
***************************************************************/
.secProfile {
  padding: 150px 0;
  color: var(--c-text);
}
.secProfile .inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}
.secProfile dl {
  display: flex;
  gap: 52px;
}
.secProfile dl + dl {
  margin-top: 26px;
}
.secProfile dt,.secProfile dd {
  font-size: 16px;
  line-height: 30px;
  transition: color 0.4s;
}
.secProfile dt {
  width: 90px;
  text-align: right;
}
.secProfile dd {
  width: calc(100% - 90px - 52px);
  letter-spacing: 0.03em;
}
body.c-white .secProfile dt,
body.c-white .secProfile dd {
  color: var(--c-bg);
}

@media all and (max-width: 680px) {
  .secProfile {
    padding: 75px 0;
  }
  .secProfile .inner {
    padding: 0 30px;
  }
  .secProfile .secProfileContBox {
    margin-top: 50px;
  }
  .secProfile dl {
    display: block;
  }
  .secProfile dl + dl {
    margin-top: 20px;
  }
  .secProfile dt,.secProfile dd {
    font-size: 15px;
    line-height: 1.6;
  }
  .secProfile dt {
    width: 100%;
    text-align: left;
  }
  .secProfile dd {
    width: 100%;
    margin-top: 6px;
    letter-spacing: 0.02em;
  }

  body.c-white .secProfile dt {
    color: var(--c-main);
  }
}
/* 会社情報
***************************************************************/

/* 採用情報
***************************************************************/
.secRecruit {
  padding: 150px 0;
}
.secRecruit .inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}

@media all and (max-width: 680px) {
  .secRecruit {
    padding: 75px 0;
  }
  .secRecruit .inner {
    padding: 0 30px;
  }
}
/* 採用情報
***************************************************************/

/* SDGs
***************************************************************/
.secSdgs {
  padding: 150px 0;
}
.secSdgs .inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}
.secSdgs .topComonColumnCont .topComonColumnContTitle {
  margin-top: 0;
}

@media all and (max-width: 680px) {
  .secSdgs {
    padding: 75px 0;
  }
  .secSdgs .inner {
    padding: 0 30px;
  }
}
/* SDGs
***************************************************************/



@media all and (min-width: 681px) {
  
}

@media all and (max-width: 680px) {
  
}
