@charset "utf-8";

/*-----------------------------------------------------------------------------------
  main slide
-----------------------------------------------------------------------------------*/

#mainSlide-wrap {
    width:100%;
    box-sizing:border-box;
    position:relative;
    z-index:1;
}

#mainSlide {
  width:100%;
  height:100%;
  overflow:hidden;
  list-style:none;
}

#mainSlide .slide {
    width:100%;
    position:relative;
    overflow:hidden;
    text-align: center;
}

#mainSlide .slideContWrap {
  height:auto;
  position:absolute;
  left:50%;
  top:55%;
  text-align:left;
  transform:translate(-50%,-50%);
}

@media screen and (max-width:1000px) {
    #mainSlide .slideContWrap {
        width: 100%;
        left:0;
        text-align: center;
        transform:translate(0,-50%);
    }
    #mainSlide .slideContWrap img {
        margin: 0 auto;
        max-width: calc(100% - 96px);
    }
}
  
.csstransitions #mainSlide .slideContWrap .slideCont {
  opacity:0;
  margin-top:-50px;
  -webkit-transition:margin 0.5s ease-out, opacity 0.3s;
  transition:margin 0.5s ease-out, opacity 0.3s;
  -webkit-transition-delay:0.4s;
  transition-delay:0.4s;
}

.csstransitions #mainSlide.is-aniSet .slideContWrap .slideCont {
  -webkit-transition-delay:0.8s;
  transition-delay:0.8s;
}

.csstransitions #mainSlide .slide.is-active .slideContWrap .slideCont {
  opacity:1;
  margin-top:0;
}

#mainSlide .slidePhoto {
  position:absolute;
  display:block;
  width:100%;
  height:100%;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  transform-origin:left top;
}

.csstransitions #mainSlide .slide.is-active .slidePhoto {
  -webkit-animation:mainSlide-zoom 40s forwards ease-out;
  animation:mainSlide-zoom 40s forwards ease-out;
}

@-webkit-keyframes mainSlide-zoom {
  100% {
    -webkit-transform:scale(1.3) translate(-50%,-50%) rotate(0.1deg);  /* IEカクつき対処（rotate）*/
  }
}
@keyframes mainSlide-zoom {
  100% {
    transform:scale(1.3) translate(-50%,-50%) rotate(0.1deg);  /* IEカクつき対処（rotate）*/
  }
}

#mainSlide .slideCont .btn {
    margin: 24px auto 0;
    text-align: center;
}

@media print,screen and (min-width:751px) {
  #mainSlide-wrap,
  #mainSlide .slide {
    height:800px;
  }

  #mainSlide .slideTxt {
    width:1180px;
  }
  
  #mainSlide .slidePhoto {
    min-width:1920px;
    min-height:800px;
  }
}

@media screen and (max-width:750px) {
  #mainSlide-wrap,
  #mainSlide .slide {
    height:-webkit-calc(700 / 640 * 100vw);
    height:calc(700 / 640 * 100vw);
  }

  #mainSlide .slideTxt {
    width:100%;
    padding-left:8%;
    padding-right:8%;
  }

  #mainSlide .slide--01 .slidePhoto {
    margin-left:-25%;
  }

  #mainSlide .slide--03 .slidePhoto {
    margin-left:10%;
  }
  
  #mainSlide .slidePhoto {
    min-width:-webkit-calc(1400 / 640 * 100vw);
    min-width:calc(1400 / 640 * 100vw);
    min-height:-webkit-calc(700 / 640 * 100vw);
    min-height:calc(700 / 640 * 100vw);
  }
}

/*-----------------------------------------------------------------------------------
  dots
-----------------------------------------------------------------------------------*/

.mainSlide__dots {
  position:relative;
  z-index:1;
  text-align:left;
}

.mainSlide__dots .slick-dots {
  margin-left:-1rem;
  margin-right:-1rem;
}

@media print,screen and (min-width:751px) {
  .mainSlide__dots {
    width:1180px;
    margin-left:auto;
    margin-right:auto;
    height:80px;
    margin-top:-80px;
  }
}

@media screen and (max-width:750px) {
  .mainSlide__dots {
    width:100%;
    height:4em;
    margin-top:-4em;
  }
}


/*-----------------------------------------------------------------------------------
  Information
-----------------------------------------------------------------------------------*/
#information {
    padding: 60px 0;
}

#information .inner {
    display: flex;
}

#information h2 {
    width: 326px;
}
#information h2 span {
    display: block;
    color: #f2909e;
    font-weight: 400;
}

#information .info-list {
    width: calc(100% - 326px);
}
#information .info-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#information .info-list ul li {
    border-bottom: 1px dotted #aaa;
}
#information .info-list ul li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 1em 0;
    box-sizing: border-box;
    text-decoration: none;
}
#information .info-list ul li a::after {
    position: relative;
    left: 0;
    font-family: 'Material Icons';
    content: '\e5cc';
    color: #f2909e;
    font-size: 150%;
    line-height: 1;
    transition: .2s all;
}
#information .info-list ul li a:hover:after {
    left: 6px;
}
#information .info-list ul li a .date {
    width: 7.5em;
    box-sizing: border-box;
    border: 1px solid #f2909e;
    padding: 0 .75em;
    margin-right: 1.5em;
    color: #f2909e;
}
#information .info-list ul li a .title {
    width: calc(100% - 8em);
    box-sizing: border-box;
    padding-right: 24px;
}

#information .info-link {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
}

#information .info-link a {
    color: #f2909e;
    text-decoration: none;
}
#information .info-link a::after {
    position: relative;
    top: 6px;
    left: 0;
    font-family: 'Material Icons';
    content: '\e5cc';
    color: #f2909e;
    font-size: 150%;
    font-weight: 400;
    transition: .2s all;
    margin-left: .5em;
}
#information .info-link a:hover:after {
    left: 6px;
}

@media screen and (max-width:1100px) {
    #information h2 {
        width: 220px;
    }
    #information .info-list {
        width: calc(100% - 220px);
    }
}

@media screen and (max-width:900px) {
    #information .inner {
        display: block;
    }
    #information h2 {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }
    #information .info-list {
        width: 100%;
    }
}



/*-----------------------------------------------------------------------------------
  virtual
-----------------------------------------------------------------------------------*/
#virtual {
    width: 100%;
    background-color: #fcf0f2;
    background-image: url("../image/home/virtual-bg.png");
    background-repeat: no-repeat;
    background-position: 15% center;
    background-size: 949px 1068px;
    padding: 48px 0 72px;
}

#virtual h2 {
    display: inline-block;
    margin-left: calc(50% - 180px);
    margin-bottom: 36px;
}

#virtual .intro {
    text-align: center;
    line-height: 1.8;
    letter-spacing: .2ex;
    margin-bottom: 28px;
}
#virtual .intro .underline {
    display: inline-block;
    font-size: 166.6%;
    border-bottom: 1px solid #282828;
    line-height: 1.2;
}

#virtual .example {
    display: flex;
    justify-content: space-between;
}

#virtual .example .example-box {
    width: calc(50% - 23px);
}

#virtual .example .example-box .img-btn {
    border-radius: 12px;
}
#virtual .example .example-box .img-btn::before {
    padding-top: 67.4%;
}

#virtual .example .example-box .bukkenmei {
    margin: .5em 0;
    font-size: 125%;
    line-height: 1.4;
    text-align: center;
}
#virtual .example .example-box .bukkenmei span {
    border-bottom: 1px solid #282828;
}

#virtual .btn {
    margin-top: 36px;
    text-align: center;
}

@media screen and (max-width:1200px) {
    #virtual .img-btn .desc {
        left:0%;
        transform: translate(0,-50%);
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }
}
@media screen and (max-width:800px) {
    #virtual .example {
        display: block;
    }

    #virtual .example .example-box {
        width: 100%;
        max-width: 540px;
        margin: 0 auto 36px;
    }
}
@media screen and (max-width:750px) {
    .ua-sp #virtual .intro {
        line-height: 2;
    }
}



/*-----------------------------------------------------------------------------------
  consult
-----------------------------------------------------------------------------------*/
#consult .consult-wrap01 {
    padding-top: 72px;
    padding-bottom: 170px;
}

#consult .consult-wrap01 h2 {
    text-align: center;
    margin-bottom: 48px;
}

#consult .consult-wrap01 .question {
    position: relative;
    padding: 48px 90px 80px;
    box-sizing: border-box;
    border: 3px solid #f2909e;
    border-radius: 36px;
    background-image: url("../image/home/consult-bgimg.png");
    background-repeat: no-repeat;
    background-position: calc(100% - 50px) bottom;
}

#consult .consult-wrap01 .question .ques-head {
    margin: 0 auto 30px;
    text-align: center;
}
#consult .consult-wrap01 .question .ques-head b {
    padding: 0 .25em;
    background:linear-gradient(transparent 60%, #fadee3 60%);
}

#consult .consult-wrap01 .question .ques-list {
    list-style: none;
}
#consult .consult-wrap01 .question .ques-list li {
    padding: .5em 0 .5em 72px;
    margin-bottom: .75em;
    background: url("../image/home/consult-question.png") no-repeat left center;
    text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}
#consult .consult-wrap01 .question .ques-list li:last-child {
    margin-bottom: 0;
}

#consult .consult-wrap01 .question-arrow {
    position: absolute;
    bottom: -115px;
    left: calc(50% - 44px);
    width: 88px;
    height: 139px;
}

#consult .consult-wrap02 {
    padding: 60px 0;
    background-color: #fcf0f2;
    text-align: center;
}

#consult .consult-wrap02 b {
    display: inline-block;
    margin-bottom: .75em;
}
#consult .consult-wrap02 b .dot-text {
    padding-top: .3em;
    background-position: top left -1em;
    background-repeat: repeat-x;
    background-size: 1.02em .3em;
    background-image: radial-gradient(.12em .12em at center center,#f2909e,#f2909e 100%,rgba(255,255,255,0));
}
_::-webkit-full-page-media, _:future, :root #consult .consult-wrap02 b .dot-text {
    padding-top: 0;
    background: linear-gradient(transparent 80%, #f2909e 80%);
}

#consult .consult-wrap02 p {
    line-height: 1.8;
    letter-spacing: .2ex;
    margin-bottom: 30px;
}

@media screen and (max-width:1100px) {
    #consult .consult-wrap01 .question {
        padding: 48px 48px 80px;
    }
    #consult .consult-wrap01 .question .ques-list li:nth-child(3),
    #consult .consult-wrap01 .question .ques-list li:nth-child(4) {
        width: calc(100% - 360px);
    }
}

@media screen and (max-width:900px) {
    #consult .consult-wrap01 .question {
        padding-bottom: 320px;
        background-position: center bottom;
    }
    #consult .consult-wrap01 .question .ques-list li:nth-child(3),
    #consult .consult-wrap01 .question .ques-list li:nth-child(4) {
        width: auto;
    }
}

@media screen and (max-width:750px) {
    .ua-sp #consult .consult-wrap02 b .txtId {
        margin-top: .4em;
    }
    .ua-sp #consult .consult-wrap02 p {
        line-height: 2;
    }
}


/*-----------------------------------------------------------------------------------
  principal
-----------------------------------------------------------------------------------*/
#principal {
    padding: 60px 0 72px;
}

#principal .introduction {
    text-align: center;
}
#principal .introduction .catch {
    display: inline-block;
    margin-bottom: 48px;
    line-height: 1.2;
}
#principal .introduction p {
    letter-spacing: .2ex;
}

#principal .point {
    margin-top: 84px;
}
#principal .point h2 {
    text-align: center;
}
#principal .point .point-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 120px);
    margin-top: 60px;
}
#principal .point .point-box:nth-of-type(2) {
    margin-left: auto;
    margin-right: auto;
}
#principal .point .point-box:nth-of-type(3) {
    margin-left: auto;
    margin-right: 0;
}
#principal .point .point-box .number {
    width: 140px;
    color: #fadee3;
    font-size: 280px;
    line-height: 1;
}
#principal .point .point-box .desc {
}
#principal .point .point-box .desc h3 {
    margin-bottom: 24px;
    line-height: 1;
}
#principal .point .point-box .desc p {
    letter-spacing: .2ex;
}
#principal .point .point-box .desc p span {
    background:linear-gradient(transparent 60%, #fadee3 60%);
}
#principal .point .point-box .img {
    width: 400px;
}
    
@media screen and (max-width:1200px) {
    #principal .point .point-box,
    #principal .point .point-box:nth-of-type(2),
    #principal .point .point-box:nth-of-type(3) {
        width: 100%;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
}
    
@media screen and (max-width:1100px) {
    #principal .point .point-box .number {
        width: 140px;
        font-size: 200px;
    }
    #principal .point .point-box .desc {
        width: calc(100% - 400px);
    }
    #principal .point .point-box .img {
        width: 260px;
    }
}
    
@media screen and (max-width:900px) {
    #principal .point .point-box .number {
        display: none;
    }
    #principal .point .point-box .desc {
        width: calc(100% - 284px);
    }
}

@media screen and (max-width:750px) {
    .ua-sp #principal .introduction p {
        line-height: 2;
    }
    .ua-sp #principal .point .point-box {
        flex-wrap: wrap;
        justify-content: center;
    }
    .ua-sp #principal .point .point-box .desc {
        order: 2;
        width: 640px;
    }
    .ua-sp #principal .point .point-box .img {
        order: 1;
        width: 400px;
        margin-bottom: 1em;
    }
}


/*-----------------------------------------------------------------------------------
  works
-----------------------------------------------------------------------------------*/
#works {
    width: 100%;
    padding: 72px 0;
    background: url("../image/home/works-bg.png") no-repeat top center;
    text-align: center;
}

#works h2 {
    margin-bottom: 30px;
}
#works h2 span {
    display: block;
    color: #f2909e;
    font-weight: 400;
}

#works .intro {
    letter-spacing: .2ex;
    margin-bottom: 30px;
}

#works .works-list {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-bottom: 36px;
}
#works .works-list li {
    display: block;
    width: calc(33.33% - 24px);
    overflow: hidden;
}
#works .works-list li a {
    display: block;
    width: 100%;
    border-radius: 12px;
}
#works .works-list li a::before {
    padding-top: 75%;
}
#works .works-list li .img {
    position: relative;
    width: 100%;
    height: 100%;
}
#works .works-list li a img {
    width: auto;
    height: 100%;
    max-height: 264px;
    margin: 0 auto;
    object-fit: cover;
}
#works .works-list figcaption {
}
#works .works-list .bukkenmei {
    margin: .5em 0;
    font-size: 125%;
    line-height: 1.4;
}
#works .works-list .bukkenmei span {
    border-bottom: 1px solid #282828;
}
    
@media screen and (max-width:1100px) {
    #works .works-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    #works .works-list li {
        width: calc(50% - 24px);
        margin: 0 0 36px;
    }
    #works .works-list li:nth-child(1) {
        margin-right: 48px;
    }
    #works .works-list li a img {
        max-height: 360px;
    }
}
    
@media screen and (max-width:800px) {
    #works .works-list {
        display: block;
        max-width: 540px;
        margin: 0 auto 36px;
    }
    #works .works-list li {
        width: 100%;
        margin: 0 0 36px;
    }
    #works .works-list li:nth-child(1) {
        margin-right: 0;
    }
    #works .works-list li a img {
        max-height: 405px;
    }
}




