@charset "UTF-8";

@media screen and (min-width: 750px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 749px) {
  .pc {
    display: none !important;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  border: 0;
  list-style: none;
  vertical-align: baseline;
  text-decoration: none;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

html {
  /* -webkit-overflow-scrolling: touch; */
  height: 100%;
  font-size: 62.5% !important;
  font-family: 'Noto Sans JP', sans-serif;
}
body {
  overflow:auto;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  color: #000;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 1.87;
  background: url(../img/back.jpg) no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
  scroll-behavior: auto;
}

div,
main,
section {
  position: relative;
  display: block;
}

*:focus {
  outline: none;
}

p {
  font-size: 1.4rem;
  line-height: 2.0;
}
p span {
  font-weight: bold;
}
img {
  width: 100%;
}
a {
  text-decoration: none;
  -webkit-transition-duration: 0.35s;
  -moz-transition-duration: 0.35s;
  -ms-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
}
h1, h2, h3, h4, h5 {
  font-weight: bold;
}

/*common*/

.fadeinBlur {
    -ms-filter: blur(30px);
    filter: blur(30px);
    opacity: 0;
    -ms-transition-duration: 1.0s;
    transition-duration: 1.0s;
}
.fadeinBlur.scrollin {
    -ms-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
}
.fadeinBottom {
  opacity:0.0;
  filter: alpha(opacity=0);
  transition : all 500ms;
  -ms-transform : translate(0, 50px);
  transform : translate(0, 50px);
  -moz-opacity:0.0;
}
.fadeinBottom.scrollin {
  opacity:1.0;
  filter: alpha(opacity=100);
  -ms-transform : translate(0, 0);
  transform : translate(0, 0);
  -moz-opacity:1.0;
}



/*------------------------------------------------------------*/
/*header*/
header {
  position: absolute;
  z-index: 99;
  display: flex;
  margin: 0 auto;
  padding: 20px 35px;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
}
header p {
  display: block;
  font-size: 1.0rem;
  line-height: 1.6;
  margin: 0 0 0 20px;
}
.asadigiLogo {
  display: block;
}
@media screen and (min-width: 1200px) {
  .asadigiLogo {
    width: 10%;
    max-width: 214px;
  }
}
@media screen and (max-width: 1200px) {
  .asadigiLogo {
    width: 16%;
  }
}
.asadigiLogo a {
  display: block;
  width: 100%;
}
.asadigiLogo a img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 749px) {
  header {
    padding: 2.2vw 10px;
    justify-content: space-between;
  }
  header p {
    font-size: 2vw;
    width: 50vw;
    text-align: right;
  }
  .asadigiLogo {
    width: 33%;
    margin: 0;
  }
}

/*footer*/
footer {
  display: block;
  width: 100%;
  background-color: #515759;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  padding: 40px 0;
}
#footerContent p {
  display: block;
  margin: 1.0rem auto;
  padding: 0;
  width: 100%;
  text-align: center;
  font-size: 1.0rem;
  line-height: 1.4rem;
  color: #fff;
}
#footerContent ul {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding: 0 0 1.6rem 0;
}
#footerContent ul li {
  display: inline-block;
  margin: 0 1rem 0 0;
  padding: 0;
  background: none;
  box-shadow: none;
}
#footerContent a {
  display: inline-block;
  width: auto;
  margin: 0.5rem auto 0;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-weight: 400;
  color: #fff;
}
#footerContent a:hover {
  text-decoration: underline;
}
#footerContent ul li::after {
  content: "|";
  color: rgba(255,255,255,0.75);
  padding: 0 0 0 1rem;
  font-size: 1.2rem;
}
#footerContent ul li:nth-last-child(1)::after {
  content: "";
}
@media screen and (max-width: 749px) {
  footer {
    padding: 20px 10px;
    line-height: 1.4;
  }
  #footerContent ul {
    flex-wrap: wrap;
    padding: 0 0 1.6rem 0;
  }
  #footerContent ul li {
    height: 2rem;
  }
  #footerContent a {
    margin: 0 auto;
  }
}
/*------------------------------------------------------------*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  opacity: 1;
  width: 100vw;
  height: 100vh;
  background-color: #EDE4DC;
  z-index: 99999;
  -webkit-transition-duration: 0.35s;
  -moz-transition-duration: 0.35s;
  -ms-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
}
#loading.active {
  opacity: 0;
}
#loading.false {
  display: none;
}
.loading_img {
  position: absolute;
  transform: translate(-50%,-50%) rotate(0);
  top: 50%;
  left: 50%;
  width: 20vw;
  animation: animate_loading 3s infinite linear;
}
@keyframes animate_loading {
  0% {
    transform: translate(-50%,-50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%,-50%) rotate(360deg);
  }
}
@media screen and (max-width: 749px) {
  .loading_img {
    width: 50vw;
  }
}
/*------------------------------------------------------------*/
#container {
  display: block;
  line-height: 1;
}
.column {
  display: block;
}
.column p {
  font-size: 1.4rem;
  line-height: 1.8;
  display: block;
  text-align: left;
}
/*------------------------------------------------------------*/
.intro {
  position: relative;
  width: 95%;
  margin: 100px auto 50px auto;
}
.intro p {
  font-size: 1.6rem;
  line-height: 2.0;
  font-weight: 400;
  text-align: center;
  margin: 0 0 1rem 0;
}
@media screen and (max-width: 749px) {
  .intro {
    width: 90%;
    margin: 50px auto 50px auto;
  }
}


/*------------------------------------------------------------*/
#main {
  position: relative;
  background-size: cover;
}

.column {
  display: flex;
  justify-content: flex-start;
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0;
}
.column:nth-child(even) {
  justify-content: flex-end;
}
@media screen and (max-width: 749px) {
  .column {
    display: block;
    width: 90%;
    padding: 100px 0;
  }
}

.text_set {
  width: 60%;
  max-width: 750px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.3);
  padding: 0 0 30px 0;
  position: relative;
}
.column:nth-child(even) .text_set::before {
  transform: translate(-50%,-50%) scaleX(-1);
  left: 103%;
}
@media screen and (max-width: 749px) {
  .column:nth-child(even) .text_set::before {
    transform: translate(-50%,-50%);
    top: 0%;
    left: 5%;
  }
}

.text_set h2 {
  width: 90%;
  margin: 0 auto;
  padding: 30px 0 0 0;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.4;
  color: #C81C2E;
}
.text_set img {
  display: block;
  width: 90%;
  margin: 30px auto 5px auto;
}
.text_set .caption {
  display: block;
  width: 90%;
  margin: 0 auto;
  font-size: 1.2rem;
}
@media screen and (max-width: 749px) {
  .text_set {
    width: 100%;
  }
  .text_set h2 {
    font-size: 2.6rem;
  }
}
.person01, .person02 {
  width: 90%;
  margin: 0 auto;
  padding: 30px 0 0 0;
  font-size: 1.4rem;
  line-height: 1.4;
}
.person01, .person02 {
  display: flex;
}
.person01 dt, .person02 dt {
  width: 3em;
  font-size: 1.6rem;
  font-weight: 600;
}
.person01 dt {
  color: #CF4520;
}
.person02 dt {
  color: #8E6325;
}
.person01 dd, .person02 dd {
  width: calc(100% - 3em);
  padding: 0 0 0 2%;
}
.person01 dd {
  border-left: solid 1px #CF4520;
}
.person02 dd {
  border-left: solid 1px #8E6325;
}
.person01.first dt, .person02.first dt {
  width: 8em;
  font-size: 1.6rem;
  font-weight: 600;
}
.person01.first dd, .person02.first dd {
  width: calc(100% - 8em);
  padding: 0 0 0 2%;
}
.first span {
  font-size: 1.2rem;
}

.img_back01, .img_back02, .img_back03 {
  position: fixed;
  transform: translate(-50%,-50%);
  top: 50%;
  left: 50%;
  width: 100vw;
  opacity: 0;
  z-index: -1;
  -webkit-transition-duration: 0.75s;
  -moz-transition-duration: 0.75s;
  -ms-transition-duration: 0.75s;
  -o-transition-duration: 0.75s;
  transition-duration: 0.75s;
}
.img_back01.scrollin, .img_back02.scrollin, .img_back03.scrollin {
  opacity: 1;
}
@media screen and (max-width: 749px) {
  .img_back01, .img_back02, .img_back03 {
    width: 300vw;
  }
  .img_back01, .img_back03 {
    left: -10vw;
  }
  .img_back02 {
    left: 126vw;
  }
}




/*------------------------------------------------------------*/
.note {
  display: flex;
  justify-content: space-between;
  width: 95%;
  max-width: 1000px;
  margin: 40px auto 80px auto;
  padding: 4rem 4rem;
  background-color: #F4EDEE;
  border: solid 2px #C81C2E;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.3);
}
.note .text {
  width: 50%;
}
.note h3 {
  margin: 0 0 2rem 0;
  font-size: 3rem;
  color: #C81C2E;
  font-weight: 400;
}
.note h3 a {
  font-size: 1.4rem;
  text-decoration: underline;
  color: #C81C2E;
}
.note img {
  width: 45%;
  height: 100%;
  aspect-ratio: 462 / 305;
}
@media screen and (max-width: 749px) {
  .note {
    display: block;
  }
  .note .text {
    width: 100%;
  }
  .note img {
    display: block;
    width: 100%;
    margin: 2rem 0 0 0;
  }
}

/*------------------------------------------------------------*/
.company {
  background-color: #fff;
  padding: 60px 0 0 0;
}
.company a {
  position: relative;
  display: block;
  width: 95%;
  max-width: 1000px;
  color: #fff;
  border-radius: 10px;
  margin: 40px auto 0;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  background: url(../img/icon_arrow.svg) no-repeat right 15px center #C81C2E;
  background-size: 12px;
  text-align: center;
  font-size: 2.6rem;
  line-height: 2;
  font-weight: 600;
}
.company a:hover {
  opacity: 0.5;
  box-shadow: 0 3px 2px rgba(0,0,0,0.3);
}
.link_icon {
  position: absolute;
  /* transform: translate(-50%,-50%);
  top: 20%;
  left: 96%;
  display: block; */
  display: inline-block;
  width: 1.4rem;
  margin-left: 0;
}
.company .logo {
  display: block;
  width: 80%;
  max-width: 680px;
  margin: 4rem auto 0;
}
.company p {
  display: block;
  width: 80%;
  max-width: 680px;
  margin: 2rem auto 0;
}
@media screen and (max-width: 749px) {
  .company a {
    width: 90%;
    font-size: 1.8rem;
    line-height: 1.4;
  }
  .link_icon {
    top: 1rem;
    right: 1rem;
  }
}
/*------------------------------------------------------------*/
.sns {
  text-align: center;
  padding: 100px 0;
  background-color: #fff;
}
.sns h3 {
  font-size: 3rem;
  margin: 0 0 20px 0;
}
.sns ul {
  display: flex;
  justify-content: center;
}
.sns ul li {
  width: 66px;
  margin: 0 10px;
}
@media screen and (max-width: 749px) {
  .sns {
    padding: 50px 0;
  }
}
/*------------------------------------------------------------*/

#article-end {
  display:block;
  margin-top:-1px;
}