@charset "UTF-8";
body{
  padding-top: 100px;
}
main{
  overflow: hidden;
  padding-bottom:0;
}
.intro{
  display:flex;
  align-items: center;
  background: #EAEAEC;
  height: 420px;
  position: relative;
  overflow: hidden;
  margin-top: 15px;
  @media screen and (max-width: 767px) {
    min-height: 420px;
    height: auto;
    padding: var(--sp-60) 0;
  }
}
.intro_box{
  max-width: 673px;
  position: relative;
  z-index: 1;
}
.intro_img {
  position: absolute;
  left: calc(50% - 435px);
  top: 0;
  height: 100%;
  img {
    object-fit: cover;
    max-width: none;
    width: auto;
    height: auto;
    min-height: 100%;
  }
}
.intro_com {
  margin-top: var(--sp-30);
}
.anc_flex {
  display: flex;
  gap: 20px;
}
.anc_card{
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #5f5e5e;
  border: 1px solid #5f5e5e;
  max-width: calc((100%/3) - (40px/3));
  width: 100%;
  transition: .3s;
  padding: 40px 5% 30px;
  &:hover{
    text-decoration: none;
    filter: invert(1);
   background: #000;
   border: 1px solid #fff;
  }
  *{
    color: #fff;
  }
}
.anc_name {
  font-size: var(--fs-36);
  font-weight: 200;
}
.anc_sub {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 3em;
}
.anc_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 225px;
}
.anc_bot{
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-top: 25px;
  gap: 10px;
  &::after{
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 9px solid white;
  }
}

.lineup{
  display: flex;
  gap:var(--sp-20);
  flex-wrap: wrap;
}
.line_card{
  width: calc((100% / 3) - ((2 * var(--sp-20)) / 3));
  min-height: 475px;
  padding: var(--sp-40) var(--sp-30);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  @media screen and (max-width: 767px) {
    width: 100%;
  }
  &:nth-child(1){
    background: url(../img/img_01.png) no-repeat center top;
    background-size: cover;
  }
  &:nth-child(2){
    background: url(../img/img_02.png) no-repeat center top;
    background-size: cover;
  }
  &:nth-child(3){
    background: url(../img/img_03.png) no-repeat center top;
    background-size: cover;
  }
  .btn_more{
    position: absolute;
    width: 90%;
    bottom: var(--sp-30);
    margin: 0;
  }
}
.line_head{
  font-size: var(--fs-36);
  font-weight: var(--light);
  margin-bottom: var(--sp-20);
}
.line_com{
  line-height: 2;
}
/*タブレット（縦）*/
@media screen and (orientation: portrait) and (min-width: 768px) {}
@media screen and (max-width: 767px) {}
@media print {}