@charset "utf-8";
main{
  --main-blue: #CC0033;
  --deep-blue: #CC0033;
}
.t_color{
  color:var(--deep-blue);
}
.art_head{
  &::before {
    background:var(--deep-blue);
  }
}
.page_title {
  border-left: 6px solid var(--deep-blue);
}
.under_mv{
  /* background: url(../img/cmn_bg.png) repeat; */
  background: #fdf3f6;
}
.vis_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 100px 0;
}
.vis_head {
  font-size: var(--fs-64);
  letter-spacing: var(--ls);
  font-weight: normal;
}
.vis_com {
  font-size: var(--fs-24);
  letter-spacing: var(--ls);
  font-weight: normal;
  margin-top: 20px;
}
.vis_btn{
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-size: var(--fs-24);
  background: var(--deep-blue);
  padding: 10px;
  height: 60px;
  border-radius: 10px;
  color: #fff;
  margin-top: 20px;
  &::after{
    content: '';
    background: url(../img/arrow_rev.svg) no-repeat center;
    background-size: contain;
    min-width: 20px;
    height: 20px;
  }
}
.intro {
  position: relative;
  overflow: hidden;
  &::before{
    content: '';
    display: block;
    background: url(../img/bg_00.png) no-repeat center;
    background-size: contain;
    width: 100%;
    height: 780px;
    position: absolute;
    left: -60px;
    top: 170px;
  }
}
.intro_top {
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.intro_head {
  font-size: var(--fs-40);
  line-height: 2;
}
.intro_com {
  font-weight: 500;
  margin-top: 20px;
}
.intro_bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-top: -100px;
}
.intro_bg{
  max-width: 604px;
  width: 100%;
  height: 604px;
  margin-right: -50px;
  background: url(../img/bg_00_t.png) no-repeat center;
  background-size: contain;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 10px var(--deep-blue);
  .bold{
    font-size: var(--fs-24);
  }
}
.intro_bold {
  max-width: calc(100% - 554px);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fs-24);
  font-weight: bold;
}
.map{
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.area_row {
  display: flex;
  margin-top: 30px;
  justify-content: space-between;
  gap:10px;
  flex-wrap: wrap;
}
.area_left{
}
.area_name{
  color: var(--deep-blue);
  font-weight: bold;
  &::before{
    content: '■ ';
  }
}
.area_data{
  padding-left: 1.65em;
  margin-top: 10px;
}
.area_btn{
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  background: #fff;
  color: var(--txt-color);
  padding: 10px;
  height: 60px;
  border-radius: 10px;
  margin-top: 10px;
  border: 1px solid var(--deep-blue);
  &::after{
    content: '';
    background: url(../img/arrow.svg) no-repeat center;
    background-size: contain;
    min-width: 20px;
    height: 20px;
  }
}
.area_gal {
  display: flex;
  gap: 20px;
}

.bnr {
  display: flex;
  align-items: center;
  max-width: 850px;
  width: 100%;
  margin: 40px auto;
  border-radius: 29px;
  box-shadow: 0 0 30px #CC003333;
  position: relative;
  overflow: hidden;
  &::after{
    content: '';
    display: block;
    width: 33px;
    height: 33px;
    background: url(../img/arrow.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    right: 35px;
    bottom: 40px;
  }
}
.bnr_img {
  position: relative;
  &::after{
    content: '';
    display: block;
    width: 100px;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg,transparent,#fff);
  }
}
.bnr_data{
  padding-left: 40px;
}
.bnr_bold {
  font-size: var(--fs-24);
  font-weight: bold;
  color: #c03;
}
.bnr_com{
  color: var(--txt-color);
  margin-top: 5px;
}
@media screen and (max-width: 767px){
.vis_inner {
  padding: 0 5%;
}
.vis_head {
  font-size: min(4rem, 10vw);
}
.vis_com {
  font-size: min(2.4rem, 6vw);
  margin-top: 10px;
}
.vis_btn {
  font-size: min(1.8rem, 4.75vw);
  height: 50px;
  margin-top: 10px;
}
.intro{
  padding-bottom: 40px;
  &::before{
    display: none;
  }
}
.intro_top {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.intro_head{
  font-size: min(4rem, 6vw);
}
.intro_bot {
  flex-direction: column;
  margin: 30px 0 0;
}
.intro_bold {
  max-width: 100%;
  font-size: min(2.4rem, 5vw);
}
.intro_bg {
  margin: 0;
  height: auto;
  padding: 60px 0;
  position: relative;
  background: none;
  &::before{
    content: '';
    display: block;
    background: url(../img/bg_00_t.png) no-repeat center;
    background-size: contain;
    width: 400px;
    height: 400px;
    position: absolute;
    top: calc(50% - 200px);
    left: calc(50% - 200px);
    z-index: -1;
  }
}
.area_gal {
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.area_img{
  width: calc(50% - 5px);
}
.bnr {
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
  overflow: hidden;
  &::after{
    bottom: 10px;
    right: 15px;
  }
}
.bnr_img {
  position: relative;
  &::after{
    content: '';
    display: block;
    width: 100%;
    height: 60px;
    position: absolute;
    background: linear-gradient(180deg,transparent,#fff);
  }
}
.bnr_data {
  padding: 20px 0 60px;
}
}