@charset "utf-8";

/***トップFV***/

.top_fv_sec .top_fv_box {
  width: calc(100% - 80px);
  margin-right: auto;
}

.top_fv_sec .fv_content {
  position: relative;
}

.top_fv_sec .fv_content p {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  color: white;
  font-size: 2.4rem;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
}

.top_fv_sec .slick-slide > div {
  padding: 0;
  margin: 0;
  line-height: 0;
}

.top_fv_sec .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.top_fv_sec .slick-dots {
  text-align: right;
  bottom: 20px;
  right: 20px;
}

.top_fv_sec .slick-dots li {
  width: 32px;
  height: 4px;
}
.top_fv_sec .slick-dots li button {
  width: 32px;
  height: 4px;
}

.top_fv_sec .slick-dots li button:before {
  width: 32px;
  height: 4px;
  content: '';
  background-color: var(--navy);
  opacity: 1;
}

.top_fv_sec .slick-dots li.slick-active button:before {
  background-color: #FFFFFF;
  opacity: 1;
}

@media screen and (min-width: 801px){
  .top_fv_sec .fv_content figure {
    position: relative;
    height: 350px;
    width: 100%;
    overflow: hidden;
  }

  .top_fv_sec .fv_content figure img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
  }

}

@media screen and (max-width: 1000px){
  .top_fv_sec .top_fv_box {
    width: calc(100% - 40px);
  }
  .top_fv_sec .fv_content figure {
    position: relative;
    height: 500px;
    overflow: hidden;
    width: 100%;
  }

  .top_fv_sec .fv_content figure img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    max-width: inherit;
  }
}

@media screen and (max-width: 500px){
  .top_fv_sec .top_fv_box {
    width: 100%;
  }


}

/***ニュースバー***/
.top_newsbar_sec {
  display: flex;
  align-items: stretch;
  min-height: 80px;
}

.top_newsbar_sec .left {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navy);
  padding: 0 60px;
  position: relative;
  margin-right: 60px;
}

.top_newsbar_sec .left::after {
  content: '';
  position: absolute;
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 80px 0 0 20px;
  border-color: transparent transparent transparent var(--navy);
}

.top_newsbar_sec .left p {
  color: white;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
}

.top_newsbar_sec .main {
  display: flex;
  align-items: center;
}

.top_newsbar_sec .main a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}


.top_newsbar_sec .main .date {
  margin-right: 30px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 800px){
  .top_newsbar_sec {
    display: flex;
    align-items: stretch;
    min-height: 100px;
  }
  .top_newsbar_sec .left {
    padding: 0 20px;
    margin-right: 40px;
  }
  .top_newsbar_sec .left::after {
    border-width: 100px 0 0 20px;
  }
}


@media screen and (max-width: 600px){
  .top_newsbar_sec {
    display: flex;
    align-items: stretch;
    min-height: 60px;
  }
  .top_newsbar_sec .left {
    padding: 0 10px;
    margin-right: 0px;
  }
  .top_newsbar_sec .left::after {
    display: none;
  }
  .top_newsbar_sec .main {
    padding: 10px;
  }
}


/***what we do***/

.top_what_sec {
  padding-bottom: 100px;
}

.top_what_sec .wrapper {
  position: relative;
  padding-top: 60px;
  margin-bottom: 60px;
}

.top_what_sec .wrapper::before,
.top_what_sec .wrapper::after {
  background-color: #DEE7F1;
  position: absolute;
  bottom: 90px;
  z-index: -1;
  content: '';
  height: calc(100% + 150px);
}
.top_what_sec .wrapper::before {
  width: calc(50% + 80px);
  left: -80px;
}

.top_what_sec .wrapper::after {
  width: 50vw;
  left: 50%;
}
.top_what_sec .top_sec_title {
  margin-bottom: 40px;
}
.top_what_sec .top_sec_title span {
  color: #849EBA;
}

.top_what_list {
  display: flex;
  justify-content: space-between;
}

.top_what_list > a {
  width: calc(50% - 10px);
  display: block;
}

.top_what_list h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
}

.top_what_list > a figure {
  overflow: hidden;
  position: relative;
  padding-bottom: 60%;
  width: 100%;
  height: 0;
}

.top_what_list > a figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}



.top_what_list > a:hover figure img  {
  transform: translate(-50%, -50%) scale(1.05);
}
@media screen and (max-width: 800px){
  
}

@media screen and (max-width: 600px){
  .top_what_sec .top_sec_title {
    margin-bottom: 20px;
  }
  .top_what_list {
    flex-direction: column;
    align-items: center;
  }
  .top_what_list > a {
    width: 100%;
  }

  .top_what_list > a:not(:last-of-type) {
    margin-bottom: 40px;
  }
}

/***blog/opinion***/
.top_blog_sec {
  padding-bottom: 100px;
  background: linear-gradient(180deg, #F1F1F1 0%, #F1F1F1 60%, transparent 60%);
  padding-top: 80px;
}

.top_blog_sec.sub_blog_sec {
  background: transparent;
}


.top_blog_sec .wrapper {
  position: relative;
}

/* .top_blog_sec .wrapper::before {
  background-color: #F1F1F1;
  width: 100vw;
  height: 100%;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  content: '';
  position: absolute;
} */

.top_blog_sec .top_sec_title {
  font-size: 4.2rem;
  margin-bottom: 60px;
}

.top_blog_sec h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: normal;
}

.top_blog_list {
  margin-bottom: 60px;
}

.top_blog_list .blog_card {
  padding: 0 10px 10px;
}

.top_blog_list .blog_card a {
  display: block;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.top_blog_list .blog_card .bl_op {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: white;
  font-size: 1.4rem;
  font-weight: bold;
  width: 80px;
  text-align: center;
  z-index: 2;
}

.top_blog_list .blog_card figure {
  width: 100%;
  height: 0;
  padding-bottom: 55%;
  overflow: hidden;
  position: relative;
}

.top_blog_list .blog_card figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
  border: none;
  margin: 0;
}
.top_blog_list .blog_card a:hover figure img  {
  transform: translate(-50%, -50%) scale(1.05);
}

.top_blog_list .blog_card .content {
  background-color: white;
  padding: 20px 20px 50px;
}

.top_blog_list .blog_card .content .title {
  margin-bottom: 25px;
  word-break: break-all;
}

.top_blog_list .blog_card .content .meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top_blog_list .blog_card .content .meta .date {
  font-family: 'Ubuntu', sans-serif;
  font-weight: bold;
  margin: 4px 0;
  margin-right: 5px;
}

.top_blog_list .blog_card .content .meta .cat {
  padding: 8px 4px;
  background-color: #EEEEEE;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
}

@media screen and (max-width: 1130px) {
  .top_blog_list {
    width: calc(100% - 50px);
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 800px){
  
}

@media screen and (max-width: 600px){
  
}




/***top about us***/
.top_about_sec {
  padding-bottom: 100px;
}
.top_about_sec .wrapper{
  max-width: 1170px;
  background-color: #849EBA;
  padding: 40px 10px 60px;
}

.top_about_sec .top_sec_title {
  margin-bottom: 30px;
}

.top_about_sec h3 {
  text-align: center;
  margin-bottom: 45px;
  color: white;
  font-size: 4rem;
  font-family: 'Lora', serif;
}

.top_about_sec ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
 
.top_about_sec ul li {
  margin: 0 22px 5px;
}

.top_about_sec ul li a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}

.top_about_sec ul li a::after {
  content: '';
  width: 14px;
  height: 8px;
  background: url(../img/aboutusarrow.png) center / contain no-repeat;
  margin-left: 10px;
}
@media screen and (max-width: 800px){
  
}
@media screen and (max-width: 600px){
  .top_about_sec h3 {
    font-size: 2.4rem;
  }
  .top_about_sec ul {
    flex-direction: column;
    align-items: center;
  }
  .top_about_sec ul li {
    margin: 0 auto 20px;
  }
  .top_about_sec ul li:last-of-type {
    margin-bottom: 0;
  }
}

/***top contact***/
.top_contact_sec {
  padding: 35px 0;
  background-color: var(--navy);
}

.top_contact_sec p {
  margin-bottom: 40px;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 2rem;
}

.top_contact_sec .original_btn a::before {
  content: '';
  width: 20px;
  height: 15px;
  background: url(../img/contact_icon.png) center / contain no-repeat;
  margin-right: 10px;
}
@media screen and (max-width: 800px){
  
}