@charset "UTF-8";

/*=================================
メインビジュアル
==================================*/
.vs_inner {
  position: relative;
  margin-top: 100px;
}

.vs_inner img {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.vs_text h2 {
  color: #fff;
  font-size: clamp(1.5rem, 1.119rem + 1.9vw, 2.25rem);
  font-family: "Zen Kaku Gothic New";
  text-shadow: 2px 2px 2px var(--text-color);
}

.vs_text p {
  color: #fff;
  font-size: clamp(1rem, 0.848rem + 0.76vw, 1.3rem);
  text-shadow: 2px 2px 1px var(--text-color);
  max-width: 400px;
  padding-top: 20px;
}

.vs_text {
  position: absolute;
  top: 12%;
  left: 5%;
}


/*=================================
BLOG
==================================*/
.top_blog_container {
  background-color: var(--bg-color-2);
  padding: 20px var(--gutter-base) 40px;
}

.top_blog_inner {
  max-width: 500px;
  margin: 20px auto 0;
}

.top_blog_text {
  text-align: center;
  margin-top: 20px;
}

.top_blog_text h2 {
  font-size: var(--size-lg);
  font-family: "Zen Old Mincho";
}

.top_blog_text h3 {
  font-size: var(--size-sm);
}

.top_blog_text img {
  display: block;
  width: 100%;
  max-width: 450px;
  border-radius: 5px;
  margin: 20px auto 0;
}

.top_blog_box {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px dashed #AAA;
  padding: 30px 0;
}

.top_blog_box:hover {
  background-color: #fff;
  border-radius: 5px;
  transition: 0.3s;
  transform: scale(1.1);
}

.top_blog_box img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.top_blog_box span {
  color: var(--acs-color);
  font-weight: bold;
  padding-left: 10px;
}

.top_blog_box p {
  padding-left: 10px;
}

.top_blog_box a {
  color: var(--text-color);
  font-size: var(--size-sm);
  font-weight: bold;
}

.next_btn a {
  display: block;
  position: relative;
  color: var(--text-color);
  font-weight: bold;
  text-align: right;
  padding: 30px var(--gutter-base) 20px;
}

.next_btn a:hover {
  color: var(--acs-color);
  transition: 0.3s;
}


.next_btn a::after {
  display: inline-block;
  content: '';
  width: 0;
  height: 0;
  margin: 0 0.5em 0 5px;
  border: 10px solid transparent;
  border-right: 0 solid transparent;
  border-left: 15px solid var(--acs-color);
  transform: translateY(4px);
}


/*=================================
ABOUT
==================================*/
.top_about_container {
  margin: var(--contents-gutter) 0 10px;
  padding: 0 var(--gutter-base);
}

.top_about h2 {
  font-size: var(--size-lg);
  font-family: "Zen Old Mincho";
  text-align: center;
}

.top_about h3 {
  font-size: var(--size-sm);
  text-align: center;
}

.top_about_flex {
  max-width: 500px;
  margin: 0 auto;
}

.top_about_flex img {
  width: 100%;
  border-radius: 10px;
  margin-top: 20px;
}

.top_about_text h2 {
  font-size: var(--size-md);
  font-family: "Zen Kaku Gothic New";
  margin-top: 20px;
  padding: 0 var(--gutter-base);
}

.top_about_text p {
  padding: 20px var(--gutter-base);
}


/*=================================
SERVICE
==================================*/
.top_service_container {
  background-color: var(--bg-color-2);
  padding: 40px var(--gutter-base);
}

.top_service {
  text-align: center;
}

.top_service h2 {
  font-size: var(--size-lg);
  font-family: "Zen Old Mincho";
}

.top_service h3 {
  font-size: var(--size-sm);
}

.top_service p {
  padding: 20px var(--gutter-base);
}

.top_service_box {
  background-color: #fff;
  border-radius: 10px;
  max-width: 450px;
  margin: 20px auto;
  padding: 20px;
  box-shadow: 0px 11px 6px -7px rgba(0, 0, 0, 0.3);
}

.top_service_box h2 {
  font-size: var(--size-md);
  font-family: "Zen Kaku Gothic New";
  text-align: center;
  padding: 20px 0;
}

.top_service_box img {
  display: block;
  width: 90px;
  margin: 0 auto 20px;
}

.top_service_box:nth-child(2) img {
  display: block;
  width: 130px;
  margin: 0 auto 20px;
}

.top_service_box p {
  padding: 10px var(--gutter-base);
}

/*=================================
Q＆A
==================================*/
#top_ques_container {
  padding: 40px var(--gutter-base);
}

.top_ques {
  text-align: center;
}

.top_ques h2 {
  font-size: var(--size-lg);
  font-family: "Zen Old Mincho";
}

.top_ques h3 {
  font-size: var(--size-sm);
  margin-bottom: 30px;
}

.top_ques_box {
  background-color: var(--sub-color);
  border-radius: 10px;
  max-width: 450px;
  margin: 0 auto 20px;
  padding: 20px var(--gutter-base);
  box-shadow: 0px 11px 6px -7px rgba(0, 0, 0, 0.3);
}

.top_ques_box h2 {
  font-size: var(--size-md);
  font-family: "Zen Kaku Gothic New";
  padding: 10px var(--gutter-base);
}

.top_ques_box p {
  padding: 10px var(--gutter-base);
}


/*=================================
950px以上の時
==================================*/
@media screen and (min-width:950px) {

  /*=================================
メインビジュアル
==================================*/
  .vs_text {
    position: absolute;
    top: 10%;
    left: 10%;
    padding: 15px;
  }

  .vs_text h2 {
    color: #fff;
    font-size: var(--size-xxl);
    font-family: "Zen Kaku Gothic New";
    text-shadow: 2px 2px 2px var(--text-color);
  }

  .vs_text p {
    color: #fff;
    font-size: var(--size-md);
    max-width: 420px;
    text-shadow: 2px 2px 1px var(--text-color);
    padding-top: 20px;
  }

  /*=================================
BLOG
==================================*/
  .blog {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 100px;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--section-gutter) 0;
  }

  .top_blog_text img {
    width: 400px;
    height: 350px;
  }

  .top_blog_inner {
    max-width: 500px;
  }

  .top_blog_text {
    margin: 0;
  }

  /*=================================
ABOUT
==================================*/
  .top_about_container {
    margin: var(--section-gutter) 0;
  }

  .top_about_flex {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    align-items: flex-end;
    max-width: 1000px;
    margin: 0 auto;
  }

  .top_about_flex img {
    width: 400px;
    height: 350px;
  }

  .top_about_text {
    max-width: 500px;
  }

  /*=================================
SERVICE
==================================*/
  .top_service_container {
    padding: var(--section-gutter) var(--gutter-base);
  }

  .service_container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 30px auto 0;
  }

  .top_service_box {
    max-width: 400px;
  }


  /*=================================
Q＆A
==================================*/
  .ques_container {
    display: grid;
    grid-template-columns: 300px 300px 300px;
    justify-content: center;
    gap: 20px;
  }

  #top_ques_container {
    padding: var(--section-gutter) var(--gutter-base);
  }

}